/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #0f172a;
  color: #e2e8f0;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img { max-width: 100%; }

/* ===== VARIABLES ===== */
:root {
  --emerald: #10B981;
  --emerald-dark: #059669;
  --emerald-light: #34D399;
  --gold: #F59E0B;
  --gold-dark: #D97706;
  --bg-dark: #0f172a;
  --bg-card: #1e293b;
  --bg-card2: #162032;
  --border: #334155;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --container: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--emerald);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 16px rgba(16,185,129,0.5);
}

.logo span {
  color: var(--emerald);
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: all 0.2s;
  border: 1px solid transparent;
}

.nav-link:hover {
  color: #fff;
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.3);
}

.nav-link.active {
  color: var(--emerald);
}

.nav-cta {
  padding: 9px 20px;
  background: var(--emerald);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid transparent !important;
  box-shadow: 0 4px 12px rgba(16,185,129,0.4), 0 2px 0 var(--emerald-dark);
  transform: translateY(-1px);
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--emerald-light) !important;
  box-shadow: 0 6px 20px rgba(16,185,129,0.5), 0 2px 0 var(--emerald-dark) !important;
  transform: translateY(-2px) !important;
}

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  border-radius: 8px;
  transition: background 0.2s;
}

.burger:hover { background: rgba(255,255,255,0.05); }

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

.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 {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  gap: 4px;
}

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

.mobile-nav .nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #fff;
  box-shadow:
    0 6px 20px rgba(16,185,129,0.45),
    0 3px 0 #047857,
    inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald));
  box-shadow:
    0 8px 28px rgba(16,185,129,0.6),
    0 3px 0 #047857,
    inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(16,185,129,0.3), 0 1px 0 #047857;
}

.btn-secondary {
  background: transparent;
  color: var(--emerald);
  border: 2px solid var(--emerald);
  box-shadow:
    0 4px 14px rgba(16,185,129,0.2),
    0 2px 0 var(--emerald-dark);
  transform: translateY(-1px);
}

.btn-secondary:hover {
  background: rgba(16,185,129,0.1);
  box-shadow:
    0 6px 20px rgba(16,185,129,0.35),
    0 2px 0 var(--emerald-dark);
  transform: translateY(-3px);
  color: var(--emerald-light);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  box-shadow:
    0 6px 20px rgba(245,158,11,0.45),
    0 3px 0 #b45309,
    inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #FCD34D, var(--gold));
  box-shadow:
    0 8px 28px rgba(245,158,11,0.6),
    0 3px 0 #b45309,
    inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(-4px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}

.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 60px;
  background: radial-gradient(ellipse at 20% 50%, rgba(16,185,129,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(245,158,11,0.05) 0%, transparent 50%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--emerald);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== HERO BANNER SVG ===== */
.hero-banner {
  background: #0a1628;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(16,185,129,0.1);
  position: relative;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 0 20px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--emerald);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== SECTION HEADINGS ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== ADVANTAGES ===== */
.advantages { background: #0f172a; }

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.adv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.adv-card:hover {
  border-color: rgba(16,185,129,0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px rgba(16,185,129,0.08);
}

.adv-card:hover::before { opacity: 1; }

.adv-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
}

.adv-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.adv-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how { background: var(--bg-card2); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  z-index: 0;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.step-card:hover {
  border-color: rgba(16,185,129,0.4);
  transform: translateY(-4px);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(16,185,129,0.4);
  position: relative;
  z-index: 2;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== WHAT WE BUY ===== */
.what-buy { background: #0f172a; }

.buy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.buy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.buy-card:hover {
  border-color: rgba(16,185,129,0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(16,185,129,0.07);
}

.buy-card-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.buy-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.buy-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.buy-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--emerald);
  margin: 2px;
}

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

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: border-color 0.3s;
}

.faq-item:hover { border-color: rgba(16,185,129,0.35); }

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.faq-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  font-size: 1rem;
  margin-top: 2px;
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 52px;
}

/* ===== CONTACT ===== */
.contact { background: #0f172a; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.contact-item:hover { border-color: rgba(16,185,129,0.4); }

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.contact-item-val {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-form-wrap iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.footer-logo span { color: var(--emerald); }

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

.footer-links {
  display: flex;
  gap: 20px;
}

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

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

/* ===== BLOG PAGE ===== */
.page-hero {
  padding: 60px 0 50px;
  background: radial-gradient(ellipse at 50% 0%, rgba(16,185,129,0.08) 0%, transparent 60%);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.blog-section { background: #0f172a; padding: 60px 0 100px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.blog-card:hover {
  border-color: rgba(16,185,129,0.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.blog-cat {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--emerald);
  font-weight: 600;
  font-size: 0.88rem;
  transition: gap 0.2s;
  margin-top: auto;
}

.blog-read-more:hover { gap: 10px; }
.blog-read-more:hover .arrow { transform: translateX(3px); }

.arrow {
  transition: transform 0.2s;
  font-size: 1rem;
}

/* ===== ARTICLE PAGE ===== */
.article-section { background: #0f172a; padding: 60px 0 100px; }

.article-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 36px;
  transition: color 0.2s;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
}

.article-back:hover { color: var(--emerald); border-color: rgba(16,185,129,0.4); }

.article-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article-header h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.article-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.article-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 40px 0 16px;
}

.article-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 28px 0 12px;
}

.article-body p { margin-bottom: 18px; }

.article-body ul, .article-body ol {
  margin: 16px 0 20px 24px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body strong { color: #e2e8f0; }

.article-body em { color: var(--emerald); font-style: normal; }

.article-cta-block {
  margin-top: 56px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(245,158,11,0.05));
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius-lg);
  text-align: center;
}

.article-cta-block h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.article-cta-block p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-banner { order: -1; }
  .hero h1 { font-size: 2.2rem; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .buy-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-inner .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  
  .burger { display: flex; }
  nav { display: none; }
  
  .hero { padding: 50px 0 40px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  
  .advantages-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid::before { display: none; }
  .buy-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  
  .footer-inner { flex-direction: column; text-align: center; }
  
  .faq-item { padding: 20px; }
  .faq-item p { padding-left: 0; margin-top: 12px; }
  
  .article-cta-block { padding: 24px; }
}

@media (max-width: 480px) {
  .logo-text-sub { display: none; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px; }
  .stat-item:last-child { border-bottom: none; }
}
