/* =============================================
   developeraccounts.shop — Arctic White Theme
   Accent: #E11D48 (red CTA) + #0F172A (dark navy text)
   ============================================= */

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

:root {
  --bg: #FFFFFF;
  --bg-alt: #F8F9FC;
  --bg-card: #FFFFFF;
  --text: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --accent: #E11D48;
  --accent-hover: #BE123C;
  --accent-soft: #FFF1F2;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.10), 0 2px 6px rgba(15,23,42,0.06);
  --shadow-lg: 0 10px 32px rgba(15,23,42,0.12), 0 4px 12px rgba(15,23,42,0.07);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; }

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

/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.35; }
p  { color: var(--text-muted); line-height: 1.7; }

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; transition: all 0.2s ease;
  border: none; text-decoration: none; line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 2px 8px rgba(225,29,72,0.30);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(225,29,72,0.38); }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

/* ---- HEADER ---- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 20px;
}
.header__logo img { height: 38px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 28px; }
.header__nav a {
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
  transition: color 0.2s;
}
.header__nav a:hover { color: var(--accent); }
.header__right { display: flex; align-items: center; gap: 12px; }

/* Lang switcher */
.lang-switcher { display: flex; align-items: center; gap: 4px; }
.lang-switcher a {
  font-size: 0.78rem; font-weight: 600; padding: 4px 8px;
  border-radius: 6px; color: var(--text-muted); transition: all 0.2s;
}
.lang-switcher a.active, .lang-switcher a:hover {
  background: var(--accent-soft); color: var(--accent);
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 99; padding: 32px 20px;
  flex-direction: column; gap: 8px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.1rem; font-weight: 500; color: var(--text);
  padding: 14px 16px; border-radius: 10px; transition: background 0.2s;
}
.mobile-nav a:hover { background: var(--bg-alt); }
.mobile-nav .mobile-nav__bottom { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--border); }
.mobile-nav .lang-switcher { gap: 8px; }
.mobile-nav .lang-switcher a { font-size: 0.9rem; padding: 8px 14px; }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* ---- HERO ---- */
.hero {
  background: var(--bg-alt);
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(225,29,72,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid rgba(225,29,72,0.2);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.hero__title { margin-bottom: 16px; }
.hero__title span { color: var(--accent); }
.hero__sub { font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero__stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--text); line-height: 1.1; }
.hero__stat span { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.hero__visual {
  display: flex; justify-content: center; align-items: center;
}
.hero__card-stack { position: relative; width: 100%; max-width: 360px; margin: 0 auto; }
.hero__main-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero__main-card .price { font-size: 2.4rem; font-weight: 800; color: var(--text); }
.hero__main-card .price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.hero__main-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 20px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem; }
.hero__feature-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.hero__feature-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-muted); }
.hero__feature-list li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.hero__badge-float {
  position: absolute; top: -14px; right: -14px;
  background: var(--accent); color: #fff;
  border-radius: 50px; padding: 6px 14px;
  font-size: 0.75rem; font-weight: 700;
  box-shadow: var(--shadow-md);
}

/* ---- SECTIONS ---- */
section { padding: 80px 0; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 12px;
}
.section-title { margin-bottom: 12px; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin-bottom: 48px; }

/* ---- FEATURES GRID ---- */
.features { background: var(--bg); }
.features__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all 0.25s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: rgba(225,29,72,0.2); }
.feature-icon {
  width: 44px; height: 44px; background: var(--accent-soft);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; }

/* ---- PRICING ---- */
.pricing { background: var(--bg-alt); }
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}
.pricing-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 36px 28px; border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm); position: relative;
  transition: all 0.25s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}
.pricing-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  padding: 4px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
  white-space: nowrap;
}
.pricing-card__num {
  font-size: 0.75rem; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
}
.pricing-card__name { font-size: 1rem; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.85rem; }
.pricing-card__type { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.pricing-card__price { margin-bottom: 24px; }
.pricing-card__price .amount { font-size: 3rem; font-weight: 800; color: var(--text); line-height: 1; }
.pricing-card__price .currency { font-size: 1.4rem; font-weight: 700; vertical-align: top; margin-top: 6px; display: inline-block; }
.pricing-card__features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-card__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text-muted); }
.pricing-card__features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-card__note { font-size: 0.78rem; color: var(--text-light); margin-top: 12px; text-align: center; }

/* ---- HOW IT WORKS ---- */
.how { background: var(--bg); }
.how__steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative;
}
.how__steps::before {
  content: '';
  position: absolute; top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 2px; background: linear-gradient(to right, var(--accent), rgba(225,29,72,0.2));
  z-index: 0;
}
.how__step { text-align: center; position: relative; z-index: 1; }
.how__step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(225,29,72,0.3);
}
.how__step h3 { margin-bottom: 8px; }
.how__step p { font-size: 0.875rem; }

/* ---- FAQ ---- */
.faq { background: var(--bg-alt); }
.faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 20px 24px; font-weight: 600; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 12px; font-size: 0.95rem;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.3rem; font-weight: 400;
  color: var(--accent); flex-shrink: 0; transition: transform 0.2s;
}
.faq-item[open] summary { color: var(--accent); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.faq-item__body ul { margin-top: 8px; }
.faq-item__body ul li { padding: 2px 0 2px 16px; position: relative; }
.faq-item__body ul li::before { content: '—'; position: absolute; left: 0; color: var(--text-light); }

/* ---- REVIEWS CTA ---- */
.reviews-cta { background: var(--accent); color: #fff; text-align: center; padding: 60px 0; }
.reviews-cta h2 { color: #fff; margin-bottom: 10px; }
.reviews-cta p { color: rgba(255,255,255,0.85); margin-bottom: 24px; font-size: 1.05rem; }
.reviews-cta .btn { background: #fff; color: var(--accent); font-weight: 700; }
.reviews-cta .btn:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

/* ---- BLOG ---- */
.blog { background: var(--bg); }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.25s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card__thumb {
  height: 180px; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
}
.blog-card__thumb-icon { font-size: 2.5rem; opacity: 0.4; }
.blog-card__body { padding: 22px; }
.blog-card__tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--accent); background: var(--accent-soft);
  padding: 3px 10px; border-radius: 50px; margin-bottom: 10px;
}
.blog-card__title { font-size: 0.95rem; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.blog-card__soon {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--text-light); font-weight: 500;
}
.blog-card__soon::before { content: '🕐'; font-size: 0.85rem; }

/* ---- OCTO BROWSER ---- */
.octo { background: var(--bg); padding: 80px 0; border-top: 1px solid var(--border); }
.octo__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.octo__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #F0FDF4; color: #16A34A;
  border: 1px solid #BBF7D0;
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.octo__title { margin-bottom: 16px; }
.octo__text { font-size: 0.95rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 12px; }
.octo__text a { color: var(--accent); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(225,29,72,0.3); text-underline-offset: 2px; transition: text-decoration-color 0.2s; }
.octo__text a:hover { text-decoration-color: var(--accent); }
.octo__promo-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0; }
.octo__promo {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); border: 1.5px dashed rgba(225,29,72,0.35);
  border-radius: 8px; padding: 10px 16px;
  font-size: 0.875rem;
}
.octo__promo strong { color: var(--accent); font-weight: 700; font-family: monospace; font-size: 1rem; letter-spacing: 0.04em; }
.octo__promo span { color: var(--text-muted); }
.octo__cta { margin-top: 24px; }
.octo__visual {
  background: var(--bg-alt); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 36px;
  box-shadow: var(--shadow-md);
}
.octo__visual-logo {
  font-size: 2rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.octo__visual-logo span { color: var(--accent); }
.octo__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.octo__stat { background: var(--bg-card); border-radius: 10px; padding: 16px; border: 1px solid var(--border); text-align: center; }
.octo__stat strong { display: block; font-size: 1.3rem; font-weight: 800; color: var(--text); line-height: 1.1; }
.octo__stat span { font-size: 0.75rem; color: var(--text-muted); margin-top: 3px; display: block; }

@media (max-width: 768px) {
  .octo__inner { grid-template-columns: 1fr; gap: 32px; }
  .octo__visual { display: none; }
}

/* ---- FOOTER ---- */
.footer { background: var(--text); color: rgba(255,255,255,0.8); }
.footer__top { padding: 56px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer__brand p { margin-top: 14px; font-size: 0.875rem; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer__logo img { height: 36px; }
.footer__col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer__col ul li a:hover { color: #fff; }

/* Social icons */
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: rgba(255,255,255,0.7);
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }

.footer__divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); }
.footer__bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer__bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__bottom a:hover { color: #fff; }

/* ---- ARTICLE PAGE ---- */
.article-hero { background: var(--bg-alt); padding: 48px 0 40px; border-bottom: 1px solid var(--border); }
.breadcrumbs { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 0.8rem; color: var(--text-light); margin-bottom: 20px; }
.breadcrumbs a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { color: var(--text-light); }
.breadcrumbs .sep { color: var(--border-strong); }
.article-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.article-meta .tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--accent); background: var(--accent-soft); padding: 3px 10px; border-radius: 50px; }
.article-meta .date { font-size: 0.8rem; color: var(--text-light); }
.article-meta .read-time { font-size: 0.8rem; color: var(--text-light); }
.article-content { max-width: 780px; margin: 0 auto; padding: 56px 0 72px; }
.article-content h2 { font-size: 1.5rem; margin: 40px 0 14px; color: var(--text); }
.article-content h3 { font-size: 1.15rem; margin: 28px 0 10px; color: var(--text); }
.article-content p { margin-bottom: 18px; color: var(--text-muted); line-height: 1.75; }
.article-content ul, .article-content ol { margin: 0 0 20px 20px; }
.article-content li { color: var(--text-muted); line-height: 1.75; margin-bottom: 6px; }
.article-content ul li { list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content strong { color: var(--text); font-weight: 600; }
.article-content .callout { background: var(--accent-soft); border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 24px 0; }
.article-content .callout p { margin: 0; color: var(--text); }
.article-source { border-top: 1px solid var(--border); padding-top: 20px; margin-top: 40px; font-size: 0.85rem; color: var(--text-light); }
.article-source a { color: var(--accent); }
.article-back { display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 500; color: var(--text-muted); margin-top: 40px; transition: color 0.2s; }
.article-back:hover { color: var(--accent); }
.article-cta { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 36px; text-align: center; margin: 48px 0; border: 1px solid var(--border); }
.article-cta h3 { margin-bottom: 10px; }
.article-cta p { margin-bottom: 20px; font-size: 0.95rem; }

/* ---- BLOG PAGE ---- */
.blog-page-hero { background: var(--bg-alt); padding: 60px 0 48px; border-bottom: 1px solid var(--border); }
.blog-page-hero h1 { margin-bottom: 12px; }
.blog-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 64px 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin: 0 auto 32px; }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { display: none; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .how__steps { grid-template-columns: repeat(2, 1fr); }
  .how__steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .header__nav { display: none; }
  .header__right .btn { display: none; }
  .header__right .lang-switcher { display: none; }
  .hamburger { display: flex; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .faq__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .blog-page-grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 56px 0 48px; }
  .how__steps { grid-template-columns: 1fr; }
  .hero__stats { gap: 20px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}
