:root{
  --bg:#f5f5f7;
  --surface:#ffffff;
  --text:#1d1d1f;
  --muted:#6e6e73;
  --line:rgba(0,0,0,.12);
  --shadow:0 12px 32px rgba(0,0,0,.10);
  --radius:22px;
  --blue:#0071e3;
  --blueHover:#0066cc;
  --max:1100px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "SF Pro Display","SF Pro Text", Segoe UI, Roboto, Arial;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:22px}
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(245,245,247,.85);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:14px}
.brand{font-weight:800; letter-spacing:.2px; display:flex; align-items:center; gap:10px;}
.brand-dot{
  width:10px;height:10px;border-radius:999px;background:var(--blue);
  box-shadow:0 0 0 6px rgba(0,113,227,.14);
}
.nav{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.nav a{
  font-size:14px; color:var(--muted);
  padding:8px 10px; border-radius:999px;
}
.nav a:hover{background:rgba(0,0,0,.04); color:var(--text)}
.nav .cta{color:#fff;background:var(--blue)}
.nav .cta:hover{background:var(--blueHover); color:#fff}
.hero{
  background:
    radial-gradient(900px 280px at 20% 0%, rgba(0,113,227,.20), transparent 60%),
    radial-gradient(900px 280px at 80% 0%, rgba(94,234,212,.20), transparent 60%),
    var(--surface);
  border:1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding:34px;
  box-shadow: var(--shadow);
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height:1.05;
  letter-spacing:-.02em;
}
.hero p{margin:0; max-width:70ch; color:var(--muted); line-height:1.6; font-size:16px;}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 16px; border-radius:999px;
  font-weight:700; border:1px solid transparent; cursor:pointer; user-select:none;
}
.btn.primary{background:var(--blue); color:#fff}
.btn.primary:hover{background:var(--blueHover)}
.btn.secondary{
  background:rgba(0,0,0,.04);
  border-color:rgba(0,0,0,.06);
  color:var(--text);
}
.btn.secondary:hover{background:rgba(0,0,0,.06)}
.pills{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.pill{
  font-size:13px; color:var(--muted);
  background:rgba(0,0,0,.03);
  border:1px solid rgba(0,0,0,.06);
  padding:8px 10px; border-radius:999px;
}
.section-title{margin:22px 0 8px; font-size:22px; letter-spacing:-.01em;}
.section-sub{margin:0 0 12px; color:var(--muted); line-height:1.6}
.grid{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.card h2{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted); line-height:1.6}
.price{margin-top:12px; font-weight:800}
.actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
.form{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
label{display:block; margin:12px 0 6px; color:var(--muted); font-size:13px; font-weight:700}
input,textarea,select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.16);
  background:#fff;
  color:var(--text);
  outline:none;
}
input:focus,textarea:focus,select:focus{
  border-color: rgba(0,113,227,.55);
  box-shadow: 0 0 0 4px rgba(0,113,227,.14);
}
.row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.badge{
  display:inline-flex; align-items:center;
  padding:6px 10px; border-radius:999px;
  font-size:13px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(0,0,0,.03);
  color:var(--muted);
  font-weight:700;
}
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:var(--radius);
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.table th,.table td{padding:12px; border-bottom:1px solid rgba(0,0,0,.08); text-align:left}
.table th{color:var(--muted); font-size:12px; text-transform:uppercase; letter-spacing:.08em; background:rgba(0,0,0,.02)}
.table tr:last-child td{border-bottom:none}
.footer{border-top:1px solid var(--line); margin-top:30px; padding:18px 0; color:var(--muted);}
.footer-inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}
@media (max-width: 920px){ .grid{grid-template-columns:1fr} .row{grid-template-columns:1fr} }
/* ===== Big Apple-style dropdowns ===== */

select{
  min-height: 52px;
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 600;
  cursor: pointer;
}

/* Bigger on desktop */
@media (min-width: 900px){
  select{
    min-height: 56px;
    font-size: 17px;
  }
}

/* Disabled look (still readable) */
select:disabled{
  opacity: .6;
  cursor: not-allowed;
}

/* Focus effect like Apple UI */
select:focus{
  border-color: rgba(0,113,227,.6);
  box-shadow: 0 0 0 4px rgba(0,113,227,.18);
}
label{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2px;
}
/* ===== Homepage layout (match mockup) ===== */
.section{margin-top:18px}

.heroSplit{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:18px;
  align-items:stretch;
}

.heroLeft h1{
  margin:0 0 10px;
  font-size: clamp(30px, 3.2vw, 52px);
  letter-spacing:-.02em;
}
.heroLeft p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:16px;
  max-width:70ch;
}

.heroPanel{
  background: linear-gradient(180deg, rgba(10,25,50,.92), rgba(6,18,40,.92));
  border:1px solid rgba(0,0,0,.12);
  border-radius: 22px;
  padding:18px;
  color:#fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.heroPanelTop{
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.heroPanelKicker{
  font-weight:900;
  font-size:18px;
}
.heroTrack{margin-top:14px; display:grid; gap:10px}
.heroTrack label{color:rgba(255,255,255,.85)}
.heroTrack input{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color:#fff;
}
.heroTrack input::placeholder{color:rgba(255,255,255,.65)}
.heroPanelList{margin-top:12px; display:grid; gap:8px; color:rgba(255,255,255,.86); font-weight:600}
.heroPanelLi{font-size:14px}

.trustRow{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  padding-top:14px;
  border-top:1px solid rgba(0,0,0,.08);
}
.trustItem{
  background: rgba(255,255,255,.70);
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:12px;
  display:flex;
  align-items:center;
  gap:10px;
}
.trustIcon{
  width:34px;height:34px;
  border-radius:12px;
  display:grid;place-items:center;
  background: rgba(0,113,227,.10);
  border:1px solid rgba(0,113,227,.18);
  color: var(--text);
  font-weight:900;
}
.trustTitle{font-weight:900; font-size:13px}

.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.statCard{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px;
  text-align:center;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.statNum{font-weight:900; font-size:22px}
.statLabel{margin-top:6px; color:var(--muted)}

.tiles{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:14px;
}
.tiles2{margin-top:14px}
.tile{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px;
  text-align:center;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.tile:hover{transform:translateY(-1px); transition:.15s ease}
.tileImg{
  height:120px;
  border-radius:16px;
  background: linear-gradient(135deg, rgba(0,113,227,.16), rgba(94,234,212,.16));
  border:1px solid rgba(0,0,0,.06);
  margin-bottom:12px;
}
.tileTitle{font-weight:900; font-size:18px}
.tileSub{color:var(--muted); margin-top:6px}

.faqGrid{
  max-width:900px;
  margin:14px auto 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.faqBox{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.faqQ{
  width:34px;height:34px;border-radius:999px;
  display:grid;place-items:center;
  font-weight:900;
  background: rgba(0,113,227,.10);
  border:1px solid rgba(0,113,227,.18);
}
.faqText{font-weight:800}

.ctaBar{
  margin-top:18px;
  background: linear-gradient(135deg, rgba(0,113,227,.12), rgba(94,234,212,.10)), var(--surface);
  border:1px solid var(--line);
  border-radius: 26px;
  padding:18px;
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.ctaTitle{font-weight:900; font-size:20px}
.ctaSub{color:var(--muted); margin-top:4px}
.ctaActions{display:flex; gap:10px; flex-wrap:wrap}

@media (max-width: 980px){
  .heroSplit{grid-template-columns:1fr}
  .trustRow{grid-template-columns:repeat(2,1fr)}
  .stats{grid-template-columns:repeat(2,1fr)}
  .tiles{grid-template-columns:1fr}
  .faqGrid{grid-template-columns:1fr}
}
/* ===== HOMEPAGE HERO (FORCE MOCKUP LOOK) ===== */
.hero.heroSplit{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:18px;
  align-items:stretch;
}

.heroLeft h1{
  margin:0 0 10px;
  font-size: clamp(30px, 3.2vw, 52px);
  letter-spacing:-.02em;
}
.heroLeft p{
  margin:0;
  color: var(--muted, #6e6e73);
  line-height:1.6;
  font-size:16px;
  max-width:70ch;
}

/* Right tracker panel (dark card like mockup) */
.heroPanel{
  background: linear-gradient(180deg, rgba(10,25,50,.94), rgba(6,18,40,.94));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 18px;
  color:#fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.heroPanelTop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.heroPanelKicker{
  font-weight:900;
  font-size:18px;
}
.heroPanelBadge{
  font-weight:900;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
}

.heroTrack{margin-top:14px; display:grid; gap:10px}
.heroTrack label{color:rgba(255,255,255,.85)}
.heroTrack input{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color:#fff;
}
.heroTrack input::placeholder{color:rgba(255,255,255,.65)}

.heroPanelList{
  margin-top:12px;
  display:grid;
  gap:8px;
  color:rgba(255,255,255,.88);
  font-weight:650;
}
.heroPanelLi{font-size:14px}

/* Trust cards under buttons */
.trustRow{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  padding-top:14px;
  border-top:1px solid rgba(0,0,0,.08);
}
.trustItem{
  background: rgba(255,255,255,.72);
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:12px;
  display:flex;
  align-items:center;
  gap:10px;
}
.trustIcon{
  width:34px;height:34px;
  border-radius:12px;
  display:grid;place-items:center;
  background: rgba(0,113,227,.12);
  border:1px solid rgba(0,113,227,.18);
  font-weight:900;
}
.trustTitle{
  font-weight:900;
  font-size:13px;
}

/* Mobile */
@media (max-width: 980px){
  .hero.heroSplit{grid-template-columns:1fr}
  .trustRow{grid-template-columns:repeat(2,1fr)}
}
.section{margin-top:22px}
.center{text-align:center}

.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.statCard{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px;
  text-align:center;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.statNum{font-weight:900;font-size:22px}
.statLabel{margin-top:6px;color:var(--muted)}

.tiles{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.tile{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px;
  text-align:center;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}
.tile:hover{transform:translateY(-1px);transition:.15s ease}
.tileImg{
  height:130px;
  border-radius:16px;
  background: linear-gradient(135deg, rgba(0,113,227,.16), rgba(94,234,212,.16));
  border:1px solid rgba(0,0,0,.06);
  margin-bottom:12px;
}
.tileTitle{font-weight:900;font-size:18px}
.tileSub{color:var(--muted);margin-top:6px;line-height:1.5}

.twoCol{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.soft{
  background:
    radial-gradient(700px 240px at 20% 0%, rgba(0,113,227,.16), transparent 60%),
    radial-gradient(700px 240px at 80% 0%, rgba(94,234,212,.16), transparent 60%),
    var(--surface);
}

.steps{margin-top:12px;display:grid;gap:12px}
.step{display:flex;gap:12px;align-items:flex-start}
.stepNum{
  width:30px;height:30px;border-radius:999px;
  display:grid;place-items:center;
  background:rgba(0,0,0,.04);
  border:1px solid rgba(0,0,0,.06);
  font-weight:900;
}
.stepTitle{font-weight:900}
.stepSub{color:var(--muted);margin-top:4px;line-height:1.5}

.reviewBox{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(0,0,0,.06);
}
.reviewBox:first-child{margin-top:0;padding-top:0;border-top:none}
.stars{letter-spacing:.12em}
.reviewText{margin-top:6px;font-weight:800}

.faq details{
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:12px 14px;
  background:#fff;
}
.faq details + details{margin-top:10px}
.faq summary{cursor:pointer;font-weight:900}
.faqBody{color:var(--muted);margin-top:8px;line-height:1.6}

.ctaBar{
  margin-top:22px;
  background: linear-gradient(135deg, rgba(0,113,227,.12), rgba(94,234,212,.10)), var(--surface);
  border:1px solid var(--line);
  border-radius:26px;
  padding:18px;
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.ctaTitle{font-weight:900;font-size:20px}
.ctaSub{color:var(--muted);margin-top:4px}
.ctaActions{display:flex;gap:10px;flex-wrap:wrap}

@media (max-width: 980px){
  .stats{grid-template-columns:repeat(2,1fr)}
  .tiles{grid-template-columns:1fr}
  .twoCol{grid-template-columns:1fr}
}

/* ===== FULL HOMEPAGE STYLING (paste at very bottom) ===== */
.section{margin-top:22px}
.center{text-align:center}

/* Stats */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.statCard{
  background:var(--surface,#fff);
  border:1px solid var(--line, rgba(0,0,0,.12));
  border-radius:22px;
  padding:16px;
  text-align:center;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}
.statNum{font-weight:900;font-size:22px;letter-spacing:-.01em}
.statLabel{margin-top:6px;color:var(--muted,#6e6e73)}

/* Tiles */
.tiles{margin-top:14px;display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.tile{
  background:var(--surface,#fff);
  border:1px solid var(--line, rgba(0,0,0,.12));
  border-radius:22px;
  padding:16px;
  text-align:center;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}
.tile:hover{transform:translateY(-1px);transition:.15s ease}
.tileImg{
  height:140px;
  border-radius:16px;
  background:
    radial-gradient(700px 220px at 25% 10%, rgba(0,113,227,.18), transparent 60%),
    radial-gradient(700px 220px at 75% 10%, rgba(94,234,212,.18), transparent 60%),
    linear-gradient(135deg, rgba(0,0,0,.04), rgba(0,0,0,.02));
  border:1px solid rgba(0,0,0,.06);
  margin-bottom:12px;
}
.tileTitle{font-weight:900;font-size:18px}
.tileSub{color:var(--muted,#6e6e73);margin-top:6px;line-height:1.5}

/* Two column area */
.twoCol{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.soft{
  background:
    radial-gradient(700px 240px at 20% 0%, rgba(0,113,227,.16), transparent 60%),
    radial-gradient(700px 240px at 80% 0%, rgba(94,234,212,.16), transparent 60%),
    var(--surface,#fff);
}

/* How it works */
.steps{margin-top:12px;display:grid;gap:12px}
.step{display:flex;gap:12px;align-items:flex-start}
.stepNum{
  width:30px;height:30px;border-radius:999px;
  display:grid;place-items:center;
  background:rgba(0,0,0,.04);
  border:1px solid rgba(0,0,0,.06);
  font-weight:900;
}
.stepTitle{font-weight:900}
.stepSub{color:var(--muted,#6e6e73);margin-top:4px;line-height:1.5}

/* Reviews */
.reviewBox{
  background: rgba(0,0,0,.02);
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:14px;
  margin-top:12px;
}
.reviewBox:first-child{margin-top:0}
.stars{letter-spacing:.12em;font-weight:900}
.reviewText{margin-top:6px;font-weight:800;line-height:1.5}
.mutedSmall{color:var(--muted,#6e6e73);font-size:12px;font-weight:700;margin-top:6px}

/* FAQ (accordion) */
.faq details{
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:12px 14px;
  background:#fff;
}
.faq details + details{margin-top:10px}
.faq summary{cursor:pointer;font-weight:900;list-style:none}
.faq summary::-webkit-details-marker{display:none}
.faqBody{color:var(--muted,#6e6e73);margin-top:8px;line-height:1.6}

/* CTA bar */
.ctaBar{
  margin-top:22px;
  background: linear-gradient(135deg, rgba(0,113,227,.12), rgba(94,234,212,.10)), var(--surface,#fff);
  border:1px solid var(--line, rgba(0,0,0,.12));
  border-radius:26px;
  padding:18px;
  box-shadow:0 12px 32px rgba(0,0,0,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.ctaTitle{font-weight:900;font-size:20px}
.ctaSub{color:var(--muted,#6e6e73);margin-top:4px}
.ctaActions{display:flex;gap:10px;flex-wrap:wrap}

/* Mobile */
@media (max-width: 980px){
  .stats{grid-template-columns:repeat(2,1fr)}
  .tiles{grid-template-columns:1fr}
  .twoCol{grid-template-columns:1fr}
}
