/** Shopify CDN: Minification failed

Line 189:0 Unexpected "{"
Line 189:1 Expected identifier but found "%"
Line 196:0 Unexpected "{"
Line 196:1 Expected identifier but found "%"

**/
/* ============================================================
   LYNEA360 — Theme CSS
   Estratto da lynea360.html
============================================================ */

/* === RESET + BASE === */
:root {
  --bg:          #0A0A0B;
  --surface:     #141416;
  --surface-2:   #0F0F11;
  --orange:      #FF5A2C;
  --gold:        #FF9A1E;
  --white:       #FFFFFF;
  --muted:       rgba(255,255,255,0.5);
  --border:      rgba(255,255,255,0.08);
  --border-hover:rgba(255,90,44,0.4);
  --font-title:  'Space Grotesk', sans-serif;
  --font-mono:   'Space Mono', monospace;
  --radius:      12px;
  --radius-lg:   20px;
  --max-w:       1200px;
  --nav-h:       72px;
  --solar:       linear-gradient(135deg, #FF5A2C 0%, #FF9A1E 100%);
  --solar-h:     linear-gradient(135deg, #e84e22 0%, #e8891a 100%);
  --solar-text:  linear-gradient(90deg, #FF5A2C 0%, #FF9A1E 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; }
ul, ol { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: var(--solar-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.accent {
  background: var(--solar-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all .2s ease;
  cursor: pointer;
}
.btn-primary { background: var(--solar); color: var(--white); }
.btn-primary:hover { background: var(--solar-h); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(255,90,44,.45); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.img-slot { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-placeholder {
  background: linear-gradient(135deg, #1a1a1e 0%, #0f0f11 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder svg { opacity: .15; }

.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-header p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 16px; }

/* === NAV === */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(10,10,11,.85);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-text { font-family: var(--font-mono); font-size: 17px; font-weight: 700; letter-spacing: .05em; color: var(--white); }
.nav-links { display: flex; gap: 8px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); padding: 6px 12px; border-radius: 6px; transition: color .2s, background .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-switcher { display: flex; gap: 4px; font-family: var(--font-mono); font-size: 12px; }
.lang-switcher button { background: none; color: var(--muted); padding: 4px 8px; border-radius: 4px; transition: color .2s, background .2s; cursor: pointer; }
.lang-switcher button.active,
.lang-switcher button:hover { color: var(--white); background: rgba(255,255,255,.08); }
.cart-btn { position: relative; background: none; color: var(--white); padding: 8px; border-radius: 8px; transition: background .2s; display: flex; align-items: center; }
.cart-btn:hover { background: rgba(255,255,255,.08); }
.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--solar);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; border-radius: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .25s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,10,11,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; font-weight: 500; color: var(--muted); padding: 12px 16px; border-radius: 8px; transition: color .2s, background .2s; }
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,.06); }

/* === HERO === */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
#hero > .container {
  max-width: 100%;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: clamp(32px, 6vw, 96px);
  padding-right: clamp(32px, 6vw, 96px);
}
.hero-bg { position: absolute; inset: 0; }
{%- style -%}
.hero-bg::after {
  background:
    linear-gradient(to right, rgba(10,10,11,.75) 0%, rgba(10,10,11,.35) 45%, rgba(10,10,11,.05) 100%),
    linear-gradient(to top, rgba(10,10,11,.5) 0%, transparent 40%),
    radial-gradient(ellipse 50% 60% at 65% 45%, rgba(255,90,44,.08) 0%, transparent 70%);
}
{%- endstyle -%}
.hero-ring-bg {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  opacity: .06;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 560px; }
.hero-content h1 { font-size: clamp(42px, 6vw, 72px); font-weight: 700; line-height: 1; margin-bottom: 24px; letter-spacing: -.02em; }
.hero-content p { color: var(--muted); font-size: 16px; max-width: 520px; margin-bottom: 40px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }
.hero-link { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 15px; font-weight: 500; transition: color .2s; padding: 14px 0; }
.hero-link:hover { color: var(--white); }
.hero-stats { display: flex; gap: 48px; border-top: 1px solid var(--border); padding-top: 40px; flex-wrap: wrap; }
.stat-value {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  background: var(--solar-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* === TICKER === */
#strip {
  border-top: 1px solid #FF7A24;
  border-bottom: 1px solid #FF7A24;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.strip-track { display: inline-flex; animation: ticker 30s linear infinite; }
.strip-track:hover { animation-play-state: paused; }
.strip-item {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 48px;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.strip-item::after { content: '·'; color: var(--orange); font-size: 18px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === PRODUCTS === */
#products { background: var(--surface); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  cursor: pointer;
}
.product-card:hover { border-color: rgba(255,90,44,.3); transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,.4); }
.product-card.featured { border-color: #FF7A24; box-shadow: 0 0 0 1px #FF7A24, 0 24px 48px rgba(255,90,44,.2); }
.product-card.featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--solar);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--solar);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 2;
}
.card-image { height: 240px; position: relative; overflow: hidden; }
.card-image .img-placeholder { height: 100%; flex-direction: column; gap: 12px; }
.card-image .img-placeholder span { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.2); letter-spacing: .1em; text-transform: uppercase; }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.card-logo { display: flex; align-items: center; gap: 8px; }
.card-logo-text { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }
.card-name { font-size: 26px; font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
.card-subtitle { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.card-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,90,44,.12) 0%, rgba(255,154,30,.12) 100%);
  border: 1px solid rgba(255,122,36,.3);
  color: #FF8528;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
}
.card-desc { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.card-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--border); }
.card-qty { font-size: 13px; color: var(--muted); }
.card-price { font-size: 24px; font-weight: 700; color: var(--white); }
.card-price sup { font-size: 14px; font-weight: 400; color: var(--muted); }
.card-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.add-to-cart {
  width: 100%;
  padding: 14px;
  background: var(--solar);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: inherit;
  letter-spacing: .02em;
}
.add-to-cart:hover { background: var(--solar-h); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,90,44,.35); }
.card-link { text-align: center; font-size: 13px; color: var(--muted); transition: color .2s; padding: 4px; display: block; }
.card-link:hover { color: var(--orange); }
.products-note { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 48px; font-size: 14px; color: var(--muted); }
.products-note svg { color: var(--orange); flex-shrink: 0; }

/* === METHOD === */
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.method-left h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.1; margin-bottom: 20px; letter-spacing: -.02em; }
.method-left p { color: var(--muted); margin-bottom: 40px; line-height: 1.7; }
.pillars { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, background .2s;
}
.pillar:hover { border-color: var(--border-hover); background: #16161a; }
.pillar-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.pillar-label { font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: .1em; margin-bottom: 4px; }
.pillar-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }
.method-right { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.method-img-wrap { width: 100%; border-radius: var(--radius-lg); overflow: hidden; }
.method-img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-lg); }
.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.app-card-ring-wrap { display: flex; justify-content: center; }
.week-track { width: 100%; position: relative; }
.week-track-bar { height: 3px; background: rgba(255,255,255,.08); border-radius: 3px; margin: 0 20px; margin-bottom: 10px; overflow: hidden; }
.week-track-fill { height: 100%; width: 62%; background: var(--solar); border-radius: 3px; }
.week-dots { display: flex; justify-content: space-between; padding: 0 8px; }
.week-dot { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.week-dot-circle { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.15); transition: background .2s; }
.week-dot.done .week-dot-circle { background: var(--solar); border-color: transparent; }
.week-dot.active .week-dot-circle { background: transparent; border-color: #FF7A24; box-shadow: 0 0 0 3px rgba(255,90,44,.2); }
.week-dot span { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; color: var(--muted); }
.week-dot.done span, .week-dot.active span { color: var(--white); }
.app-pillar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; }
.app-pillar-chip { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.app-pillar-chip-top { display: flex; justify-content: space-between; align-items: center; }
.app-pillar-chip-name { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.app-pillar-chip-val { font-size: 12px; font-weight: 600; color: var(--muted); }
.ring-container { position: relative; width: 220px; height: 220px; }
.ring-score { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ring-score-value { font-family: var(--font-mono); font-size: 48px; font-weight: 700; color: var(--white); line-height: 1; display: flex; align-items: center; justify-content: center; }
.ring-score-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-mono); }
.pillar-bars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; }
.pillar-bar-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; margin-bottom: 6px; display: flex; justify-content: space-between; }
.pillar-bar-track { height: 4px; background: rgba(255,255,255,.08); border-radius: 4px; overflow: hidden; }
.pillar-bar-fill { height: 100%; border-radius: 4px; transition: width 1s ease; }

/* === HOW IT WORKS === */
#how { background: var(--surface); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .2s, transform .2s;
}
.step:hover { border-color: rgba(255,90,44,.25); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(255,90,44,.35) 0%, rgba(255,154,30,.35) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -.02em;
}
.step-icon { width: 44px; height: 44px; background: linear-gradient(135deg, rgba(255,90,44,.15) 0%, rgba(255,154,30,.15) 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #FF7A24; }
.step h3 { font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* === APP SECTION === */
#app {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.app-bg { position: absolute; inset: 0; z-index: 0; }
.app-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center right; display: block; }
.app-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,11,.95) 0%, rgba(10,10,11,.7) 50%, rgba(10,10,11,.2) 100%),
    linear-gradient(to top, rgba(10,10,11,.7) 0%, transparent 40%);
}
#app > .container { position: relative; z-index: 1; padding-top: 96px; padding-bottom: 96px; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.app-left h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.1; margin-bottom: 20px; letter-spacing: -.02em; }
.app-left p { color: var(--muted); margin-bottom: 40px; line-height: 1.7; }
.app-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 40px; }
.app-feature { display: flex; align-items: flex-start; gap: 12px; padding: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.app-feature-icon { width: 36px; height: 36px; background: linear-gradient(135deg, rgba(255,90,44,.15) 0%, rgba(255,154,30,.15) 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #FF7A24; flex-shrink: 0; }
.app-feature-text { font-size: 13px; font-weight: 500; line-height: 1.4; }
.store-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: background .2s, border-color .2s, transform .15s;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.store-btn:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,.45); transform: translateY(-1px); }
.store-btn-sub { font-size: 11px; color: rgba(255,255,255,.65); font-weight: 400; display: block; }
.store-note { font-size: 13px; color: var(--muted); }
.app-coach-wrap { position: relative; display: flex; align-items: flex-end; justify-content: center; height: 540px; overflow: hidden; border-radius: var(--radius-lg); }
.app-coach-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; border-radius: var(--radius-lg); }

/* === REVIEWS === */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s, transform .2s;
}
.review-card:hover { border-color: rgba(255,90,44,.2); transform: translateY(-2px); }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: var(--muted); line-height: 1.7; flex: 1; font-style: italic; }
.review-author { font-size: 13px; font-weight: 600; color: var(--white); }
.review-product {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #FF8528;
  background: linear-gradient(135deg, rgba(255,90,44,.1) 0%, rgba(255,154,30,.1) 100%);
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 4px;
}
.reviews-note { text-align: center; margin-top: 40px; font-size: 13px; color: rgba(255,255,255,.3); font-style: italic; }

/* === FAQ === */
#faq { background: var(--surface); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: border-color .2s; }
.faq-item.open { border-color: rgba(255,90,44,.2); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .2s;
}
.faq-q:hover { background: rgba(255,255,255,.03); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .25s, border-color .2s, color .2s;
  font-size: 18px;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: #FF7A24; background: var(--solar); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; padding: 0 24px; }
.faq-a-inner { padding-bottom: 20px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }

/* === CTA BANNER === */
#cta-banner { padding: 80px 0; }
.cta-card { background: linear-gradient(135deg, #FF5A2C 0%, #FF9A1E 100%); border-radius: 24px; padding: 72px 48px; text-align: center; }
.cta-card h2 { font-size: clamp(36px, 5vw, 60px); font-weight: 700; color: #0A0A0B; line-height: 1.1; margin-bottom: 16px; letter-spacing: -.02em; }
.cta-card p { font-size: 17px; color: rgba(0,0,0,.65); margin-bottom: 40px; line-height: 1.6; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btn-dark { padding: 16px 32px; background: #0A0A0B; color: #fff; border-radius: 100px; font-size: 15px; font-weight: 700; transition: background .2s, transform .15s; font-family: var(--font-title); }
.cta-btn-dark:hover { background: #222; transform: translateY(-1px); }
.cta-btn-outline { padding: 16px 32px; background: rgba(0,0,0,.12); color: #0A0A0B; border-radius: 100px; font-size: 15px; font-weight: 700; border: 1px solid rgba(0,0,0,.2); transition: background .2s, transform .15s; font-family: var(--font-title); }
.cta-btn-outline:hover { background: rgba(0,0,0,.2); transform: translateY(-1px); }

/* === FOOTER === */
footer { background: #060608; border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid var(--border); }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: color .2s, border-color .2s, background .2s; }
.social-link:hover { color: #FF7A24; border-color: #FF7A24; background: linear-gradient(135deg, rgba(255,90,44,.1) 0%, rgba(255,154,30,.1) 100%); }
.footer-col h4 { font-size: 12px; font-family: var(--font-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--muted); }

/* === CART DRAWER === */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(4px); }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 201;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header { padding: 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-header h2 { font-size: 18px; font-weight: 700; }
.cart-close { background: none; color: var(--muted); font-size: 24px; padding: 4px 8px; border-radius: 6px; transition: color .2s, background .2s; }
.cart-close:hover { color: var(--white); background: rgba(255,255,255,.08); }
.cart-items { flex: 1; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--muted); }
.cart-empty svg { opacity: .3; }
.cart-empty p { font-size: 14px; }
.cart-item { display: flex; gap: 16px; padding: 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); }
.cart-item-img { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.cart-item-img .img-placeholder { height: 100%; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item-qty { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.qty-btn { width: 24px; height: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: 4px; color: var(--white); font-size: 14px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s; }
.qty-btn:hover { background: rgba(255,255,255,.1); }
.cart-item-price { font-size: 16px; font-weight: 700; align-self: center; }
.cart-remove { background: none; color: var(--muted); font-size: 18px; padding: 2px 6px; border-radius: 4px; transition: color .15s; }
.cart-remove:hover { color: #ff4444; }
.cart-footer { padding: 24px; border-top: 1px solid var(--border); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 16px; margin-bottom: 8px; }
.cart-subtotal span:last-child { font-weight: 700; }
.cart-shipping-note { font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.cart-shipping-note strong { color: var(--orange); }
.cart-checkout { width: 100%; padding: 16px; background: var(--solar); color: var(--white); font-size: 15px; font-weight: 700; border-radius: 10px; border: none; cursor: pointer; font-family: inherit; transition: background .2s; margin-bottom: 12px; }
.cart-checkout:hover { background: var(--solar-h); }
.cart-continue { display: block; text-align: center; font-size: 14px; color: var(--muted); padding: 8px; cursor: pointer; transition: color .2s; }
.cart-continue:hover { color: var(--white); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: 1fr; gap: 48px; }
  .method-right { order: -1; }
  .app-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .app-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 64px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .app-coach-wrap { height: 360px; }
}

@media (max-width: 375px) {
  .hero-ctas { flex-direction: column; }
  .store-btns { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
