/* ==========================================================
   GoreAd.io clone — design system
   ========================================================== */

:root{
  --ink:        #14142B;
  --ink-soft:   #4B4A63;
  --muted:      #6E6D85;
  --bg:         #FFFFFF;
  --peach:      #FEF1EA;
  --line:       #ECE7E2;

  --orange:     #FF6A33;
  --orange-dark:#E8431F;
  --orange-2:   #FF9557;

  --ig-1: #833AB4;
  --ig-2: #C13584;
  --ig-3: #FD1D1D;
  --ig-4: #F77737;

  --tt-dark: #14142B;
  --tt-cyan: #25F4EE;
  --tt-pink: #FE2C55;

  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 20px 45px -20px rgba(20,20,43,0.18);

  --font-display: 'Sora', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Manrope', ui-sans-serif, system-ui, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4{ font-family: var(--font-display); color:var(--ink); margin:0 0 14px; line-height:1.15; }
p{ margin:0 0 14px; color: var(--ink-soft); line-height:1.65; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
svg{ width:1em; height:1em; }

.container{ max-width:1180px; margin:0 auto; padding:0 24px; }
.section{ padding:88px 0; }
.section.peach{ background: var(--peach); }
.center{ text-align:center; }
.eyebrow{
  display:inline-block;
  font-weight:700; font-size:13px; letter-spacing:.02em;
  color: var(--orange-dark);
  background: #FFE4D6;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-sub{ max-width: 640px; margin: 0 auto 40px; color: var(--muted); }
.section h2.center, .section > .container > h2{ max-width:720px; margin-left:auto; margin-right:auto; }
.accent-text{ color: var(--orange); }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible{
  outline:2px solid var(--orange-dark); outline-offset:3px;
}

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex; align-items:center; gap:6px;
  font-weight:700; font-size:14.5px;
  padding:13px 20px;
  border-radius:10px;
  border:none;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn span{ font-size:16px; }
.btn-sm{ padding:9px 16px; font-size:13px; }
.btn-primary{ background: linear-gradient(135deg,var(--orange-2),var(--orange-dark)); color:#fff; }
.btn-black{ background: var(--ink); color:#fff; }
.btn-orange{ background: linear-gradient(135deg,var(--orange-2),var(--orange-dark)); color:#fff; }
.btn-dark{ background: linear-gradient(135deg,#2b2b45,#0e0e1c); color:#fff; }
.btn-gradient-ig{ background: linear-gradient(120deg,var(--ig-1),var(--ig-3),var(--ig-4)); color:#fff; }
.btn-gradient-cta{ background: linear-gradient(120deg,var(--orange-2),var(--orange-dark)); color:#fff; padding:15px 26px; margin-top:8px; }
.btn-block{ display:flex; justify-content:center; width:100%; }

/* ==========================================================
   LIVE TOAST
   ========================================================== */
.live-toast{
  position: fixed; left:20px; bottom:20px; z-index:60;
  display:flex; align-items:center; gap:10px;
  background: var(--ink); color:#fff;
  padding: 12px 16px; border-radius:12px;
  font-size:13.5px; box-shadow: var(--shadow);
  max-width: 90vw;
  animation: toastIn .5s ease;
}
.live-toast .dot{ width:8px; height:8px; border-radius:50%; background:#FF4747; animation: pulse 1.4s infinite; flex:none; }
.toast-close{ background:none; border:none; color:#9998ad; margin-left:6px; }
@keyframes pulse{ 0%,100%{ opacity:1; } 50%{ opacity:.3; } }
@keyframes toastIn{ from{ transform:translateY(30px); opacity:0; } to{ transform:translateY(0); opacity:1; } }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header{
  position: sticky; top:0; z-index:50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--line);
}
.header-inner{ display:flex; align-items:center; gap:26px; height:76px; }
.logo{ display:flex; align-items:center; gap:8px; font-family:var(--font-display); font-weight:800; font-size:18px; margin-right:auto; }
.logo-mark{
  width:30px; height:30px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background: conic-gradient(from 180deg, var(--orange), var(--ig-2), var(--orange-2), var(--orange));
  color:#fff; font-size:14px;
}
.logo-io{ color: var(--orange); }

.main-nav{ display:flex; align-items:center; gap:22px; }
.nav-item{ position:relative; }
.nav-link{
  background:none; border:none; display:flex; align-items:center; gap:4px;
  font-weight:600; font-size:14.5px; color: var(--ink-soft); padding:6px 0;
}
.nav-link.accent{ color: var(--orange-dark); }
.chev{ width:14px; height:14px; }
.chev path{ stroke: currentColor; stroke-width:2; fill:none; }

.dropdown{
  position:absolute; top:calc(100% + 12px); left:0;
  background:#fff; border-radius:12px; box-shadow: var(--shadow);
  min-width:220px; padding:10px; display:flex; flex-direction:column; gap:2px;
  opacity:0; visibility:hidden; transform: translateY(6px);
  transition: all .15s ease;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown{ opacity:1; visibility:visible; transform:translateY(0); }
.dropdown a{ padding:9px 12px; border-radius:8px; font-size:14px; color:var(--ink-soft); }
.dropdown a:hover{ background: var(--peach); color: var(--orange-dark); }

.header-actions{ display:flex; align-items:center; gap:18px; }
.theme-toggle{
  width:36px; height:36px; border-radius:50%; border:1px solid var(--line); background:#fff;
  display:flex; align-items:center; justify-content:center; color:var(--ink-soft);
}
.theme-toggle svg{ width:18px; height:18px; }
.theme-toggle svg *{ stroke: currentColor; stroke-width:1.8; fill:none; }

.burger{ display:none; flex-direction:column; gap:4px; background:none; border:none; padding:6px; }
.burger span{ width:20px; height:2px; background:var(--ink); border-radius:2px; }

/* ==========================================================
   HERO
   ========================================================== */
.hero{ background: linear-gradient(155deg, var(--orange-dark), var(--orange), var(--orange-2)); padding:70px 0 90px; color:#fff; }
.hero-grid{ display:grid; grid-template-columns: 1.15fr .85fr; gap:56px; align-items:center; }
.hero h1{ color:#fff; font-size: clamp(30px,4vw,46px); margin-bottom:20px; }
.hero-desc{ color: rgba(255,255,255,.92); max-width:56ch; }
.hero-callout{
  background: rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.35);
  padding:14px 18px; border-radius:12px; font-weight:600; margin-bottom:20px;
}
.hero-checks{ display:flex; flex-wrap:wrap; gap:18px; margin-bottom:26px; }
.hero-checks li{ display:flex; align-items:center; gap:7px; font-weight:600; font-size:14px; }
.hero-checks svg{ width:18px; height:18px; padding:2px; border-radius:50%; background:rgba(255,255,255,.25); }
.hero-checks svg path{ stroke:#fff; stroke-width:2.4; fill:none; }

.hero-buttons{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:22px; max-width:640px; }
.apple-pay{ display:flex; align-items:center; gap:10px; font-weight:600; font-size:14px; }
.apple-pay-badge{ background:#fff; color:#000; font-family: var(--font-display); font-weight:800; font-size:13px; padding:4px 12px; border-radius:6px; }

/* phone mockups */
.hero-visual{ position:relative; display:flex; justify-content:center; }
.phone-stack{ position:relative; width:280px; height:380px; }
.phone{
  position:absolute; width:220px; height:340px; background:#fff; border-radius:28px;
  box-shadow:0 30px 60px -20px rgba(0,0,0,.4); padding:16px 14px; color:var(--ink);
}
.phone-notch{ width:56px; height:6px; background:#e7e5f0; border-radius:6px; margin:0 auto 14px; }
.phone-back{ top:0; left:0; opacity:.9; }
.phone-front{ top:55px; left:55px; }
.phone-metric-row{ display:flex; flex-direction:column; gap:12px; margin-top:10px; }
.phone-metric{ display:flex; justify-content:space-between; font-size:12px; color:var(--muted); border-bottom:1px dashed var(--line); padding-bottom:8px; }
.phone-metric b{ color:var(--ink); font-size:14px; }
.notif-card{ display:flex; align-items:center; gap:8px; background:var(--peach); border-radius:10px; padding:8px 10px; margin-bottom:8px; font-size:12px; }
.notif-card b{ display:block; font-size:12.5px; }
.notif-card small{ color:var(--muted); font-size:11px; }
.notif-card em{ margin-left:auto; color:var(--muted); font-style:normal; font-size:10.5px; }
.avatar{ width:28px; height:28px; border-radius:50%; flex:none; display:inline-block; }
.av-1{ background: linear-gradient(135deg,#FFB199,#FF6A33); }
.av-2{ background: linear-gradient(135deg,#8EC5FC,#4A5FE0); }
.av-3{ background: linear-gradient(135deg,#F6D365,#FDA085); }
.av-4{ background: linear-gradient(135deg,#A18CD1,#FBC2EB); }
.avatar-row .avatar{ margin-right:-10px; border:2px solid #fff; }
.avatar-row{ display:flex; align-items:center; justify-content:center; gap:14px; margin-bottom:34px; }
.avatar-row .av-count{ background:var(--ink); color:#fff; font-size:10px; display:flex; align-items:center; justify-content:center; margin-right:0; }
.stars{ color:#FFB400; letter-spacing:1px; }

.badge-chip{
  position:absolute; width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:#fff; font-size:18px;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}
.chip-ig{ top:10px; right:0; background: linear-gradient(135deg,var(--ig-1),var(--ig-3),var(--ig-4)); animation: floaty 3.4s ease-in-out infinite; }
.chip-tt{ bottom:20px; left:0; background: var(--tt-dark); animation: floaty 3.4s ease-in-out infinite 1s; }
@keyframes floaty{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }

/* ==========================================================
   PROFILE HEALTH CHECK
   ========================================================== */
.health-form{ display:flex; gap:10px; max-width:640px; margin:0 auto 30px; flex-wrap:wrap; justify-content:center; }
.health-form select{
  padding:14px 16px; border-radius:10px; border:1px solid var(--line); font-weight:600; background:#fff;
}
.health-form input{ flex:1; min-width:220px; padding:14px 16px; border-radius:10px; border:1px solid var(--line); font-size:15px; }
.health-result{
  max-width:640px; margin:0 auto; display:flex; gap:26px; align-items:center;
  background: var(--peach); border-radius: var(--radius-lg); padding:26px;
  animation: rise .4s ease both;
}
@keyframes rise{ from{ opacity:0; transform:translateY(10px);} to{ opacity:1; transform:translateY(0);} }
.health-score{ position:relative; width:120px; height:120px; flex:none; }
.score-ring{ width:120px; height:120px; transform: rotate(-90deg); }
.ring-bg{ fill:none; stroke:#F1DFD3; stroke-width:10; }
.ring-fg{ fill:none; stroke: var(--orange); stroke-width:10; stroke-linecap:round; stroke-dasharray:326.7; stroke-dashoffset:326.7; transition: stroke-dashoffset 1s ease; }
.score-num{ position:absolute; inset:0; display:flex; align-items:baseline; justify-content:center; gap:2px; font-family:var(--font-display); font-weight:800; font-size:26px; }
.score-num small{ font-size:12px; color:var(--muted); font-weight:600; }
.health-copy ul{ margin-top:10px; display:flex; flex-direction:column; gap:6px; }
.health-copy li{ font-size:13.5px; color:var(--ink-soft); position:relative; padding-left:18px; }
.health-copy li::before{ content:"✓"; position:absolute; left:0; color:var(--orange-dark); font-weight:700; }

/* ==========================================================
   STATS
   ========================================================== */
.stats-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.stat-card{ background:#fff; border-radius: var(--radius); padding:28px; text-align:center; box-shadow: var(--shadow); }
.stat-icon{ width:52px; height:52px; border-radius:14px; background:var(--peach); color:var(--orange-dark); display:flex; align-items:center; justify-content:center; margin:0 auto 14px; }
.stat-icon svg{ width:26px; height:26px; }
.stat-icon svg *{ stroke: currentColor; stroke-width:1.6; fill:none; }
.stat-card b{ display:block; font-family:var(--font-display); font-size:30px; margin-bottom:4px; }
.stat-card span{ color:var(--muted); font-size:14px; font-weight:600; }

/* ==========================================================
   PRICING
   ========================================================== */
.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.price-card{
  position:relative; background:#fff; border:1.5px solid var(--ink); border-radius:14px; padding:22px;
  overflow:hidden;
}
.price-card::after{
  content:""; position:absolute; right:-6px; top:8px; bottom:8px; width:8px; border-radius:6px;
}
.price-card.ig::after{ background: linear-gradient(var(--ig-1),var(--ig-3),var(--ig-4)); }
.price-card.tt::after{ background: linear-gradient(var(--tt-pink),var(--tt-cyan)); }
.price-icon{ width:40px; height:40px; border-radius:10px; display:flex; align-items:center; justify-content:center; color:#fff; font-size:18px; margin-bottom:14px; }
.price-icon.ig{ background: linear-gradient(135deg,var(--ig-1),var(--ig-3),var(--ig-4)); }
.price-icon.tt{ background: linear-gradient(135deg,#111,#333); }
.price-card b.title{ display:block; font-size:16px; margin-bottom:10px; }
.price-tag{ display:inline-block; font-weight:700; font-size:14px; padding:8px 14px; border-radius:8px; }
.price-tag.ig{ color:var(--ig-1); background:#F4E9FB; }
.price-tag.tt{ color:var(--tt-pink); background:#FFE3EA; }

/* ==========================================================
   SERVICES TABS
   ========================================================== */
.platform-tabs{ display:flex; justify-content:center; gap:0; margin-bottom:2px; }
.ptab{
  border:none; padding:12px 22px; font-weight:700; font-size:14.5px; color:var(--ink-soft); background:#fff;
  border-radius:12px 12px 0 0; opacity:.6;
}
.ptab.active{ opacity:1; color:#fff; background: linear-gradient(120deg,var(--ig-1),var(--ig-3),var(--ig-4)); }
.ptab.active[data-platform="tiktok"]{ background: linear-gradient(120deg,var(--tt-pink),var(--tt-dark)); }
.sub-tabs{ display:flex; justify-content:center; gap:6px; background:#fff; border-radius:14px; padding:6px; max-width:520px; margin:0 auto 32px; box-shadow: var(--shadow); }
.stab{ flex:1; border:none; background:none; padding:12px 18px; font-weight:700; font-size:14px; border-radius:10px; color:var(--ink-soft); }
.stab.active{ background: linear-gradient(135deg,var(--orange-2),var(--orange-dark)); color:#fff; }

.service-panel{
  display:grid; grid-template-columns:1.15fr .85fr; gap:0;
  background:#fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow:hidden;
}
.service-info{ display:grid; grid-template-columns:1fr 1fr; gap:20px; padding:36px; }
.info-card{ background: var(--peach); border-radius:14px; padding:20px; }
.info-icon{ width:38px; height:38px; border-radius:10px; background:#fff; display:flex; align-items:center; justify-content:center; margin-bottom:12px; color: var(--orange-dark); }
.info-card h4{ font-size:15px; margin-bottom:8px; }
.info-card p{ font-size:13.5px; margin:0; }
.service-buy{ background: var(--peach); padding:36px; display:flex; flex-direction:column; justify-content:center; }
.buy-rating{ display:flex; align-items:center; gap:8px; font-weight:700; margin-bottom:16px; }
.buy-rating b{ background:#fff; padding:3px 10px; border-radius:8px; font-size:13px; }
.buy-checks{ display:flex; flex-direction:column; gap:12px; margin-bottom:22px; }
.buy-checks li{ display:flex; align-items:center; gap:10px; font-weight:600; font-size:14px; }
.check-badge{ width:26px; height:26px; border-radius:8px; background: linear-gradient(135deg,var(--ig-1),var(--ig-3)); color:#fff; display:flex; align-items:center; justify-content:center; flex:none; font-size:13px; }

/* ==========================================================
   TRUST
   ========================================================== */
.trust-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center; }
.trust-visual{ position:relative; display:flex; flex-direction:column; align-items:center; gap:20px; }
.phone-solo{ position:relative; width:220px; height:340px; background: #fdf6f0; border-radius:28px; box-shadow: var(--shadow); padding:20px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; }
.phone-logo{ display:flex; align-items:center; gap:6px; font-family:var(--font-display); font-weight:800; color: var(--ink-soft); }
.float-chip{
  position:absolute; padding:10px 14px; border-radius:12px; color:#fff; font-weight:700; font-size:13px;
  box-shadow: 0 12px 24px rgba(0,0,0,.18); display:flex; align-items:center; gap:6px;
}
.chip-likes{ top:14px; left:-30px; background: linear-gradient(135deg,var(--orange-2),var(--orange-dark)); animation: floaty 4s ease-in-out infinite; }
.chip-followers{ bottom:60px; right:-30px; background: linear-gradient(135deg,var(--ig-1),var(--ig-3)); animation: floaty 4s ease-in-out infinite 1.2s; }
.rating-pill{ background:#fff; box-shadow: var(--shadow); padding:12px 20px; border-radius:999px; font-weight:700; font-size:13.5px; color: var(--orange-dark); }

/* ==========================================================
   BENEFITS
   ========================================================== */
.benefits-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.benefit-card{ background:#fff; border-radius: var(--radius-lg); padding:28px; box-shadow: var(--shadow); }
.benefit-card h4{ font-size:16.5px; }
.benefit-card p{ font-size:13.5px; }
.benefit-mock{ margin-top:16px; background: var(--peach); border-radius:14px; padding:16px; }
.live-banner{ background: linear-gradient(135deg,var(--orange-2),var(--orange-dark)); color:#fff; font-weight:700; font-size:12.5px; padding:9px 12px; border-radius:10px; text-align:center; }
.chat-mock{ display:flex; justify-content:center; }
.chat-card{ background:#fff; border-radius:12px; padding:16px; display:flex; align-items:center; gap:12px; box-shadow: var(--shadow); width:100%; }
.chat-lines{ flex:1; display:flex; flex-direction:column; gap:6px; }
.chat-lines i{ display:block; height:6px; border-radius:4px; background: linear-gradient(90deg,var(--orange-2),var(--orange)); opacity:.7; }
.chat-lines i:nth-child(2){ width:80%; } .chat-lines i:nth-child(3){ width:60%; }
.mini-tabs{ display:flex; gap:6px; margin-bottom:8px; }
.mini-tab{ font-size:11px; font-weight:700; padding:6px 10px; border-radius:8px; color:#fff; }
.mini-tab.ig{ background: linear-gradient(135deg,var(--ig-1),var(--ig-3)); }
.mini-tab.tt{ background: var(--tt-dark); }
.mini-subtabs{ display:flex; gap:6px; background:#fff; border-radius:8px; padding:4px; margin-bottom:10px; }
.mini-sub{ flex:1; text-align:center; font-size:11px; font-weight:700; padding:6px; border-radius:6px; color:var(--muted); }
.mini-sub.active{ background: linear-gradient(135deg,var(--orange-2),var(--orange-dark)); color:#fff; }
.mini-thumbs{ display:flex; gap:8px; }
.thumb{ flex:1; height:52px; border-radius:8px; }
.thumb-1{ background: linear-gradient(135deg,#8FD3B6,#4E9F7C); }
.thumb-2{ background: linear-gradient(135deg,#FFB199,#FF6A33); }
.thumb-3{ background: linear-gradient(135deg,#7FB6E8,#3E6FBF); }
.safe-row{ display:flex; align-items:center; gap:10px; background:#fff; border-radius:10px; padding:8px 10px; margin-bottom:8px; font-size:13px; font-weight:600; }
.safe-row .tag{ margin-left:auto; width:22px; height:22px; border-radius:6px; display:flex; align-items:center; justify-content:center; color:#fff; font-size:11px; }
.safe-row .tag.ig{ background: linear-gradient(135deg,var(--ig-1),var(--ig-3)); }
.safe-row .tag.tt{ background: var(--tt-dark); }
.safe-badge{ background: var(--ink); color:#fff; font-size:11.5px; font-weight:600; padding:8px 10px; border-radius:8px; margin-top:6px; }
.safe-badge b{ color: var(--orange-2); }
.pkg-mini-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:6px; margin-bottom:10px; }
.pkg-mini-grid.three{ grid-template-columns:repeat(3,1fr); }
.pkg-mini-grid span{ background:#fff; text-align:center; padding:10px 4px; border-radius:8px; font-weight:700; font-size:12.5px; }
.pkg-mini-grid span.best{ background: linear-gradient(135deg,var(--orange-2),var(--orange-dark)); color:#fff; }
.guarantee-badge{ background: linear-gradient(135deg,var(--orange-2),var(--orange-dark)); color:#fff; text-align:center; padding:9px; border-radius:10px; font-weight:700; font-size:12.5px; }
.credit-card{ background: linear-gradient(135deg,var(--orange-2),var(--orange-dark)); border-radius:14px; padding:18px; color:#fff; margin-bottom:10px; }
.cc-chip{ width:32px; height:22px; background: rgba(255,255,255,.6); border-radius:5px; margin-bottom:20px; }
.cc-number{ font-family: var(--font-display); letter-spacing:2px; font-size:15px; margin-bottom:10px; }
.cc-row{ display:flex; justify-content:space-between; font-size:11px; font-weight:700; }
.cc-networks{ display:flex; gap:8px; justify-content:center; }
.cc-networks span{ background:#fff; border-radius:6px; padding:5px 10px; font-size:11px; font-weight:800; color:var(--ink-soft); box-shadow: var(--shadow); }

/* ==========================================================
   TIMELINE / STEPS
   ========================================================== */
.steps-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:50px; }
.step-card{ background:#fff; border-radius: var(--radius-lg); padding:26px; box-shadow: var(--shadow); }
.step-mock{ background: var(--peach); border-radius:14px; padding:18px; margin-bottom:20px; min-height:120px; display:flex; flex-direction:column; justify-content:center; gap:12px; }
.step-tag{ display:inline-block; background: var(--peach); color: var(--orange-dark); font-weight:700; font-size:12.5px; padding:6px 14px; border-radius:999px; margin-bottom:12px; }
.step-card h4{ font-size:17px; }
.user-mock input{ width:100%; border:1px solid var(--line); border-radius:10px; padding:12px 14px; font-size:14px; background:#fff; }
.profile-mock-head{ display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.profile-mock-head small{ display:block; color:var(--muted); font-size:11px; }
.profile-mock-stats{ display:flex; justify-content:space-between; }
.profile-mock-stats span{ display:flex; flex-direction:column; align-items:center; font-size:11px; color:var(--muted); }
.profile-mock-stats b{ font-size:13px; color:var(--ink); }

/* ==========================================================
   VIDEO TESTIMONIALS
   ========================================================== */
.heart-icon{ width:56px; height:56px; border-radius:50%; background:#fff; box-shadow: var(--shadow); display:flex; align-items:center; justify-content:center; margin:0 auto 20px; color: var(--orange); font-size:24px; }
.video-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:40px; }
.video-card{ position:relative; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow); background:#fff; }
.video-thumb{ height:280px; display:flex; align-items:center; justify-content:center; position:relative; }
.thumb-1{ background: linear-gradient(160deg,#caa07a,#8a6a4d); }
.thumb-2{ background: linear-gradient(160deg,#d9c2b0,#a68b76); }
.thumb-3{ background: linear-gradient(160deg,#c99b7a,#7a5646); }
.play-btn{ width:56px; height:56px; border-radius:50%; background:rgba(255,255,255,.92); border:none; font-size:18px; color: var(--orange-dark); display:flex; align-items:center; justify-content:center; }
.ribbon{ position:absolute; top:14px; left:0; background: linear-gradient(135deg,var(--orange-2),var(--orange-dark)); color:#fff; font-weight:700; font-size:12px; padding:6px 14px; border-radius:0 8px 8px 0; }
.video-person{ display:flex; align-items:center; gap:10px; padding:16px; }
.video-person small{ display:block; color:var(--muted); font-size:11.5px; }

/* carousel */
.carousel{ overflow:hidden; margin-top:44px; }
.carousel-track{ display:flex; gap:20px; transition: transform .45s ease; }
.quote-card{ flex:0 0 calc(33.333% - 14px); background:#fff; border-radius: var(--radius-lg); padding:28px; box-shadow: var(--shadow); margin:0; }
.quote-mark{ font-family: var(--font-display); font-size:40px; color: var(--orange-2); line-height:1; }
.quote-card p{ font-size:14px; color:var(--ink-soft); min-height:110px; }
.quote-card cite{ font-style:normal; font-weight:700; color:var(--ink); }
.carousel-controls{ display:flex; justify-content:center; gap:10px; margin-top:22px; }
.carousel-controls button{ width:44px; height:44px; border-radius:50%; border:none; background: linear-gradient(135deg,var(--orange-2),var(--orange-dark)); color:#fff; font-size:16px; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq-list{ max-width:760px; margin:40px auto 0; display:flex; flex-direction:column; gap:14px; }
.faq-item{ border:1.5px solid var(--orange-2); border-radius:14px; overflow:hidden; }
.faq-q{ width:100%; text-align:left; background:none; border:none; padding:20px 22px; font-weight:700; font-size:15px; display:flex; justify-content:space-between; align-items:center; }
.faq-icon{ font-size:20px; color: var(--orange-dark); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .3s ease; padding:0 22px; }
.faq-a p{ margin:0 0 20px; font-size:14px; }
.faq-item.open .faq-a{ max-height:200px; }

/* ==========================================================
   BUNDLES
   ========================================================== */
.bundle-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center; margin-bottom:60px; }
.bundle-cards{ display:flex; gap:20px; justify-content:center; }
.bundle-card{ width:170px; border-radius:16px; padding:18px; color:#fff; text-align:center; box-shadow: var(--shadow); }
.bundle-icon{ font-size:26px; display:block; margin-bottom:60px; }
.ig-card{ background: linear-gradient(160deg,var(--ig-1),var(--ig-3),var(--ig-4)); }
.tt-card{ background: linear-gradient(160deg,#1c1c2e,var(--tt-pink)); }
.bundle-card b{ display:block; margin-bottom:10px; }
.bundle-pill{ display:inline-block; background:rgba(255,255,255,.25); padding:6px 12px; border-radius:999px; font-size:12px; font-weight:700; }
.reviews-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:36px; }
.review-card{ background:#fff; border-radius: var(--radius-lg); padding:22px; box-shadow: var(--shadow); }
.review-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:2px; }
.review-card small{ color:var(--muted); }
.review-card p{ margin-top:14px; font-size:13.5px; }

/* ==========================================================
   FINAL CTA
   ========================================================== */
.final-cta{ display:grid; grid-template-columns:.8fr 1.2fr; gap:56px; align-items:center; background: linear-gradient(135deg,var(--orange-dark),var(--orange),var(--orange-2)); border-radius: var(--radius-lg); padding:50px; color:#fff; }
.final-cta h2{ color:#fff; }
.final-cta p{ color: rgba(255,255,255,.92); }
.cta-visual{ position:relative; display:flex; justify-content:center; }
.cta-person{ width:200px; height:240px; border-radius:50% 50% 44% 44%; background: rgba(255,255,255,.18); display:flex; align-items:flex-end; justify-content:center; overflow:hidden; }
.cta-person svg{ width:160px; }
.chip-growth{ position:absolute; top:14px; right:-10px; background:#fff; color: var(--orange-dark); animation: floaty 3.6s ease-in-out infinite; }
.chip-sales{ position:absolute; bottom:14px; left:-10px; background:#fff; color: var(--orange-dark); animation: floaty 3.6s ease-in-out infinite 1s; }
.final-cta .hero-buttons{ max-width:none; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer{ background:#fff; border-top:1px solid var(--line); padding:64px 0 24px; }
.footer-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:24px; }
.footer-grid h5{ font-size:14px; margin-bottom:14px; }
.footer-grid h5.mt{ margin-top:20px; }
.footer-grid a{ display:block; font-size:13.5px; color: var(--muted); margin-bottom:10px; }
.footer-grid a:hover{ color: var(--orange-dark); }
.social-row{ display:flex; gap:8px; margin-bottom:6px; }
.social-btn{ width:34px; height:34px; border-radius:50%; background: var(--peach); display:flex; align-items:center; justify-content:center; color: var(--orange-dark); font-size:14px; font-weight:700; }
.contact-line{ font-size:13.5px; color: var(--muted); margin-bottom:6px; }
.footer-bottom{ margin-top:40px; padding-top:20px; border-top:1px solid var(--line); font-size:12.5px; color:var(--muted); text-align:center; }

/* back to top */
.back-to-top{
  position: fixed; right:20px; bottom:20px; z-index:55;
  width:46px; height:46px; border-radius:50%; border:none;
  background: linear-gradient(135deg,var(--orange-2),var(--orange-dark)); color:#fff;
  box-shadow: var(--shadow); font-size:14px;
  opacity:0; pointer-events:none; transform: translateY(10px);
  transition: all .25s ease;
}
.back-to-top.visible{ opacity:1; pointer-events:auto; transform:translateY(0); }

.hide-mobile{ }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1020px){
  .hero-grid, .trust-grid, .bundle-grid, .final-cta{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; margin-bottom:20px; }
  .service-panel{ grid-template-columns:1fr; }
  .service-info{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:repeat(3,1fr); }
}

@media (max-width: 860px){
  .main-nav, .hide-mobile{ display:none; }
  .burger{ display:flex; }
  .stats-grid, .pricing-grid, .benefits-grid, .video-grid, .steps-grid, .reviews-grid{ grid-template-columns:1fr; }
  .quote-card{ flex:0 0 100%; }
  .hero-buttons{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns:repeat(2,1fr); }
  .health-form{ flex-direction:column; align-items:stretch; }
  .health-result{ flex-direction:column; text-align:center; }
}

@media (max-width: 520px){
  .hero-buttons{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .final-cta{ padding:30px 22px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
}
