/* ============================== Fonts ============================== */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/outfit-variable.woff2') format('woff2-variations');
}

/* ============================== Reset ============================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

/* ============================== Tokens ============================== */
:root {
  --navy: #122741;
  --dark: #08172B;
  --blue: #0652BF;
  --bluelt: #7FB0FF;
  --grey: #5F5F5F;
  --white: #FFFFFF;
  --light: #F7F9FC;
  --line: #E1E8F0;

  --font: 'Outfit', system-ui, sans-serif;
  --max-w: 1180px;
  --max-w-lg: 1500px;

  --space-1: 8px; --space-2: 16px; --space-3: 24px; --space-4: 32px;
  --space-5: 48px; --space-6: 64px; --space-7: 100px;
}

body {
  font-family: var(--font);
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  line-height: 1.5;
}

h1, h2, h3, h4 { font-weight: 500; text-transform: none; letter-spacing: normal; line-height: 1.15; }

/* ============================== Layout ============================== */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.wrap-lg { max-width: var(--max-w-lg); margin: 0 auto; padding: 0 20px; }
.section { padding: var(--space-7) 0; }
@media (max-width: 780px) { .section { padding: var(--space-6) 0; } }
.center { text-align: center; max-width: 760px; margin: 0 auto; }

.eyebrow { text-transform: uppercase; letter-spacing: .4px; font-weight: 600; font-size: 15px; color: var(--blue); }
.eyebrow.on-dark { color: var(--bluelt); }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--blue); color: var(--white);
  padding: 12px 20px; z-index: 200; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ============================== Buttons ============================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; font-weight: 500; letter-spacing: -.2px;
  border-radius: 3px; padding: 11px 18px; font-size: 15px; text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: opacity .2s, background .2s;
}
.btn:hover { opacity: .88; }
.btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); padding: 12px 22px; }
.btn-sm { font-size: 13.5px; padding: 10px 16px; }

/* ============================== Header ============================== */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap-lg { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 24px; }
.site-header .logo img { height: 42px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav > ul { display: flex; align-items: center; gap: 28px; }
.site-nav a { font-weight: 600; font-size: 14.5px; letter-spacing: -.1px; color: var(--navy); }
.site-nav > ul > li { position: relative; }
.nav-caret { display: inline-block; margin-left: 4px; transition: transform .2s; }
.has-children:hover .nav-caret,
.has-children:focus-within .nav-caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: -14px; min-width: 220px; background: var(--white);
  display: flex; flex-direction: column; gap: 2px;
  border: 1px solid var(--line); border-radius: 8px; padding: 8px; box-shadow: 0 18px 40px rgba(18,39,65,.12);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s, transform .18s, visibility .18s;
}
.has-children:hover .dropdown,
.has-children:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 9px 12px; border-radius: 6px; font-weight: 500; }
.dropdown li a:hover { background: var(--light); color: var(--blue); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta a { display: flex; flex-direction: column; line-height: 1.25; }
.header-cta .call-label { font-size: 11.5px; font-weight: 600; letter-spacing: .3px; text-transform: uppercase; color: var(--grey); }
.header-cta .call-number { font-size: 16px; font-weight: 600; color: var(--navy); }

.nav-toggle { display: none; position: relative; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-menu { display: none; }
.nav-toggle.is-open .icon-close { display: block; }
@media (max-width: 900px) {
  .site-nav { position: fixed; inset: 0; top: 74px; background: var(--white); flex-direction: column; align-items: stretch;
    padding: var(--space-3); transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .site-nav > ul > li > a { display: block; padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0;
    display: none; padding-left: var(--space-2); }
  .has-children.is-expanded .dropdown { display: block; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
  .header-cta .call-label { display: none; }
}

/* ============================== Footer ============================== */
.site-footer { background: var(--dark); color: #C8D6EA; padding: var(--space-6) 0 var(--space-3); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: var(--space-4); padding-bottom: var(--space-5); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .logo img { height: 36px; width: auto; margin-bottom: var(--space-2); }
.site-footer h3 { color: var(--white); font-size: 15px; letter-spacing: .3px; text-transform: uppercase; margin-bottom: var(--space-2); }
.footer-list li { margin-bottom: 12px; font-size: 14.5px; }
.footer-list a:hover { color: var(--white); }
.footer-list .icon-line { display: flex; align-items: flex-start; gap: 10px; }
.footer-list .icon-line svg { flex: none; margin-top: 3px; color: var(--bluelt); }
.footer-social { display: flex; gap: 10px; margin-bottom: var(--space-3); }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s;
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: var(--space-3); text-align: center; font-size: 13px; color: #7B8CA3; }

/* ============================== Icon boxes (shared) ============================== */
.icon-box { width: 44px; height: 44px; border-radius: 10px; background: var(--light); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(18,39,65,.06); }

/* ============================== Reveal-on-scroll ============================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.68,0,1.01); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================== Hero ============================== */
.hero { position: relative; min-height: 640px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; background: rgba(8,23,43,.74); z-index: 1; }
.hero-inner { position: relative; z-index: 2; padding: 70px 0 60px; width: 100%; }
.hero h1 { font-size: 64px; line-height: 1.02; letter-spacing: -1.5px; font-weight: 500; color: var(--white); }
.hero h1.accent { color: #4C8DFF; }
.hero p { max-width: 560px; color: #C8D6EA; font-size: 17px; line-height: 1.6; margin-top: 22px; }
.hero .btn-row { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.stars { display: inline-flex; gap: 3px; color: #F5B400; font-size: 19px; }
.hero-stat { margin-top: 18px; display: flex; align-items: center; gap: 10px; }
.hero-stat span { color: rgba(255,255,255,.75); font-size: 14.5px; }
@media (max-width: 780px) { .hero h1 { font-size: 38px; } .hero { min-height: 560px; } }

/* ============================== Dark / light text sections ============================== */
.section-dark { background: var(--dark); }
.section-dark h2 { color: var(--white); }
.section-dark p { color: #9FB3CC; }
.center h2 { font-size: 34px; letter-spacing: -.6px; line-height: 1.2; margin-top: 16px; }
.center p { font-size: 16px; line-height: 1.65; margin-top: 16px; }

/* ============================== Service slider ============================== */
.svc-outer { position: relative; padding: 0 0 20px; }
.svc-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 4px 20px 20px; -ms-overflow-style: none; scrollbar-width: none; }
.svc-track::-webkit-scrollbar { display: none; }
.svc-card { scroll-snap-align: start; flex: 0 0 330px; min-height: 640px; border-radius: 10px; padding: 30px 26px;
  display: flex; flex-direction: column; justify-content: flex-start; color: var(--white); position: relative; }
.svc-card .card-media { position: absolute; inset: 0; z-index: 0; border-radius: 10px; overflow: hidden; }
.svc-card .card-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-card .card-media::after { content: ''; position: absolute; inset: 0; background: rgba(8,23,43,.62); }
.svc-card > * { position: relative; z-index: 1; }
.svc-hook { text-transform: uppercase; font-size: 13.5px; font-weight: 600; letter-spacing: .3px; color: var(--bluelt); }
.svc-card h3 { font-size: 27px; letter-spacing: -.4px; margin-top: 10px; color: var(--white); }
.svc-card p { font-size: 15px; line-height: 1.55; color: #DCE6F5; margin-top: 10px; margin-bottom: 18px; }
.svc-card .btn { margin-top: auto; align-self: flex-start; }
.svc-arrow { position: absolute; top: 50%; margin-top: -22px; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white); color: var(--navy); font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 20; box-shadow: 0 6px 18px rgba(18,39,65,.12); }
.svc-arrow:hover { background: var(--light); }
.svc-prev { left: 8px; } .svc-next { right: 8px; }
.svc-dots { display: flex; justify-content: center; gap: 8px; margin-top: 6px; }
.svc-dot { width: 8px; height: 8px; border-radius: 50%; background: #DCE2E8; border: 0; padding: 0; cursor: pointer; transition: background .2s, transform .2s; }
.svc-dot.active { background: var(--blue); transform: scale(1.3); }
@media (max-width: 640px) { .svc-card { flex-basis: 270px; min-height: 560px; } .svc-arrow { width: 36px; height: 36px; font-size: 16px; } }

/* ============================== 3-step ============================== */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 56px; }
.step .num { font-size: 15px; font-weight: 600; color: var(--blue); }
.step h3 { font-size: 21px; letter-spacing: -.3px; margin-top: 10px; }
.step p { font-size: 15px; line-height: 1.6; color: var(--grey); margin-top: 10px; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; gap: 32px; } }

/* ============================== Feature cards (F.I.L section) ============================== */
.section-light { background: var(--light); }
.feature-row { display: flex; gap: 50px; flex-wrap: wrap; align-items: center; }
.feature-left { flex: 1 1 380px; }
.feature-left h2 { font-size: 32px; letter-spacing: -.5px; margin-top: 16px; }
.feature-left p { font-size: 16px; line-height: 1.65; color: var(--grey); margin-top: 16px; }
.feature-cards { flex: 1 1 480px; display: flex; flex-wrap: wrap; gap: 18px; }
.feature-card { flex: 1 1 220px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 28px 26px; }
.feature-card h3 { font-size: 18px; letter-spacing: -.2px; margin-top: 16px; }
.feature-card p { font-size: 14.5px; line-height: 1.6; color: var(--grey); margin-top: 8px; }

/* ============================== Who we are ============================== */
.who-row { display: flex; gap: 60px; flex-wrap: wrap; align-items: center; }
.who-img { flex: 1 1 420px; }
.who-img img { width: 100%; border-radius: 10px; display: block; }
.who-text { flex: 1 1 420px; }
.who-text h2 { font-size: 34px; letter-spacing: -.6px; line-height: 1.15; margin-top: 16px; }
.who-text p { font-size: 16px; line-height: 1.65; color: var(--grey); margin-top: 18px; }
.who-cards { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 50px; }
.who-card { flex: 1 1 320px; background: var(--light); border-radius: 10px; padding: 30px 28px; transition: transform .25s ease; }
.who-card:hover { transform: translateY(-4px); }
.who-card h3 { font-size: 21px; letter-spacing: -.3px; }
.who-card p { font-size: 15px; line-height: 1.6; color: var(--grey); margin-top: 12px; margin-bottom: 18px; }
.who-card a { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 600; font-size: 14.5px; }

/* ============================== Reviews ============================== */
.stars-lg { font-size: 26px; justify-content: center; }
.reviews-stat { text-align: center; font-size: 22px; letter-spacing: -.3px; margin-top: 14px; }
.rv-wrap { position: relative; max-width: 1100px; margin: 56px auto 0; padding: 0 70px; }
.rv-track { position: relative; height: 280px; }
.rv-card { position: absolute; top: 0; left: 50%; width: 480px; max-width: 80vw; background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 30px 32px; box-shadow: 0 18px 40px rgba(18,39,65,.10);
  transition: transform .55s cubic-bezier(.22,.68,0,1.01), opacity .55s ease; }
.rv-stars { color: #F5B400; font-size: 16px; letter-spacing: 2px; }
.rv-quote { color: #3A4658; font-size: 15.5px; line-height: 1.6; margin: 14px 0 18px; display: -webkit-box;
  -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.rv-foot { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--line); padding-top: 14px; }
.rv-name { font-weight: 500; color: var(--navy); font-size: 14.5px; }
.rv-src { font-size: 12px; color: var(--blue); font-weight: 500; }
.rv-arrow { position: absolute; top: 50%; margin-top: -22px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--white); color: var(--navy); font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 20; }
.rv-arrow:hover { background: var(--light); }
.rv-prev { left: 0; } .rv-next { right: 0; }
.rv-dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.rv-dot { width: 8px; height: 8px; border-radius: 50%; background: #DCE2E8; border: 0; padding: 0; cursor: pointer; transition: background .2s, transform .2s; }
.rv-dot.active { background: var(--blue); transform: scale(1.3); }
@media (max-width: 640px) { .rv-wrap { padding: 0 50px; } .rv-arrow { width: 36px; height: 36px; font-size: 18px; } }
.reviews-cta { text-align: center; margin-top: 44px; }

/* ============================== Objection / FAQ cards ============================== */
.oc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: var(--max-w-lg); margin: 56px auto 0; padding: 0 20px; }
.oc-card { border-radius: 12px; padding: 26px 28px; }
.oc-card .icon-box { background: var(--white); margin-bottom: 16px; }
.oc-q { font-size: 17px; font-weight: 500; letter-spacing: -.2px; color: var(--navy); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.oc-q::-webkit-details-marker { display: none; }
.oc-q::after { content: '+'; font-size: 20px; color: var(--blue); flex: none; transition: transform .2s; }
details[open] > .oc-q::after { content: '\2212'; }
.oc-a { font-size: 14.5px; line-height: 1.65; color: var(--grey); margin: 14px 0 0; }
@media (max-width: 780px) { .oc-grid { grid-template-columns: 1fr; } }

.faq-list { max-width: 820px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item .oc-q { font-size: 16.5px; }
.faq-item .oc-a { padding-right: 30px; }

/* ============================== Guarantee ============================== */
.guarantee { background: var(--navy); text-align: center; }
.guarantee h2 { color: var(--white); font-size: 32px; letter-spacing: -.5px; margin-top: 16px; }
.guarantee p { color: #9FB3CC; font-size: 16px; line-height: 1.65; max-width: 680px; margin: 16px auto 0; }
.guarantee .icon-box { margin: 0 auto; background: rgba(255,255,255,.08); width: 56px; height: 56px; }

/* ============================== Final CTA + form ============================== */
.cta-row { display: flex; gap: 60px; flex-wrap: wrap; align-items: center; }
.cta-left { flex: 1 1 380px; }
.cta-left h2 { color: var(--white); font-size: 34px; letter-spacing: -.5px; line-height: 1.15; }
.cta-left p { color: #9FB3CC; font-size: 16px; line-height: 1.65; margin-top: 16px; max-width: 460px; }
.cta-right { flex: 1 1 420px; }
.quote-form { background: var(--white); border-radius: 10px; padding: 30px; box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.quote-form .field-row { display: flex; gap: 14px; margin-bottom: 14px; }
.quote-form .field-row > * { flex: 1; }
.quote-form input, .quote-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: 12px 14px; font: inherit; font-size: 14.5px;
  margin-bottom: 14px; color: var(--navy); background: var(--white);
}
.quote-form input:focus, .quote-form textarea:focus { outline: 2px solid var(--blue); outline-offset: 1px; }
.quote-form textarea { resize: vertical; min-height: 90px; }
.quote-form button { width: 100%; padding: 14px; font-size: 14.5px; font-weight: 600; letter-spacing: .3px; text-transform: uppercase; }
