:root {
  --navy: #102a33;
  --navy-2: #071b22;
  --blue: #0f766e;
  --blue-dark: #0b5f59;
  --teal: #12a3a6;
  --gold: #c48a3a;
  --ink: #172126;
  --text: #4b5c61;
  --muted: #f3f7f5;
  --line: #dce7e3;
  --white: #ffffff;
  --success-bg: #eaf8ef;
  --success-border: #9fd2af;
  --success-text: #1c5d2e;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 20px 46px rgba(7, 27, 34, 0.12);
  --shadow-soft: 0 12px 28px rgba(7, 27, 34, 0.08);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 78px 0; }
.hidden { display: none; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  border: 2px solid var(--blue);
}
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 231, 227, 0.86);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo { width: 44px; height: 44px; object-fit: contain; flex: 0 0 auto; }
.brand strong { display: block; letter-spacing: -0.02em; }
.brand small { display: block; color: var(--text); font-size: 0.78rem; margin-top: -2px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.93rem;
}
.site-nav a {
  text-decoration: none;
  color: #334056;
  font-weight: 650;
}
.site-nav a:hover { color: var(--blue); }
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
}
.nav-toggle span { display: block; height: 2px; width: 20px; background: var(--ink); margin: 5px auto; }

.hero {
  padding: 84px 0 66px;
  background:
    radial-gradient(circle at 78% 18%, rgba(15, 118, 110, 0.16), transparent 34%),
    radial-gradient(circle at 12% 10%, rgba(196, 138, 58, 0.10), transparent 30%),
    linear-gradient(180deg, #f7f2ea 0%, #f3f7f5 48%, #ffffff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 52px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.032em; margin: 0; }
h1 { font-size: clamp(2.45rem, 4.4vw, 4.4rem); max-width: 820px; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 3vw, 3.1rem); }
h3 { font-size: 1.18rem; }
p { margin: 0; }
.lead {
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  color: var(--text);
  max-width: 720px;
  margin: 24px 0 0;
}
.hero-actions, .cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.compact-actions { margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 19px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--blue); color: var(--white); box-shadow: 0 15px 28px rgba(15, 118, 110, 0.22); }
.button.primary:hover { background: var(--blue-dark); }
.button.secondary { background: var(--white); color: var(--navy); border-color: var(--line); }
.button.light { background: rgba(255, 255, 255, 0.12); color: var(--white); border-color: rgba(255, 255, 255, 0.25); }
.button.full { width: 100%; }
.hero-checks, .check-list, .price-card ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}
.hero-checks { color: #303b4f; }
.hero-checks li, .check-list li, .price-card li { position: relative; padding-left: 30px; }
.hero-checks li::before, .check-list li::before, .price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
}
.fit-line { margin-top: 22px; color: #5e687c; font-size: 0.96rem; }
.hero-visual, .image-panel, .visual-card, .feature-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #eef6f3;
}
.hero-visual img, .image-panel img, .visual-card img, .feature-image-card img { width: 100%; }
.full-width-panel { margin-top: 34px; }

.trust-strip { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-grid div { padding: 18px; border-radius: 18px; background: var(--muted); }
.trust-grid strong { display: block; color: var(--navy); font-size: 1.04rem; }
.trust-grid span { display: block; color: var(--text); font-size: 0.93rem; margin-top: 4px; }

.split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 52px; align-items: center; }
.split.reverse { grid-template-columns: 1fr 0.92fr; }
.split p, .section-head p, .contact-grid p, .reason-list p, .feature-copy p, .contact-card p, .timeline-card p, .buyer-card p, .proof-card p { color: var(--text); font-size: 1.03rem; }
.section-head { max-width: 835px; margin-bottom: 32px; }
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.light h2, .section-head.light p, .navy .eyebrow { color: var(--white); }
.section-head.light .eyebrow { color: #8bd8d1; }

.cards.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card, .fit-card, .price-card, .lead-form, .contact-card, .service-card, .process-grid li, blockquote, .outcome-grid div, .feature-copy, .success-message, .faq-list details, .timeline-card, .buyer-card, .proof-card, .card-list, .calendar-card, .call-topics {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.card, .fit-card, .feature-copy, .outcome-grid div, .contact-card, .success-message, .timeline-card, .buyer-card, .proof-card, .card-list, .call-topics { padding: 24px; }
.card, .timeline-card, .buyer-card, .proof-card, .card-list { box-shadow: var(--shadow-soft); }
.card p, .fit-card p, .price-card p, .service-card p, .process-grid p, blockquote, .outcome-grid span, .feature-copy p, .form-note, .success-message span, .proof-card span { color: var(--text); }
.text-link { display: inline-block; margin-top: 18px; color: var(--blue); font-weight: 850; text-decoration: none; }
.muted { background: var(--muted); }

.timeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.timeline-card span, .service-card span, .price-card .label {
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.timeline-card h3, .buyer-card h3, .proof-card h3 { margin-bottom: 10px; }
.timeline-card strong, .buyer-card strong, .proof-card span {
  display: block;
  color: var(--navy);
  margin-top: 16px;
  font-weight: 850;
}

.booking-section { background: linear-gradient(180deg, #ffffff, #f7f2ea 42%, #f3f7f5); scroll-margin-top: 92px; }
.booking-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 28px; align-items: start; }
.booking-copy { position: sticky; top: 102px; }
.calendar-card { padding: 12px; box-shadow: var(--shadow); overflow: hidden; }
.calendar-card iframe { display: block; width: 100%; border: 0; border-radius: 14px; background: #fff; }
.call-topics { margin-top: 24px; box-shadow: var(--shadow-soft); }
.call-topics .check-list { margin-top: 14px; }
.microcopy { margin-top: 18px; color: var(--navy); font-weight: 800; }

.buyer-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.quote-line { font-style: italic; }
.fit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.industry-row span { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: #455268; font-weight: 750; font-size: 0.9rem; }

.visual-card { padding: 18px; background: linear-gradient(180deg, #fff, #f3f7f5); }
.visual-card.advisor { max-width: 520px; margin-left: auto; }
.navy { background: radial-gradient(circle at top right, rgba(15, 118, 110, 0.30), transparent 34%), linear-gradient(135deg, var(--navy), var(--navy-2)); color: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 26px; background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.14); }
.service-card span { color: #8bd8d1; }
.service-card h3 { color: var(--white); }
.service-card p { color: rgba(255, 255, 255, 0.78); }

.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-soft); border: 1px solid var(--line); background: var(--white); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.comparison-table th, .comparison-table td { padding: 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison-table thead th { background: var(--navy); color: var(--white); }
.comparison-table tbody th { color: var(--navy); width: 18%; }
.comparison-table tbody tr:last-child th, .comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table td { color: var(--text); }

.assessment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.assessment-list { align-self: stretch; }
.assessment-list h3 { margin-bottom: 14px; }
.assessment-list .check-list { margin-top: 0; }
.accent-list { border-color: rgba(18, 163, 166, 0.35); background: linear-gradient(180deg, #fff, #f3fbfb); }

.proof-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cta-grid-simple { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.cta-grid-simple p { color: rgba(255, 255, 255, 0.76); max-width: 760px; margin-top: 18px; }
.reason-list { display: grid; gap: 18px; margin-top: 30px; }
.reason-list div { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.reason-list div:last-child { border-bottom: 0; padding-bottom: 0; }
.reason-list h3 { margin-bottom: 8px; }

.faq-wrap { max-width: 900px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { padding: 0; overflow: hidden; }
.faq-list summary { cursor: pointer; list-style: none; padding: 22px 24px; font-weight: 850; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 24px; top: 22px; font-size: 1.25rem; color: var(--blue); }
.faq-list details[open] summary::after { content: "-"; }
.faq-list details p { padding: 0 24px 24px; color: var(--text); }

.contact-section { scroll-margin-top: 100px; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: start; }
.success-message { display: grid; gap: 6px; margin: 22px 0; background: var(--success-bg); border-color: var(--success-border); }
.success-message strong { color: var(--success-text); }
.contact-card { margin-top: 22px; }
.contact-card h3 { margin-bottom: 14px; }
.contact-card p + p { margin-top: 10px; }
.lead-form { padding: 28px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.lead-form label { display: grid; gap: 8px; color: #334056; font-weight: 750; margin-bottom: 16px; }
.lead-form input, .lead-form textarea, .lead-form select { width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: 14px; padding: 14px 15px; font: inherit; color: var(--ink); background: #fff; }
.lead-form textarea { resize: vertical; min-height: 110px; }
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus, .nav-toggle:focus, .button:focus, .site-nav a:focus, .whatsapp-float:focus { outline: 3px solid rgba(15, 118, 110, 0.26); outline-offset: 2px; }
.form-note { margin-top: 12px; font-size: 0.82rem; line-height: 1.45; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 18px 34px rgba(37, 211, 102, 0.35); }
.whatsapp-float svg { width: 33px; height: 33px; fill: currentColor; }

.site-footer { background: var(--navy-2); color: rgba(255, 255, 255, 0.9); padding: 54px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 0.8fr 0.8fr; gap: 30px; }
.footer-brand small { color: rgba(255, 255, 255, 0.72); }
.site-footer h3 { margin-bottom: 10px; color: var(--white); font-size: 1rem; }
.site-footer p, .site-footer a { color: rgba(255, 255, 255, 0.76); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.legal { padding: 20px 0 28px; margin-top: 32px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.92rem; color: rgba(255, 255, 255, 0.6); }

@media (max-width: 1180px) {
  .buyer-grid, .proof-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
  .hero-grid, .split, .split.reverse, .contact-grid, .footer-grid, .booking-grid, .assessment-grid, .cta-grid-simple { grid-template-columns: 1fr; }
  .booking-copy { position: static; }
  .visual-card.advisor { margin: 0; }
  .fit-grid, .service-grid, .timeline-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 58px 0; }
  .hero { padding: 64px 0 54px; }
  .header-inner { height: 72px; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: calc(100% + 8px); left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; padding: 16px; gap: 10px; background: rgba(255, 255, 255, 0.98); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-soft); }
  .site-nav.is-open { display: flex; }
  .cards.two-col, .trust-grid, .fit-grid, .service-grid, .timeline-grid, .buyer-grid, .proof-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions, .stacked-mobile { flex-direction: column; align-items: stretch; }
  .calendar-card iframe { height: 560px; }
  .whatsapp-float { right: 16px; bottom: 16px; }
}
@media (max-width: 560px) {
  h1 { font-size: 2.22rem; }
  h2 { font-size: 1.82rem; }
  .section-head p, .split p, .contact-grid p, .reason-list p, .feature-copy p, .contact-card p, .lead, .timeline-card p, .buyer-card p, .proof-card p { font-size: 1rem; }
  .lead-form, .price-card, blockquote, .timeline-card, .buyer-card, .proof-card, .card-list { padding: 22px; }
  .hero-visual, .image-panel, .visual-card, .calendar-card { border-radius: 20px; }
}
