/* ==========================================================================
   Deep Clean — Landing page styles
   Recreated from design handoff (design_handoff_deep_clean_landing).
   Design tokens are kept 1:1 with the handoff. Fonts: Sora + Plus Jakarta Sans.
   ========================================================================== */

:root {
  /* Brand blues */
  --blue: #0B7FD4;
  --blue-dark: #0B62B0;
  --blue-dark-2: #0A62A8;
  --blue-bright: #0E90EE;
  --blue-bright-2: #1793E6;

  /* Ink / text */
  --ink: #0B1F3A;
  --text: #4A5A72;
  --text-2: #5A6A82;
  --text-3: #2C3B52;
  --muted: #7787A0;
  --muted-2: #7C90AC;
  --nav-link: #42536B;

  /* Tints / section backgrounds */
  --tint: #EAF4FC;
  --tint-2: #E3F1FC;
  --bg-1: #F7FBFE;
  --bg-2: #FBFDFF;
  --bg-3: #F5FAFE;
  --glow: #CFE8FB;
  --glow-2: #DDEEFB;

  /* Borders */
  --border-1: #E9F0F6;
  --border-2: #E7EFF6;
  --border-3: #EEF3F8;
  --border-4: #DCEBF7;
  --border-5: #EAF1F7;

  /* Footer */
  --footer-bg: #0B1F3A;
  --footer-text: #C4D2E4;
  --footer-link: #93A6BF;
  --footer-muted: #7C90AC;
  --footer-border: #16304F;
  --footer-chip-border: #1E3A5F;
  --footer-chip-bg: #12294A;

  /* Accents */
  --phone-body: #0B1F3A;
  --phone-body-blue: #08284A;
  --phone-inner-blue: #0A3568;
  --gold: #E0A62E;
  --green: #12B76A;

  /* Shadows */
  --shadow-card: 0 24px 44px -22px rgba(11, 31, 58, 0.22);
  --shadow-step: 0 20px 40px -28px rgba(11, 31, 58, 0.18);
  --shadow-btn: 0 6px 16px rgba(11, 127, 212, 0.28);
  --shadow-phone: 0 40px 80px -24px rgba(11, 31, 58, 0.45);
  --shadow-float: 0 18px 40px -12px rgba(11, 31, 58, 0.28);

  --maxw: 1200px;
  --pad-x: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark-2); }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: 'Sora', system-ui, sans-serif; }
::selection { background: var(--blue); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.page { width: 100%; overflow-x: hidden; }

/* Brand logo mark (droplet + sparkle) — colored via currentColor */
.logo-mark { width: 38px; height: 38px; flex: none; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }

/* Store badges */
.badges { display: flex; gap: 14px; flex-wrap: wrap; }
.badge-img { height: 52px; width: auto; transition: transform .15s ease; }
.badge-link { display: inline-block; transition: transform .15s ease; }
.badge-link:hover { transform: translateY(-2px); }

/* Eyebrow / section header */
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto; }
.section-head h2 { font-weight: 800; font-size: 42px; letter-spacing: -0.025em; margin-top: 12px; text-wrap: balance; }
.section-head p { font-size: 17.5px; line-height: 1.6; color: var(--text); margin-top: 14px; }
section h2 { font-family: 'Sora', sans-serif; }

/* Check icon circle */
.check-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--tint); display: inline-flex; align-items: center; justify-content: center; flex: none; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-1);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 16px; padding-bottom: 16px; }
.nav .brand { color: var(--ink); }
.nav .logo-mark { color: var(--blue-dark); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--nav-link); font-weight: 500; font-size: 15px; }
.nav__links a:hover { color: var(--blue); }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone { color: var(--ink); font-weight: 600; font-size: 15px; }
.btn-primary {
  background: var(--blue); color: #fff; font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: 11px; box-shadow: var(--shadow-btn);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover { color: #fff; transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 620px at 78% -6%, var(--tint-2) 0%, rgba(227, 241, 252, 0) 60%),
    linear-gradient(180deg, var(--bg-1) 0%, #fff 100%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding: 76px 0 84px; }
.pill {
  display: inline-flex; align-items: center; gap: 9px; background: #fff;
  border: 1px solid var(--border-4); padding: 7px 14px; border-radius: 100px;
  box-shadow: 0 3px 10px rgba(11, 31, 58, 0.04);
}
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.pill span:last-child { font-size: 13px; font-weight: 600; color: var(--nav-link); letter-spacing: 0.01em; }
.hero h1 { font-weight: 800; font-size: 60px; line-height: 1.04; letter-spacing: -0.03em; margin-top: 22px; text-wrap: balance; }
.hero h1 .accent { color: var(--blue); }
.hero__sub { font-size: 19px; line-height: 1.6; color: var(--text); margin-top: 22px; max-width: 498px; }
.hero .badges { margin-top: 32px; }
.trust { display: flex; align-items: center; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.trust__item { display: flex; align-items: center; gap: 8px; }
.trust__item span:last-child { font-size: 14.5px; font-weight: 600; color: var(--nav-link); }

/* Phone mockup */
.phone-col { display: flex; justify-content: center; position: relative; }
.phone {
  position: relative; z-index: 1; background: var(--phone-body);
  border-radius: 46px; padding: 12px;
  box-shadow: var(--shadow-phone), 0 0 0 1px rgba(11, 31, 58, 0.06);
}
.phone__screen { width: 100%; height: 100%; border-radius: 36px; overflow: hidden; background: var(--tint); position: relative; }
.phone__screen img { width: 100%; height: 100%; object-fit: cover; }
.phone__notch { position: absolute; top: 26px; left: 50%; transform: translateX(-50%); width: 112px; height: 28px; background: var(--phone-body); border-radius: 16px; z-index: 3; }
.hero__phone { width: 298px; height: 610px; }
.phone-glow { position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, var(--glow), rgba(207, 232, 251, 0) 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0; }
.float-card {
  position: absolute; z-index: 2; background: #fff; border-radius: 16px;
  padding: 13px 16px; box-shadow: var(--shadow-float);
  display: flex; align-items: center; gap: 11px;
}
.float-card--top { right: -4px; top: 86px; }
.float-card--bottom { left: -8px; bottom: 96px; }
.float-card__icon { width: 34px; height: 34px; border-radius: 10px; background: var(--tint); display: flex; align-items: center; justify-content: center; flex: none; }
.float-card__title { font-size: 13px; font-weight: 700; font-family: 'Sora', sans-serif; line-height: 1.2; }
.float-card__sub { font-size: 12px; color: var(--muted); line-height: 1.2; }
.stars { display: flex; gap: 2px; }

/* ===== STAT STRIP ===== */
.stats { border-top: 1px solid var(--border-3); border-bottom: 1px solid var(--border-3); background: var(--bg-2); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; padding: 30px 0; max-width: 1100px; margin: 0 auto; }
.stats__value { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 34px; letter-spacing: -0.02em; }
.stats__label { font-size: 14px; color: var(--muted); font-weight: 500; margin-top: 2px; }

/* ===== SERVICES ===== */
.services { padding: 96px 0 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.card {
  background: #fff; border: 1px solid var(--border-2); border-radius: 20px; padding: 30px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card--hoverable:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card__icon { width: 52px; height: 52px; border-radius: 15px; background: var(--tint); display: flex; align-items: center; justify-content: center; color: var(--blue); }
.card h3 { font-weight: 700; font-size: 20px; margin-top: 20px; }
.card p { font-size: 15px; line-height: 1.6; color: var(--text-2); margin-top: 9px; }

/* ===== HOW IT WORKS ===== */
.how { background: linear-gradient(180deg, #fff, var(--bg-3)); margin-top: 70px; padding: 92px 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.step { position: relative; background: #fff; border: 1px solid var(--border-2); border-radius: 22px; padding: 34px 30px; box-shadow: var(--shadow-step); }
.step__num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 15px; color: var(--blue); letter-spacing: 0.06em; }
.step h3 { font-weight: 700; font-size: 22px; margin-top: 14px; }
.step p { font-size: 15.5px; line-height: 1.62; color: var(--text-2); margin-top: 10px; }

/* ===== WHY ===== */
.why { padding: 96px 0; }
.why__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center; }
.why__phone-wrap { display: flex; justify-content: center; position: relative; }
.why__glow { position: absolute; inset: 0; background: radial-gradient(400px 400px at 50% 40%, var(--glow-2), rgba(221, 238, 251, 0) 70%); z-index: 0; }
.why__phone { width: 270px; height: 556px; border-radius: 44px; padding: 11px; box-shadow: 0 40px 80px -28px rgba(11, 31, 58, 0.42); }
.why__phone .phone__screen { border-radius: 34px; }
.why__phone .phone__notch { top: 24px; width: 100px; height: 26px; border-radius: 14px; }
.why h2 { margin-top: 12px; font-weight: 800; font-size: 42px; letter-spacing: -0.025em; text-wrap: balance; }
.why__intro { font-size: 17.5px; line-height: 1.6; color: var(--text); margin-top: 14px; max-width: 520px; }
.why__list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
.feature { display: flex; gap: 14px; }
.feature__icon { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--tint); display: flex; align-items: center; justify-content: center; color: var(--blue); }
.feature h4 { font-weight: 700; font-size: 17px; }
.feature p { font-size: 14.5px; color: var(--text-2); line-height: 1.55; margin-top: 5px; }

/* ===== APP SHOWCASE (blue band) ===== */
.showcase { background: linear-gradient(180deg, var(--blue-dark), var(--blue)); color: #fff; }
.showcase__inner { padding: 88px 0 0; text-align: center; }
.showcase .eyebrow { color: #BFE1F8; }
.showcase h2 { font-weight: 800; font-size: 42px; letter-spacing: -0.025em; margin-top: 12px; text-wrap: balance; }
.showcase__intro { font-size: 17.5px; line-height: 1.6; color: #DBEEFB; margin-top: 14px; max-width: 600px; margin-left: auto; margin-right: auto; }
.showcase__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 58px; align-items: end; }
.showcase__item { display: flex; flex-direction: column; align-items: center; }
.showcase__item--center { transform: translateY(-26px); }
.showcase__phone { background: var(--phone-body-blue); border-radius: 40px; padding: 10px; box-shadow: 0 40px 70px -30px rgba(0, 0, 0, 0.5); }
.showcase__phone .phone__screen { border-radius: 31px; background: var(--phone-inner-blue); }
.showcase__item--side .showcase__phone { width: 240px; height: 492px; }
.showcase__item--center .showcase__phone { width: 250px; height: 512px; border-radius: 42px; box-shadow: 0 46px 80px -30px rgba(0, 0, 0, 0.55); }
.showcase__item--center .phone__screen { border-radius: 33px; }
.showcase__caption { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16px; margin-top: 22px; }
.showcase__spacer { height: 80px; }

/* ===== TESTIMONIALS ===== */
.testi { padding: 96px 0; }
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.testi__card { background: #fff; border: 1px solid var(--border-2); border-radius: 20px; padding: 30px; box-shadow: 0 18px 40px -30px rgba(11, 31, 58, 0.2); }
.testi__quote { font-size: 16px; line-height: 1.62; color: var(--text-3); margin-top: 16px; }
.testi__who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--tint); display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 700; color: var(--blue); }
.testi__name { font-weight: 700; font-size: 15px; }
.testi__city { font-size: 13px; color: var(--muted); }

/* ===== SERVICE AREAS ===== */
.areas { background: var(--bg-3); border-top: 1px solid var(--border-5); padding: 92px 0; }
.areas__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.area-card { background: #fff; border: 1px solid var(--border-2); border-radius: 20px; padding: 32px; }
.area-card__head { display: flex; align-items: center; gap: 11px; }
.area-card__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--blue); }
.area-card h3 { font-weight: 700; font-size: 22px; }
.area-card p { font-size: 15px; color: var(--text-2); line-height: 1.6; margin-top: 16px; }

/* ===== DOWNLOAD CTA ===== */
.cta { padding: 96px 0; }
.cta__card {
  background: radial-gradient(900px 500px at 85% 0%, var(--blue-bright) 0%, var(--blue-dark) 55%);
  border-radius: 32px; padding: 64px 56px; display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 40px; align-items: center; overflow: hidden; position: relative;
}
.cta__card h2 { font-weight: 800; font-size: 44px; line-height: 1.08; letter-spacing: -0.025em; color: #fff; text-wrap: balance; }
.cta__card p { font-size: 18px; line-height: 1.6; color: #DBEEFB; margin-top: 16px; max-width: 480px; }
.cta .badges { margin-top: 30px; }
.cta__phone-wrap { display: flex; justify-content: flex-end; }
.cta__phone { width: 210px; height: 430px; background: var(--phone-body-blue); border-radius: 38px; padding: 9px; box-shadow: 0 40px 70px -26px rgba(0, 0, 0, 0.5); }
.cta__phone .phone__screen { border-radius: 30px; background: var(--phone-inner-blue); }

/* ===== FOOTER ===== */
.footer { background: var(--footer-bg); color: var(--footer-text); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 0 30px; }
.footer .brand { color: #fff; }
.footer .logo-mark { color: #fff; }
.footer__blurb { font-size: 14.5px; line-height: 1.6; margin-top: 16px; max-width: 280px; color: var(--footer-link); }
.footer__chips { display: flex; gap: 12px; margin-top: 22px; }
.footer__chip { background: var(--footer-chip-bg); border: 1px solid var(--footer-chip-border); color: #fff; font-size: 13px; font-weight: 600; padding: 9px 15px; border-radius: 10px; }
.footer__chip:hover { color: #fff; }
.footer__col-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px; color: #fff; letter-spacing: 0.02em; }
.footer__links { display: flex; flex-direction: column; gap: 11px; margin-top: 16px; }
.footer__links a, .footer__links span { color: var(--footer-link); font-size: 14.5px; line-height: 1.55; }
.footer__links a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid var(--footer-border); max-width: var(--maxw); margin: 0 auto; padding: 22px var(--pad-x); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer__bottom span { font-size: 13.5px; color: var(--footer-muted); }

/* ===== LEGAL / PROSE PAGES ===== */
.prose-hero { background: linear-gradient(180deg, var(--bg-1), #fff); padding: 64px 0 40px; }
.prose-hero h1 { font-size: 44px; font-weight: 800; letter-spacing: -0.025em; }
.prose-hero p { color: var(--text); font-size: 16px; margin-top: 12px; }
.prose { max-width: 820px; margin: 0 auto; padding: 40px var(--pad-x) 80px; }
.prose h2 { font-size: 26px; font-weight: 700; margin-top: 36px; margin-bottom: 12px; color: var(--ink); }
.prose h3 { font-size: 19px; font-weight: 700; margin-top: 24px; margin-bottom: 8px; color: var(--ink); }
.prose p { font-size: 16px; line-height: 1.7; color: var(--text-3); margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 14px 22px; }
.prose li { font-size: 16px; line-height: 1.7; color: var(--text-3); margin-bottom: 6px; }
.prose a { color: var(--blue); text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 940px) {
  .nav__links { display: none !important; }
  .hero__grid { grid-template-columns: 1fr !important; gap: 48px !important; }
  .hero h1 { font-size: 46px !important; }
  .why__grid { grid-template-columns: 1fr !important; gap: 44px !important; }
  .grid-3, .steps, .testi__grid, .areas__grid, .showcase__grid { grid-template-columns: 1fr 1fr !important; }
  .showcase__item--center { transform: none !important; }
  .cta__card { grid-template-columns: 1fr !important; }
  .cta__phone-wrap { justify-content: center !important; }
  .footer__grid { grid-template-columns: 1fr 1fr !important; }
  .why__list { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .phone-col, .float-card { display: none !important; }
  .hero h1 { font-size: 38px !important; }
  .grid-3, .steps, .testi__grid, .areas__grid, .showcase__grid, .stats__grid, .footer__grid { grid-template-columns: 1fr !important; }
  .stats__grid { gap: 28px !important; }
  section h2, .section-head h2, .why h2, .showcase h2 { font-size: 32px !important; }
  .cta__card { padding: 40px 28px; }
  .cta__card h2 { font-size: 34px; }
  .prose-hero h1 { font-size: 34px; }
}
