/* ============================================================
   CFO Pilot — Main Stylesheet
   Matches Space Virtual CFO visual style (screenshots)
   ============================================================ */

:root {
  --navy:         #2B4A7A;      /* dark navy — headlines, buttons */
  --navy-mid:     #1e3560;      /* medium navy */
  --blue-panel:   #2B4A7A;      /* services section bg */
  --blue-icon:    #2B4A7A;      /* icon colour inside circles */
  --text-dark:    #1a2d4a;
  --text-mid:     #64748b;
  --text-light:   #94a3b8;
  --white:        #ffffff;
  --bg-page:      #f0f2f8;      /* hero / page bg */
  --bg-light:     #f8fafc;
  --border:       #e2e8f0;
  --brand:        #2B4A7A;      /* alias for buttons */
  --radius-sm:    0.5rem;
  --radius-md:    1rem;
  --radius-lg:    1.5rem;
  --radius-pill:  9999px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,.11);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.65;
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 700; line-height: 1.35; }
p  { font-size: clamp(0.92rem, 1.5vw, 1rem); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,27,74,.3);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.btn-white:hover {
  background: #e8effe;
  transform: translateY(-1px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
}
.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue-panel); }

.nav-cta { margin-left: 1.25rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.25s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.75rem;
  gap: 1.1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.btn {
  align-self: flex-start;
  margin-top: 0.5rem;
  border-bottom: none;
  padding: 0.85rem 2rem;
}
.mobile-nav a.btn-primary { color: var(--white); }

/* ============================================================
   HERO  — light grey bg, dark text, arrow bullets, photo card
   ============================================================ */
.hero {
  background: var(--bg-page);
  padding: clamp(3.5rem, 8vh, 6rem) 0;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-panel);
  margin-bottom: 1rem;
}
.hero h1 {
  color: var(--navy);
  margin-bottom: 1.25rem;
}
/* underline accent removed */

/* Nav logo image sizing */
.nav-logo img { height: 40px; width: auto; }

/* Hero bullet normal weight variant */
.hero-bullet--normal { font-weight: 400; }

/* About graph image — neutral bg to blend */
.about-photo--graph {
  background: var(--bg-page);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.about-photo--graph img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

/* Footer logo */
.footer-logo {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  display: block;
  margin-bottom: 0.85rem;
}
.hero-lead {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--text-mid);
  margin-bottom: 1.75rem;
  line-height: 1.75;
}
/* Arrow bullets — exactly like screenshots */
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.hero-bullet::before {
  content: '→';
  font-size: 1rem;
  color: var(--navy);
  flex-shrink: 0;
}
.hero-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.img-placeholder {
  background: var(--bg-page);
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 4rem 2rem;
  text-align: center;
  aspect-ratio: 4/3;
}
.img-placeholder svg { opacity: 0.5; }

/* ============================================================
   SERVICES  — blue panel, circular white icons
   ============================================================ */
.services {
  background: var(--bg-page);
  padding: 0 0 clamp(3rem, 7vh, 5rem);
}
.services-panel {
  background: var(--blue-panel);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
}
.services-panel .section-title {
  color: var(--white);
  text-align: center;
  margin-bottom: 0.75rem;
}
.services-panel .section-lead {
  color: rgba(255,255,255,.75);
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 620px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.service-icon-circle {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.service-icon-circle svg {
  width: 30px;
  height: 30px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
}
.service-card h3 {
  color: var(--white);
  margin-bottom: 0.65rem;
  font-size: 1rem;
}
.service-card p {
  color: rgba(255,255,255,.78);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: clamp(3.5rem, 8vh, 5rem) 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.section-eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue-panel);
  margin-bottom: 0.6rem;
}
.about-content h2 { color: var(--navy); margin-bottom: 1.25rem; }
.about-body {
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  line-height: 1.75;
  font-size: 0.97rem;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
}
.about-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.about-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.img-placeholder-light {
  background: var(--bg-page);
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--text-light);
  font-size: 0.82rem;
  padding: 4rem 2rem;
  text-align: center;
  aspect-ratio: 1;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: clamp(3.5rem, 8vh, 5rem) 0;
  background: var(--bg-page);
}
.pricing .section-title { color: var(--navy); text-align: center; margin-bottom: 0.75rem; }
.pricing .section-lead  { color: var(--text-mid); text-align: center; max-width: 560px; margin: 0 auto 3rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  border: 2px solid var(--border);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(13,27,74,.08), var(--shadow-md);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-panel);
  margin-bottom: 0.3rem;
}
.pricing-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.pricing-tagline {
  font-size: 0.86rem;
  color: var(--text-mid);
  margin-bottom: 1.35rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.3rem;
}
.pricing-currency { font-size: 1.2rem; font-weight: 600; color: var(--navy); }
.pricing-amount   { font-size: 2.8rem; font-weight: 700; color: var(--navy); line-height: 1; }
.pricing-period   { font-size: 0.88rem; color: var(--text-mid); }
.pricing-annual   { font-size: 0.8rem; color: var(--text-mid); margin-bottom: 1.5rem; }
.pricing-divider  { height: 1px; background: var(--border); margin: 1.25rem 0; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.pricing-feature::before {
  content: '';
  width: 17px;
  height: 17px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-note { font-size: 0.76rem; color: var(--text-light); margin-top: 0.6rem; }
.pricing-card:not(.pricing-custom) .btn { width: 100%; justify-content: center; }

/* ── Custom / Build Your Own plan ── */
.pricing-grid .pricing-custom {
  grid-column: 1 / -1;  /* span full width */
  grid-row: auto;
  background: var(--navy) !important;
  border: 2px solid var(--navy) !important;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: var(--radius-md);
}
.pricing-custom .pricing-tier   { color: rgba(255,255,255,.6); }
.pricing-custom .pricing-name   { color: var(--white); }
.pricing-custom .pricing-tagline { color: rgba(255,255,255,.75); }
.pricing-custom .pricing-price-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.pricing-custom .pricing-annual { color: rgba(255,255,255,.55); margin-bottom: 1.5rem; }
.pricing-custom .btn-white { margin-top: 0.5rem; }

.custom-services-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
}
.custom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.custom-tag {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: background 0.15s;
}
.custom-tag.highlight {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.4);
  font-weight: 600;
}
.custom-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.custom-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,.9);
}
.custom-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: rgba(255,255,255,.25);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}


/* ============================================================
   FEATURES  — big headline left + stacked rows right
   Matches screenshot 2 exactly
   ============================================================ */
.features {
  padding: clamp(3.5rem, 8vh, 5rem) 0;
  background: var(--white);
}
.features-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: start;
}
.features-left {
  position: sticky;
  top: 88px; /* clears the nav */
  align-self: start;
}
.features-left h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.features-left p {
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.75;
  font-size: 0.97rem;
}
.features-rows {
  display: flex;
  flex-direction: column;
}
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:first-child { border-top: 1px solid var(--border); }
.feature-row-icon {
  width: 46px;
  height: 46px;
  background: var(--bg-page);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-row-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue-panel);
  fill: none;
  stroke-width: 1.8;
}
.feature-row-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.feature-row-text p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.newsletter-banner {
  padding: clamp(2.5rem, 6vh, 4rem) 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  text-align: center;
}
.newsletter-banner h2 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}
.newsletter-banner p {
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-banner [data-reach-form] {
  max-width: 480px;
  margin: 0 auto;
}

.cta-banner {
  background: var(--navy);
  padding: clamp(3.5rem, 8vh, 5rem) 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  {
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
  margin-top: 1rem !important;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: clamp(3.5rem, 8vh, 5rem) 0;
  background: var(--bg-page);
}
.faq .section-title { color: var(--navy); text-align: center; margin-bottom: 0.75rem; }
.faq .section-lead  { color: var(--text-mid); text-align: center; max-width: 540px; margin: 0 auto 3rem; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}
.faq-question svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-panel);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 1.4rem;
  color: #2d3f5a;
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 2.5rem 0 1.25rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.85rem;
}
.footer-brand img { height: 64px; width: auto; }
.footer-about { font-size: 0.86rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li a { font-size: 0.86rem; color: rgba(255,255,255,.6); transition: color 0.15s; }
.footer-col li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,.4); transition: color 0.15s; }
.footer-legal a:hover { color: var(--white); }

/* Book-a-call embed box */
.booking-box {
  background: var(--bg-page);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.booking-box h3 { color: var(--navy); margin-bottom: 0; }
.booking-box .form-lead { color: var(--text-mid); font-size: 1rem; line-height: 1.75; margin: 0; }
.booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--navy);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(43,74,122,.25);
}
.booking-btn:hover {
  background: #1e3560;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(43,74,122,.35);
}
.booking-note {
  font-size: 0.8rem;
  color: var(--text-light);
}
/* Clients logo strip */
.clients-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: var(--bg-page);
  padding: 4rem 0;
  text-align: center;
}
.page-hero h1 { color: var(--navy); margin-bottom: 1rem; }
.page-hero p  { color: var(--text-mid); max-width: 520px; margin: 0 auto; }

.team-section { padding: clamp(3.5rem,8vh,5rem) 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card-img { aspect-ratio: 1; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 1.4rem; }
.team-card-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.15rem; color: var(--navy); }
.team-card-role { font-size: 0.78rem; font-weight: 600; color: var(--blue-panel); letter-spacing: 0.04em; margin-bottom: 0.65rem; }
.team-card-bio  { font-size: 0.86rem; color: var(--text-mid); line-height: 1.65; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: clamp(3.5rem,8vh,5rem) 0; background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { color: var(--navy); margin-bottom: 0.85rem; }
.contact-info p  { color: var(--text-mid); margin-bottom: 2rem; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-detail  { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: var(--bg-page);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--blue-panel); fill: none; stroke-width: 2; }
.contact-detail-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mid); margin-bottom: 0.15rem; margin: 0; }
.contact-detail-value { font-weight: 600; color: var(--navy); font-size: 0.95rem; }

.contact-form {
  background: var(--bg-page);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  border: 1px solid var(--border);
}
.contact-form h3 { color: var(--navy); margin-bottom: 0.35rem; }
.form-lead { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 1.75rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.38rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-panel);
  box-shadow: 0 0 0 3px rgba(61,78,158,.1);
}
.form-group textarea { resize: vertical; min-height: 115px; }
.form-group input.full,
.form-group select.full,
.form-group textarea.full { width: 100%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .features-inner { grid-template-columns: 1fr; gap: 2rem; }
  .features-left  { position: static; } /* unstick on tablet — left col is full width */
  .pricing-grid .pricing-custom { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-card { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .features-rows { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ── Logo & team card image fixes ── */
.nav-logo img   { height: 40px; width: auto; display: block; }
.footer-logo    { height: 64px; width: auto; border-radius: 6px; }

/* Team card images — fill the card top uniformly */
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ── Booking perks list ── */
.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.booking-perks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
}
.booking-perks li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}
