@import url('./brand-tokens.css');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Instrument+Sans:wght@400;500;600;700&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-6); }
.container--narrow { max-width: 720px; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-4) 0;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: var(--font-semibold);
  font-size: var(--text-lg);
}

.nav-logo svg { width: 32px; height: 32px; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links a {
  color: var(--color-ink-light);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav-links a:hover { color: var(--color-ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--color-vermillion);
  color: white !important;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-out);
}

.nav-cta:hover {
  background: var(--color-vermillion-dark);
  color: white !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  color: var(--color-ink);
}

/* ===== HERO ===== */
.hero {
  padding: var(--space-24) 0 var(--space-20);
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--font-bold);
  line-height: 1.1;
  letter-spacing: var(--tracking-tighter);
  max-width: 720px;
  margin: 0 auto var(--space-6);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-ink-light);
  max-width: 540px;
  margin: 0 auto var(--space-10);
  line-height: var(--leading-relaxed);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}

.btn-outline {
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid var(--color-border);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--color-stone);
  background: var(--color-parchment-dark);
  color: var(--color-ink);
}

.hero-note {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-stone-dark);
}

/* Hero visual */
.hero-visual {
  margin-top: var(--space-16);
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-mockup {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  max-width: 600px;
}

.hero-mockup-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--color-parchment-dark);
  border-bottom: 1px solid var(--color-border);
}

.hero-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-stone-light);
}

.hero-mockup-body {
  min-height: 320px;
}

.hero-mockup-before {
  padding: var(--space-8);
  background: #f8f8f8;
}

/* Floating PDF page */
.hero-pdf {
  position: absolute;
  right: 0;
  top: 40px;
  width: 340px;
  min-height: 380px;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow:
    0 4px 6px rgba(0,0,0,0.04),
    0 20px 50px rgba(0,0,0,0.12),
    0 0 0 1px rgba(0,0,0,0.06);
  padding: var(--space-8) var(--space-6);
  z-index: 10;
  transform: rotate(1deg);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.hero-pdf:hover {
  transform: rotate(2deg) scale(1.03);
  box-shadow:
    0 8px 16px rgba(0,0,0,0.06),
    0 32px 64px rgba(0,0,0,0.18),
    0 0 0 1px rgba(0,0,0,0.06);
}

.hero-pdf-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: var(--color-vermillion);
  color: white;
  font-size: 10px;
  font-weight: var(--font-bold);
  padding: 2px var(--space-2);
  border-radius: var(--radius-sm);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.mockup-label {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-stone-dark);
  margin-bottom: var(--space-4);
}

.mockup-label--after { color: var(--color-vermillion); }

/* Skeleton lines to simulate content */
.skeleton-line {
  height: 8px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
  background: var(--color-stone-light);
}

.skeleton-line--short { width: 60%; }
.skeleton-line--medium { width: 80%; }
.skeleton-line--long { width: 95%; }

.skeleton-line--clutter {
  background: repeating-linear-gradient(90deg, var(--color-stone-light) 0, var(--color-stone-light) 30%, transparent 30%, transparent 33%);
}

.skeleton-block {
  height: 48px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
  background: var(--color-stone-light);
  opacity: 0.5;
}

.skeleton-line--accent {
  background: var(--color-vermillion-light);
}

/* ===== SECTION SHARED ===== */
.section {
  padding: var(--space-20) 0;
}

.section--alt {
  background: var(--color-parchment-dark);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-12);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  color: var(--color-ink-light);
  font-size: var(--text-lg);
}

.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-vermillion);
  margin-bottom: var(--space-3);
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.feature-card {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: white;
  transition: all var(--duration-slow) var(--ease-out);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-stone-light);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  background: var(--color-vermillion-light);
  color: var(--color-vermillion);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-3);
}

.feature-card p {
  color: var(--color-ink-light);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* ===== CUSTOMIZATION SHOWCASE ===== */
.customize-showcase {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-12);
  align-items: center;
}

.customize-showcase .customize-text,
.customize-showcase .customize-mockup {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}

.customize-showcase .customize-mockup {
  transition-delay: 120ms;
}

.customize-showcase.is-visible .customize-text,
.customize-showcase.is-visible .customize-mockup {
  opacity: 1;
  transform: translateY(0);
}

.customize-text h2 { margin-bottom: var(--space-4); }
.customize-text p {
  color: var(--color-ink-light);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  max-width: 480px;
}

.customize-mockup {
  background: var(--color-parchment);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.customize-mockup-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-display);
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  color: var(--color-ink);
}

.customize-mockup-header svg { width: 20px; height: 20px; }

.customize-mockup-body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.customize-field label {
  display: block;
  font-size: 11px;
  font-weight: var(--font-semibold);
  color: var(--color-stone-dark);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-1);
}

.customize-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-ink);
}

.customize-select span {
  color: var(--color-stone);
  font-size: 10px;
}

.customize-row {
  display: flex;
  gap: var(--space-3);
}

.customize-field--half { flex: 1; }

.customize-toggles {
  display: flex;
  gap: var(--space-2);
}

.customize-toggle {
  font-size: 11px;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: white;
  color: var(--color-stone-dark);
}

.customize-toggle--on {
  background: var(--color-sage-light);
  border-color: var(--color-sage);
  color: var(--color-sage-dark, #3d7a6a);
}

.customize-radios {
  display: flex;
  gap: var(--space-1);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2px;
}

.customize-radio {
  font-size: 11px;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  color: var(--color-stone-dark);
  flex: 1;
  text-align: center;
}

.customize-radio--active {
  background: var(--color-vermillion);
  color: white;
  font-weight: var(--font-medium);
}

.customize-btn {
  background: var(--color-vermillion);
  color: white;
  text-align: center;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  margin-top: var(--space-1);
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: white;
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-4) var(--space-6);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
}

.comparison-table thead th {
  background: var(--color-ink);
  color: var(--color-parchment);
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
}

.comparison-table thead th:last-child {
  color: white;
  background: var(--color-vermillion);
}

.comparison-table tbody tr:last-child td { border-bottom: none; }

.comparison-table tbody tr:hover { background: var(--color-parchment); }

.comparison-table td:first-child {
  font-weight: var(--font-medium);
  color: var(--color-ink);
}

.check { color: var(--color-sage); font-weight: bold; }
.cross { color: var(--color-stone); }

/* ===== SUPPORTED SITES ===== */
.sites-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.site-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-ink-light);
  transition: all var(--duration-fast) var(--ease-out);
}

.site-badge:hover {
  border-color: var(--color-stone);
  box-shadow: var(--shadow-sm);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--space-20) 0;
  text-align: center;
}

.cta-box {
  background: var(--color-ink);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-8);
  color: var(--color-parchment);
}

.cta-box h2 {
  color: var(--color-parchment);
  margin-bottom: var(--space-4);
}

.cta-box p {
  color: var(--color-stone);
  margin-bottom: var(--space-8);
  font-size: var(--text-lg);
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
  align-items: start;
}

.pricing-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  transition: all var(--duration-slow) var(--ease-out);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.pricing-card--popular {
  border-color: var(--color-vermillion);
  border-width: 2px;
}

.pricing-badge {
  position: absolute;
  top: calc(-1 * var(--space-3));
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-vermillion);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.pricing-price {
  font-size: var(--text-4xl);
  font-family: var(--font-display);
  font-weight: var(--font-bold);
  color: var(--color-ink);
  margin-bottom: var(--space-1);
}

.pricing-price span {
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  color: var(--color-stone-dark);
}

.pricing-desc {
  font-size: var(--text-sm);
  color: var(--color-stone-dark);
  margin-bottom: var(--space-6);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-8);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-ink-light);
}

.pricing-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--color-sage-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235E9B8A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-5) 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--color-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.faq-question::after {
  content: '+';
  font-size: var(--text-xl);
  color: var(--color-stone);
  flex-shrink: 0;
  transition: transform var(--duration-fast) var(--ease-out);
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  display: none;
  padding-bottom: var(--space-5);
  color: var(--color-ink-light);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.faq-item.open .faq-answer { display: block; }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  counter-reset: steps;
}

.step-card {
  text-align: center;
  counter-increment: steps;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-vermillion);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin: 0 auto var(--space-5);
}

.step-card h3 {
  margin-bottom: var(--space-3);
}

.step-card p {
  color: var(--color-ink-light);
  font-size: var(--text-sm);
}

/* ===== TEMPLATE SHOWCASE ===== */
.templates-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}

.template-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-fast) var(--ease-out);
}

.template-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.template-preview {
  aspect-ratio: 3/4;
  background: white;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.template-preview--minimal { background: white; }
.template-preview--corporate { background: #f0f4f8; }
.template-preview--academic { background: #fffef5; }
.template-preview--dark { background: var(--color-ink); }
.template-preview--dark .skeleton-line { background: rgba(250, 249, 247, 0.15); }

.template-name {
  padding: var(--space-3);
  text-align: center;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  border-top: 1px solid var(--color-border);
}

/* ===== CODE BLOCK ===== */
.code-block {
  background: var(--color-ink);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  overflow-x: auto;
}

.code-block code {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--color-parchment);
  line-height: var(--leading-relaxed);
  white-space: pre;
}

.code-comment { color: var(--color-stone); }
.code-string { color: var(--color-sage); }
.code-flag { color: var(--color-vermillion); }

/* ===== FOOTER ===== */
.footer {
  background: var(--color-ink);
  padding: var(--space-12) 0 var(--space-8);
  color: var(--color-stone);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-parchment);
  font-family: var(--font-display);
  font-weight: var(--font-semibold);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  text-decoration: none;
}

.footer-logo svg path:first-child { fill: var(--color-parchment); }

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-stone-dark);
  line-height: var(--leading-relaxed);
}

.footer-nav {
  display: flex;
  gap: var(--space-12);
}

.footer-nav-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-parchment);
  margin-bottom: var(--space-4);
}

.footer-nav-col a {
  display: block;
  color: var(--color-stone-dark);
  font-size: var(--text-sm);
  padding: var(--space-1) 0;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-nav-col a:hover { color: var(--color-parchment); }

.footer-bottom {
  border-top: 1px solid rgba(168, 162, 158, 0.2);
  padding-top: var(--space-6);
  font-size: var(--text-xs);
  color: var(--color-stone-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== WELCOME PAGE ===== */
.welcome-hero {
  padding: var(--space-20) 0;
  text-align: center;
}

.welcome-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
}

.welcome-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  text-align: center;
}

.welcome-step {
  padding: var(--space-6);
}

.welcome-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-vermillion-light);
  color: var(--color-vermillion);
  font-family: var(--font-display);
  font-weight: var(--font-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .templates-row { grid-template-columns: repeat(3, 1fr); }
  .footer-nav { gap: var(--space-8); }
  .customize-showcase { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .customize-text p { margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-parchment);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-6);
    gap: var(--space-4);
  }

  .hero { padding: var(--space-16) 0 var(--space-12); }
  .hero h1 { font-size: 2rem; }

  .hero-visual { padding-bottom: var(--space-8); }
  .hero-pdf {
    position: relative;
    right: auto;
    top: calc(-1 * var(--space-8));
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    transform: none;
    min-height: auto;
  }
  .hero-mockup { max-width: 100%; }

  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .templates-row { grid-template-columns: repeat(2, 1fr); }
  .welcome-steps { grid-template-columns: 1fr; }

  .section { padding: var(--space-12) 0; }

  .comparison-table { font-size: var(--text-sm); }
  .comparison-table th,
  .comparison-table td { padding: var(--space-3) var(--space-4); }

  .footer-grid { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn, .hero-actions .btn-outline { width: 100%; text-align: center; }
  .sites-row { gap: var(--space-3); }
  .site-badge { font-size: var(--text-xs); padding: var(--space-2) var(--space-3); }
  .templates-row { grid-template-columns: 1fr; }
}
