/* ============================================
   appledev.space — Space Black Premium
   Design System
   ============================================ */

:root {
  --bg:           #050505;
  --bg-card:      #111118;
  --bg-card-hover:#16161f;
  --bg-section:   #0a0a12;
  --accent:       #6B6BF5;
  --accent-end:   #A78BFA;
  --accent-glow:  rgba(107,107,245,0.25);
  --text:         #F5F5F7;
  --text-muted:   #8E8EA0;
  --text-dim:     #5A5A70;
  --border:       rgba(107,107,245,0.15);
  --border-card:  rgba(255,255,255,0.06);
  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    24px;
  --header-h:     72px;
  --font:         -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(5,5,5,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-card);
  transition: background 0.3s;
}

.site-header.scrolled {
  background: rgba(5,5,5,0.95);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}

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

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-switcher a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s;
  text-transform: uppercase;
}

.lang-switcher a:hover,
.lang-switcher a.active {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.lang-switcher span {
  color: var(--text-dim);
  font-size: 12px;
}

/* CTA button */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-end));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-order:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-card);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-card);
  transition: color 0.2s;
}

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

.mobile-nav .mobile-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 16px;
  gap: 12px;
}

.mobile-nav .mobile-bottom .lang-switcher {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.mobile-nav .mobile-bottom .lang-switcher a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid var(--border-card);
  transition: all 0.2s;
  text-transform: uppercase;
  text-decoration: none;
}

.mobile-nav .mobile-bottom .lang-switcher a.active,
.mobile-nav .mobile-bottom .lang-switcher a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.mobile-nav .mobile-bottom .lang-switcher span {
  color: var(--text-dim);
  font-size: 12px;
  user-select: none;
}

.mobile-nav .btn-order {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-end));
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.mobile-nav .btn-order:hover { opacity: 0.88; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107,107,245,0.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,107,245,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,107,245,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at center, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at center, black 0%, transparent 100%);
}

.hero-content {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107,107,245,0.12);
  border: 1px solid rgba(107,107,245,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #A78BFA;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #6B6BF5;
  border-radius: 50%;
  box-shadow: 0 0 8px #6B6BF5;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, #6B6BF5, #A78BFA, #C084FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-end));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(107,107,245,0.35);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(107,107,245,0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.hero-stats-divider {
  width: 1px;
  height: 40px;
  background: var(--border-card);
}

/* ============================================
   SECTIONS SHARED
   ============================================ */
section {
  padding: 100px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================
   FEATURES / WHAT WE OFFER
   ============================================ */
.features {
  background: var(--bg-section);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(107,107,245,0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(107,107,245,0.2), rgba(167,139,250,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   WHY TRUST
   ============================================ */
.trust-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.trust-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.trust-item:hover { border-color: var(--border); }

.trust-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.trust-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   FOR WHOM
   ============================================ */
.audience {
  background: var(--bg-section);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.audience-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.audience-card .icon { font-size: 36px; margin-bottom: 20px; }

.audience-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.audience-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

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

.tag {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(107,107,245,0.1);
  border: 1px solid rgba(107,107,245,0.2);
  color: #A78BFA;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: rgba(107,107,245,0.4);
  background: linear-gradient(180deg, rgba(107,107,245,0.08) 0%, var(--bg-card) 60%);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-end));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-type {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}

.pricing-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-price {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price sup {
  font-size: 24px;
  font-weight: 600;
  vertical-align: super;
  letter-spacing: 0;
}

.pricing-per {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

.pricing-features li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  margin-top: 1px;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 24px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--bg-section);
}

.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--border); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  gap: 16px;
  user-select: none;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(107,107,245,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s, background 0.2s;
  color: var(--accent);
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(107,107,245,0.2); }

.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.blog-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  background: rgba(107,107,245,0.12);
  border-radius: 50px;
  color: #A78BFA;
}

.blog-date {
  font-size: 12px;
  color: var(--text-dim);
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.blog-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.blog-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.blog-card:hover .blog-link { gap: 8px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #020202;
  border-top: 1px solid var(--border-card);
  padding: 60px 24px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-card);
  align-items: start;
}

.footer-brand img { height: 32px; width: auto; margin-bottom: 14px; }

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-contact {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-contact a {
  color: var(--accent);
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--accent-end); }

.footer-links {
  display: flex;
  gap: 48px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 100px;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

/* Social icons */
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--text-muted);
}

.social-link:hover {
  border-color: var(--border);
  background: rgba(107,107,245,0.1);
  color: var(--text);
  transform: translateY(-2px);
}

.social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-copy a {
  color: var(--text-muted);
  transition: color 0.2s;
}

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

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-hero {
  padding: calc(var(--header-h) + 60px) 24px 60px;
  text-align: center;
  background: var(--bg-section);
}

.blog-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.blog-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.blog-main {
  padding: 60px 24px 100px;
}

.blog-posts-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.blog-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border: 2px dashed var(--border-card);
  border-radius: var(--radius-lg);
  color: var(--text-dim);
  font-size: 15px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 860px) {
  .header-nav { display: none; }
  .header-right .btn-order { display: none; }
  .header-right .lang-switcher { display: none; }
  .burger { display: flex; }
  .header-inner { grid-template-columns: 1fr 44px; }
  .header-right { justify-content: flex-end; min-width: 44px; }

  .hero-stats-divider { display: none; }
  .hero-stats { gap: 24px; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 24px; }
}

@media (max-width: 560px) {
  section { padding: 70px 20px; }
  .hero { padding: calc(var(--header-h) + 40px) 20px 60px; }

  .pricing-grid,
  .features-grid,
  .trust-list,
  .audience-grid,
  .blog-grid { grid-template-columns: 1fr; }

  .hero-stats { gap: 20px; }
  .hero-stat .num { font-size: 26px; }
}
