/* =====================================================
   SHOW UP — Trades Marketing Site
   ===================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --bg: #F5F4F0;
  --surface: #FFFFFF;
  --primary: #E85D04;
  --primary-hover: #C44D00;
  --navy: #1B2B4B;
  --navy-2: #253a66;
  --text: #1A1A1A;
  --text-muted: #555555;
  --border: #D9D7D0;
  --dark-bg: #1B2B4B;
  --dark-text: #F5F4F0;

  /* Semantic */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(20, 30, 50, 0.06);
  --shadow: 0 4px 12px rgba(20, 30, 50, 0.08);
  --shadow-lg: 0 20px 40px -12px rgba(20, 30, 50, 0.18);
  --shadow-xl: 0 30px 60px -15px rgba(20, 30, 50, 0.25);

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Containers */
  --container-max: 1200px;
  --container-narrow: 760px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 300ms;
}

[data-theme="dark"] {
  --bg: #111827;
  --surface: #1F2937;
  --text: #F9FAFB;
  --text-muted: #9CA3AF;
  --border: #374151;
  --navy: #2D3E5F;
  --navy-2: #3a4d75;
  --dark-bg: #0b111f;
  --dark-text: #F9FAFB;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 40px -12px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Satoshi', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Cabinet Grotesk', 'Satoshi', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

p { margin: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.container--narrow { max-width: var(--container-narrow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
  border-radius: 8px;
  transition: all 180ms var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.1), 0 4px 12px rgba(232, 93, 4, 0.25);
}
.btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232, 93, 4, 0.35);
}
.btn--ghost {
  background: transparent;
  color: inherit;
  border: 1.5px solid currentColor;
}
.btn--ghost:hover {
  background: currentColor;
  color: var(--navy);
}
.hero .btn--ghost { color: var(--dark-text); border-color: rgba(245, 244, 240, 0.4); }
.hero .btn--ghost:hover { background: var(--dark-text); color: var(--navy); border-color: var(--dark-text); }
.final .btn--ghost { color: var(--dark-text); border-color: rgba(245, 244, 240, 0.4); }

.btn--lg { padding: 1.05rem 1.75rem; font-size: var(--text-lg); }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 244, 240, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
[data-theme="dark"] .nav { background: rgba(17, 24, 39, 0.85); }
.nav.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: 72px;
}
.logo { color: var(--text); flex-shrink: 0; display: inline-flex; align-items: center; }
.logo__mark { height: 32px; width: auto; }
.logo--light { color: var(--dark-text); }

.nav__links {
  display: flex;
  gap: var(--space-8);
  margin-left: auto;
  margin-right: auto;
}
.nav__link {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text);
  position: relative;
  padding: 0.35rem 0;
  transition: color 150ms var(--ease);
}
.nav__link:hover { color: var(--primary); }
.nav__link.is-active { color: var(--primary); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--primary);
}

.nav__actions { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.theme-toggle {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--text);
  transition: background 150ms var(--ease);
}
.theme-toggle:hover { background: rgba(0, 0, 0, 0.05); }
[data-theme="dark"] .theme-toggle:hover { background: rgba(255, 255, 255, 0.08); }
.icon-sun { display: none; }
[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px; height: 40px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.nav__mobile:not([hidden]) { display: flex; }
.nav__mobile-link {
  padding: var(--space-3) 0;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: var(--text-lg);
  border-bottom: 1px solid var(--border);
}

/* ---------- Sections ---------- */
.section { padding: var(--space-24) 0; }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-16);
}
.section__head--light { color: var(--dark-text); }
.section__head--light .section__title,
.section__head--light .section__sub { color: var(--dark-text); }

.eyebrow {
  display: inline-block;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-4);
}
.eyebrow--light { color: var(--primary); }

.section__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.025em;
}
.section__sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-top: var(--space-4);
  line-height: 1.5;
}
.section__head--light .section__sub { color: rgba(245, 244, 240, 0.7); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--dark-bg);
  color: var(--dark-text);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(5rem, 10vw, 8rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    repeating-linear-gradient(0deg,
      rgba(245, 244, 240, 0.05) 0 1px,
      transparent 1px 80px),
    repeating-linear-gradient(90deg,
      rgba(245, 244, 240, 0.05) 0 1px,
      transparent 1px 80px),
    repeating-linear-gradient(0deg,
      rgba(245, 244, 240, 0.08) 0 1px,
      transparent 1px 16px),
    repeating-linear-gradient(90deg,
      rgba(245, 244, 240, 0.08) 0 1px,
      transparent 1px 16px);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 40%, transparent 90%);
  pointer-events: none;
}
.hero__inner { position: relative; text-align: center; max-width: 920px; }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: rgba(245, 244, 240, 0.08);
  border: 1px solid rgba(245, 244, 240, 0.15);
  border-radius: 999px;
  font-size: var(--text-sm);
  color: rgba(245, 244, 240, 0.85);
  margin-bottom: var(--space-8);
  font-weight: 500;
}
.hero__tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__title {
  color: var(--dark-text);
  font-size: clamp(2.5rem, 7vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-6);
  font-weight: 800;
}
.hero__title--accent { color: var(--primary); }

.hero__sub {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  max-width: 640px;
  margin: 0 auto var(--space-8);
  color: rgba(245, 244, 240, 0.8);
  line-height: 1.55;
}
.hero__sub strong { color: var(--dark-text); font-weight: 700; }

.hero__ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-6);
  background: rgba(245, 244, 240, 0.04);
  border: 1px solid rgba(245, 244, 240, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.hero__stat { text-align: center; }
.hero__stat-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}
.hero__stat-label {
  font-size: var(--text-sm);
  color: rgba(245, 244, 240, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- PAIN POINTS ---------- */
.pain { background: var(--surface); }
.pain__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.pain-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-8);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.pain-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  margin-bottom: var(--space-6);
}
.pain-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}
.pain-card__desc {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.55;
}

/* ---------- HOW IT WORKS ---------- */
.how {
  background: var(--dark-bg);
  color: var(--dark-text);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.how__grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    repeating-linear-gradient(0deg, rgba(245, 244, 240, 0.04) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(90deg, rgba(245, 244, 240, 0.04) 0 1px, transparent 1px 60px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.step {
  padding: var(--space-8);
  background: rgba(245, 244, 240, 0.04);
  border: 1px solid rgba(245, 244, 240, 0.1);
  border-radius: var(--radius);
  position: relative;
}
.step__num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-6);
}
.step__title {
  color: var(--dark-text);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}
.step__desc {
  color: rgba(245, 244, 240, 0.75);
  font-size: var(--text-base);
  line-height: 1.6;
}

/* ---------- PACKAGES ---------- */
.packages { background: var(--bg); }

.packages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 960px;
  margin: 0 auto;
}
.pkg {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.pkg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.pkg--featured { border-color: var(--primary); box-shadow: var(--shadow); }
.pkg--featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.pkg--best { border-color: var(--navy); }
[data-theme="dark"] .pkg--best { border-color: rgba(245,244,240,0.4); }
.pkg--best::before {
  content: "";
  position: absolute;
  inset: -2px;
  border: 2px solid var(--navy);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
[data-theme="dark"] .pkg--best::before { border-color: rgba(245,244,240,0.4); }

.pkg__ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.35);
  z-index: 1;
}
.pkg__ribbon--best {
  background: var(--navy);
  box-shadow: 0 4px 12px rgba(27, 43, 75, 0.35);
}
[data-theme="dark"] .pkg__ribbon--best { background: #F9FAFB; color: var(--navy); }

.pkg__head { margin-bottom: var(--space-6); }

.badge {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: var(--space-4);
}
.badge--navy { background: var(--navy); color: var(--dark-text); }
.badge--orange { background: var(--primary); color: #fff; }
[data-theme="dark"] .badge--navy { background: rgba(245,244,240,0.15); color: var(--text); }

.pkg__name {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
  line-height: 1.1;
}
.pkg__tag {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.5;
  margin-bottom: var(--space-6);
}
.pkg__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border);
}
.pkg__price-amount {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pkg__price-unit {
  font-size: var(--text-base);
  color: var(--text-muted);
  font-weight: 500;
}

.pkg__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8) 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pkg__list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: var(--text-base);
  color: var(--text);
  line-height: 1.5;
}
.pkg__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45rem;
  width: 1rem; height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E85D04' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.pkg__cta { margin-top: auto; }

/* ---------- ROI ---------- */
.roi { background: var(--bg); }

.roi__statement {
  text-align: center;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin: 0 auto var(--space-16);
  color: var(--text);
}
.roi__highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.roi__highlight::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: -2px;
  height: 8px;
  background: rgba(232, 93, 4, 0.2);
  z-index: -1;
}

.roi__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}
.roi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-6);
  text-align: left;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.roi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.roi-card__label {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-4);
}
.roi-card__value {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.roi-card__unit {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.roi__footer {
  text-align: center;
  font-size: var(--text-lg);
  color: var(--text-muted);
}
.roi__footer strong { color: var(--text); font-weight: 700; }

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

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 180ms var(--ease);
}
.faq-item[open] { border-color: var(--primary); }

.faq-item summary {
  list-style: none;
  padding: var(--space-6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--text);
  line-height: 1.3;
  user-select: none;
  transition: color 150ms var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary); }

.faq-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--surface);
  color: var(--primary);
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: transform 220ms var(--ease);
}
.faq-item[open] .faq-item__icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.faq-item__body {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.65;
}

/* ---------- FINAL CTA ---------- */
.final {
  background: var(--dark-bg);
  color: var(--dark-text);
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.final__grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    repeating-linear-gradient(0deg, rgba(245, 244, 240, 0.04) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(90deg, rgba(245, 244, 240, 0.04) 0 1px, transparent 1px 60px);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 90%);
}
.final__title {
  color: var(--dark-text);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}
.final__sub {
  font-size: var(--text-lg);
  color: rgba(245, 244, 240, 0.75);
  max-width: 560px;
  margin: 0 auto var(--space-8);
  line-height: 1.55;
}
.final__fine {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: rgba(245, 244, 240, 0.55);
  letter-spacing: 0.02em;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #111111;
  color: #fff;
  padding: var(--space-16) 0 var(--space-8);
}
[data-theme="dark"] .footer { background: #0a0a0a; }

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
.footer__brand .logo { color: #fff; margin-bottom: var(--space-4); }
.footer__tag {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-base);
  max-width: 380px;
  line-height: 1.5;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__nav a {
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: var(--text-base);
  transition: color 150ms var(--ease);
}
.footer__nav a:hover { color: var(--primary); }
.footer__meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-sm);
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer__fine { color: rgba(255, 255, 255, 0.35); font-size: var(--text-xs); }

/* ---------- MODAL ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn 200ms var(--ease);
}
.modal__panel {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-12) var(--space-8) var(--space-8);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  animation: modalIn 280ms var(--ease);
  border: 1px solid var(--border);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  transition: background 150ms var(--ease), color 150ms var(--ease);
}
.modal__close:hover { background: var(--bg); color: var(--text); }

.modal__content { text-align: left; }
.modal__title {
  font-size: var(--text-3xl);
  margin: var(--space-4) 0 var(--space-3);
  line-height: 1.1;
}
.modal__desc {
  color: var(--text-muted);
  font-size: var(--text-base);
  margin-bottom: var(--space-6);
  line-height: 1.55;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.modal__form input[type="email"] {
  width: 100%;
  padding: 0.95rem 1rem;
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  transition: border-color 150ms var(--ease), box-shadow 150ms var(--ease);
}
.modal__form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.15);
}
.modal__fine {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-2);
}
.modal__error {
  color: #c44d00;
  font-size: var(--text-sm);
  font-weight: 500;
  text-align: center;
}

.modal__success {
  text-align: center;
  padding: var(--space-6) 0;
}
.modal__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  background: rgba(232, 93, 4, 0.12);
  color: var(--primary);
  border-radius: 50%;
  margin-bottom: var(--space-6);
}
.modal__success .modal__title { margin-top: 0; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =====================================================
   Responsive
   ===================================================== */

@media (max-width: 960px) {
  .pain__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .packages__grid { grid-template-columns: 1fr; max-width: 520px; }
  .roi__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .footer__meta { text-align: left; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .hamburger { display: inline-flex; }
  .section { padding: var(--space-16) 0; }

  .hero__title { font-size: clamp(2.25rem, 9vw, 3.25rem); }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .hero__stats { padding: var(--space-4); }

  .pkg { padding: var(--space-6); }
  .pkg__name { font-size: var(--text-2xl); }
}

@media (max-width: 520px) {
  .pain__grid { grid-template-columns: 1fr; }
  .roi__grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; gap: var(--space-3); text-align: left; }
  .hero__stat { display: flex; justify-content: space-between; align-items: baseline; text-align: left; }
  .faq-item summary { font-size: var(--text-base); padding: var(--space-4); }
  .faq-item__body { padding: 0 var(--space-4) var(--space-4); }
  .section__head { margin-bottom: var(--space-12); }
}
