/* CoachStackHub Design System */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #1B3A5C;
  --navy-light: #264d75;
  --navy-dark: #122840;
  --gold: #D4A017;
  --gold-light: #f0d078;
  --gold-glow: rgba(212, 160, 23, 0.15);
  --cream: #FDFBF7;
  --warm-gray: #f5f2ed;
  --text: #1a1a1a;
  --text-secondary: #5a6170;
  --white: #ffffff;
  --border: rgba(27,58,92,0.08);
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(27,58,92,0.06);
  --shadow-md: 0 8px 30px rgba(27,58,92,0.08);
  --shadow-lg: 0 16px 48px rgba(27,58,92,0.12);
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ==================== NAVIGATION ==================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27,58,92,0.06);
  transition: all 0.3s ease;
}
.site-nav.scrolled {
  padding: 0.75rem 2rem;
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--navy-light) !important; }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27,58,92,0.25);
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold-glow);
  transform: translateY(-1px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #c49315;
  border-color: #c49315;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,160,23,0.3);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 5rem;
  background: linear-gradient(175deg, var(--white) 0%, var(--cream) 60%, var(--warm-gray) 100%);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27,58,92,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  opacity: 0.3;
  border-radius: 2px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mockup {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.hero-mockup-bar {
  background: var(--navy);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.hero-mockup-dot:first-child { background: #ff5f57; }
.hero-mockup-dot:nth-child(2) { background: #febc2e; }
.hero-mockup-dot:nth-child(3) { background: #28c840; }
.hero-mockup-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mockup-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}
.mockup-badge {
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(40,200,64,0.1);
  color: #28c840;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.mockup-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid var(--border);
}
.mockup-card-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.mockup-card-text {
  font-size: 0.7rem;
  color: var(--text-secondary);
}
.mockup-progress {
  height: 6px;
  background: rgba(27,58,92,0.1);
  border-radius: 3px;
  margin-top: 0.5rem;
  overflow: hidden;
}
.mockup-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}
.mockup-ai-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-glow);
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius);
  border: 1px solid rgba(212,160,23,0.15);
}
.mockup-ai-icon {
  font-size: 0.9rem;
}
.mockup-ai-text {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--navy);
}

/* ==================== SOCIAL PROOF ==================== */
.social-proof {
  padding: 5rem 2rem;
  background: var(--white);
}
.social-proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}
.testimonial:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ==================== FEATURES ==================== */
.features-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-gray) 100%);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}
.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==================== TRUST LINE ==================== */
.trust-line {
  padding: 3rem 2rem;
  background: var(--navy);
  text-align: center;
}
.trust-text {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}
.trust-text strong {
  color: var(--gold);
}

/* ==================== PRICING ==================== */
.pricing-hero {
  padding: 8rem 2rem 3rem;
  background: linear-gradient(175deg, var(--white) 0%, var(--cream) 100%);
  text-align: center;
}
.pricing-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.pricing-hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 1rem;
}
.pricing-currency-note {
  font-size: 0.82rem;
  color: var(--text-secondary);
  opacity: 0.8;
  margin-top: 0.5rem;
}
.pricing-section {
  padding: 3rem 2rem 6rem;
  background: var(--cream);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pricing-card.popular {
  border-color: var(--gold);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 1.25rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.pricing-amount {
  margin-bottom: 0.25rem;
}
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
}
.pricing-price .currency { font-size: 1.5rem; }
.pricing-period {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 400;
}
.pricing-local {
  font-size: 0.78rem;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-bottom: 1.5rem;
  min-height: 1.2rem;
}
.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.4;
}
.pricing-features li::before {
  content: "\2713";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card .btn { width: 100%; }

/* Per-Output Pricing */
.per-output {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.per-output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.per-output-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.per-output-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.per-output-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.per-output-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.per-output-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* FAQ */
.faq-section {
  padding: 4rem 0 0;
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.faq-question {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.faq-answer {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==================== LEGAL PAGES ==================== */
.legal-page {
  padding: 8rem 2rem 4rem;
  background: var(--white);
}
.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}
.legal-inner h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.legal-date {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-inner h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.legal-inner h3 {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.legal-inner p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-inner ul, .legal-inner ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.legal-inner li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.3rem;
}
.legal-inner strong { color: var(--navy); }
.legal-inner a {
  color: var(--gold);
  text-decoration: underline;
}
.legal-inner a:hover {
  color: var(--navy);
}
.legal-callout {
  background: var(--gold-glow);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}
.legal-callout p {
  margin-bottom: 0;
  font-weight: 500;
}

/* ==================== FOOTER ==================== */
.site-footer {
  padding: 3.5rem 2rem 2rem;
  background: var(--navy);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand {
  max-width: 300px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 3rem;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--white); }

/* ==================== COOKIE CONSENT ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 1.25rem 2rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cookie-banner.visible { display: flex; }
.cookie-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}
.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(175deg, var(--cream) 0%, var(--warm-gray) 100%);
  text-align: center;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.cta-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .per-output-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  .hero { padding: 7rem 1.5rem 3rem; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { order: -1; }
  .hero-mockup { max-width: 360px; }

  .social-proof { padding: 3.5rem 1.5rem; }
  .testimonials { grid-template-columns: 1fr; }

  .features-section { padding: 3.5rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }

  .pricing-hero { padding: 7rem 1.5rem 2rem; }
  .pricing-section { padding: 2rem 1.5rem 4rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .per-output-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .legal-page { padding: 7rem 1.5rem 3rem; }

  .footer-top { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }

  .cookie-banner { flex-direction: column; text-align: center; }
  .cookie-buttons { width: 100%; justify-content: center; }

  .cta-section { padding: 4rem 1.5rem; }
  .btn-group { justify-content: center; }
}

@media (max-width: 480px) {
  .pricing-card { padding: 1.5rem; }
  .hero h1 { font-size: 2rem; }
}
