/* ---------- Tokens ---------- */
:root {
  --white: #FFFFFF;
  --tint: #EAF2FD;
  --tint-2: #DCEBFC;
  --navy: #0B2A4A;
  --navy-2: #0F3868;
  --blue: #1657D0;
  --blue-dark: #103F9C;
  --blue-light: #4C8DF0;
  --text: #1B2430;
  --text-soft: #56606E;

  --font-display: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius: 10px;
  --max: 1160px;
  --shadow-card: 0 1px 2px rgba(11,42,74,0.06), 0 12px 28px rgba(11,42,74,0.08);
  --shadow-card-hover: 0 4px 10px rgba(11,42,74,0.08), 0 22px 40px rgba(11,42,74,0.14);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; position: relative; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--blue); color: var(--white);
  padding: 10px 16px; z-index: 300; font-size: 0.9rem;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
}

/* ---------- Custom cursor ---------- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}
.cursor-dot.is-ready { opacity: 0.85; }
.cursor-dot.is-active {
  width: 34px;
  height: 34px;
  background: var(--blue-light);
  opacity: 0.55;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: var(--white); box-shadow: 0 10px 24px rgba(22,87,208,0.28); }
.btn-blue:hover { background: var(--blue-dark); }
.btn-outline-blue { border-color: var(--blue); color: var(--blue); }
.btn-outline-blue:hover { background: var(--tint); }
.btn-outline-white { border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { background: var(--tint); }
.btn-small { padding: 10px 18px; font-size: 0.82rem; }
.btn-large { padding: 17px 30px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(11,42,74,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* ---------- Brand / logo ---------- */
.brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-right: auto;
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand-bring { color: var(--navy); }
.brand-bring-footer { color: var(--white); }
.brand-offer { color: var(--blue); }
.brand-swoosh { width: 92px; height: 10px; margin-left: 1px; }
.brand-footer .brand-swoosh { width: 100px; }

.site-nav {
  display: flex;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 500;
}
.site-nav a { color: var(--text-soft); transition: color 0.15s ease; }
.site-nav a:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  width: 100%;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 4px 28px 20px;
}
.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(11,42,74,0.08);
  font-weight: 500;
}
.mobile-nav .btn { margin-top: 14px; }
.mobile-nav.is-open { display: flex; }

@media (max-width: 900px) {
  .site-nav, .header-inner > .btn { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 130px;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 26s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(6,20,38,0.94) 10%, rgba(9,32,59,0.82) 45%, rgba(11,42,74,0.55) 80%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  opacity: 0.5;
}
.blob-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--blue-light), transparent 70%);
  top: -80px; right: 8%;
  animation: floatA 16s ease-in-out infinite alternate;
}
.blob-2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, var(--blue), transparent 70%);
  bottom: -60px; left: 4%;
  animation: floatB 20s ease-in-out infinite alternate;
}
@keyframes floatA {
  from { transform: translate(0, 0); }
  to { transform: translate(-30px, 40px); }
}
@keyframes floatB {
  from { transform: translate(0, 0); }
  to { transform: translate(24px, -30px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: left;
}
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 20px;
}
.eyebrow-dark { color: var(--blue); }
.eyebrow-on-photo { color: rgba(255,255,255,0.92); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 18ch;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-sub {
  max-width: 52ch;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.86);
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 70px;
  z-index: 1;
}

@media (max-width: 640px) {
  .hero { padding-top: 120px; padding-bottom: 90px; }
  .hero-wave { height: 40px; }
}

/* ---------- Sections (shared) ---------- */
.section { padding: 88px 0; }
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 20ch;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-title-light { color: var(--white); }
.section-lede {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 54ch;
  margin-bottom: 48px;
}
.section-lede-light { color: rgba(255,255,255,0.85); }

/* ---------- Stats ---------- */
.stats { background: var(--navy); padding: 64px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat { color: var(--white); transition-delay: 0.05s; }
.stat:nth-child(2) { transition-delay: 0.15s; }
.stat:nth-child(3) { transition-delay: 0.25s; }
.stat .icon-badge { margin: 0 auto 18px; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.78);
  max-width: 26ch;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Problem ---------- */
.problem { background: var(--tint); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.problem-card:nth-child(2) { transition-delay: 0.1s; }
.problem-card:nth-child(3) { transition-delay: 0.2s; }
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.problem-card p { color: var(--text-soft); font-size: 0.96rem; }

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ---------- Services ---------- */
.services { background: var(--white); }
.services-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.services-copy .section-lede { margin-bottom: 0; }
.services-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  aspect-ratio: 4 / 5;
}
.services-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--tint);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.icon { width: 36px; height: 36px; color: var(--blue); }

.icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(22,87,208,0.28);
  margin-bottom: 22px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.icon-badge .icon { width: 30px; height: 30px; color: var(--white); margin: 0; }
.service-card:hover .icon-badge,
.problem-card:hover .icon-badge,
.why-card:hover .icon-badge {
  transform: scale(1.08) rotate(-4deg);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p { color: var(--text-soft); font-size: 0.98rem; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-intro { grid-template-columns: 1fr; }
  .services-image { order: -1; aspect-ratio: 16 / 10; }
}

/* ---------- Why ---------- */
.why { position: relative; color: var(--white); isolation: isolate; }
.why-media { position: absolute; inset: 0; z-index: -2; }
.why-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(6,18,34,0.94) 20%, rgba(11,42,74,0.88) 55%, rgba(16,63,116,0.7) 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.why-card:nth-child(2) { transition-delay: 0.1s; }
.why-card:nth-child(3) { transition-delay: 0.2s; }
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.13); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p { color: rgba(255,255,255,0.82); font-size: 0.96rem; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---------- How it works ---------- */
.how { background: var(--tint); }
.how-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 40px 0 40px;
  position: relative;
}
.step {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: rgba(22,87,208,0.25);
}
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 6px 16px rgba(22,87,208,0.3);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step p { color: var(--text-soft); font-size: 0.96rem; }

.fee-note {
  font-size: 0.9rem;
  color: var(--text-soft);
  border-left: 2px solid var(--blue-light);
  padding: 4px 0 4px 16px;
  margin-bottom: 28px;
  max-width: 46ch;
}

.how-media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  aspect-ratio: 4 / 5;
}
.how-media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .how-layout { grid-template-columns: 1fr; }
  .how-media { order: -1; aspect-ratio: 16 / 10; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.faq-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  aspect-ratio: 4 / 5;
  position: sticky;
  top: 100px;
}
.faq-image img { width: 100%; height: 100%; object-fit: cover; object-position: 35% 18%; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-item {
  border: 1px solid rgba(11,42,74,0.12);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color 0.15s ease;
}
.faq-item:hover { border-color: rgba(22,87,208,0.35); }
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: var(--blue);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-image { order: -1; aspect-ratio: 16 / 10; position: static; }
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  background: var(--blue-dark);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.final-cta-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,63,156,0.92) 0%, rgba(22,87,208,0.86) 100%);
}
.final-cta .blob { opacity: 0.35; z-index: -1; }
.blob-3 { width: 320px; height: 320px; top: -100px; left: -60px; background: radial-gradient(circle, var(--white), transparent 70%); animation: floatA 18s ease-in-out infinite alternate; }
.blob-4 { width: 280px; height: 280px; bottom: -100px; right: -40px; background: radial-gradient(circle, var(--blue-light), transparent 70%); animation: floatB 22s ease-in-out infinite alternate; }
.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  position: relative;
  z-index: 1;
}
.final-cta .section-title { max-width: none; margin-bottom: 16px; }
.final-cta-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  margin-bottom: 32px;
}

/* ---------- Contact ---------- */
.contact { background: var(--tint); text-align: center; }
.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 560px;
}
.contact .section-title { max-width: none; }
.contact .section-lede { max-width: none; }
.contact-email {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--blue);
  border-bottom: 2px solid var(--blue-light);
  padding-bottom: 2px;
  transition: color 0.15s ease;
}
.contact-email:hover { color: var(--blue-dark); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: 32px;
}
.footer-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  margin-top: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.94rem;
}
.footer-nav a, .footer-link-btn {
  color: rgba(255,255,255,0.85);
  transition: color 0.15s ease;
}
.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font-size: inherit;
}
.footer-nav a:hover, .footer-link-btn:hover { color: var(--blue-light); }
.footer-location p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.footer-copy { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ---------- Floating CTA ---------- */
.fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 15px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(22,87,208,0.35);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.fab:hover { background: var(--blue-dark); transform: translateY(-2px); }
.fab svg { width: 20px; height: 20px; flex-shrink: 0; }

@media (max-width: 560px) {
  .fab span { display: none; }
  .fab { padding: 15px; border-radius: 50%; }
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11,42,74,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.modal h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.modal-sub {
  color: var(--text-soft);
  font-size: 0.98rem;
  margin-bottom: 26px;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--tint);
  border-radius: 50%;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close svg { width: 16px; height: 16px; }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.field em { color: var(--text-soft); font-weight: 400; font-style: normal; }
.field input {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 12px 14px;
  border: 1.5px solid rgba(11,42,74,0.18);
  border-radius: 8px;
  color: var(--text);
}
.field input:focus { border-color: var(--blue); outline: none; }
.form-error {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #B3261E;
  text-align: center;
}
.form-error a { text-decoration: underline; }
.modal-privacy {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: center;
}
