/* ============================================
   SUPER CARDÁPIOS — Design System v2
   Dark Food-Tech · Premium Brazilian
   ============================================ */

/* === RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === DESIGN TOKENS === */
:root {
  --bg:             #0C0A08;
  --bg-subtle:      #141210;
  --bg-glass:       rgba(255, 255, 255, 0.035);
  --bg-glass-hover: rgba(255, 255, 255, 0.065);

  --text:           #F0E8DC;
  --text-muted:     #8C7E72;
  --text-dim:       #3A3028;

  --orange:         #FF5500;
  --orange-hover:   #FF6E20;
  --orange-glow:    rgba(255, 85,  0, 0.18);
  --orange-glow-lg: rgba(255, 85,  0, 0.35);
  --orange-border:  rgba(255, 85,  0, 0.28);

  --lime:           #BFFF4A;
  --lime-hover:     #A8E830;
  --lime-glow:      rgba(191, 255, 74, 0.28);

  --border:         rgba(255, 255, 255, 0.07);
  --border-strong:  rgba(255, 255, 255, 0.13);

  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;

  --container:      1200px;
  --nav-height:     72px;

  --radius-sm:      10px;
  --radius-md:      16px;
  --radius-lg:      22px;
  --radius-pill:    9999px;
}

/* === BASE === */
img    { max-width: 100%; display: block; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
}

em {
  font-style: italic;
  color: var(--orange);
}

/* === CONTAINER === */
.sc-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* === SCROLL REVEAL === */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="400"] { transition-delay: 0.40s; }
[data-delay="500"] { transition-delay: 0.50s; }

/* === BUTTONS === */
.sc-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  background: var(--lime);
  color: #0C0A08;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.sc-btn-cta:hover {
  background: var(--lime-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--lime-glow);
}

.sc-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.sc-btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: var(--bg-glass);
}

.sc-btn-large {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}

/* Force CTA color inside nav list */
.sc-nav-links .sc-btn-cta,
.sc-nav-links .sc-btn-cta:hover { color: #0C0A08; }

/* ===========================
   NAV
   =========================== */
.sc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.sc-nav.scrolled {
  background: rgba(12, 10, 8, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.sc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.sc-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--text);
  letter-spacing: -0.02em;
  transition: opacity 0.2s ease;
}

.sc-logo:hover { opacity: 0.8; }

.sc-nav-links {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.sc-nav-links > li > a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
}

.sc-nav-links > li > a:hover { color: var(--text); }

/* Hamburger */
.sc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.sc-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.sc-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sc-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.sc-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile sidenav */
.sc-sidenav {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 1rem 0 1.5rem;
  transform: translateY(-105%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  pointer-events: none;
}

.sc-sidenav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.sc-sidenav-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 2rem;
}

.sc-sidenav-inner a {
  display: block;
  padding: 0.875rem 1rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.sc-sidenav-inner a:hover { color: var(--text); background: var(--bg-glass); }

.sc-sidenav-inner .sc-btn-cta {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  border-radius: var(--radius-md);
  padding: 1rem 1.75rem;
}

/* ===========================
   HERO
   =========================== */
.sc-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.sc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 48%, rgba(255, 85, 0, 0.10) 0%, transparent 58%),
    radial-gradient(ellipse at 10% 85%, rgba(191, 255, 74, 0.05) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.sc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

.sc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.sc-hero-text { position: relative; z-index: 2; }

.sc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.75rem;
  padding: 0.4rem 1.125rem;
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-pill);
  background: var(--orange-glow);
}

.sc-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

.sc-hero-headline {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1.75rem;
  line-height: 1.0;
}

.sc-hero-headline em {
  font-style: italic;
  color: var(--orange);
}

.sc-hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2.75rem;
}

.sc-hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Visual */
.sc-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.sc-hero-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--orange-glow-lg) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.sc-hero-tablet {
  width: 88%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 28px 56px rgba(0,0,0,0.65));
  transform: perspective(1100px) rotateY(-7deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.sc-hero-tablet:hover {
  transform: perspective(1100px) rotateY(-3deg) rotateX(1deg) translateY(-6px);
}

.sc-hero-phone {
  position: absolute;
  width: 27%;
  bottom: -2rem;
  right: 2%;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.7));
  transform: perspective(800px) rotateY(4deg);
}

/* ===========================
   METRICS
   =========================== */
.sc-metrics {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}

.sc-metrics-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sc-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.75rem 1.5rem;
  border-right: 1px solid var(--border);
  transition: background 0.2s ease;
}

.sc-metric:last-child { border-right: none; }
.sc-metric:hover      { background: var(--bg-glass); }

.sc-metric-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}

.sc-metric-num sup {
  font-size: 1rem;
  vertical-align: super;
  color: var(--orange);
  font-family: var(--font-body);
  font-weight: 700;
}

.sc-metric-num.lime { color: var(--lime); }

.sc-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ===========================
   SECTION LABELS
   =========================== */
.sc-section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.sc-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.sc-section-title em {
  font-style: italic;
  color: var(--text-muted);
}

/* ===========================
   FEATURES
   =========================== */
.sc-features { padding: 7rem 0; }

.sc-features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.sc-feature-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: background 0.3s ease, border-color 0.3s ease,
              transform 0.35s ease, box-shadow 0.35s ease;
}

.sc-feature-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-strong);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.sc-feature-card.span-6 { grid-column: span 6; }
.sc-feature-card.span-4 { grid-column: span 4; }
.sc-feature-card.span-8 { grid-column: span 8; }

.sc-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-glow);
  border: 1px solid var(--orange-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--orange);
}

.sc-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sc-feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.sc-feature-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.sc-feature-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(191, 255, 74, 0.08);
  border: 1px solid rgba(191, 255, 74, 0.18);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  margin-top: 1.25rem;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.sc-how {
  padding: 7rem 0;
  position: relative;
}

.sc-how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255,85,0,0.025) 50%, transparent 100%);
  pointer-events: none;
}

.sc-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.sc-step {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s ease;
}

.sc-step:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.sc-step-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}

.sc-step h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.sc-step p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.sc-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3.5rem;
  font-size: 1.5rem;
  color: var(--text-dim);
}

/* ===========================
   ESTABLISHMENTS
   =========================== */
.sc-establishments { padding: 7rem 0; }

.sc-estab-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
}

.sc-estab-header .sc-section-title { margin-bottom: 0; }

.sc-estab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.sc-estab-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}

.sc-estab-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.sc-estab-item:hover img { transform: scale(1.07); }

.sc-estab-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,10,8,0.5) 0%, transparent 55%);
  border-radius: var(--radius-md);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.sc-testimonials { padding: 7rem 0; }

.sc-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.sc-testimonial-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s ease;
}

.sc-testimonial-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-strong);
  transform: translateY(-5px);
}

.sc-testimonial-stars {
  color: var(--orange);
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
}

.sc-testimonial-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.sc-testimonial-text::before { content: '\201C'; }
.sc-testimonial-text::after  { content: '\201D'; }

.sc-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.sc-testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-strong);
}

.sc-testimonial-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

/* ===========================
   PRICING
   =========================== */
.sc-pricing { padding: 7rem 0; }

.sc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
  justify-content: center;
  gap: 3.0rem;
  align-items: center;
  padding: 2rem 0;
}

.sc-plan-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.25);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s ease,
              box-shadow 0.35s ease, z-index 0s;
}

.sc-plan-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-strong);
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
  z-index: 1;
}

/* Featured plan */
.sc-plan-featured {
  background: linear-gradient(160deg, #1C1106 0%, #221408 100%);
  border-color: rgba(191, 255, 74, 0.30);
  position: relative;
  transform: translateY(-8px);
  box-shadow: 0 0 0 1px rgba(191, 255, 74, 0.12),
              0 2px 5px rgba(0,0,0,0.4);
}

.sc-plan-featured:hover {
  border-color: rgba(191, 255, 74, 0.5);
  transform: translateY(-13px);
  box-shadow: 0 0 0 1px rgba(191, 255, 74, 0.22),
              0 4px 10px rgba(0, 0, 0, 0.356);
}

.sc-plan-header { display: flex; flex-direction: column; gap: 0.75rem; }

/* Badges */
.sc-plan-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-pill);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.sc-badge-orange {
  background: var(--orange-glow);
  border-color: var(--orange-border);
  color: var(--orange);
}

.sc-badge-lime {
  background: rgba(191, 255, 74, 0.10);
  border-color: rgba(191, 255, 74, 0.30);
  color: var(--lime);
}

.sc-plan-name {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.sc-plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-top: 0.25rem;
}

.sc-plan-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3.5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.sc-plan-featured .sc-plan-amount { color: var(--lime); }

.sc-plan-amount sup {
  font-size: 1.125rem;
  font-family: var(--font-body);
  font-weight: 600;
  vertical-align: baseline;
  color: inherit;
}

.sc-plan-period {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.4;
}

.sc-plan-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-top: 0.25rem;
}

/* Feature list */
.sc-plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex: 1;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
  margin-top: -0.5rem;
  padding-top: 1.5rem;
}

.sc-plan-feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.4;
}

.sc-feat-off {
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-color: var(--text-dim);
}

.sc-feat-bonus {
  color: var(--lime) !important;
  text-decoration: none !important;
  font-weight: 500;
}

.sc-feat-bonus strong { font-weight: 700; }

.sc-feat-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.sc-feat-icon.sc-feat-gift {
  width: auto;
  height: auto;
  font-size: 1rem;
  background: none;
}

.sc-feat-ok {
  background: rgba(191, 255, 74, 0.12);
  border: 1px solid rgba(191, 255, 74, 0.25);
  color: var(--lime);
}

.sc-feat-ok::after  { content: '✓'; font-weight: 700; }

.sc-feat-no {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.sc-feat-no::after  { content: '×'; }

/* CTA inside card */
.sc-plan-cta {
  display: block;
  text-align: center;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
              transform 0.25s ease, box-shadow 0.25s ease;
}

.sc-plan-card .sc-btn-ghost.sc-plan-cta {
  border-radius: var(--radius-md);
  justify-content: center;
}

.sc-plan-card .sc-btn-cta.sc-plan-cta {
  border-radius: var(--radius-md);
  justify-content: center;
}

.sc-plan-savings {
  font-size: 0.8125rem;
  color: rgba(191, 255, 74, 0.65);
  text-align: center;
  margin-top: -0.5rem;
}

.sc-plan-savings strong { color: var(--lime); }

/* Pricing responsive */
@media (max-width: 900px) {
  .sc-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .sc-plan-featured { transform: none; }
  .sc-plan-featured:hover { transform: translateY(-5px); }
}

/* ===========================
   CTA SECTION
   =========================== */
.sc-cta-wrap {
  padding: 2rem 2rem 5rem;
}

.sc-cta-section {
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,85,0,0.22) 0%, transparent 65%),
    linear-gradient(160deg, #1E1008 0%, #261406 50%, #1A0D04 100%);
  border: 1px solid rgba(255, 85, 0, 0.2);
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.sc-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.5;
}

.sc-cta-inner { position: relative; z-index: 1; }

.sc-cta-section h2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1rem;
}

.sc-cta-section h2 em {
  color: var(--lime);
  font-style: italic;
}

.sc-cta-section p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.75rem;
}

/* ===========================
   FOOTER
   =========================== */
.sc-footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.sc-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.sc-footer-brand .sc-logo {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
}

.sc-footer-brand p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.65;
}

.sc-footer-right { text-align: right; }

.sc-footer-right p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.sc-footer-stores {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.sc-footer-stores img {
  height: 36px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.sc-footer-stores img:hover { opacity: 1; }

.sc-footer-bottom { padding: 1.5rem 0; }

.sc-footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-dim);
  text-align: center;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .sc-features-grid { grid-template-columns: 1fr 1fr; }

  .sc-feature-card.span-6,
  .sc-feature-card.span-4,
  .sc-feature-card.span-8 { grid-column: span 1; }

  .sc-steps {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .sc-step-arrow { padding-top: 0; transform: rotate(90deg); }

  .sc-metrics-inner { grid-template-columns: repeat(2, 1fr); }
  .sc-metric:nth-child(2) { border-right: none; }
  .sc-metric:nth-child(3) { border-top: 1px solid var(--border); }
  .sc-metric:nth-child(4) { border-top: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .sc-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sc-hero-sub      { max-width: 100%; }
  .sc-hero-actions  { flex-direction: column; align-items: flex-start; }
  .sc-hero-visual   { min-height: 280px; }
  .sc-hero-tablet   { width: 70%; margin: 0 auto; transform: none; }
  .sc-hero-phone    { width: 28%; bottom: -1rem; right: 8%; }

  .sc-nav-links { display: none; }
  .sc-hamburger { display: flex; }

  .sc-estab-grid    { grid-template-columns: repeat(2, 1fr); }
  .sc-estab-header  { flex-direction: column; align-items: flex-start; }
  .sc-estab-header .sc-btn-cta { width: 100%; justify-content: center; }

  .sc-testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .sc-cta-wrap      { padding: 2rem 1rem 3rem; }
  .sc-cta-section   { padding: 4rem 1.5rem; }

  .sc-footer-inner  { flex-direction: column; }
  .sc-footer-right  { text-align: left; }
  .sc-footer-stores { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .sc-features-grid { grid-template-columns: 1fr; }
  .sc-metrics-inner { grid-template-columns: 1fr 1fr; }
  .sc-metric        { padding: 2rem 1rem; }
}

/* === Accessibility === */
@media (prefers-reduced-motion: reduce) {
  [data-reveal]           { opacity: 1; transform: none; transition: none; }
  .sc-hero-tablet         { transform: none; }
  .sc-hero-phone          { transform: none; }
  .sc-eyebrow::before     { animation: none; }
}

/* Legacy placeholder — keeps empty rule to avoid parse errors */
@media (max-width: 425px) {
  section {
    /* margin-bottom: 5rem; — handled above */
        }
      }