/* ESET VPN — Teal-Dark Security Design System */
/* Design tokens from eset-DESIGN.md */

:root {
  --dark-navy: #0a1823;
  --dark-teal-surface: #003d46;
  --white-surface: #ffffff;
  --charcoal-text: #3b3b3b;
  --cyan-accent: #6ff1f1;
  --slate-text: #424d56;
  --teal-bright: #008193;
  --teal-primary: #006e7e;
  --summer-border-mint: #76ffda;

  --sp-xs: 3px;
  --sp-sm: 5px;
  --sp-md1: 6px;
  --sp-md2: 10px;
  --sp-base: 15px;
  --sp-lg1: 20px;
  --sp-lg2: 25px;
  --sp-xl1: 30px;
  --sp-xl2: 32px;
  --sp-xl3: 34px;
  --sp-2xl: 40px;
  --sp-3xl: 50px;
  --sp-section: 102px;

  --r-subtle: 2px;
  --r-small: 3px;
  --r-card: 6px;
  --r-input: 12px;
  --r-panel: 14px;
  --r-tile: 15px;
  --r-badge: 25px;
  --r-btn-icon: 34px;
  --r-circle: 100px;
  --r-pill: 999px;

  --shadow-card: 0px 10px 16px 4px rgba(0,0,0,0.2);
  --shadow-soft: 0px 8px 24px 0px rgba(149,157,165,0.2);
  --shadow-drop: 0px 3px 6px 0px rgba(0,0,0,0.16);
  --shadow-glow: -10px 18px 38px 0px rgba(0,0,0,0.24);

  --font-heading: Fedra, Tahoma, sans-serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-quote: Georgia, Times, 'Times New Roman', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 17px; line-height: 26px; color: var(--slate-text); background: var(--white-surface); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-primary); text-decoration: none; }
a:hover { color: var(--teal-bright); }
ul { list-style: none; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-2xl); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-md2);
  padding: 12px 28px; border-radius: var(--r-badge);
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  cursor: pointer; border: none; transition: background 0.2s, transform 0.15s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal-bright); color: #fff; }
.btn-primary:hover { background: var(--teal-primary); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--teal-bright); color: var(--teal-bright); }
.btn-outline:hover { background: var(--teal-bright); color: #fff; }
.btn-white { background: #fff; color: var(--teal-primary); }
.btn-white:hover { background: var(--cyan-accent); color: var(--dark-navy); }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* Header / Nav */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white-surface);
  box-shadow: var(--shadow-drop);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: var(--sp-md2);
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: var(--sp-xl1);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body); font-size: 14px; font-weight: 400;
  color: var(--slate-text); text-decoration: none; line-height: 26px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal-bright); }
.nav-right { display: flex; align-items: center; gap: var(--sp-xl1); }
.nav-toggle { display: none; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--slate-text); padding: 4px; }

/* Lang switcher */
.lang { position: relative; }
.lang-btn {
  background: none; border: 1px solid #ddd; border-radius: var(--r-input);
  padding: 6px 12px; font-size: 13px; cursor: pointer; color: var(--slate-text);
  display: flex; align-items: center; gap: 4px;
}
.lang-btn:hover { border-color: var(--teal-bright); }
.lang-menu {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff; border: 1px solid #e0e0e0; border-radius: var(--r-card);
  box-shadow: var(--shadow-soft); min-width: 140px; overflow: hidden;
  z-index: 100;
}
.lang-menu.open { display: block; }
.lang-menu a {
  display: block; padding: 10px 16px; font-size: 14px;
  color: var(--slate-text); text-decoration: none;
}
.lang-menu a:hover { background: #f5f5f5; }
.lang-menu a.active { color: var(--teal-bright); font-weight: 700; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 64px 0 0 0;
  width: 100vw; flex-direction: column; align-items: center; gap: var(--sp-md2);
  background: var(--white-surface); padding: var(--sp-xl1) 0;
  overflow-y: auto; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a.m-link {
  width: 100%; text-align: center; padding: 14px 0;
  font-size: 18px; color: var(--slate-text); text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu a.m-link:hover { color: var(--teal-bright); }
.mobile-menu .btn { margin-top: var(--sp-lg1); width: 80%; justify-content: center; }
.m-lang {
  display: flex; gap: var(--sp-base); margin-top: var(--sp-xl1);
  font-size: 14px;
}
.m-lang a { color: var(--slate-text); padding: 6px 12px; border-radius: var(--r-input); border: 1px solid #ddd; }
.m-lang a.active { color: var(--teal-bright); border-color: var(--teal-bright); font-weight: 700; }

/* Hero Section */
.hero {
  background: var(--dark-navy);
  position: relative; overflow: hidden;
  padding: var(--sp-section) 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?w=1400&q=75&fit=crop');
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl); align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(111,241,241,0.12); border: 1px solid var(--summer-border-mint);
  color: var(--cyan-accent); font-size: 13px; font-weight: 700;
  padding: 6px 16px; border-radius: var(--r-pill); margin-bottom: var(--sp-lg1);
}
.hero h1 {
  font-family: var(--font-heading); font-size: 40px; font-weight: 700;
  line-height: 1.2; color: #fff; margin-bottom: var(--sp-xl1);
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.8); line-height: 26px;
  margin-bottom: var(--sp-2xl);
}
.hero-ctas { display: flex; gap: var(--sp-base); flex-wrap: wrap; margin-bottom: var(--sp-2xl); }
.hero-stats {
  display: flex; gap: var(--sp-2xl); flex-wrap: wrap;
  padding-top: var(--sp-xl1); border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-val { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--cyan-accent); }
.hero-stat-lbl { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.hero-image-wrap { position: relative; }
.hero-image-wrap img { border-radius: var(--r-panel); box-shadow: var(--shadow-glow); }
.hero-badge-float {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--dark-teal-surface); border: 1px solid rgba(118,255,218,0.36);
  border-radius: var(--r-panel); padding: 16px 20px;
  color: #fff; font-size: 13px; line-height: 20px;
  box-shadow: var(--shadow-card);
}
.hero-badge-float strong { display: block; font-size: 20px; color: var(--cyan-accent); font-family: var(--font-heading); }

/* Trusted Bar */
.trusted { background: var(--dark-teal-surface); padding: var(--sp-xl1) 0; }
.trusted-inner {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-3xl); flex-wrap: wrap;
}
.trusted-item { color: rgba(255,255,255,0.75); font-size: 13px; text-align: center; }
.trusted-item strong { display: block; font-size: 20px; font-weight: 700; font-family: var(--font-heading); color: var(--cyan-accent); }

/* Section commons */
.section { padding: var(--sp-section) 0; }
.section-dark { background: var(--dark-navy); }
.section-teal { background: var(--dark-teal-surface); }
.section-light { background: #f7f9fa; }
.section-title {
  font-family: var(--font-heading); font-size: 26px; font-weight: 700;
  line-height: 35px; color: var(--dark-navy); text-align: center; margin-bottom: var(--sp-base);
}
.section-title.light { color: #fff; }
.section-sub {
  font-size: 17px; color: var(--slate-text); text-align: center;
  max-width: 640px; margin: 0 auto var(--sp-3xl);
}
.section-sub.light { color: rgba(255,255,255,0.75); }

/* Feature grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-2xl); }
.feature-card {
  background: var(--white-surface); border-radius: var(--r-tile);
  padding: var(--sp-2xl) var(--sp-xl1); box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.feature-icon {
  width: 56px; height: 56px; background: rgba(0,129,147,0.08);
  border-radius: var(--r-circle); display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-lg1);
}
.feature-icon svg { width: 28px; height: 28px; fill: var(--teal-bright); }
.feature-card h3 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  line-height: 26px; color: var(--dark-navy); margin-bottom: var(--sp-md2);
}
.feature-card p { font-size: 15px; color: var(--slate-text); line-height: 26px; }

/* Image + text splits */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-section); align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img img { border-radius: var(--r-panel); box-shadow: var(--shadow-card); width: 100%; }
.split-text h2 { font-family: var(--font-heading); font-size: 26px; font-weight: 700; line-height: 35px; color: var(--dark-navy); margin-bottom: var(--sp-base); }
.split-text.light h2 { color: #fff; }
.split-text p { font-size: 17px; color: var(--slate-text); line-height: 26px; margin-bottom: var(--sp-xl1); }
.split-text.light p { color: rgba(255,255,255,0.8); }
.check-list { list-style: none; padding: 0; margin-bottom: var(--sp-2xl); }
.check-list li { font-size: 15px; color: var(--slate-text); line-height: 18px; padding: 8px 0; padding-left: 26px; position: relative; }
.check-list.light li { color: rgba(255,255,255,0.85); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal-bright); font-weight: 700; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-xl1); }
.pricing-card {
  background: var(--white-surface); border-radius: var(--r-panel);
  padding: var(--sp-2xl) var(--sp-xl1); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; position: relative;
  border: 2px solid transparent;
}
.pricing-card.featured { border-color: var(--teal-bright); box-shadow: var(--shadow-card); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal-bright); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: var(--r-pill);
}
.pricing-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--dark-navy); margin-bottom: var(--sp-md2); }
.pricing-price { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--teal-primary); margin-bottom: var(--sp-md2); }
.pricing-price span { font-size: 15px; color: var(--slate-text); font-weight: 400; font-family: var(--font-body); }
.pricing-desc { font-size: 15px; color: var(--slate-text); margin-bottom: var(--sp-xl1); line-height: 26px; }
.pricing-features { list-style: none; padding: 0; flex: 1; margin-bottom: var(--sp-xl1); }
.pricing-features li { font-size: 15px; color: var(--slate-text); padding: 7px 0; padding-left: 22px; position: relative; border-bottom: 1px solid #f0f0f0; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--teal-bright); font-weight: 700; }
.pricing-card .btn { width: 100%; justify-content: center; margin-top: auto; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-2xl); text-align: center; }
.stat-val { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--cyan-accent); margin-bottom: var(--sp-sm); }
.stat-lbl { font-size: 15px; color: rgba(255,255,255,0.75); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-2xl); }
.testimonial-card {
  background: var(--white-surface); border-radius: var(--r-panel);
  padding: var(--sp-2xl) var(--sp-xl1); box-shadow: var(--shadow-soft);
}
.testimonial-stars { color: #f5a623; font-size: 16px; margin-bottom: var(--sp-base); }
.testimonial-text { font-family: var(--font-quote); font-size: 17px; font-weight: 700; line-height: 26px; color: var(--charcoal-text); margin-bottom: var(--sp-lg1); }
.testimonial-author { font-size: 13px; color: var(--slate-text); }
.testimonial-author strong { display: block; color: var(--dark-navy); font-size: 15px; }

/* Platform grid */
.platform-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-xl1); }
.platform-card {
  background: var(--white-surface); border-radius: var(--r-tile);
  padding: var(--sp-2xl) var(--sp-lg1); text-align: center;
  box-shadow: var(--shadow-soft); text-decoration: none; color: inherit;
  transition: box-shadow 0.2s, transform 0.2s; display: block;
}
.platform-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); color: inherit; }
.platform-icon { font-size: 40px; margin-bottom: var(--sp-base); }
.platform-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--dark-navy); margin-bottom: var(--sp-md2); }
.platform-card p { font-size: 15px; color: var(--slate-text); }

/* Image showcase */
.img-showcase { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--sp-base); }
.img-showcase img { border-radius: var(--r-card); width: 100%; height: 200px; object-fit: cover; }
.img-showcase img:first-child { height: 100%; grid-row: span 2; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-teal-surface), var(--teal-primary));
  padding: var(--sp-section) 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5?w=1400&q=75&fit=crop') center/cover;
  opacity: 0.08;
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: #fff; margin-bottom: var(--sp-base); }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: var(--sp-2xl); }
.cta-banner .btn-group { display: flex; gap: var(--sp-base); justify-content: center; flex-wrap: wrap; }

/* Awards */
.awards-strip { background: var(--dark-navy); padding: var(--sp-xl1) 0; }
.awards-inner { display: flex; align-items: center; justify-content: center; gap: var(--sp-3xl); flex-wrap: wrap; }
.award-item { text-align: center; color: rgba(255,255,255,0.7); font-size: 13px; }
.award-item strong { display: block; color: var(--cyan-accent); font-size: 22px; font-family: var(--font-heading); font-weight: 700; }

/* Footer */
.footer { background: var(--dark-navy); color: rgba(255,255,255,0.75); padding: var(--sp-section) 0 var(--sp-2xl); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-3xl); margin-bottom: var(--sp-3xl); }
.footer-brand img { height: 32px; width: auto; margin-bottom: var(--sp-lg1); filter: brightness(0) invert(1); }
.footer-brand p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 26px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: var(--sp-lg1); text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cyan-accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--sp-xl1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--sp-base); }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-lang { display: flex; gap: var(--sp-base); }
.footer-lang a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-lang a:hover, .footer-lang a.active { color: var(--cyan-accent); }

/* Page hero (inner pages) */
.page-hero {
  background: var(--dark-navy); padding: 80px 0;
  position: relative; overflow: hidden; text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: 0.15;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-heading); font-size: 40px; font-weight: 700; color: #fff; margin-bottom: var(--sp-base); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto var(--sp-2xl); }
.page-hero .btn-group { display: flex; gap: var(--sp-base); justify-content: center; flex-wrap: wrap; }

/* Download cards */
.download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-2xl); }
.download-card {
  background: var(--white-surface); border-radius: var(--r-panel);
  padding: var(--sp-2xl); box-shadow: var(--shadow-soft);
  display: flex; gap: var(--sp-xl1); align-items: flex-start;
}
.download-icon { font-size: 48px; flex-shrink: 0; }
.download-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--dark-navy); margin-bottom: var(--sp-md2); }
.download-card p { font-size: 15px; color: var(--slate-text); margin-bottom: var(--sp-lg1); line-height: 26px; }
.download-card .btn { display: inline-flex; }

/* Comparison table */
.table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.compare-table th { background: var(--dark-teal-surface); color: #fff; padding: 14px 16px; font-family: var(--font-heading); font-size: 15px; font-weight: 700; text-align: left; }
.compare-table th:first-child { border-radius: var(--r-card) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--r-card) 0 0; }
.compare-table td { padding: 12px 16px; border-bottom: 1px solid #eee; font-size: 15px; color: var(--slate-text); }
.compare-table tr:nth-child(even) td { background: #f9fafb; }
.compare-table .tick { color: var(--teal-bright); font-weight: 700; }
.compare-table .cross { color: #bbb; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: var(--sp-xl1) 0; font-family: var(--font-body); font-size: 17px;
  font-weight: 700; color: var(--dark-navy); display: flex; justify-content: space-between;
  align-items: center; gap: var(--sp-lg1);
}
.faq-q span { font-size: 22px; color: var(--teal-bright); transition: transform 0.3s; }
.faq-q.open span { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: var(--sp-xl1); font-size: 17px; color: var(--slate-text); line-height: 26px; }
.faq-a.open { display: block; }

/* Contact form */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: var(--sp-xl1); }
.form-group label { display: block; font-size: 15px; font-weight: 700; color: var(--dark-navy); margin-bottom: var(--sp-md2); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid #ddd;
  border-radius: var(--r-input); font-family: var(--font-body); font-size: 15px;
  color: var(--slate-text); background: #fff; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--teal-bright);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Privacy / Terms */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--dark-navy); margin: var(--sp-2xl) 0 var(--sp-base); }
.prose h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--dark-navy); margin: var(--sp-xl1) 0 var(--sp-md2); }
.prose p { font-size: 17px; color: var(--slate-text); line-height: 26px; margin-bottom: var(--sp-lg1); }
.prose ul { padding-left: var(--sp-xl1); margin-bottom: var(--sp-lg1); }
.prose ul li { font-size: 17px; color: var(--slate-text); line-height: 26px; margin-bottom: var(--sp-sm); list-style: disc; }

/* Security image strip */
.img-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-base); margin-top: var(--sp-3xl); }
.img-strip img { border-radius: var(--r-card); width: 100%; height: 220px; object-fit: cover; }

/* Responsive */
@media (max-width: 991px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .split.reverse { grid-template-columns: 1fr; direction: ltr; }
  .img-showcase { grid-template-columns: 1fr; }
  .img-showcase img:first-child { height: 200px; grid-row: auto; }
  .img-strip { grid-template-columns: 1fr 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
}

@media (max-width: 768px) {
  .nav-right { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 32px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 22px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: var(--sp-xl1); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trusted-inner { gap: var(--sp-xl1); }
  .awards-inner { gap: var(--sp-xl1); }
  .img-strip { grid-template-columns: 1fr; }
  .container { padding: 0 var(--sp-lg1); }
}

@media (max-width: 479px) {
  .hero h1 { font-size: 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
}
