/* ═══════════════════════════════════════════════════════
   Gymera Pro — Main Stylesheet
   Font: Syne (display) + DM Sans (body)
   Theme: Dark athletic with electric green accent
═══════════════════════════════════════════════════════ */

:root {
  --bg:        #0a0a0a;
  --bg2:       #111111;
  --bg3:       #181818;
  --card:      #151515;
  --border:    #222222;
  --green:     #b8f724;
  --green2:    #96d614;
  --text:      #f0f0f0;
  --muted:     #888888;
  --white:     #ffffff;
  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 8px 40px rgba(0,0,0,.6);
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --trans:     0.25s ease;
  --container: 1180px;
}

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

/* ── Container ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  transition: all var(--trans);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: #000;
  border: 2px solid var(--green);
}
.btn--primary:hover { background: var(--green2); border-color: var(--green2); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn--outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* ── Label ── */
.label {
  display: inline-block;
  background: rgba(184,247,36,.12);
  color: var(--green);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(184,247,36,.25);
  margin-bottom: 16px;
}

/* ── Section Head ── */
.section__head { text-align: center; margin-bottom: 60px; }
.section__head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section__head p { color: var(--muted); font-size: 17px; max-width: 560px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--trans), backdrop-filter var(--trans);
}
.nav.scrolled {
  background: rgba(10,10,10,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.nav__logo span { color: var(--green); }
.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--trans);
}
.nav__links a:hover { color: var(--white); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 20%, rgba(184,247,36,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(184,247,36,.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  flex: 1;
  padding: 80px 24px 60px;
}
.hero__badge {
  display: inline-block;
  background: rgba(184,247,36,.1);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(184,247,36,.2);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero__title em { color: var(--green); font-style: normal; }
.hero__sub { color: var(--muted); font-size: 17px; line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--green); }
.stat span { font-size: 12px; color: var(--muted); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--trans);
}
.store-btn:hover { border-color: var(--green); background: rgba(184,247,36,.05); transform: translateY(-2px); }
.store-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.store-btn small { display: block; font-size: 10px; color: var(--muted); }
.store-btn strong { display: block; font-size: 14px; font-family: var(--font-head); }

/* Phone mockup */
.hero__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  width: 300px;
  box-shadow: var(--shadow), 0 0 60px rgba(184,247,36,.08);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone-header { margin-bottom: 16px; }
.phone-header span { font-size: 12px; color: var(--muted); display: block; }
.phone-header strong { font-family: var(--font-head); font-size: 18px; }
.phone-streak {
  background: rgba(184,247,36,.1);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-streak strong { color: var(--green); }
.phone-streak span { color: var(--muted); font-size: 12px; margin-left: auto; }
.phone-workout {
  background: var(--bg3);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
}
.phone-workout p { font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.phone-workout h4 { font-family: var(--font-head); font-size: 16px; margin-bottom: 4px; }
.phone-workout small { font-size: 11px; color: var(--muted); display: block; margin-bottom: 12px; }
.phone-workout button {
  width: 100%;
  background: var(--green);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background var(--trans);
}
.phone-workout button:hover { background: var(--green2); }
.phone-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  text-align: center;
}
.phone-stats > div { background: var(--bg3); border-radius: var(--radius-sm); padding: 10px 6px; }
.phone-stats strong { display: block; font-family: var(--font-head); font-size: 15px; color: var(--green); }
.phone-stats span { font-size: 10px; color: var(--muted); }

/* Ticker */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding: 14px 0;
  background: var(--bg2);
}
.ticker__inner {
  display: flex;
  gap: 20px;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}
.ticker__inner span { font-size: 13px; color: var(--muted); flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════ */
.features { background: var(--bg2); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card--large { grid-column: span 2; }
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--trans), transform var(--trans);
}
.feature-card:hover { border-color: rgba(184,247,36,.3); transform: translateY(-4px); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.feature-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.feature-tags span {
  background: rgba(184,247,36,.1);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(184,247,36,.2);
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════ */
.steps { display: flex; align-items: center; gap: 20px; }
.step {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}
.step__num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.step__arrow { font-size: 24px; color: var(--muted); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════ */
.pricing { background: var(--bg2); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--trans), border-color var(--trans);
}
.plan-card:hover { transform: translateY(-6px); }
.plan-card--popular {
  border-color: var(--green);
  position: relative;
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(184,247,36,.12);
}
.plan-card--popular:hover { transform: scale(1.03) translateY(-6px); }
.plan__badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.plan__popular-tag, .plan__save-tag {
  font-size: 12px;
  color: var(--green);
  background: rgba(184,247,36,.1);
  border: 1px solid rgba(184,247,36,.2);
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
}
.plan-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.plan__price {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 12px;
}
.plan__price span { font-size: 14px; color: var(--muted); font-family: var(--font-body); }
.plan-card > p { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.plan-card ul { list-style: none; margin-bottom: 28px; }
.plan-card li { font-size: 14px; color: var(--muted); padding: 6px 0; border-bottom: 1px solid var(--border); }
.plan-card li:last-child { border: none; }
.plan-card .btn { width: 100%; }
.pricing__note { text-align: center; margin-top: 28px; font-size: 13px; color: var(--muted); }
.pricing__note a { color: var(--green); }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--trans);
}
.testi-card:hover { border-color: rgba(184,247,36,.3); }
.testi__stars { color: var(--green); font-size: 16px; margin-bottom: 14px; }
.testi-card p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.testi__author { display: flex; align-items: center; gap: 12px; }
.testi__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi__author strong { display: block; font-size: 14px; font-weight: 600; }
.testi__author small { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════════════ */
.blog { background: var(--bg2); }
.blog__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--trans), transform var(--trans);
}
.blog-card:hover { border-color: rgba(184,247,36,.3); transform: translateY(-4px); }
.blog-card__emoji { font-size: 28px; }
.blog-card__cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--green); }
.blog-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; line-height: 1.3; }
.blog-card p { color: var(--muted); font-size: 13px; line-height: 1.6; flex: 1; }
.blog-card__meta { font-size: 12px; color: var(--muted); }
.blog__cta { text-align: center; margin-top: 40px; }

/* ═══════════════════════════════════════════════════════
   DOWNLOAD
═══════════════════════════════════════════════════════ */
.download { background: var(--bg); }
.download__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.download__inner h2 { font-family: var(--font-head); font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; margin-bottom: 16px; }
.download__inner p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }
.download__inner .hero__cta { justify-content: center; }

/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.faq { background: var(--bg2); }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 12px;
  transition: color var(--trans);
}
.faq__q:hover { color: var(--green); }
.faq__q span { font-size: 20px; flex-shrink: 0; transition: transform var(--trans); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq__a.open { max-height: 300px; padding-bottom: 20px; }

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__info h2 { font-family: var(--font-head); font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800; margin-bottom: 16px; }
.contact__info > p { color: var(--muted); margin-bottom: 32px; }
.contact__details { display: flex; flex-direction: column; gap: 14px; }
.contact__details > div { display: flex; flex-direction: column; gap: 2px; }
.contact__details strong { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.contact__details a, .contact__details span { font-size: 15px; color: var(--text); }
.contact__details a:hover { color: var(--green); }
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
  transition: border-color var(--trans);
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--green);
}
.contact__form select { cursor: pointer; }
.contact__form option { background: var(--bg3); }
.form-msg { font-size: 13px; padding: 8px 0; }
.form-msg.success { color: var(--green); }
.form-msg.error { color: #ff6b6b; }
.newsletter { margin-top: 32px; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.newsletter h4 { font-family: var(--font-head); font-size: 18px; margin-bottom: 8px; }
.newsletter > p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter__form input {
  flex: 1; min-width: 180px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
}
.newsletter__form input:focus { outline: none; border-color: var(--green); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer__brand .nav__logo { margin-bottom: 16px; display: inline-block; }
.footer__brand p { color: var(--muted); font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 36px; height: 36px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: all var(--trans);
}
.footer__socials a:hover { background: var(--green); color: #000; border-color: var(--green); }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.footer__col a { font-size: 13px; color: var(--muted); transition: color var(--trans); }
.footer__col a:hover { color: var(--green); }
.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p { font-size: 12px; color: var(--muted); }
.footer__bottom a { color: var(--green); }

/* ═══════════════════════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════════════════════ */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2.2rem,5vw,3.5rem); font-weight: 800; margin-bottom: 16px; }
.page-hero p { color: var(--muted); font-size: 17px; max-width: 520px; margin: 0 auto; }
.blog-index__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 60px 0; }
.blog-category-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--trans);
}
.filter-btn.active, .filter-btn:hover { background: var(--green); color: #000; border-color: var(--green); }

/* Single Blog Post */
.blog-post { padding: 140px 0 80px; }
.blog-post__inner { max-width: 740px; margin: 0 auto; }
.blog-post__meta { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.blog-post__cat { color: var(--green); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.blog-post h1 { font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem); font-weight: 800; margin-bottom: 24px; line-height: 1.15; }
.blog-post__author { color: var(--muted); font-size: 13px; }
.blog-post__content { color: #ccc; font-size: 16px; line-height: 1.85; }
.blog-post__content h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); margin: 32px 0 12px; }
.blog-post__content p { margin-bottom: 16px; }
.blog-post__content ul { margin: 0 0 16px 20px; }
.blog-post__content li { margin-bottom: 6px; }
.blog-post__content strong { color: var(--white); }

/* ═══════════════════════════════════════════════════════
   PAYMENT / CHECKOUT
═══════════════════════════════════════════════════════ */
.checkout { padding: 140px 0 80px; min-height: 80vh; }
.checkout__inner { max-width: 480px; margin: 0 auto; }
.checkout__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.checkout__card h2 { font-family: var(--font-head); font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.checkout__card .plan-price { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: var(--green); margin-bottom: 24px; }
.checkout__card form { display: flex; flex-direction: column; gap: 14px; }
.checkout__card input {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-body);
}
.checkout__card input:focus { outline: none; border-color: var(--green); }
#rzp-btn { background: var(--green); color: #000; font-family: var(--font-head); font-weight: 700; font-size: 16px; padding: 16px; border-radius: 50px; border: none; cursor: pointer; transition: background var(--trans); }
#rzp-btn:hover { background: var(--green2); }
.checkout__features { list-style: none; margin: 20px 0; display: flex; flex-direction: column; gap: 8px; }
.checkout__features li { font-size: 14px; color: var(--muted); }
.secure-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════════════ */
.legal { padding: 140px 0 80px; }
.legal__inner { max-width: 740px; margin: 0 auto; }
.legal__inner h1 { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; margin-bottom: 8px; }
.legal__inner .updated { color: var(--muted); font-size: 13px; margin-bottom: 40px; }
.legal__inner h2 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin: 32px 0 12px; color: var(--white); }
.legal__inner p, .legal__inner li { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
.legal__inner ul { margin-left: 20px; margin-bottom: 16px; }
.legal__inner a { color: var(--green); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2,1fr); }
  .feature-card--large { grid-column: span 2; }
  .testi__grid { grid-template-columns: repeat(2,1fr); }
  .blog__grid { grid-template-columns: repeat(2,1fr); }
  .blog-index__grid { grid-template-columns: repeat(3,1fr); }
  .footer__inner { grid-template-columns: repeat(3,1fr); }
  .footer__brand { grid-column: span 3; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__mockup { display: none; }
  .nav__links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); flex-direction: column; padding: 20px 24px; gap: 16px; }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }
  .nav > .container > .btn { display: none; }
  .steps { flex-direction: column; }
  .step__arrow { transform: rotate(90deg); }
  .pricing__grid { grid-template-columns: 1fr; }
  .plan-card--popular { transform: none; }
  .features__grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }
  .testi__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .blog-index__grid { grid-template-columns: repeat(2,1fr); }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: repeat(2,1fr); }
  .footer__brand { grid-column: span 2; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__stats { gap: 16px; }
  .hero__cta { flex-direction: column; }
  .blog-index__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}
