:root {
  --blue: #1D4ED8;
  --blue-deep: #12326B;
  --ink: #0B1F3A;
  --slate: #5B6B85;
  --line: #E3E8F0;
  --bg-soft: #F6F8FC;
  --white: #FFFFFF;
  --amber: #F5A623;
  --green: #17A672;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4, .display { font-family: 'Manrope', sans-serif; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

/* NAV */
nav { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,0.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { font-size: 18px; font-weight: 800; display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink); }
.brand .dot { width: 10px; height: 10px; background: var(--blue); border-radius: 3px; display: inline-block; }
.nav-links { display: flex; gap: 28px; font-size: 14.5px; font-weight: 600; }
.nav-links a { text-decoration: none; color: var(--ink); opacity: 0.75; position: relative; padding-bottom: 4px; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; color: var(--blue); }
.nav-links a.active { opacity: 1; color: var(--blue); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--blue); border-radius: 2px; }
.nav-cta { font-size: 14.5px; font-weight: 700; background: var(--blue); color: var(--white); padding: 11px 20px; border-radius: 6px; text-decoration: none; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(29,78,216,0.28); }
.nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--ink); }
@media (max-width: 780px) {
  .nav-links { position: fixed; top: 60px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform 0.25s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
}

/* HERO */
.hero { position: relative; padding: 84px 0 60px; text-align: center; background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%); overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35; z-index: 0; animation: float 14s ease-in-out infinite; }
.hero-blob.b1 { width: 340px; height: 340px; background: var(--blue); top: -120px; left: -80px; animation-delay: 0s; }
.hero-blob.b2 { width: 280px; height: 280px; background: var(--amber); bottom: -100px; right: -60px; animation-delay: -6s; }
@keyframes float { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-24px) scale(1.08); } }
.hero .wrap { position: relative; z-index: 1; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); margin-bottom: 20px; }
h1.display { font-size: clamp(32px, 5.2vw, 54px); line-height: 1.1; font-weight: 800; margin: 0 auto 16px; max-width: 800px; }
h1.display .accent { color: var(--blue); }
.hero-sub { font-size: 18px; line-height: 1.6; color: var(--slate); max-width: 580px; margin: 0 auto 32px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.btn-primary { background: var(--blue); color: var(--white); padding: 15px 28px; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 8px 20px rgba(29,78,216,0.22); transition: transform 0.15s ease, box-shadow 0.15s ease; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(29,78,216,0.32); }
.btn-secondary { background: var(--white); color: var(--ink); padding: 15px 28px; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 15px; border: 1.5px solid var(--line); transition: border-color 0.15s ease, transform 0.15s ease; }
.btn-secondary:hover { border-color: var(--blue); transform: translateY(-2px); }
.hero-note { font-size: 13px; color: var(--slate); margin-top: 10px; }

/* PAGE HEADER (non-home pages) */
.page-header { padding: 64px 0 46px; text-align: center; background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%); }
.page-header h1.display { font-size: clamp(28px, 4.6vw, 44px); }

/* VALUE STRIP */
.value-strip { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
@media (max-width: 780px) { .value-row { grid-template-columns: 1fr; } }
.value-item h3 { font-size: 15.5px; font-weight: 800; margin: 0 0 6px; }
.value-item p { font-size: 13.5px; color: var(--slate); margin: 0; line-height: 1.5; }

section { padding: 72px 0; }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
h2.display { font-size: clamp(25px, 3.4vw, 34px); font-weight: 800; line-height: 1.15; margin: 0 0 12px; }
.section-sub { font-size: 15.5px; color: var(--slate); line-height: 1.6; }

/* RESULTS */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .results-grid { grid-template-columns: 1fr; } }
.result-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 24px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.result-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(11,31,58,0.08); }
.result-card .rnum { font-weight: 800; font-size: 28px; color: var(--blue); margin-bottom: 8px; }
.result-card p { font-size: 14px; color: var(--ink); line-height: 1.55; margin: 0 0 12px; }
.result-card .src { font-size: 11.5px; color: var(--slate); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.honesty-note { text-align: center; font-size: 13px; color: var(--slate); margin-top: 22px; font-style: italic; max-width: 640px; margin-left: auto; margin-right: auto; }

.experience-strip { background: var(--bg-soft); border-radius: 12px; padding: 30px; text-align: center; margin-top: 28px; }
.experience-strip .label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate); margin-bottom: 18px; }
.experience-names { display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: center; }
.experience-names span { font-weight: 700; font-size: 15px; color: var(--blue-deep); transition: color 0.2s ease, transform 0.2s ease; display: inline-block; }
.experience-names span:hover { color: var(--blue); transform: translateY(-2px); }

/* STAT COUNTERS */
.stat-band { background: var(--blue-deep); color: var(--white); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
@media (max-width: 780px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: clamp(30px, 4vw, 40px); color: var(--amber); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.72); margin-top: 6px; line-height: 1.4; }

/* CTA BAND MID */
.cta-band-mid { background: var(--blue-deep); color: var(--white); text-align: center; padding: 56px 0; }
.cta-band-mid h3 { font-size: clamp(21px, 3vw, 28px); font-weight: 800; margin: 0 0 10px; }
.cta-band-mid p.small { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0 0 24px; }
.quote-card { max-width: 600px; margin: 0 auto; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 22px 26px; }
.quote-card p.q { font-size: 16px; line-height: 1.5; font-style: italic; margin: 0 0 10px; }
.quote-card .who { font-size: 12.5px; color: rgba(255,255,255,0.65); }
.quote-note { font-size: 11.5px; color: rgba(255,255,255,0.5); margin-top: 16px; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(11,31,58,0.08); }
.service-card .top { padding: 24px 22px 18px; border-bottom: 1px solid var(--line); }
.service-card h3 { font-size: 19px; font-weight: 800; margin: 0 0 8px; }
.service-card .top p { font-size: 13.5px; color: var(--slate); line-height: 1.5; margin: 0; }
.spec-block { padding: 14px 22px; border-bottom: 1px solid var(--line); }
.spec-block:last-child { border-bottom: none; }
.spec-label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--blue); margin-bottom: 7px; }
.spec-item { font-size: 13px; color: var(--ink); padding: 2px 0; }

/* WHY */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
.why-card h4 { font-size: 16.5px; font-weight: 800; margin: 0 0 9px; }
.why-card p { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* COMPARISON */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
@media (max-width: 700px) { .compare { grid-template-columns: 1fr; } }
.compare-col { background: var(--white); padding: 28px 26px; }
.compare-col.us { background: #EEF4FF; }
.compare-col h4 { font-size: 16px; font-weight: 800; margin: 0 0 16px; }
.compare-col ul { margin: 0; padding: 0; list-style: none; }
.compare-col li { font-size: 13.5px; padding: 8px 0; border-top: 1px solid var(--line); display: flex; gap: 10px; align-items: flex-start; }
.compare-col li:first-child { border-top: none; }
.compare-col.us li::before { content: "✓"; color: var(--green); font-weight: 800; }
.compare-col:not(.us) li::before { content: "–"; color: var(--slate); font-weight: 800; }

/* FAQ */
.faq-item { border-top: 1px solid var(--line); padding: 20px 0; cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h4 { font-size: 15.5px; font-weight: 700; margin: 0; display: flex; justify-content: space-between; align-items: center; }
.faq-item h4::after { content: "+"; font-size: 20px; color: var(--blue); transition: transform 0.2s ease; }
.faq-item.open h4::after { transform: rotate(45deg); }
.faq-answer { font-size: 14px; color: var(--slate); line-height: 1.6; margin: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, margin-top 0.3s ease; }
.faq-item.open .faq-answer { max-height: 200px; margin-top: 12px; }

/* CTA FINAL / FORM */
.cta-final { background: var(--bg-soft); border-radius: 16px; padding: 50px 40px; text-align: center; }
@media (max-width: 640px) { .cta-final { padding: 36px 20px; } }
.cta-final h2 { font-size: clamp(24px, 3.8vw, 34px); font-weight: 800; margin: 0 0 12px; }
.cta-final p { font-size: 15.5px; color: var(--slate); max-width: 480px; margin: 0 auto 26px; }
.form-field { margin-bottom: 14px; text-align: left; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; font-size: 14px; font-family: inherit; transition: border-color 0.15s ease; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--blue); }

footer { padding: 36px 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--slate); flex-wrap: wrap; gap: 12px; }

/* ICONS */
.icon-circle { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, #E8EFFE, #F5EFDD); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--blue); }
.icon-circle svg { width: 26px; height: 26px; }
.value-item .icon-circle, .why-card .icon-circle { margin-left: auto; margin-right: auto; }
.service-card .icon-circle { margin-left: 22px; margin-top: 22px; margin-bottom: 0; }
.stat-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--amber); }
.stat-icon svg { width: 20px; height: 20px; }

/* GRADIENT SECTION TINTS */
.section-tint-blue { background: linear-gradient(135deg, #EEF3FF 0%, #F8FAFF 60%, #FFFFFF 100%); }
.section-tint-warm { background: linear-gradient(135deg, #FFF7EA 0%, #FFFBF3 55%, #FFFFFF 100%); }

/* HERO PIPELINE GRAPHIC */
.hero-pipeline { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 48px; flex-wrap: wrap; }
.hero-pipeline .p-stage { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; min-width: 118px; text-align: center; box-shadow: 0 6px 18px rgba(11,31,58,0.06); transition: transform 0.2s ease; }
.hero-pipeline .p-stage:hover { transform: translateY(-4px); }
.hero-pipeline .p-stage.win { background: #EFFAF3; border-color: rgba(23,166,114,0.35); }
.hero-pipeline .p-stage .p-icon { width: 34px; height: 34px; border-radius: 10px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; color: var(--blue); }
.hero-pipeline .p-stage.win .p-icon { background: rgba(23,166,114,0.12); color: var(--green); }
.hero-pipeline .p-stage .p-icon svg { width: 18px; height: 18px; }
.hero-pipeline .p-stage .p-title { font-size: 12.5px; font-weight: 800; color: var(--ink); }
.hero-pipeline .p-stage .p-fact { font-size: 10.5px; color: var(--slate); margin-top: 3px; }
.hero-pipeline .p-arrow { color: var(--slate); opacity: 0.5; font-size: 16px; }
@media (max-width: 780px) { .hero-pipeline .p-arrow { display: none; } .hero-pipeline { gap: 12px; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }

/* NAV PHONE */
.nav-phone { display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--ink); text-decoration: none; margin-right: 18px; }
.nav-phone svg { width: 15px; height: 15px; color: var(--blue); }
.nav-phone:hover { color: var(--blue); }
@media (max-width: 920px) { .nav-phone { display: none; } }
.footer-links { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: var(--slate); font-weight: 600; }
.footer-links a:hover { color: var(--blue); }

/* TESTIMONIALS */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 26px; display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(11,31,58,0.08); }
.testimonial-card .quote-mark { font-family: 'Manrope', sans-serif; font-size: 40px; font-weight: 800; color: var(--blue); opacity: 0.25; line-height: 1; margin-bottom: 6px; }
.testimonial-card p.tq { font-size: 14.5px; line-height: 1.6; color: var(--ink); margin: 0 0 18px; flex-grow: 1; }
.testimonial-card .t-who { font-size: 13.5px; font-weight: 800; color: var(--blue-deep); }
.testimonial-card .t-role { font-size: 12.5px; color: var(--slate); margin-top: 2px; }
