/* Planet VPN Mirror — style.css — matching freevpnplanet.com exactly */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  /* Exact tokens from freevpnplanet.com */
  --bg-white:     #FCFCFF;
  --bg-blue:      #F1F4FB;
  --white:        #fff;
  --black:        #1C2129;
  --dark:         #1D253A;  /* footer */
  --dark-8:       #1D1D35;  /* text */
  --dark-6:       #44516C;
  --text-muted:   #6C7DA4;
  --border:       #C2CCDF;
  --red:          #FB1B43;
  --red-hover:    #FF3C5E;
  --red-pressed:  #E90B32;
  --green:        #87AB49;
  --green-hover:  #9BC256;
  --green-light:  #D6E2C2;
  --primary:      #0461dd;  /* keep for non-CTA blue elements */

  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --radius-pill:  9999px;
  --shadow-card:  0 2px 14px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.04);
  --shadow-lg:    0 8px 36px rgba(0,0,0,.12);
  --transition:   0.2s ease;

  --container:    1340px;
  --space-xs:     8px;
  --space-sm:     16px;
  --space-md:     24px;
  --space-lg:     48px;
  --space-xl:     80px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
body { font-family: 'Montserrat', Arial, sans-serif; font-size: 16px; line-height: 1.6; color: var(--dark-8); background: var(--bg-white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin-top: 0; line-height: 1.25; color: var(--dark-8); }

/* ─── HEADER — bg #F1F4FB exactly like original ─── */
.site-header {
  position: sticky; top: 0; z-index: 20000;
  background: var(--bg-blue);
  border-bottom: 1px solid var(--border);
  height: 70px;
  transition: background 0.2s ease-out;
}
.nav {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 20px; height: 70px; gap: 20px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; height: 50px; width: 105px; margin-right: 20px; }
.logo { height: 100%; width: auto; object-fit: contain; }

.nav-links {
  display: flex; align-items: center; gap: 0;
  flex: 1;
}
.nav-links > li > a {
  color: var(--dark-8); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-md);
  transition: color var(--transition);
  white-space: nowrap; display: block;
}
.nav-links > li > a:hover { color: var(--green-hover); text-decoration: none; }

.nav-right {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0; margin-left: auto;
}

.mobile-lang { display: none; }

/* ─── DROPDOWN / LANGUAGE SWITCHER ─── */
.dropdown { position: relative; }
.dropdown-panel {
  position: absolute; top: 100%; right: 0;
  margin-top: 0; padding-top: 8px;
  display: none; min-width: 160px; z-index: 1000;
}
.dropdown-panel-inner {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 4px 24px rgba(183,183,183,.25);
}
.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel { display: block; }
.dropdown-panel a {
  display: block; padding: 10px 16px;
  color: var(--dark-8); font-size: 14px;
  transition: background var(--transition);
  white-space: nowrap;
}
.dropdown-panel a:hover { background: var(--bg-blue); text-decoration: none; }

.lang-btn {
  background: none; border: 1px solid var(--border);
  color: var(--dark-8); padding: 6px 12px;
  border-radius: var(--radius-pill); cursor: pointer;
  font-size: 13px; font-family: inherit; display: flex; align-items: center; gap: 6px;
  transition: border-color var(--transition);
}
.lang-btn:hover { border-color: var(--green-hover); color: var(--green-hover); }
.lang-btn i { font-size: 11px; }

/* ─── CTA BUTTONS — RED pill shape like original ─── */
.btn-cta {
  background: var(--red); color: #fff;
  padding: 10px 22px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700; font-family: inherit;
  transition: background var(--transition);
  white-space: nowrap; display: inline-block;
}
.btn-cta:hover { background: var(--red-hover); text-decoration: none; }

.btn-cta-lg {
  background: var(--red); color: #fff;
  padding: 14px 36px; border-radius: var(--radius-pill);
  font-size: 16px; font-weight: 700; font-family: inherit;
  display: inline-block;
  transition: background var(--transition);
}
.btn-cta-lg:hover { background: var(--red-hover); text-decoration: none; }

/* ─── HAMBURGER ─── */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--dark-8); font-size: 22px; padding: 6px;
  order: 99; font-family: inherit;
}

/* ─── HERO — #F1F4FB bg, two-column grid layout ─── */
.hero {
  background: var(--bg-blue);
  padding: 40px 20px;
}
@media (min-width: 768px) { .hero { padding: 70px 20px; } }
@media (min-width: 1024px) { .hero { padding: 100px 20px; } }

.hero-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 24px; align-items: center;
}
@media (min-width: 992px) {
  .hero-inner { grid-template-columns: 1fr 1fr; column-gap: 20px; }
}

.hero-text { }
.hero h1 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800; margin-bottom: 16px; color: var(--dark-8); line-height: 1.15;
}
.hero p {
  font-size: 16px; color: var(--text-muted); margin-bottom: 24px;
  max-width: 560px; line-height: 1.65;
}

/* 2×2 trust badge grid — matching original ui-icons-list */
.hero-badges {
  display: grid; grid-template-columns: 1fr;
  gap: 20px; margin-bottom: 24px;
}
@media (min-width: 768px) {
  .hero-badges { grid-template-columns: repeat(2, 1fr); }
}
.hero-badge-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--dark-8);
}
.hero-badge-icon {
  background: var(--green-hover); /* #9BC256 exactly like original */
  border-radius: 8px;
  flex-shrink: 0; width: 36px; height: 36px; padding: 8px;
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-icon img { width: 20px; height: 20px; display: block; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero visual right column */
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  order: -1;
}
@media (min-width: 992px) { .hero-visual { order: 0; } }
.hero-device { width: 100%; }
.hero-device img { width: 100%; height: auto; display: block; }
.hero-badge-overlay {
  position: absolute; top: 16px; left: -10px;
  background: #fff; border-radius: 14px;
  padding: 10px 16px; box-shadow: 0 8px 28px rgba(0,0,0,.14);
  text-align: center; min-width: 160px;
}
.hero-badge-overlay .stars { color: #F2C94C; font-size: 16px; }
.hero-badge-overlay .overlay-title { font-size: 11px; font-weight: 800; color: var(--dark-8); margin-top: 4px; text-transform: uppercase; letter-spacing: .3px; }
.hero-badge-overlay .overlay-sub { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: var(--space-md) var(--space-sm);
}
.trust-bar-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-lg); flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-num { font-size: 28px; font-weight: 800; color: var(--primary); display: block; line-height: 1; }
.trust-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 6px; display: block; }
.trust-divider { width: 1px; height: 40px; background: var(--border); }

/* ─── SECTIONS ─── */
.section { padding: 40px 20px; }
@media (min-width: 768px) { .section { padding: 70px 20px; } }
@media (min-width: 1024px) { .section { padding: 100px 20px; } }
.section-alt { background: var(--bg-blue); }
.container { max-width: var(--container); margin: 0 auto; }
.section-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: var(--space-xs); }
.section-title { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; margin-bottom: var(--space-sm); color: var(--dark-8); }
.section-sub { font-size: 16px; color: var(--text-muted); max-width: 640px; margin-bottom: var(--space-lg); line-height: 1.65; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ─── FEATURE GRID ─── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-md); }
.feature-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-md);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.feature-icon {
  width: 54px; height: 54px; border-radius: var(--radius-md);
  background: var(--green-light); display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: var(--space-sm); color: var(--green);
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--dark-8); }
.feature-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* ─── SPLIT ROW ─── */
.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.split-row.reverse { direction: rtl; }
.split-row.reverse > * { direction: ltr; }
.split-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-image img { width: 100%; height: 320px; object-fit: cover; }
.split-content .section-title { font-size: clamp(22px, 3vw, 32px); }
.check-list { margin: var(--space-sm) 0 var(--space-md); }
.check-list li { padding: 8px 0; display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--dark-8); }
.check-list li::before { content: '\2713'; color: var(--green); font-weight: 700; font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* ─── COMPARISON TABLE ─── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: var(--space-md); background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.compare-table th { padding: 18px 20px; text-align: left; font-size: 14px; font-weight: 700; background: var(--bg-blue); color: var(--dark-8); }
.compare-table th.col-premium { background: var(--red); color: #fff; text-align: center; }
.compare-table th.col-free { background: var(--bg-blue); color: var(--dark-8); text-align: center; }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--dark-8); }
.compare-table td.check { text-align: center; font-size: 18px; }
.compare-table td.check .yes { color: var(--green); }
.compare-table td.check .no { color: var(--border); }
.compare-table td.check .val { color: var(--primary); font-weight: 700; font-size: 14px; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: #fafcff; }
.compare-cta { text-align: center; margin-top: var(--space-md); }

/* ─── RATINGS BAR ─── */
.ratings-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-top: var(--space-lg); }
.rating-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-md); text-align: center;
  transition: box-shadow var(--transition);
}
.rating-card:hover { box-shadow: var(--shadow-card); }
.rating-card i { font-size: 32px; margin-bottom: 12px; }
.rating-card .rating-name { font-size: 14px; font-weight: 700; color: var(--dark-8); margin-bottom: 4px; }
.rating-card .rating-score { font-size: 28px; font-weight: 800; color: var(--primary); line-height: 1; }
.rating-card .stars { color: #F2C94C; font-size: 16px; margin: 6px 0; }
.rating-card .rating-sub { font-size: 12px; color: var(--text-muted); }

/* ─── REVIEWS ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-md); margin-top: var(--space-md); }
.review-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-md); position: relative;
}
.review-card::before {
  content: '\201C'; position: absolute; top: 12px; left: 20px;
  font-size: 48px; color: var(--green-light); font-family: Georgia, serif; line-height: 1;
}
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; padding-top: 20px; }
.review-source { font-size: 13px; font-weight: 700; color: var(--green); }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-md); }
.pricing-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-md);
  position: relative; transition: box-shadow var(--transition);
}
.pricing-card.popular { border-color: var(--red); border-width: 2px; }
.pricing-card:hover { box-shadow: var(--shadow-card); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; padding: 4px 18px;
  border-radius: var(--radius-pill); font-size: 12px; font-weight: 700; white-space: nowrap;
}
.pricing-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: var(--space-xs); }
.pricing-price { font-size: 44px; font-weight: 800; color: var(--dark-8); line-height: 1; }
.pricing-price sup { font-size: 22px; vertical-align: top; margin-top: 8px; display: inline-block; }
.pricing-period { font-size: 14px; color: var(--text-muted); margin-bottom: var(--space-sm); margin-top: 6px; }
.pricing-divider { height: 1px; background: var(--border); margin: var(--space-sm) 0; }
.pricing-features li { padding: 6px 0; display: flex; gap: 8px; align-items: flex-start; font-size: 14px; color: var(--dark-8); }
.pricing-features li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-features li.no::before { content: '\2715'; color: var(--border); }
.pricing-cta {
  width: 100%; padding: 13px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 700; font-family: inherit; cursor: pointer; margin-top: var(--space-sm);
  display: block; text-align: center; transition: background var(--transition);
  background: var(--red); color: #fff; border: none;
}
.pricing-cta:hover { background: var(--red-hover); text-decoration: none; }

/* ─── IMAGE STRIP ─── */
.image-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
.image-strip-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; }
.image-strip-item img { width: 100%; height: 100%; object-fit: cover; }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: var(--space-sm) 0; font-size: 16px; font-weight: 600; font-family: inherit;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  color: var(--dark-8);
}
.faq-q i { color: var(--green); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 0 var(--space-sm); font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ─── FOOTER ─── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); padding: var(--space-xl) 20px var(--space-md); }
.footer-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg); margin-bottom: var(--space-xl);
}
.footer-brand .logo-footer { height: 36px; width: auto; margin-bottom: var(--space-sm); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: var(--space-sm); }
.footer-social a { color: rgba(255,255,255,.5); font-size: 18px; transition: color var(--transition); }
.footer-social a:hover { color: #fff; text-decoration: none; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: var(--space-sm); text-transform: uppercase; letter-spacing: .5px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.7); font-size: 14px; transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  max-width: var(--container); margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.10); padding-top: var(--space-sm);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; margin: 0; }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--bg-blue);
  color: var(--dark-8); text-align: center;
  padding: 60px 20px var(--space-xl);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; margin-bottom: var(--space-sm); color: var(--dark-8); }
.page-hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ─── PROSE ─── */
.prose-inner { max-width: 820px; margin: 0 auto; padding: var(--space-xl) 20px; font-size: 15px; line-height: 1.85; }
.prose-inner h2 { font-size: 22px; margin-top: 40px; margin-bottom: 12px; color: var(--dark-8); }
.prose-inner h3 { font-size: 17px; margin-top: 28px; color: var(--dark-8); }
.prose-inner p { margin-bottom: 16px; color: var(--text-muted); }
.prose-inner ul { margin: 12px 0 16px 24px; list-style: disc; }
.prose-inner ul li { color: var(--text-muted); margin-bottom: 6px; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.contact-form { display: flex; flex-direction: column; gap: var(--space-sm); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--dark-8); }
.form-group input, .form-group textarea {
  padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-md);
  font-size: 15px; font-family: inherit; background: #fff;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  background: var(--red); color: #fff; border: none; cursor: pointer;
  padding: 14px 32px; border-radius: var(--radius-pill); font-size: 16px; font-weight: 700; font-family: inherit;
  transition: background var(--transition);
}
.form-submit:hover { background: var(--red-hover); }

/* ─── PLATFORM GRID ─── */
.platform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: var(--space-md); }
.platform-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-sm); text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.platform-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.platform-card i { font-size: 32px; color: var(--primary); margin-bottom: var(--space-sm); }
.platform-card span { font-size: 13px; font-weight: 600; display: block; color: var(--dark-8); }

/* ─── GUARANTEE BANNER ─── */
.guarantee-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-pressed) 100%);
  color: #fff; text-align: center;
  padding: var(--space-lg) var(--space-sm); border-radius: var(--radius-xl);
  margin: var(--space-lg) 0;
}
.guarantee-banner h2 { font-size: clamp(22px, 4vw, 34px); margin-bottom: var(--space-sm); color: #fff; }
.guarantee-banner p { font-size: 16px; color: rgba(255,255,255,.88); margin-bottom: var(--space-md); max-width: 560px; margin-left: auto; margin-right: auto; }
.guarantee-banner .btn-cta-lg { background: #fff; color: var(--red); }
.guarantee-banner .btn-cta-lg:hover { background: rgba(255,255,255,.92); }

/* ─── MOBILE ─── */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .hero-badges { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-header { height: 60px; }
  .nav { height: 60px; position: relative; }
  .brand { height: 44px; width: 94px; }
  .nav-links {
    display: none;
    position: absolute; top: 100%;
    left: 0; right: 0;
    flex-direction: column; align-items: center;
    background: var(--bg-blue);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    padding: 12px 0; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; text-align: center; }
  .nav-links > li > a { display: block; width: 100%; padding: 14px 0; font-size: 16px; }

  .nav-right .lang-switcher { display: none; }
  .nav-right .btn-cta { display: none; }
  .nav-toggle { display: block; }

  .mobile-lang {
    display: flex; justify-content: center; gap: 16px;
    padding: 14px 0; border-top: 1px solid var(--border); width: 100%;
  }
  .nav-links li.mobile-lang a {
    display: inline-block; width: auto; padding: 4px 10px;
    font-size: 15px; white-space: nowrap; color: var(--text-muted);
  }
  .nav-links li.mobile-lang a.active { color: var(--green); font-weight: 700; }

  .split-row { grid-template-columns: 1fr; }
  .split-row.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-divider { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .image-strip { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(3, 1fr); }
  .ratings-bar { grid-template-columns: 1fr; }
  .hero-badges { grid-template-columns: 1fr 1fr; }

  .btn-cta-lg, .hero-cta a {
    display: block; text-align: center; width: max-content; max-width: 90%;
  }
  .hero-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .site-header { height: 50px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badges { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

/* ─── UTILITY ─── */
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--space-lg); }
.stat-number { display: block; font-size: 42px; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { display: block; font-size: 13px; color: var(--text-muted); margin-top: 12px; text-transform: uppercase; letter-spacing: .5px; }
