/* ─── Tokens ─────────────────────────────────────────────────── */
:root {
  --bg:          #080810;
  --bg-2:        #0d0d1a;
  --bg-card:     #111120;
  --border:      rgba(255,255,255,0.07);
  --gold:        #c9a84c;
  --gold-light:  #e8c96e;
  --silver:      #a8b8c8;
  --violet:      #7b4fcf;
  --text:        #f0eee8;
  --text-muted:  #7a7a8c;
  --font-display: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;
}

/* ─── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── Custom Cursor ───────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  opacity: 0.6;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 20px; height: 20px; background: var(--gold-light); }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 56px; height: 56px; border-color: var(--gold-light); }

/* ─── Navigation ──────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
nav.scrolled {
  background: rgba(8,8,16,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.nav-logo span { color: var(--text); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: all 0.3s; }

/* ─── Hero ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../elementimg/bg-texture.png');
  background-size: cover;
  opacity: 0.35;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseGlow 5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  padding: 0 3rem;
  z-index: 2;
}

.hero-content { padding-top: 2rem; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.35);
}
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  background: transparent;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--text-muted); color: var(--text); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-item {}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-box-wrap {
  position: relative;
  width: 460px;
  animation: floatBox 6s ease-in-out infinite;
}
@keyframes floatBox {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(1.5deg); }
}
.hero-box-img { width: 100%; position: relative; z-index: 2; filter: drop-shadow(0 30px 60px rgba(201,168,76,0.25)); }
.hero-box-shadow {
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 40px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.3) 0%, transparent 70%);
  animation: shadowPulse 6s ease-in-out infinite;
}
@keyframes shadowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 0.3; transform: translateX(-50%) scaleX(0.8); }
}

/* ─── Marquee ─────────────────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  background: var(--gold);
  padding: 0.75rem 0;
  display: flex;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.marquee-track span::after { content: '✦'; opacity: 0.5; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Section Shared ──────────────────────────────────────────── */
section { padding: 8rem 3rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-label::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 540px;
}

.max-w { max-width: 1200px; margin: 0 auto; }

/* ─── Products ────────────────────────────────────────────────── */
#products { background: var(--bg-2); }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.product-card-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  z-index: 2;
}
.badge-silver { background: rgba(168,184,200,0.15); color: var(--silver); border: 1px solid rgba(168,184,200,0.3); }
.badge-gold   { background: rgba(201,168,76,0.15);  color: var(--gold);   border: 1px solid rgba(201,168,76,0.3); }
.badge-obsidian { background: rgba(123,79,207,0.15); color: #b085f5; border: 1px solid rgba(123,79,207,0.3); }

.product-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(201,168,76,0.06) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-wrap img {
  width: 75%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08) translateY(-6px); }

.product-img-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(201,168,76,0.1) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
}
.product-card:hover .product-img-glow { opacity: 1; }

.product-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }

.product-tier {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
}
.product-includes span {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
}
.product-price sup { font-size: 1rem; }

.btn-add {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-add:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}

/* ─── How It Works ────────────────────────────────────────────── */
#how {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#how::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem; left: 1.5rem; right: 1.5rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), var(--border), transparent);
  z-index: 0;
}

.how-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.how-icon {
  width: 60px; height: 60px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.how-step:hover .how-icon {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 24px rgba(201,168,76,0.15);
}
.how-num {
  position: absolute;
  top: -10px; right: -10px;
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.how-step p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ─── Testimonials ────────────────────────────────────────────── */
#testimonials {
  background: var(--bg-2);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.testi-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
}
.testi-stars span {
  color: var(--gold);
  font-size: 0.85rem;
}

.testi-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-text::before { content: '\201C'; color: var(--gold); font-size: 1.8rem; line-height: 0; vertical-align: -0.4em; margin-right: 3px; }

.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bg);
}
.testi-name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.testi-handle {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
#faq {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}
.faq-q-text {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  transition: transform 0.3s, border-color 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--gold); }

.faq-a {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 1rem; }

/* ─── CTA Banner ──────────────────────────────────────────────── */
#cta {
  background: var(--bg-2);
  padding: 7rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 65%);
}

.cta-inner { position: relative; z-index: 1; }
.cta-inner .section-label { justify-content: center; }
.cta-inner .section-label::before { display: none; }
.cta-inner .section-title { font-size: clamp(2.5rem, 4.5vw, 4rem); }
.cta-inner .section-sub { margin: 1.2rem auto 2.5rem; text-align: center; }
.cta-inner .hero-actions { justify-content: center; }

/* ─── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 3rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-brand .nav-logo { font-size: 1.5rem; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; color: var(--text-muted); max-width: 280px; }

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── Cart Notification ───────────────────────────────────────── */
.cart-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 4px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 9000;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.cart-toast.show { transform: translateX(0); }
.cart-toast-icon { font-size: 1.2rem; }

/* ─── Reveal Animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s 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; }

/* ─── Mobile Nav ──────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 5rem 1.5rem; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 1.5rem;
    gap: 3rem;
  }
  .hero-label { justify-content: center; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-box-wrap { width: 280px; }

  .products-grid { grid-template-columns: 1fr; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .how-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
