/* ═══════════════════════════════════════════════
   Tag Magic — tagmagic.app
   Dark monochrome + electric cyan
   GSAP-powered premium static site
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --font-display: 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --bg: #09090d;
  --bg-elevated: #111118;
  --bg-card: #15151e;
  --text: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.55);
  --text-tertiary: rgba(255, 255, 255, 0.50);
  --accent: #34d399;
  --accent-dim: rgba(52, 211, 153, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);

  --max-width: 1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0.05, 0, 1);
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: initial; /* Lenis handles this */
}

/* Hide scrollbar globally for Lenis smooth scroll */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

::-webkit-scrollbar { display: none; }
body { -ms-overflow-style: none; scrollbar-width: none; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--text);
}

code {
  font-size: 0.875em;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'SF Mono', 'Fira Code', 'JetBrains Mono', monospace;
}

::selection {
  background: rgba(52, 211, 153, 0.25);
  color: var(--text);
}

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Utility: hidden until GSAP reveals ── */
.gs-reveal {
  visibility: hidden;
}

/* ── Divider line ── */
.divider {
  height: 1px;
  background: var(--border);
  transform-origin: left;
  transform: scaleX(0);
}

/* ═══════════════════════════════════════════════
   Header
   ═══════════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(9, 9, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.site-logo:hover { color: var(--text); }

.site-logo svg {
  height: 28px;
  width: auto;
}

.site-logo svg path { fill: var(--accent); }

.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.site-nav {
  display: flex;
  gap: 36px;
  list-style: none;
}

.site-nav a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.2px;
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a.active {
  color: var(--text);
}

/* ═══════════════════════════════════════════════
   Hero
   ═══════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(52, 211, 153, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(52, 211, 153, 0.15);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--accent);
}

/* SplitText word wrappers */
.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 4px;
}

.hero h1 .word-inner {
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-visual {
  flex: 0 0 42%;
  position: relative;
}

/* Hero illustration (peeks out behind + right of the mockup) */
.hero-image {
  position: absolute;
  top: -80px;
  right: -120px;
  bottom: -80px;
  width: 90%;
  z-index: -1;
  border-radius: 24px;
  overflow: hidden;
  /* Fallback gradient if no image */
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Soft left-edge fade so illustration is visible on right */
  background: linear-gradient(to right, var(--bg) 0%, rgba(9, 9, 13, 0.3) 25%, transparent 50%);
  pointer-events: none;
}

/* When a real image is used */
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

/* ═══════════════════════════════════════════════
   Buttons
   ═══════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.2px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  color: var(--bg);
  box-shadow: 0 8px 32px rgba(52, 211, 153, 0.3), 0 0 0 1px rgba(52, 211, 153, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  color: var(--text);
  border-color: var(--text-secondary);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.04);
}

.btn svg {
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════
   Order Mockup (Dark variant)
   ═══════════════════════════════════════════════ */

.order-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 80px rgba(52, 211, 153, 0.05);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mockup-order-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.mockup-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(52, 211, 153, 0.1);
  color: #34d399;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.mockup-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34d399;
}

.mockup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 0.8125rem;
}

.mockup-label {
  color: var(--text-tertiary);
  font-weight: 400;
}

.mockup-value {
  color: var(--text-secondary);
  font-weight: 500;
}

.mockup-tags-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 10px;
}

.mockup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mockup-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(52, 211, 153, 0.15);
}

.mockup-tag-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ═══════════════════════════════════════════════
   Sections
   ═══════════════════════════════════════════════ */

.section {
  padding: 120px 0;
  position: relative;
}

.section-elevated {
  background: var(--bg-elevated);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
}

.section-heading {
  text-align: center;
  margin-bottom: 72px;
}

.section-heading .subtitle {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Stats Row ── */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.stat-number .accent {
  color: var(--accent);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0.2px;
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step {
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-number::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}

/* ── Lifestyle Band ── */
.lifestyle-band {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  text-align: center;
}

.lifestyle-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('images/flow.png') center / cover no-repeat;
}

.lifestyle-band-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    rgba(9, 9, 13, 0.5) 15%,
    rgba(9, 9, 13, 0.3) 50%,
    rgba(9, 9, 13, 0.5) 85%,
    var(--bg) 100%
  );
}

.lifestyle-band .container {
  position: relative;
  z-index: 1;
}

.lifestyle-band h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.lifestyle-band p {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Feature Cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(52, 211, 153, 0.1);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 400;
}

/* ── CTA Section ── */
.cta {
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('images/background.png') center / cover no-repeat;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    rgba(9, 9, 13, 0.65) 20%,
    rgba(9, 9, 13, 0.55) 50%,
    rgba(9, 9, 13, 0.65) 80%,
    var(--bg) 100%
  );
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta::before {
  content: '';
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(52, 211, 153, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 16px;
  position: relative;
}

.cta p {
  color: var(--text-tertiary);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  margin-bottom: 40px;
  position: relative;
}

/* ═══════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════ */

.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  color: var(--text-tertiary);
  font-size: 0.8125rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════
   Content Pages (Privacy, Support)
   ═══════════════════════════════════════════════ */

.page-hero {
  padding: 160px 0 0;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 12px;
}

.page-hero .last-updated {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  font-weight: 300;
}

.page-hero .page-subtitle {
  color: var(--text-secondary);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  max-width: 520px;
  margin: 8px auto 0;
  line-height: 1.7;
}

.page-content {
  padding: 56px 0 120px;
}

.page-content .container {
  max-width: 720px;
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text);
  margin-top: 56px;
  margin-bottom: 16px;
}

.page-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 10px;
}

.page-content p,
.page-content ul,
.page-content ol {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 400;
}

.page-content ul,
.page-content ol {
  padding-left: 24px;
}

.page-content li {
  margin-bottom: 8px;
}

.page-content li strong {
  color: var(--text);
}

.page-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(52, 211, 153, 0.3);
  text-underline-offset: 3px;
}

.page-content a:hover {
  text-decoration-color: var(--accent);
}

/* ── Contact Card (dark) ── */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  margin: 48px 0;
  text-align: center;
}

.contact-card h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.contact-card p {
  margin-bottom: 20px;
}

.contact-card .email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.contact-card .email-link:hover {
  color: var(--text);
}

/* ── FAQ Items ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.faq-item:first-of-type {
  border-top: 1px solid var(--border);
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════
   Pricing
   ═══════════════════════════════════════════════ */

.pricing-section {
  padding: 40px 0 80px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.pricing-card-featured {
  border-color: rgba(52, 211, 153, 0.3);
  box-shadow: 0 0 40px rgba(52, 211, 153, 0.06);
}

.pricing-card-featured:hover {
  border-color: rgba(52, 211, 153, 0.5);
  box-shadow: 0 8px 40px rgba(52, 211, 153, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.pricing-interval {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  font-weight: 400;
}

.pricing-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  flex: 1;
}

.pricing-features li {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
  text-align: center;
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
}

.pricing-note p {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  font-weight: 400;
}

/* ═══════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════ */

@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 56px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    flex: none;
    width: 100%;
    max-width: 380px;
  }

  .hero-image {
    top: -40px;
    right: -40px;
    bottom: -40px;
    width: 100%;
    opacity: 0.5;
  }

  .lifestyle-band {
    padding: 100px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-row {
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 80px 0;
  }

  .site-header .container {
    flex-direction: column;
    gap: 16px;
  }

  .site-footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .stats-row {
    flex-direction: column;
    gap: 28px;
  }

  .contact-card {
    padding: 32px 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
