:root {
  --primary: #FF5A36; --primary-dark: #E0421F; --primary-soft: #FFEDE7;
  --ink: #16161D; --ink2: #55556A; --ink3: #9C9CAD; --line: #EEEBE7;
  --bg: #FFFFFF; --bg-soft: #FAF7F4; --go: #10B39F; --women: #8E5CF7; --women-soft: #F3EDFF;
  --r: 20px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 16px/1.6 "Plus Jakarta Sans", system-ui, -apple-system, sans-serif; }
a { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--ink); text-decoration: none; letter-spacing: -0.02em; }
.brand img { width: 34px; height: 34px; border-radius: 10px; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--ink2); text-decoration: none; font-weight: 600; font-size: 15px; }
.btn { display: inline-flex; align-items: center; gap: 10px; height: 52px; padding: 0 24px; border-radius: 999px; background: var(--ink); color: #fff !important; font-weight: 700; text-decoration: none; border: 0; font-size: 16px; }
.btn.primary { background: var(--primary); box-shadow: 0 10px 24px -10px rgba(255, 90, 54, .7); }
.btn.small { height: 40px; padding: 0 18px; font-size: 14px; }
.btn svg { width: 22px; height: 22px; }

.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding-top: 40px; padding-bottom: 80px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--primary-soft); color: var(--primary-dark); font-weight: 700; font-size: 13px; padding: 6px 12px; border-radius: 999px; }
h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.02; letter-spacing: -0.04em; margin: 18px 0; font-weight: 800; }
h1 em { font-style: normal; color: var(--primary); }
.lead { font-size: 19px; color: var(--ink2); max-width: 34ch; margin: 0 0 28px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.note { color: var(--ink3); font-size: 14px; }

.phone { justify-self: center; width: 300px; height: 610px; border-radius: 46px; background: #111; padding: 12px; box-shadow: 0 40px 80px -30px rgba(22, 22, 29, .45); position: relative; }
.screen { width: 100%; height: 100%; border-radius: 36px; overflow: hidden; position: relative;
  background: linear-gradient(0deg, rgba(255,255,255,.2), rgba(255,255,255,.2)), repeating-linear-gradient(35deg, #EEF0F2 0 2px, transparent 2px 60px), repeating-linear-gradient(-55deg, #EEF0F2 0 3px, transparent 3px 80px), #F6F6F4; }
.pin { position: absolute; display: flex; align-items: center; gap: 4px; background: #fff; border-radius: 999px; padding: 4px 8px 4px 4px; font-size: 13px; font-weight: 700; box-shadow: 0 6px 16px -6px rgba(0,0,0,.25); animation: bob 4s ease-in-out infinite; }
.pin i { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-style: normal; background: var(--primary-soft); }
.pin:nth-child(2) { animation-delay: -1s } .pin:nth-child(3) { animation-delay: -2s } .pin:nth-child(4) { animation-delay: -3s }
@keyframes bob { 50% { transform: translateY(-6px) } }
.sheet { position: absolute; left: 0; right: 0; bottom: 0; height: 58%; background: #fff; border-radius: 26px 26px 0 0; padding: 10px 14px; box-shadow: 0 -10px 30px -12px rgba(0,0,0,.2); }
.grab { width: 40px; height: 5px; border-radius: 3px; background: var(--line); margin: 0 auto 10px; }
.sheet h4 { margin: 0 0 8px; font-size: 16px; }
.card { display: flex; gap: 10px; padding: 10px; border: 1px solid var(--line); border-radius: 16px; margin-bottom: 8px; }
.card .e { width: 44px; height: 44px; border-radius: 12px; background: var(--primary-soft); display: grid; place-items: center; font-size: 22px; flex: none; }
.card b { display: block; font-size: 13px; line-height: 1.3; }
.card small { color: var(--ink3); font-size: 11px; }
.dots { display: flex; margin-top: 4px; } .dots span { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #fff; margin-left: -5px; } .dots span:first-child { margin-left: 0 }

section { padding: 80px 0; }
section.soft { background: var(--bg-soft); }
h2 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -0.03em; line-height: 1.1; margin: 0 0 14px; }
.sub { color: var(--ink2); font-size: 18px; max-width: 56ch; margin: 0 0 40px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px; }
.feat .ic { font-size: 30px; margin-bottom: 10px; }
.feat h3 { margin: 0 0 6px; font-size: 19px; }
.feat p { margin: 0; color: var(--ink2); }
.steps { counter-reset: s; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { position: relative; padding-top: 54px; }
.step::before { counter-increment: s; content: counter(s); position: absolute; top: 0; left: 0; width: 40px; height: 40px; border-radius: 12px; background: var(--primary); color: #fff; font-weight: 800; display: grid; place-items: center; }
.step h3 { margin: 0 0 6px; } .step p { margin: 0; color: var(--ink2); }
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 760px; }
.plan { border: 1px solid var(--line); border-radius: var(--r); padding: 28px; background: #fff; }
.plan.plus { border: 2px solid var(--primary); }
.plan h3 { margin: 0; font-size: 22px; } .plan .price { font-size: 15px; color: var(--ink2); margin: 4px 0 16px; }
.plan ul { margin: 0; padding: 0; list-style: none; } .plan li { padding: 6px 0 6px 28px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--go); font-weight: 800; }
details { border-bottom: 1px solid var(--line); padding: 18px 0; }
summary { cursor: pointer; font-weight: 700; font-size: 17px; list-style: none; } summary::-webkit-details-marker { display: none }
summary::after { content: "+"; float: right; color: var(--ink3); } details[open] summary::after { content: "–" }
details p { color: var(--ink2); margin: 10px 0 0; }
.band { background: linear-gradient(135deg, #FF7A4F, #FF4A2E); color: #fff; border-radius: 32px; padding: 56px 40px; text-align: center; }
.band h2 { color: #fff; } .band p { opacity: .9; font-size: 18px; margin: 0 0 26px; }
.band .btn { background: #fff; color: var(--ink) !important; }
footer { padding: 40px 0 60px; color: var(--ink3); font-size: 14px; }
footer .row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
footer a { color: var(--ink2); text-decoration: none; margin-right: 18px; }

/* Legal / document pages */
.doc { max-width: 760px; padding: 20px 20px 80px; }
.doc h1 { font-size: clamp(34px, 5vw, 48px); }
.doc h2 { font-size: 24px; margin-top: 40px; }
.doc h3 { font-size: 18px; margin-top: 26px; }
.doc p, .doc li { color: #33333F; }
.doc .updated { color: var(--ink3); }
.callout { background: var(--primary-soft); border-radius: 16px; padding: 18px 20px; margin: 20px 0; }
.callout.women { background: var(--women-soft); }
table { border-collapse: collapse; width: 100%; font-size: 15px; margin: 12px 0; display: block; overflow-x: auto; }
th, td { border: 1px solid var(--line); padding: 10px; text-align: left; vertical-align: top; }
th { background: var(--bg-soft); }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 10px; }
  .phone { width: 270px; height: 550px; }
  .grid3, .steps, .plans { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  section { padding: 60px 0; }
  .band { padding: 44px 22px; }
}
