
:root {
  --purple:        #7C3AED;
  --purple-mid:    #9333EA;
  --purple-light:  #A855F7;
  --purple-soft:   #C084FC;
  --purple-pale:   #EDE9FE;
  --purple-bg:     #F5F3FF;
  --lavender:      #DDD6FE;
  --navy:          #1E1B4B;
  --navy-mid:      #312E81;
  --white:         #FFFFFF;
  --grey-50:       #F8F7FF;
  --grey-100:      #F0EEFF;
  --border:        #E8E4FF;
  --border-mid:    #C4B5FD;
  --text-dark:     #1A1033;
  --text-body:     #3D3558;
  --text-muted:    #6B5F8A;
  --text-light:    #9B8FBB;
  --success:       #16A34A;
  --success-bg:    #F0FDF4;
  --amber:         #D97706;
  --font-display:  'Syne', sans-serif;
  --font-body:     'Plus Jakarta Sans', sans-serif;
  --radius:        16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --shadow-sm:     0 2px 12px rgba(124,58,237,0.06);
  --shadow-md:     0 8px 32px rgba(124,58,237,0.10);
  --shadow-lg:     0 20px 60px rgba(124,58,237,0.14);
  --shadow-xl:     0 32px 80px rgba(124,58,237,0.18);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: #fff; color: var(--text-dark); overflow-x: hidden; line-height: 1.6; }

h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.1; color: var(--text-dark); }
.display-xl { font-size: clamp(3rem,6vw,5.5rem); font-weight:800; letter-spacing:-0.03em; }
.display-lg { font-size: clamp(2.2rem,4vw,3.8rem); font-weight:800; letter-spacing:-0.02em; }
.display-md { font-size: clamp(1.8rem,3vw,2.8rem); font-weight:700; letter-spacing:-0.02em; }

.text-gradient {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 50%, var(--purple-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-purple { color: var(--purple); }
.text-muted  { color: var(--text-muted); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

/* Nav */
.nav { position:fixed; top:0; left:0; right:0; z-index:1000; padding:16px 0; transition:all .4s; }
.nav.scrolled { background:rgba(255,255,255,.94); backdrop-filter:blur(20px); box-shadow:0 1px 0 var(--border),var(--shadow-sm); padding:12px 0; }
.nav-inner { display:flex; align-items:center; justify-content:space-between; max-width:1200px; margin:0 auto; padding:0 24px; }
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; font-family:var(--font-display); font-weight:800; font-size:1.4rem; color:var(--text-dark); }
.nav-logo-icon { width:36px; height:36px; background:linear-gradient(135deg,var(--purple),var(--purple-mid)); border-radius:10px; display:flex; align-items:center; justify-content:center; color:white; font-size:16px; font-weight:800; }
.nav-links { display:flex; align-items:center; gap:36px; list-style:none; }
.nav-links a { text-decoration:none; color:var(--text-muted); font-size:.9rem; font-weight:500; transition:color .2s; }
.nav-links a:hover { color:var(--purple); }
.nav-actions { display:flex; align-items:center; gap:12px; }

/* Buttons */
.btn { display:inline-flex; align-items:center; gap:8px; padding:12px 24px; border-radius:50px; font-family:var(--font-body); font-size:.9rem; font-weight:600; cursor:pointer; transition:all .3s; border:none; text-decoration:none; white-space:nowrap; }
.btn-primary { background:linear-gradient(135deg,var(--purple) 0%,var(--purple-mid) 100%); color:white; box-shadow:0 4px 16px rgba(124,58,237,.3); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(124,58,237,.45); }
.btn-lg  { padding:14px 32px; font-size:.95rem; }
.btn-xl  { padding:17px 40px; font-size:1rem; }
.btn-ghost { background:transparent; color:var(--text-muted); border:1.5px solid var(--border-mid); }
.btn-ghost:hover { border-color:var(--purple); color:var(--purple); background:var(--purple-pale); }
.btn-outline-purple { background:transparent; color:var(--purple); border:1.5px solid var(--purple); }
.btn-outline-purple:hover { background:var(--purple-pale); }
.btn-white { background:white; color:var(--purple); box-shadow:var(--shadow-md); }
.btn-white:hover { transform:translateY(-2px); box-shadow:var(--shadow-lg); }

/* Tags */
.tag { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; border-radius:50px; font-size:.75rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; }
.tag-purple { background:var(--purple-pale); color:var(--purple); border:1px solid var(--lavender); }
.tag-green  { background:var(--success-bg); color:var(--success); border:1px solid #BBF7D0; }

/* Cards */
.card { background:white; border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px; transition:all .3s; box-shadow:var(--shadow-sm); }
.card:hover { border-color:var(--lavender); transform:translateY(-4px); box-shadow:var(--shadow-lg); }

/* Phone frame */
.phone-frame { position:relative; display:inline-block; }
.phone-frame img { display:block; width:100%; border-radius:0; box-shadow:0 32px 72px rgba(124,58,237,.18), 0 12px 32px rgba(0,0,0,.14); }
.phone-frame::before { display:none; }
.phone-frame::after  { display:none; }
.phone-wrap { width:260px; }

/* Hero */
.hero {
  min-height:100vh; display:flex; align-items:center;
  position:relative; overflow:hidden; padding-top:90px;
  background: linear-gradient(160deg, #ffffff 0%, #F8F7FF 30%, #F0EEFF 55%, #F5F3FF 75%, #ffffff 100%);
}
.hero-blob { position:absolute; pointer-events:none; border-radius:50%; }
.hero-blob-1 { width:700px; height:700px; top:-200px; right:-150px; background:radial-gradient(circle,rgba(124,58,237,.1) 0%,transparent 70%); }
.hero-blob-2 { width:500px; height:500px; bottom:-100px; left:-150px; background:radial-gradient(circle,rgba(147,51,234,.07) 0%,transparent 70%); }
.hero-blob-3 { width:300px; height:300px; top:40%; left:35%; background:radial-gradient(circle,rgba(168,85,247,.05) 0%,transparent 70%); }

.hero-content { position:relative; z-index:2; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; max-width:1200px; margin:0 auto; padding:0 24px; width:100%; }

.hero-eyebrow { display:inline-flex; align-items:center; gap:8px; padding:7px 16px; background:white; border:1.5px solid var(--lavender); border-radius:50px; font-size:.78rem; font-weight:700; color:var(--purple); letter-spacing:.05em; text-transform:uppercase; margin-bottom:28px; box-shadow:0 2px 12px rgba(124,58,237,.1); }
.hero-eyebrow-dot { width:7px; height:7px; background:var(--purple-light); border-radius:50%; animation:pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }

.hero-title { font-size:clamp(2.8rem,5vw,4.8rem); font-weight:800; letter-spacing:-.03em; line-height:1.05; margin-bottom:24px; }
.hero-sub { font-size:1.1rem; color:var(--text-muted); line-height:1.75; margin-bottom:36px; }
.hero-cta-row { display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-bottom:36px; }
.hero-trust { display:flex; align-items:center; gap:24px; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:7px; font-size:.82rem; color:var(--text-muted); font-weight:500; }
.trust-check { width:18px; height:18px; border-radius:50%; background:var(--success-bg); border:1.5px solid #86EFAC; display:flex; align-items:center; justify-content:center; font-size:10px; color:var(--success); flex-shrink:0; }

.hero-visual { position:relative; display:flex; justify-content:center; align-items:center; }
.hero-phones { position:relative; height:580px; width:100%; }
.hero-phone-main { position:absolute; width:260px; left:50%; top:50%; transform:translate(-50%,-50%); z-index:3; animation:float-main 4s ease-in-out infinite; }
.hero-phone-left  { position:absolute; width:200px; left:0; top:50%; transform:translateY(-50%) rotate(-8deg); z-index:2; animation:float-left 5s ease-in-out infinite; opacity:.75; }
.hero-phone-right { position:absolute; width:200px; right:0; top:50%; transform:translateY(-50%) rotate(8deg); z-index:2; animation:float-right 4.5s ease-in-out infinite; opacity:.75; }
@keyframes float-main  { 0%,100%{transform:translate(-50%,-50%)} 50%{transform:translate(-50%,calc(-50% - 12px))} }
@keyframes float-left  { 0%,100%{transform:translateY(-50%) rotate(-8deg)} 50%{transform:translateY(calc(-50% - 8px)) rotate(-8deg)} }
@keyframes float-right { 0%,100%{transform:translateY(-50%) rotate(8deg)} 50%{transform:translateY(calc(-50% - 10px)) rotate(8deg)} }

.floating-chip { position:absolute; background:white; border:1.5px solid var(--border); border-radius:12px; padding:10px 16px; font-size:.78rem; font-weight:700; white-space:nowrap; z-index:10; box-shadow:var(--shadow-md); animation:chip-bob 3s ease-in-out infinite; color:var(--text-dark); }
.chip-1 { top:6%; right:4%; animation-delay:0s; color:var(--success); }
.chip-2 { top:32%; left:-2%; animation-delay:1s; color:var(--purple); }
.chip-3 { bottom:22%; right:-2%; animation-delay:.5s; color:var(--amber); }
@keyframes chip-bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* Section label */
.section-label { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.section-label-line { width:28px; height:2px; background:var(--purple); border-radius:2px; }
.section-label span { font-size:.73rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--purple); }

/* Stats */
.stats-row { display:flex; flex-wrap:wrap; background:white; border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); }
.stat-item { flex:1; min-width:160px; padding:28px 24px; text-align:center; border-right:1px solid var(--border); }
.stat-item:last-child { border-right:none; }
.stat-value { font-family:var(--font-display); font-size:1.9rem; font-weight:800; color:var(--purple); display:block; letter-spacing:-.03em; }
.stat-label { font-size:.8rem; color:var(--text-muted); margin-top:4px; }

/* Pain */
.pain-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; }
.pain-card { padding:32px; border-radius:var(--radius-lg); background:white; border:1px solid var(--border); box-shadow:var(--shadow-sm); position:relative; overflow:hidden; transition:all .3s; }
.pain-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--purple),var(--purple-light)); opacity:0; transition:opacity .3s; }
.pain-card:hover::after { opacity:1; }
.pain-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:var(--lavender); }
.pain-icon { width:52px; height:52px; border-radius:14px; background:var(--purple-pale); border:1px solid var(--lavender); display:flex; align-items:center; justify-content:center; font-size:24px; margin-bottom:20px; }
.pain-title { font-size:1.05rem; font-weight:700; margin-bottom:12px; }
.pain-body  { font-size:.9rem; color:var(--text-muted); line-height:1.7; }

/* Features */
.feature-row { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; margin-bottom:120px; }
.feature-row.reverse { direction:rtl; }
.feature-row.reverse > * { direction:ltr; }
.feature-number { font-size:.73rem; font-weight:700; letter-spacing:.1em; color:var(--purple); text-transform:uppercase; margin-bottom:16px; display:flex; align-items:center; gap:12px; }
.feature-number::before { content:''; width:24px; height:2px; background:var(--purple); border-radius:2px; }
.feature-title { font-size:clamp(1.6rem,2.5vw,2.3rem); font-weight:800; letter-spacing:-.02em; line-height:1.15; margin-bottom:20px; }
.feature-desc { font-size:1rem; color:var(--text-muted); line-height:1.8; margin-bottom:28px; }
.feature-bullets { list-style:none; display:flex; flex-direction:column; gap:12px; }
.feature-bullets li { display:flex; align-items:flex-start; gap:12px; font-size:.9rem; color:var(--text-body); }
.feature-bullets li::before { content:''; flex-shrink:0; width:20px; height:20px; border-radius:50%; margin-top:2px; background:var(--purple-pale); border:1.5px solid var(--lavender); background-image:url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%237C3AED' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:center; }
.feature-visual { display:flex; justify-content:center; position:relative; }
.feature-bg-blob { position:absolute; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle,rgba(124,58,237,.07) 0%,transparent 70%); pointer-events:none; z-index:0; }

/* Timeline */
.timeline-section { background:linear-gradient(160deg,var(--grey-50) 0%,var(--purple-pale) 50%,var(--grey-50) 100%); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.timeline-steps { display:grid; grid-template-columns:repeat(5,1fr); gap:0; position:relative; margin-top:60px; }
.timeline-steps::before { content:''; position:absolute; top:28px; left:10%; right:10%; height:2px; background:linear-gradient(90deg,var(--purple),var(--purple-light),var(--purple-soft),var(--purple-light),var(--purple)); z-index:0; }
.timeline-step { display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 16px; position:relative; z-index:1; }
.timeline-icon { width:56px; height:56px; border-radius:50%; background:white; border:2px solid var(--lavender); display:flex; align-items:center; justify-content:center; font-size:22px; margin-bottom:20px; box-shadow:0 4px 20px rgba(124,58,237,.12); transition:all .3s; }
.timeline-step:hover .timeline-icon { background:linear-gradient(135deg,var(--purple),var(--purple-mid)); border-color:var(--purple); box-shadow:0 8px 28px rgba(124,58,237,.3); transform:scale(1.1); }
.timeline-step-num { font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--purple); margin-bottom:8px; }
.timeline-step-title { font-family:var(--font-display); font-size:.95rem; font-weight:700; margin-bottom:8px; color:var(--text-dark); }
.timeline-step-desc { font-size:.8rem; color:var(--text-muted); line-height:1.55; }

/* ROI */
.roi-section { background:linear-gradient(135deg,var(--navy) 0%,#2D1D6E 50%,var(--navy-mid) 100%); border-radius:var(--radius-xl); padding:80px 60px; text-align:center; position:relative; overflow:hidden; box-shadow:var(--shadow-xl); }
.roi-section::before { content:''; position:absolute; top:-120px; left:50%; transform:translateX(-50%); width:500px; height:500px; background:radial-gradient(circle,rgba(168,85,247,.2) 0%,transparent 65%); pointer-events:none; }
.roi-section h2 { color:white; }
.roi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:rgba(255,255,255,.1); border-radius:var(--radius-lg); overflow:hidden; margin:48px auto; max-width:800px; }
.roi-cell { background:rgba(255,255,255,.06); padding:32px 24px; text-align:center; }
.roi-cell-label { font-size:.8rem; color:rgba(255,255,255,.6); margin-bottom:8px; font-weight:500; }
.roi-cell-value { font-family:var(--font-display); font-size:1.8rem; font-weight:800; color:white; }
.roi-cell-value.green  { color:#86EFAC; }
.roi-cell-value.purple { color:#C084FC; }
.roi-highlight { font-size:1.05rem; color:rgba(255,255,255,.75); max-width:620px; margin:0 auto 20px; line-height:1.75; }
.roi-big-quote { font-family:var(--font-display); font-size:clamp(1.3rem,2.5vw,1.9rem); font-weight:800; letter-spacing:-.02em; color:white; max-width:680px; margin:32px auto 0; line-height:1.35; }

/* Pricing */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; align-items:start; }
.pricing-card { background:white; border:1.5px solid var(--border); border-radius:var(--radius-xl); padding:36px 32px; position:relative; transition:all .3s; box-shadow:var(--shadow-sm); }
.pricing-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.pricing-card.featured { background:linear-gradient(145deg,var(--purple),var(--purple-mid)); border-color:transparent; box-shadow:var(--shadow-xl); transform:scale(1.03); }
.pricing-card.featured:hover { transform:scale(1.03) translateY(-6px); }
.pricing-card.featured .plan-name,.pricing-card.featured .plan-tagline,.pricing-card.featured .plan-price-period,.pricing-card.featured .plan-features li { color:rgba(255,255,255,.8) !important; }
.pricing-card.featured .plan-price-amount,.pricing-card.featured .plan-price-currency { color:white !important; }
.pricing-card.featured .feat-cross { color:rgba(255,255,255,.3) !important; }
.pricing-card.featured .plan-tagline { border-color:rgba(255,255,255,.15) !important; }
.popular-badge { position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:white; color:var(--purple); font-size:.72rem; font-weight:800; padding:5px 16px; border-radius:50px; letter-spacing:.06em; text-transform:uppercase; box-shadow:var(--shadow-md); }
.plan-name { font-family:var(--font-display); font-size:.9rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--text-muted); margin-bottom:16px; }
.plan-price { display:flex; align-items:baseline; gap:4px; margin-bottom:4px; }
.plan-price-amount { font-family:var(--font-display); font-size:3.2rem; font-weight:800; letter-spacing:-.04em; color:var(--text-dark); }
.plan-price-currency { font-size:1.1rem; color:var(--text-muted); font-weight:600; }
.plan-price-period { font-size:.88rem; color:var(--text-muted); }
.plan-tagline { font-size:.87rem; color:var(--text-muted); margin:16px 0 24px; padding-bottom:24px; border-bottom:1px solid var(--border); }
.plan-features { list-style:none; display:flex; flex-direction:column; gap:14px; margin-bottom:32px; }
.plan-features li { display:flex; align-items:center; gap:12px; font-size:.87rem; color:var(--text-body); }
.feat-check { color:var(--success); font-size:1rem; flex-shrink:0; font-weight:700; }
.feat-cross { color:var(--border-mid); font-size:1rem; flex-shrink:0; }
.feat-text-strong { color:var(--text-dark); font-weight:600; }

/* Compare table */
.compare-table { width:100%; border-collapse:collapse; margin-top:48px; }
.compare-table th,.compare-table td { padding:15px 20px; text-align:left; border-bottom:1px solid var(--border); font-size:.88rem; color:var(--text-body); }
.compare-table th { font-family:var(--font-display); font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--text-muted); padding-bottom:20px; background:var(--grey-50); }
.compare-table th:not(:first-child),.compare-table td:not(:first-child) { text-align:center; }
.compare-table th.plan-featured { color:var(--purple); background:var(--purple-pale); }
.compare-table td.plan-featured { background:rgba(124,58,237,.03); }
.compare-table tr:hover td { background:var(--grey-50); }
.compare-table .cat-row td { font-family:var(--font-display); font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--purple); padding-top:28px; padding-bottom:10px; background:var(--purple-pale) !important; }
.check { color:var(--success); font-size:1.1rem; font-weight:700; }
.cross { color:var(--border-mid); font-size:1rem; }
.feat-val { color:var(--purple); font-weight:700; }

/* FAQ */
.faq-list { max-width:760px; margin:48px auto 0; display:flex; flex-direction:column; }
.faq-item { border-bottom:1px solid var(--border); overflow:hidden; }
.faq-q { width:100%; background:none; border:none; color:var(--text-dark); text-align:left; padding:22px 0; font-family:var(--font-body); font-size:1rem; font-weight:600; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:16px; transition:color .2s; }
.faq-q:hover { color:var(--purple); }
.faq-icon { width:28px; height:28px; border-radius:50%; background:var(--purple-pale); border:1.5px solid var(--lavender); display:flex; align-items:center; justify-content:center; font-size:18px; color:var(--purple); flex-shrink:0; transition:all .3s; }
.faq-item.open .faq-icon { transform:rotate(45deg); background:var(--purple); color:white; border-color:var(--purple); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-item.open .faq-a { max-height:200px; }
.faq-a-inner { padding:0 0 22px; font-size:.92rem; color:var(--text-muted); line-height:1.8; }

/* CTA */
.cta-banner { background:linear-gradient(145deg,var(--navy) 0%,#3B1FA0 40%,var(--purple) 100%); border-radius:var(--radius-xl); padding:80px 60px; text-align:center; position:relative; overflow:hidden; box-shadow:var(--shadow-xl); }
.cta-banner::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 70% 70% at 50% 0%,rgba(168,85,247,.25),transparent); pointer-events:none; }
.cta-banner h2 { color:white; position:relative; z-index:1; }
.cta-banner-subtitle { font-size:1.05rem; color:rgba(255,255,255,.75); margin:16px auto 36px; max-width:500px; line-height:1.7; position:relative; z-index:1; }

/* Download */
.download-row { display:flex; align-items:center; gap:16px; flex-wrap:wrap; justify-content:center; margin-top:28px; }
.store-badge { display:flex; align-items:center; gap:10px; padding:12px 20px; background:rgba(255,255,255,.12); border:1.5px solid rgba(255,255,255,.25); border-radius:14px; text-decoration:none; color:white; transition:all .3s; font-size:.85rem; }
.store-badge:hover { background:rgba(255,255,255,.2); transform:translateY(-2px); }
.store-badge-icon { font-size:24px; }
.store-badge-text { display:flex; flex-direction:column; }
.store-badge-sub  { font-size:.68rem; opacity:.7; }
.store-badge-name { font-weight:700; font-size:.95rem; }

/* Info cards */
.info-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.info-card { background:white; border:1.5px solid var(--border); border-radius:var(--radius-lg); padding:32px; box-shadow:var(--shadow-sm); transition:all .3s; }
.info-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:var(--lavender); }
.info-card-icon { font-size:2rem; margin-bottom:16px; }
.info-card h4 { font-size:1.05rem; font-weight:700; margin-bottom:10px; }
.info-card p  { font-size:.88rem; color:var(--text-muted); line-height:1.7; }

/* Page hero */
.page-hero { padding:140px 0 80px; text-align:center; position:relative; overflow:hidden; background:linear-gradient(160deg,white 0%,var(--grey-50) 40%,var(--purple-pale) 80%,var(--grey-50) 100%); }
.page-hero::before { content:''; position:absolute; top:-80px; left:50%; transform:translateX(-50%); width:600px; height:400px; background:radial-gradient(ellipse,rgba(124,58,237,.1) 0%,transparent 70%); pointer-events:none; }

/* Legal */
.legal-content { max-width:800px; margin:0 auto; padding:0 24px; }
.legal-content h2 { font-size:1.35rem; font-weight:700; margin:48px 0 14px; }
.legal-content h2:first-child { margin-top:0; }
.legal-content p { font-size:.95rem; color:var(--text-body); line-height:1.85; margin-bottom:16px; }
.legal-content ul { padding-left:20px; margin-bottom:16px; }
.legal-content li { font-size:.95rem; color:var(--text-body); line-height:1.8; margin-bottom:8px; }
.legal-update { display:inline-block; padding:6px 14px; background:var(--purple-pale); border:1px solid var(--lavender); border-radius:8px; font-size:.82rem; color:var(--purple); font-weight:600; margin-bottom:40px; }

/* Footer */
.footer { background:var(--text-dark); color:white; padding:64px 0 32px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:56px; }
.footer-brand-desc { font-size:.87rem; color:rgba(255,255,255,.5); line-height:1.75; margin-top:16px; max-width:260px; }
.footer-col-title { font-size:.78rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:20px; font-family:var(--font-display); }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:12px; }
.footer-links a { font-size:.88rem; color:rgba(255,255,255,.55); text-decoration:none; transition:color .2s; }
.footer-links a:hover { color:white; }
.footer-bottom { padding-top:28px; border-top:1px solid rgba(255,255,255,.08); display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.footer-bottom-text { font-size:.82rem; color:rgba(255,255,255,.3); }
.footer-bottom-links { display:flex; gap:24px; }
.footer-bottom-links a { font-size:.82rem; color:rgba(255,255,255,.3); text-decoration:none; }
.footer-bottom-links a:hover { color:rgba(255,255,255,.6); }

/* Scroll reveal */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .7s ease,transform .7s ease; }
.reveal.from-left  { transform:translateX(-36px); }
.reveal.from-right { transform:translateX(36px); }
.reveal.visible    { opacity:1; transform:translate(0,0); }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }
.reveal-delay-4 { transition-delay:.4s; }

/* Mobile */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; border:none; background:none; padding:8px; }
.hamburger span { width:24px; height:2px; background:var(--text-dark); border-radius:2px; display:block; }
.mobile-menu { display:none; position:fixed; inset:0; background:rgba(255,255,255,.98); backdrop-filter:blur(20px); z-index:999; flex-direction:column; align-items:center; justify-content:center; gap:32px; }
.mobile-menu.open { display:flex; }
.mobile-menu a { font-family:var(--font-display); font-size:2rem; font-weight:700; color:var(--text-dark); text-decoration:none; opacity:.8; transition:all .2s; }
.mobile-menu a:hover { opacity:1; color:var(--purple); }
.mobile-close { position:absolute; top:24px; right:24px; background:none; border:none; color:var(--text-dark); font-size:28px; cursor:pointer; }

/* Gradient band */
.gradient-band { background:linear-gradient(135deg,var(--purple-pale) 0%,var(--grey-100) 50%,var(--purple-pale) 100%); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }

/* ═══════════════════════════════════════════
   RESPONSIVE — Complete mobile overhaul
   ═══════════════════════════════════════════ */

/* ── 1024px Tablet ── */
@media(max-width:1024px){
  section { padding:80px 0; }
  .container { padding:0 20px; }

  /* Nav */
  .nav-links { display:none; }
  .hamburger { display:flex; }

  /* Hero */
  .hero-content { grid-template-columns:1fr; text-align:center; gap:40px; }
  .hero-cta-row,.hero-trust { justify-content:center; }
  .hero-visual { margin-top:0; }
  .hero-phones { height:380px; }
  .hero-phone-main { width:200px; }
  .hero-phone-left,.hero-phone-right { width:150px; }
  .floating-chip { font-size:.7rem; padding:8px 12px; }
  .chip-1 { top:4%; right:0; }
  .chip-2 { top:30%; left:0; }
  .chip-3 { bottom:20%; right:0; }

  /* Stats */
  .stats-inner { grid-template-columns:repeat(2,1fr); }
  .stats-inner .stat-block:nth-child(2) { border-right:none; }
  .stats-inner .stat-block:nth-child(3) { border-top:1px solid var(--border); }
  .stats-inner .stat-block:nth-child(4) { border-top:1px solid var(--border); }

  /* Pain */
  .pain-grid { grid-template-columns:1fr; }

  /* Timeline */
  .timeline-steps { grid-template-columns:1fr; gap:0; }
  .timeline-steps::before { display:none; }
  .timeline-step {
    flex-direction:row; text-align:left;
    gap:20px; align-items:flex-start;
    padding:24px 0;
    border-bottom:1px solid var(--border);
  }
  .timeline-icon { margin-bottom:0; flex-shrink:0; width:48px; height:48px; font-size:20px; }

  /* ROI */
  .roi-section { padding:48px 24px; }
  .roi-grid { grid-template-columns:1fr; gap:2px; }

  /* Info */
  .info-grid { grid-template-columns:1fr; }

  /* Pricing */
  .pricing-grid {
    grid-template-columns:1fr;
    max-width:460px;
    margin-left:auto; margin-right:auto;
  }
  .pricing-card.featured { transform:none; }
  .pricing-card.featured:hover { transform:translateY(-6px); }

  /* Footer */
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
}

/* ── 768px Small Tablet / Large Phone ── */
@media(max-width:768px){
  section { padding:64px 0; }

  /* Hero */
  .hero-phones { height:320px; }
  .hero-phone-main { width:170px; }
  .hero-phone-left { width:128px; left:0; }
  .hero-phone-right { width:128px; right:0; }
  .hero-title { font-size:clamp(2.4rem,8vw,3.6rem); }
  .hero-sub { font-size:1rem; }
  .hero-cta-row { flex-direction:column; align-items:center; gap:12px; }
  .hero-cta-row .btn { width:100%; max-width:320px; justify-content:center; }
  .hero-trust { gap:16px; }
  .trust-item { font-size:.78rem; }
  .floating-chip { display:none; }

  /* Stats - stay 2 cols */
  .stat-block { padding:24px 16px; }
  .stat-num { font-size:1.8rem; }

  /* Display sizes */
  .display-md { font-size:clamp(1.5rem,5vw,2.2rem); }
  .display-lg { font-size:clamp(1.8rem,5vw,2.6rem); }
  .display-xl { font-size:clamp(2.2rem,7vw,3.2rem); }

  /* Pain cards */
  .pain-grid { grid-template-columns:1fr; gap:16px; }
  .pain-card { padding:24px; }

  /* CTA */
  .cta-banner { padding:48px 24px; }
  .cta-banner h2 { font-size:clamp(1.5rem,5vw,2rem) !important; }

  /* ROI quote */
  .roi-big-quote { font-size:1.2rem !important; }

  /* Footer */
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .footer-bottom { flex-direction:column; text-align:center; gap:12px; }
  .footer-brand-desc { max-width:100%; }

  /* Page hero */
  .page-hero { padding:110px 0 56px; }
}

/* ── 480px Mobile ── */
@media(max-width:480px){
  section { padding:56px 0; }
  .container { padding:0 16px; }

  /* Hero - hide side phones, show only center */
  .hero-phones { height:420px; }
  .hero-phone-main { width:220px; left:50%; top:50%; transform:translate(-50%,-50%); }
  .hero-phone-left,.hero-phone-right { display:none; }

  /* Stats - 2 col stays */
  .stats-inner { grid-template-columns:1fr 1fr; }
  .stat-block { padding:20px 12px; gap:8px; }
  .stat-icon-wrap { width:40px; height:40px; font-size:20px; border-radius:10px; }
  .stat-num { font-size:1.5rem; }
  .stat-desc { font-size:.72rem; }

  /* Section labels */
  .section-label { justify-content:center; }

  /* Pain */
  .pain-card { padding:20px; }
  .pain-icon { width:44px; height:44px; font-size:20px; margin-bottom:14px; }
  .pain-title { font-size:1rem; }
  .pain-body { font-size:.87rem; }

  /* Timeline */
  .timeline-icon { width:40px; height:40px; font-size:18px; }
  .timeline-step-title { font-size:.9rem; }
  .timeline-step-desc { font-size:.78rem; }

  /* ROI */
  .roi-section { padding:40px 20px; border-radius:var(--radius-lg); }
  .roi-cell { padding:20px 16px; }
  .roi-cell-value { font-size:1.7rem !important; }
  .roi-cell-label { font-size:.72rem; }
  .roi-highlight { font-size:.92rem; }

  /* Info cards */
  .info-card { padding:24px 20px; }

  /* CTA */
  .cta-banner { padding:40px 20px; border-radius:var(--radius-lg); }
  .store-badges-row { gap:10px; }
  .store-badge-real { min-width:140px; padding:10px 16px; }

  /* FAQ */
  .faq-q { font-size:.92rem; padding:18px 0; }

  /* Footer */
  .footer { padding:48px 0 28px; }
  .footer-grid { gap:24px; }
  .footer-col-title { margin-bottom:14px; }
  .footer-links { gap:10px; }
  .footer-bottom-links { gap:16px; }

  /* Pricing cards */
  .pricing-card { padding:28px 22px; }
  .plan-price-amount { font-size:2.6rem; }

  /* Page hero */
  .page-hero { padding:96px 0 48px; }
}

/* ── 380px Small phones ── */
@media(max-width:380px){
  .hero-phone-main { width:190px; }
  .stat-num { font-size:1.3rem; }
  .display-md { font-size:1.5rem; }
}

