/* =============== VARIABLES =============== */
:root {
  --navy: #1B2A4E;
  --navy-deep: #14213D;
  --blue-accent: #4A78C2;
  --blue-soft: #E8EFF9;
  --bg-light: #F4F7FB;
  --bg-muted: #EEF2F7;
  --orange: #E07B39;
  --text: #1B2A4E;
  --text-muted: #5A6B85;
  --border: #DCE3EC;
  --white: #ffffff;
  --radius: 8px;
  --radius-lg: 14px;
  --max-w: 1180px;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}

/* =============== RESET =============== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15.5px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* =============== TYPOGRAPHY =============== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.75rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-muted); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(255,255,255,0.7); }
.accent-blue { color: var(--blue-accent); }
.muted { color: var(--text-muted); }
.max-40 { max-width: 42ch; }

.link-arrow {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: color .2s;
}
.link-arrow:hover { color: var(--blue-accent); }

/* =============== BUTTONS =============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-deep); }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--navy); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #f1f1f1; }

/* =============== HEADER =============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-img { height: 34px; width: auto; display: block; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 450;
  transition: color .2s;
}
.main-nav a:hover { color: var(--blue-accent); }
.header-cta { padding: 11px 20px; font-size: 0.88rem; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}
.mobile-toggle span {
  width: 22px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: all .25s;
}

/* =============== HERO =============== */
.hero { padding: 80px 0 90px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.hero-title { margin-bottom: 22px; }
.hero-lead { font-size: 1rem; max-width: 46ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-footnote { font-size: 0.85rem; color: var(--text-muted); }

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  min-height: 560px;
}
.hero-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero-curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.callout {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.96);
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(27,42,78,0.08);
  font-size: 0.78rem;
  max-width: 200px;
}
.callout strong { display: block; color: var(--navy); font-size: 0.82rem; margin-bottom: 2px; }
.callout small { color: var(--text-muted); font-size: 0.72rem; line-height: 1.4; }
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.dot-orange { background: var(--orange); }
.dot-navy { background: var(--navy); }

.callout-1 { top: 6%; left: 4%; }
.callout-2 { top: 40%; left: 22%; }
.callout-3 { top: 72%; left: 6%; }

.hero-badge {
  position: absolute;
  top: 12%;
  right: 5%;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-align: right;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  font-weight: 500;
}
.hero-badge strong { font-size: 0.82rem; display: block; margin-top: 4px; }

/* =============== GROWTH =============== */
.growth {
  background: var(--bg-light);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.growth-text p + p { margin-top: 16px; }

/* =============== SECTIONS COMMON =============== */
section { padding: 90px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* =============== SERVICES =============== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  padding: 34px 26px;
  border-right: 1px solid var(--border);
  background: #fff;
  transition: background .2s;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--bg-light); }
.service-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-accent);
  margin-bottom: 18px;
}
.service-icon.small { width: 40px; height: 40px; margin-bottom: 14px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.service-card p { font-size: 0.88rem; margin-bottom: 16px; }

.check-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-accent);
  font-size: 0.8rem;
  font-weight: 700;
}

/* =============== PROCESS =============== */
.process { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.process-intro h2 { margin-bottom: 18px; }
.process-intro p { margin-bottom: 20px; font-size: 0.95rem; }

.timeline { position: relative; padding-top: 40px; }
.timeline-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 120px;
}
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.timeline-step { position: relative; }
.step-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  margin-bottom: 14px;
  position: relative; z-index: 2;
}
.step-num {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 6px;
}
.timeline-step h4 { margin-bottom: 8px; font-size: 0.98rem; }
.timeline-step p { font-size: 0.84rem; }

/* =============== NAVY STRIP =============== */
.navy-strip { background: var(--navy); color: #fff; padding: 70px 0; }
.navy-strip h2 { color: #fff; }
.navy-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.navy-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
}
.navy-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.92);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.navy-feature svg { color: rgba(255,255,255,0.85); flex-shrink: 0; }

/* =============== PRINCIPLES =============== */
.principles { background: var(--bg-light); }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.principle { text-align: left; }
.principle h4 { font-size: 0.92rem; margin-bottom: 6px; }
.principle p { font-size: 0.8rem; line-height: 1.5; }

/* =============== SCENARIOS =============== */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.scenario-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: box-shadow .2s;
}
.scenario-card:hover { box-shadow: 0 8px 24px rgba(27,42,78,0.06); }
.scenario-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.scenario-head h4 { font-size: 1rem; }
.scenario-card p { font-size: 0.88rem; margin-bottom: 16px; }

/* =============== WHY =============== */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}
.why-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.why-feature h4 { font-size: 0.98rem; margin-bottom: 6px; }
.why-feature p { font-size: 0.85rem; }

/* =============== TESTIMONIAL =============== */
.testimonial { padding: 0; background: var(--white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
}
.testimonial-image img {
  width: 100%; height: 100%;
  min-height: 460px;
  object-fit: cover;
}
.testimonial-content {
  padding: 70px 80px;
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-content blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  color: var(--navy);
  line-height: 1.45;
  font-weight: 500;
  margin: 12px 0 22px;
  position: relative;
  padding-left: 24px;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--blue-accent);
  position: absolute;
  left: -6px; top: -6px;
}
.testimonial-meta { font-size: 0.88rem; margin-bottom: 22px; }
.testimonial-meta strong { color: var(--navy); }
.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
}
.testimonial-arrow:hover { background: var(--navy); color: #fff; }
.dots { display: flex; gap: 6px; }
.dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border);
}
.dots .dot-active { background: var(--navy); }

/* =============== CONTACT =============== */
.contact { background: var(--white); position: relative; overflow: hidden; }
.contact-decor {
  position: absolute;
  top: -100px; right: -150px;
  width: 500px; height: 500px;
  background: var(--blue-soft);
  border-radius: 50%;
  z-index: 0;
}
.contact-inner { position: relative; z-index: 1; }
.contact-inner h2 { margin-bottom: 12px; }
.contact-inner > .muted { margin-bottom: 44px; }

.contact-form { max-width: 100%; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 32px;
}
.form-field { display: flex; flex-direction: column; }
.form-field-full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.req { color: var(--orange); }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 0.92rem;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(74,120,194,0.1);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #A0ABBC; }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%235A6B85' stroke-width='1.6' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #D64545; }

.form-status {
  margin: 22px 0 16px;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.form-status.error { color: #D64545; }
.form-status.success { color: #2E7D4F; }

.btn-submit { padding: 14px 28px; min-width: 190px; }
.btn-submit:disabled { opacity: 0.7; cursor: wait; }

/* =============== FAQ =============== */
.faq { background: var(--bg-light); }
.faq-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.faq-list {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  transition: background .2s;
}
.faq-question:hover { background: var(--bg-light); }
.faq-icon {
  font-size: 1.3rem;
  color: var(--blue-accent);
  font-weight: 300;
  transition: transform .25s;
  flex-shrink: 0;
  width: 24px; text-align: center;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 28px;
}
.faq-item.open .faq-answer { padding: 0 28px 22px; }
.faq-answer p { font-size: 0.9rem; }

/* =============== FINAL CTA =============== */
.final-cta {
  background: var(--navy);
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.final-cta-decor {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 300px;
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; margin-bottom: 24px; }
.final-cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.final-cta-grid p { color: rgba(255,255,255,0.78); margin-bottom: 24px; }

/* =============== FOOTER =============== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 30px;
  font-size: 0.88rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-img { height: 34px; width: auto; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}
.footer-nav a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.18); }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 26px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: #fff; }
.footer-tag { font-style: italic; }

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: none; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .principles-grid { grid-template-columns: repeat(3, 1fr); }
  .why-features { grid-template-columns: repeat(2, 1fr); gap: 30px 40px; }
  .process-grid { grid-template-columns: 1fr; }
  .navy-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 800px) {
  .main-nav, .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .header-inner { justify-content: space-between; }

  .main-nav.open {
    display: block;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px 28px;
  }
  .main-nav.open ul { flex-direction: column; gap: 18px; }
  .main-nav.open a { font-size: 1rem; }

  .hero-grid,
  .growth-grid,
  .why-grid,
  .final-cta-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image-wrap, .hero-image { min-height: 400px; height: 400px; }
  .hero { padding: 50px 0 60px; }
  section { padding: 60px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }

  .navy-features { grid-template-columns: 1fr 1fr; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .scenarios-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }

  .timeline-steps { grid-template-columns: 1fr; gap: 30px; }
  .timeline-svg { display: none; }
  .timeline::before {
    content: "";
    position: absolute;
    left: 18px; top: 40px; bottom: 20px;
    width: 2px;
    background: var(--border);
  }
  .timeline-step { padding-left: 60px; position: relative; }
  .timeline-step .step-icon {
    position: absolute;
    left: 0; top: 0;
    margin: 0;
    background: #fff;
    border: 2px solid var(--border);
  }

  .testimonial-content { padding: 50px 30px; }

  .form-grid { grid-template-columns: 1fr; }

  .faq-question { padding: 18px 20px; font-size: 0.92rem; }
  .faq-answer { padding: 0 20px; }
  .faq-item.open .faq-answer { padding: 0 20px 20px; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: flex-start; }
  .contact-decor { width: 320px; height: 320px; top: -80px; right: -120px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .navy-features { grid-template-columns: 1fr; }
  .callout { max-width: 160px; padding: 10px 12px; font-size: 0.7rem; }
  .callout-2 { left: 12%; }
  .hero-badge { font-size: 0.6rem; }
  .hero-badge strong { font-size: 0.7rem; }
}