*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d0d0f;
  --surface:   #141418;
  --border:    #1e1e26;
  --accent:    #5fe3a1;
  --accent2:   #ff7a45;
  --text:      #f0f0f0;
  --muted:     #8a8a9a;
  --card:      #16161c;
  --radius:    12px;
  --font:      'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ── SCROLL PROGRESS ── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 200;
  transition: width 0.1s linear;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── TYPOGRAPHY ── */
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}

nav.scrolled { padding: 14px 60px; }

.nav-logo {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 6px;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 60px 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(95,227,161,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(255,122,69,0.07) 0%, transparent 70%),
    var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* floating dots */
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-dots span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: floatDot 8s ease-in-out infinite;
}
@keyframes floatDot {
  0%   { opacity: 0; transform: translateY(0); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-120px); }
}

.hero-content { position: relative; z-index: 1; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 36px;
  font-size: 13px;
  color: var(--muted);
  animation: fadeIn 0.8s ease 0.2s both;
}
.hero-tag::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  max-width: 860px;
  margin-bottom: 32px;
  animation: fadeIn 0.8s ease 0.35s both;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 52px;
  line-height: 1.7;
  animation: fadeIn 0.8s ease 0.5s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeIn 0.8s ease 0.65s both;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 8px;
  transition: transform 0.15s, opacity 0.15s, box-shadow 0.15s;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  box-shadow: 0 8px 32px rgba(95,227,161,0.25);
}

.btn-ghost {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
}

/* ── TRUST BAR ── */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--surface);
}

.trust-label { font-size: 12px; color: var(--muted); white-space: nowrap; }

.trust-stats { display: flex; gap: 60px; flex-wrap: wrap; }

.trust-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.trust-stat span { font-size: 13px; color: var(--muted); }

/* ── SECTION WRAPPER ── */
section { padding: 120px 60px; }

.section-head { margin-bottom: 72px; }
.section-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-top: 16px;
}

/* ── FOR WHOM ── */
.forwhom { background: var(--surface); }

.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
}

.forwhom-card {
  background: var(--card);
  padding: 40px 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.forwhom-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(95,227,161,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.forwhom-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.forwhom-card:hover::after { opacity: 1; }

.forwhom-card .num {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
}
.forwhom-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.forwhom-card p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ── MODULES ── */
.modules { background: var(--bg); }

.modules-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.module-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  gap: 32px;
  padding: 36px 40px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: default;
  position: relative;
}
.module-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.3s;
}
.module-item:last-child { border-bottom: none; }
.module-item:hover { background: var(--surface); }
.module-item:hover::before { transform: scaleY(1); }

.module-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  padding-top: 4px;
  letter-spacing: 0.05em;
}
.module-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.module-content p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.module-tag {
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
  white-space: nowrap;
  align-self: flex-start;
}
/* free badge on a module row */
.module-tag.free {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(95,227,161,0.08);
  font-weight: 700;
}
.module-tag.locked {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* OPEN module — clickable, highlighted */
.module-item.open-lesson {
  cursor: pointer;
  background: rgba(95,227,161,0.04);
}
.module-item.open-lesson::before { transform: scaleY(1); }
.module-item.open-lesson:hover { background: rgba(95,227,161,0.09); }
.module-item.open-lesson .module-num { color: var(--accent); }

/* LOCKED modules — dimmed */
.module-item.locked .module-num,
.module-item.locked .module-content h3,
.module-item.locked .module-content p {
  opacity: 0.55;
}
.module-item.locked .module-num::after {
  content: ' 🔒';
  font-size: 11px;
}
.module-lock-hint {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
}
.module-lock-hint a { color: var(--accent); font-weight: 600; }

/* ── TOOLS ── */
.tools { background: var(--surface); }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.tool-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.tool-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(95,227,161,0.1);
}
.tool-icon { font-size: 28px; margin-bottom: 16px; }
.tool-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.tool-card p { font-size: 13px; color: var(--muted); }

/* ── FREE LESSON ── */
.free { background: var(--bg); }

.free-inner {
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(95,227,161,0.08) 0%, transparent 60%),
    var(--card);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

.free-tag {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.free h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.free h2 em { font-style: normal; color: var(--accent); }

.free-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
}

.free-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.free-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}
.free-list li::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.free-note { font-size: 13px; color: var(--muted); margin-top: 16px; }

/* preview card on the right */
.free-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.free-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.free-card-head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.free-chat {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.free-bubble {
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
}
.free-bubble.user {
  background: var(--surface);
  border: 1px solid var(--border);
  align-self: flex-end;
  max-width: 80%;
}
.free-bubble.ai {
  background: rgba(95,227,161,0.07);
  border: 1px solid rgba(95,227,161,0.25);
  align-self: flex-start;
  max-width: 90%;
}
.free-bubble .who {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}

/* ── REVIEWS ── */
.reviews { background: var(--bg); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover { border-color: rgba(95,227,161,0.3); transform: translateY(-4px); }

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.review-stars span {
  font-size: 16px;
  color: var(--accent);
}

.review-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
  color: var(--text);
}

.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--border), #2a2a36);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  border: 1px solid var(--border);
}
.review-name { font-size: 14px; font-weight: 600; }
.review-role { font-size: 12px; color: var(--muted); }

/* ── GUARANTEE ── */
.guarantee { background: var(--surface); }

.guarantee-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.guarantee-badge {
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 24px;
  position: relative;
}
.guarantee-badge::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(95,227,161,0.3);
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.guarantee-badge .g-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.guarantee-badge .g-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.guarantee-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-right h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}
.guarantee-right h2 em { font-style: normal; color: var(--accent); }
.guarantee-right p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.guarantee-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.guarantee-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.guarantee-point::before {
  content: '✓';
  width: 24px; height: 24px;
  background: rgba(95,227,161,0.1);
  border: 1px solid rgba(95,227,161,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── PRICING ── */
.pricing { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1040px;
}

.pricing-note {
  max-width: 1040px;
  margin: 28px auto 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  position: relative;
  transition: transform 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.featured {
  border-color: var(--accent);
  background: #141410;
  box-shadow: 0 0 60px rgba(95,227,161,0.07);
}

.pricing-badge {
  position: absolute;
  top: -12px; left: 40px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.pricing-name { font-size: 15px; color: var(--muted); margin-bottom: 16px; }
.pricing-price {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-price span { font-size: 22px; color: var(--muted); }
.pricing-period { font-size: 13px; color: var(--muted); margin-bottom: 36px; }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

.btn-pricing {
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-pricing:hover { transform: translateY(-2px); }
.btn-pricing.solid {
  background: var(--accent);
  color: #000;
}
.btn-pricing.solid:hover { box-shadow: 0 8px 32px rgba(95,227,161,0.3); }
.btn-pricing.outline {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-pricing.outline:hover { border-color: var(--accent); opacity: 0.9; }

/* ── FAQ ── */
.faq { background: var(--surface); }

.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  padding: 28px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--card); }

.faq-q .ico {
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q .ico { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-a-inner { padding: 0 32px 28px; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── CTA FINAL ── */
.cta-final {
  background: var(--bg);
  text-align: center;
  padding: 160px 60px;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(95,227,161,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final h2 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  max-width: 700px;
  margin: 0 auto 20px;
}
.cta-final h2 em { font-style: normal; color: var(--accent); }
.cta-final p {
  color: var(--muted);
  font-size: 17px;
  max-width: 440px;
  margin: 0 auto 52px;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--bg);
}
.footer-logo { font-size: 16px; font-weight: 700; letter-spacing: -0.03em; }
.footer-logo span { color: var(--accent); }
footer p { font-size: 13px; color: var(--muted); }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* ── MOBILE STICKY CTA ── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(13,13,15,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}
.mobile-cta a {
  display: block;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  .hero { padding: 120px 24px 80px; }
  .trust { padding: 28px 24px; gap: 28px; flex-wrap: wrap; }
  .trust-stats { gap: 28px; }
  .module-item { grid-template-columns: 50px 1fr; }
  .module-tag { display: none; }
  .free-inner { grid-template-columns: 1fr; gap: 36px; padding: 36px 28px; }
  .guarantee-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .guarantee-left { justify-content: center; }
  .guarantee-point { justify-content: center; }
  footer { padding: 32px 24px; }
  .hero-scroll { display: none; }
  .mobile-cta { display: block; }
  body { padding-bottom: 80px; }
}
