/* ============================================================
   PEAK SERVICE — CPA Website Growth System Landing Page
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --clr-dark:       #060911;
  --clr-dark2:      #0c1020;
  --clr-dark3:      #111827;
  --clr-card:       #131c2e;
  --clr-card-hover: #1a2540;
  --clr-border:     rgba(255,255,255,0.08);
  --clr-gold:       #F5B014;
  --clr-gold-dark:  #d9960d;
  --clr-white:      #ffffff;
  --clr-text:       #cbd5e1;
  --clr-muted:      #64748b;
  --clr-highlight:  #F5B014;
  --clr-green:      #22c55e;
  --font:           'Inter', system-ui, -apple-system, sans-serif;
  --radius:         12px;
  --radius-sm:      8px;
  --shadow:         0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold:    0 4px 24px rgba(245,176,20,0.35);
  --max-w:          1160px;
  --section-py:     100px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--clr-dark);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
iframe { display: block; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.22s ease;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: #000;
  padding: 14px 32px;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ffc72a, var(--clr-gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,176,20,0.5);
}
.btn-primary:active { transform: translateY(0); }
.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}
.btn-xl {
  padding: 18px 44px;
  font-size: 1.125rem;
}
.btn-arrow { font-size: 1.1em; }

/* ---------- Section Tags ---------- */
.section-tag {
  display: inline-block;
  background: rgba(245,176,20,0.12);
  color: var(--clr-gold);
  border: 1px solid rgba(245,176,20,0.3);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* ---------- Section Headlines ---------- */
.section-headline {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-subtext {
  font-size: 1.0625rem;
  color: var(--clr-text);
  max-width: 700px;
  margin-bottom: 16px;
}
.highlight { color: var(--clr-gold); }

/* ---------- Section Base ---------- */
.section {
  padding: var(--section-py) 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,9,17,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  padding: 14px 0;
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -0.02em;
}
.header-cta { flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  padding: 90px 0 80px;
  background: var(--clr-dark);
  overflow: hidden;
  text-align: center;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(245,176,20,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,176,20,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(59,130,246,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(245,176,20,0.12);
  color: var(--clr-gold);
  border: 1px solid rgba(245,176,20,0.3);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--clr-text);
  max-width: 700px;
  margin: 0 auto 16px;
}
.hero-sub2 { margin-bottom: 36px; }
.hero-btn { margin-bottom: 14px; }
.hero-disclaimer {
  font-size: 0.875rem;
  color: var(--clr-muted);
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px 0;
  max-width: 560px;
  margin: 0 auto;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--clr-gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--clr-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--clr-border);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--clr-dark2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.875rem;
  color: var(--clr-muted);
  font-weight: 500;
  text-align: center;
}
.trust-items {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-white);
}
.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--clr-gold);
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section {
  background: var(--clr-dark);
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.problem-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color 0.2s, background 0.2s;
}
.problem-card:hover {
  border-color: rgba(245,176,20,0.3);
  background: var(--clr-card-hover);
}
.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.problem-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.problem-card p {
  font-size: 0.9375rem;
  color: var(--clr-text);
  line-height: 1.6;
}

/* Phone centered in problem section */
.problem-phone-center {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

/* ============================================================
   2AM SECTION
   ============================================================ */
.am2-section {
  background: var(--clr-dark2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.am2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.am2-body {
  font-size: 1.0625rem;
  color: var(--clr-text);
  margin-bottom: 18px;
}
.am2-body strong { color: var(--clr-white); }

/* Phone Mockup */
.am2-visual {
  display: flex;
  justify-content: center;
}
.phone-mockup {
  width: 280px;
  background: #0f0f0f;
  border-radius: 36px;
  border: 3px solid #333;
  padding: 20px 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.phone-mockup::before {
  content: '';
  display: block;
  width: 80px;
  height: 8px;
  background: #222;
  border-radius: 8px;
  margin: 0 auto 16px;
}
.phone-screen { display: flex; flex-direction: column; gap: 10px; }
.phone-time {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 4px;
}
.phone-search {
  background: #1c1c1e;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #aaa;
}
.search-icon { font-size: 0.875rem; }
.phone-result {
  background: #1c1c1e;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.phone-result.featured {
  background: rgba(245,176,20,0.1);
  border: 1px solid rgba(245,176,20,0.25);
}
.result-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-gold);
  margin-top: 5px;
  flex-shrink: 0;
}
.result-dot.grey { background: #555; }
.result-content { flex: 1; min-width: 0; }
.result-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.result-stars {
  font-size: 0.75rem;
  color: var(--clr-gold);
}
.result-stars span { color: #aaa; }
.result-stars.muted { color: #888; }
.result-stars.muted span { color: #666; }
.result-meta {
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 2px;
}
.result-meta.muted { color: #666; }
.result-cta-btn {
  margin-top: 8px;
  background: var(--clr-gold);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
}
.phone-notif {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #ccc;
}
.phone-notif strong { color: #fff; }

/* ============================================================
   OFFER SECTION
   ============================================================ */
.offer-section { background: var(--clr-dark); }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
  margin-bottom: 48px;
}
.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, background 0.2s;
}
.offer-item:hover {
  border-color: rgba(245,176,20,0.25);
  background: var(--clr-card-hover);
}
.offer-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,176,20,0.1);
  border-radius: var(--radius-sm);
}
.offer-item-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 6px;
}
.offer-item-text p {
  font-size: 0.9rem;
  color: var(--clr-text);
  line-height: 1.6;
}

/* Value Box */
.value-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 40px;
  gap: 60px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.value-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.value-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-muted);
  font-weight: 600;
}
.value-price {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.value-price.strike {
  color: var(--clr-muted);
  text-decoration: line-through;
  font-size: 2rem;
}
.value-price.gold { color: var(--clr-gold); }
.value-note {
  font-size: 0.875rem;
  color: var(--clr-muted);
  max-width: 240px;
}
.value-divider {
  width: 1px;
  height: 80px;
  background: var(--clr-border);
}
.offer-cta-wrap { text-align: center; }
.offer-cta-note {
  margin-top: 14px;
  font-size: 0.875rem;
  color: var(--clr-muted);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  background: var(--clr-dark2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 0 24px;
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: #000;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}
.step-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
}
.step-body p {
  font-size: 0.9375rem;
  color: var(--clr-text);
  line-height: 1.65;
}
.step-arrow {
  font-size: 2rem;
  color: var(--clr-gold);
  padding-top: 20px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--clr-dark); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
  margin-bottom: 40px;
}
.testimonial-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: rgba(245,176,20,0.3); }
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.testimonial-info {
  padding: 16px 20px;
}
.testimonial-name {
  font-weight: 700;
  color: var(--clr-white);
  font-size: 0.9375rem;
  margin-bottom: 3px;
}
.testimonial-loc {
  font-size: 0.8125rem;
  color: var(--clr-muted);
}

/* Text Testimonials */
.text-testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
}
.text-testimonial {
  flex: 0 1 340px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.text-testimonial:hover { border-color: rgba(245,176,20,0.25); }
.stars {
  color: var(--clr-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.quote {
  font-size: 0.9375rem;
  color: var(--clr-text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}
.author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: #000;
  font-weight: 800;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  color: var(--clr-white);
  font-size: 0.9rem;
}
.author-firm {
  font-size: 0.8rem;
  color: var(--clr-muted);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-section {
  background: var(--clr-dark2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.compare-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: center;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--clr-border);
}
.compare-table th {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--clr-card);
  color: var(--clr-muted);
}
.compare-table th.th-peak {
  background: rgba(245,176,20,0.1);
  color: var(--clr-gold);
  border-bottom: 2px solid rgba(245,176,20,0.3);
}
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--clr-white);
  background: var(--clr-dark3);
}
.compare-table td.td-peak {
  background: rgba(245,176,20,0.05);
  color: var(--clr-gold);
  font-weight: 700;
}
.compare-table td {
  color: var(--clr-muted);
}
.check {
  color: var(--clr-gold);
  font-weight: 900;
  margin-right: 4px;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table tr:hover td:first-child { background: rgba(255,255,255,0.03); }
.compare-table tr:hover td.td-peak { background: rgba(245,176,20,0.07); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--clr-dark); }
.faq-list {
  max-width: 800px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(245,176,20,0.3); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-white);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--clr-gold); }
.faq-arrow {
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--clr-muted);
}
.faq-item.open .faq-arrow { transform: rotate(45deg); color: var(--clr-gold); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-a.open {
  max-height: 400px;
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--clr-text);
  line-height: 1.7;
  border-top: 1px solid var(--clr-border);
  padding-top: 16px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-section {
  background: var(--clr-dark2);
  border-top: 1px solid var(--clr-border);
  text-align: center;
}
.final-cta-inner {
  max-width: 820px;
  margin: 0 auto;
}
.final-headline {
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.final-sub {
  font-size: 1.0625rem;
  color: var(--clr-text);
  margin-bottom: 16px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Box */
.cta-box {
  margin-top: 48px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 4px;
}
.cta-box-inner {
  background: linear-gradient(135deg, rgba(245,176,20,0.06), rgba(245,176,20,0.02));
  border: 1px solid rgba(245,176,20,0.2);
  border-radius: 12px;
  padding: 48px 40px;
}
.cta-box-headline {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 28px;
}
.cta-checklist {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 36px;
}
.cta-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--clr-white);
  font-weight: 500;
}
.check-li {
  color: var(--clr-gold);
  font-weight: 900;
  font-size: 1.1em;
  flex-shrink: 0;
}
.cta-main-btn { display: inline-flex; }
.booking-calendar {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 8px;
}
.booking-calendar iframe {
  width: 100%;
  min-height: 700px;
  border: none;
}
.cta-note {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--clr-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-dark);
  border-top: 1px solid var(--clr-border);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
}
.footer-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--clr-white);
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--clr-muted);
  max-width: 500px;
}
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--clr-text);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--clr-gold); }
.footer-legal {
  font-size: 0.8125rem;
  color: var(--clr-muted);
  max-width: 600px;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .problem-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .am2-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .am2-visual { order: -1; }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid .testimonial-card:last-child {
    display: none; /* hide third on tablet for clean 2-col layout */
  }
  .text-testimonials .text-testimonial {
    flex: 0 1 100%;
  }
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step { padding: 0; max-width: 500px; width: 100%; }
  .step-arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-py: 60px; }

  /* Header */
  .logo-text { font-size: 1.1rem; }

  /* Hero */
  .hero-section { padding: 60px 0 56px; }
  .hero-stats {
    flex-direction: column;
    gap: 24px;
    padding: 28px;
  }
  .stat-divider { width: 60px; height: 1px; }

  /* Trust bar */
  .trust-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .trust-items {
    justify-content: center;
    gap: 16px;
  }

  /* Problem */
  .problem-cards { grid-template-columns: 1fr; }

  /* Phone */
  .phone-mockup { width: min(320px, 100%); }

  /* Offer */
  .value-box {
    flex-direction: column;
    gap: 32px;
    padding: 28px 20px;
  }
  .value-divider { width: 60px; height: 1px; }
  .value-price { font-size: 2rem; }
  .value-price.strike { font-size: 1.625rem; }

  /* Steps */
  .step-num { width: 56px; height: 56px; font-size: 1.25rem; }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid .testimonial-card:last-child {
    display: block; /* show all on mobile */
  }

  /* Compare Table */
  .compare-table th,
  .compare-table td { padding: 12px 14px; font-size: 0.8125rem; }

  /* CTA box */
  .cta-box-inner { padding: 32px 20px; }
  .cta-checklist { width: 100%; }

  /* Footer */
  .footer-links { gap: 16px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  :root { --section-py: 48px; }

  .hero-headline { font-size: 2rem; }
  .section-headline { font-size: 1.625rem; }
  .btn-xl { padding: 16px 28px; font-size: 1rem; }
  .final-headline { font-size: 1.75rem; }
  .cta-box-headline { font-size: 1.375rem; }
  .phone-mockup { width: min(340px, 100%); padding: 16px 10px; }
  .trust-item span { font-size: 0.8125rem; }
}

/* ============================================================
   UTILITY — Smooth scroll offset for sticky header
   ============================================================ */
[id] { scroll-margin-top: 80px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
