/* ============================================================
   developeraccount.shop — Slate & Lime Theme
   ============================================================ */

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

:root {
  --bg-deep:    #0B0F0C;
  --bg-mid:     #111A13;
  --bg-card:    #162019;
  --bg-card2:   #1C2A1F;
  --accent:     #84CC16;
  --accent2:    #BEF264;
  --accent-dim: #4D7A0D;
  --text:       #F0F4F0;
  --text-muted: #8FAA8F;
  --border:     #243328;
  --white:      #FFFFFF;
  --radius:     12px;
  --radius-lg:  20px;
  --nav-h:      72px;
  --transition: 0.25s ease;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
body.article-page {
  padding-top: var(--nav-h);
}

/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { color: var(--text-muted); }
a  { color: inherit; text-decoration: none; }

/* ---- CONTAINER ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: none;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0B0F0C;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(132,204,22,0.35); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #0B0F0C; }

/* ---- NAV ---- */
body > nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: #111A13;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(132,204,22,0.25);
  transition: var(--transition);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-right {
  display: flex; align-items: center; gap: 16px;
}
.lang-switcher {
  display: flex; gap: 6px;
}
.lang-switcher a {
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
  padding: 4px 8px; border-radius: 6px;
  transition: var(--transition);
}
.lang-switcher a:hover,
.lang-switcher a.active { color: var(--accent); background: rgba(132,204,22,0.1); }

/* Mobile nav */
.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--bg-mid); border-bottom: 1px solid var(--border);
  padding: 20px 24px; z-index: 999; flex-direction: column; gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; color: var(--text); padding: 10px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .lang-switcher { margin-top: 8px; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse 50% 50% at center, rgba(132,204,22,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(132,204,22,0.1); border: 1px solid rgba(132,204,22,0.3);
  color: var(--accent); padding: 6px 14px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 20px;
}
.hero-title { margin-bottom: 20px; }
.hero-title span { color: var(--accent); }
.hero-desc { font-size: 1.1rem; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.stat-item { }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

.hero-visual {
  display: flex; justify-content: center;
}
.hero-card-stack {
  position: relative; width: 360px; height: 400px;
}
.h-card {
  position: absolute; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card); padding: 28px;
}
.h-card-main {
  width: 320px; top: 40px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card2) 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 2;
}
.h-card-back {
  width: 300px; top: 20px; left: 50%; transform: translateX(-50%) rotate(5deg);
  opacity: 0.5; z-index: 1;
}
.h-card-tag {
  display: inline-block; background: rgba(132,204,22,0.15);
  color: var(--accent); font-size: 0.75rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px; margin-bottom: 16px;
}
.h-card-price { font-size: 2.5rem; font-weight: 800; color: var(--white); }
.h-card-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.h-card-features { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.h-card-features li { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.h-card-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ---- SECTIONS ---- */
.section { padding: 96px 0; }
.section-tag {
  display: inline-block; background: rgba(132,204,22,0.1);
  color: var(--accent); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 50px;
  margin-bottom: 14px;
}
.section-title { margin-bottom: 14px; }
.section-desc { font-size: 1.05rem; max-width: 560px; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin: 0 auto; }

/* ---- FEATURES ---- */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(132,204,22,0.1);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(132,204,22,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.feature-card h3 { margin-bottom: 10px; }

/* ---- PRICING ---- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}
.price-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  position: relative; transition: var(--transition);
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(132,204,22,0.06) 100%);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 60px rgba(132,204,22,0.15);
}
.price-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0B0F0C; font-size: 0.75rem; font-weight: 700;
  padding: 5px 16px; border-radius: 50px; white-space: nowrap;
}
.price-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.price-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; }
.price-amount { display: flex; align-items: flex-start; gap: 4px; margin-bottom: 28px; }
.price-currency { font-size: 1.4rem; font-weight: 700; color: var(--accent); padding-top: 6px; }
.price-value { font-size: 3.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-features li { font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; }
.price-features li .check { color: var(--accent); flex-shrink: 0; margin-top: 1px; }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px;
  background: none; border: none; color: var(--text);
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-q .arrow {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(132,204,22,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted); font-size: 0.9rem;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ---- CTA ---- */
.cta-section {
  background: linear-gradient(135deg, var(--bg-mid) 0%, rgba(132,204,22,0.07) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 80px 60px; text-align: center; margin: 0 0 80px;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { font-size: 1.05rem; margin-bottom: 32px; }

/* ---- FOOTER ---- */
footer {
  background: var(--bg-mid); border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; max-width: 280px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.88rem; color: var(--text-muted); transition: var(--transition); }
.footer-col ul a:hover { color: var(--accent); }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); overflow: hidden;
}
.social-link:hover { border-color: var(--accent); transform: translateY(-2px); }
.social-link img { width: 20px; height: 20px; object-fit: contain; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { text-decoration: underline; }
.footer-disclaimer { font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; text-align: center; }

/* ---- BLOG PAGE ---- */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  text-align: center;
}
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; padding-bottom: 96px;
}
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { border-color: var(--accent-dim); transform: translateY(-4px); }
.blog-card-img {
  height: 180px; background: linear-gradient(135deg, var(--bg-card2), var(--bg-mid));
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.blog-card-body { padding: 24px; }
.blog-card-tag {
  display: inline-block; background: rgba(132,204,22,0.1);
  color: var(--accent); font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.blog-card-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.blog-card-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.blog-coming {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--text-muted);
}
.blog-coming::before { content: '🕐'; }

/* ---- SUPPORT PAGE ---- */
.support-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  padding-bottom: 96px;
}
.support-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
}
.support-card h3 { margin-bottom: 12px; }

/* ---- LEGAL (privacy/terms) ---- */
.legal-content {
  max-width: 800px; margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 24px 96px;
}
.legal-content h1 { margin-bottom: 8px; }
.legal-content .last-updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 40px; }
.legal-content h2 { font-size: 1.3rem; margin: 32px 0 12px; color: var(--text); }
.legal-content p, .legal-content li { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 10px; }
.legal-content ul { padding-left: 20px; }

/* ---- OCTO BLOCK ---- */
.octo-section {
  padding: 80px 0;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
}
.octo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.octo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(132,204,22,0.1); border: 1px solid rgba(132,204,22,0.3);
  color: var(--accent); padding: 5px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 16px;
}
.octo-title { font-size: clamp(1.4rem,3vw,2rem); font-weight: 800; margin-bottom: 20px; }
.octo-title span { color: var(--accent); }
.octo-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.octo-text a {
  color: var(--accent); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
  transition: var(--transition);
}
.octo-text a:hover { opacity: 0.8; }
.octo-promo-row {
  display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0;
}
.octo-promo-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(132,204,22,0.08); border: 1px solid rgba(132,204,22,0.3);
  border-radius: 10px; padding: 10px 16px;
}
.octo-promo-chip .label { font-size: 0.72rem; color: var(--text-muted); display: block; }
.octo-promo-chip .code {
  font-size: 1rem; font-weight: 800; color: var(--accent);
  letter-spacing: 0.06em;
}
.octo-promo-chip a { text-decoration: none; }
.octo-visual {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card2) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px 36px; text-align: center;
}
.octo-logo-placeholder {
  font-size: 3rem; margin-bottom: 16px;
}
.octo-visual h3 { font-size: 1.2rem; margin-bottom: 8px; }
.octo-visual p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.octo-stats {
  display: flex; gap: 0; margin-bottom: 28px;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.octo-stat {
  flex: 1; padding: 14px 10px; text-align: center;
  border-right: 1px solid var(--border);
}
.octo-stat:last-child { border-right: none; }
.octo-stat .num { font-size: 1.1rem; font-weight: 800; color: var(--accent); }
.octo-stat .lbl { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
@media (max-width: 768px) {
  .octo-inner { grid-template-columns: 1fr; gap: 32px; }
  .octo-visual { padding: 28px 20px; }
}

/* ---- ARTICLE ---- */
.article-wrap {
  max-width: 800px; margin: 0 auto;
  padding: 0 24px 96px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-muted);
  padding-top: 32px;
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb .current { color: var(--text); }
.article-tag {
  display: inline-block; background: rgba(132,204,22,0.1);
  color: var(--accent); font-size: 0.78rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.article-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800;
  line-height: 1.2; margin-bottom: 16px; color: var(--text);
}
.article-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 40px;
  padding-bottom: 32px; border-bottom: 1px solid var(--border);
}
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-cover {
  width: 100%; height: 280px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; margin-bottom: 48px;
  border: 1px solid var(--border);
}
.article-body h2 {
  font-size: 1.4rem; font-weight: 700; color: var(--text);
  margin: 40px 0 14px;
}
.article-body h3 {
  font-size: 1.1rem; font-weight: 600; color: var(--text);
  margin: 28px 0 10px;
}
.article-body p {
  font-size: 0.97rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.75;
}
.article-body ul, .article-body ol {
  padding-left: 20px; margin-bottom: 16px;
}
.article-body li {
  font-size: 0.97rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.7;
}
.article-body strong { color: var(--text); font-weight: 600; }
.article-callout {
  background: rgba(132,204,22,0.07); border: 1px solid rgba(132,204,22,0.25);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: 20px 24px; margin: 28px 0;
}
.article-callout p { margin: 0; color: var(--text); }
.article-table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
  font-size: 0.88rem;
}
.article-table th {
  background: var(--bg-card); color: var(--accent); font-weight: 700;
  padding: 12px 16px; text-align: left; border-bottom: 2px solid var(--border);
}
.article-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-muted);
}
.article-table tr:last-child td { border-bottom: none; }
.article-table tr:hover td { background: rgba(132,204,22,0.04); }
.article-source {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-muted);
}
.article-source a { color: var(--accent); }
.article-cta {
  background: linear-gradient(135deg, var(--bg-mid) 0%, rgba(132,204,22,0.07) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 32px; text-align: center; margin-top: 48px;
}
.article-cta h3 { margin-bottom: 10px; font-size: 1.3rem; }
.article-cta p { margin-bottom: 20px; font-size: 0.9rem; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--text-muted); margin-bottom: 32px;
  transition: var(--transition);
}
.back-link:hover { color: var(--accent); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid .price-card:last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .lang-switcher { display: none; }
  .burger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .price-card:last-child { grid-column: span 1; max-width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 48px 24px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}
