/* ═══════════════════════════════════════════════
   ZENORIS d.o.o. — Main Stylesheet
   Palette: Steel & Gold
   ═══════════════════════════════════════════════ */

:root {
  --bg-deep:    #0c0c14;
  --bg-dark:    #14141f;
  --bg-card:    #1a1a2e;
  --bg-border:  #252540;
  --accent-mid: #3a3a6e;
  --gold:       #f5c842;
  --gold-light: #ffd966;
  --gold-dim:   rgba(245,200,66,0.15);
  --text-white: #ffffff;
  --text-light: #c8c8e0;
  --text-muted: #7878a0;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow:     0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold:0 0 40px rgba(245,200,66,0.12);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-deep);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--accent-mid); border-radius: 3px; }

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(12,12,20,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245,200,66,0.08);
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(12,12,20,0.97);
  border-bottom-color: rgba(245,200,66,0.15);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.logo-z {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold), #c8a020);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900;
  color: var(--bg-deep);
}
.logo-text { color: var(--text-white); }

.nav-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: contrast(1.05);
}
.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: contrast(1.05);
  opacity: 0.95;
}

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.lang-switcher {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 30px;
  padding: 4px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn.active, .lang-btn:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 16px;
  border-top: 1px solid var(--bg-border);
}
.mobile-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 0;
}
.mobile-menu.open { display: flex; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,200,66,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,200,66,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,200,66,0.3), transparent 70%);
  top: -200px; left: -200px;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(58,58,110,0.6), transparent 70%);
  bottom: -100px; right: 10%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  flex: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,200,66,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #c8a020);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(245,200,66,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,200,66,0.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 30px;
  border: 1px solid var(--bg-border);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--bg-border);
}

/* ── Dashboard Mockup ── */
.hero-visual {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
}
.dashboard-mock {
  width: 380px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-gold);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--bg-border);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.red { background: #ff5f57; }
.dash-dot.yellow { background: #febc2e; }
.dash-dot.green-dot { background: #28c840; }
.dash-title {
  margin-left: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.dash-body { display: flex; height: 260px; }
.dash-sidebar {
  width: 44px;
  background: var(--bg-dark);
  border-right: 1px solid var(--bg-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 8px;
}
.dash-menu-item {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: default;
  transition: var(--transition);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.dash-menu-item.active {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(245,200,66,0.2);
}
.dash-main {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.dash-row { display: flex; gap: 10px; }
.dash-card {
  flex: 1;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--bg-border);
}
.dash-card.gold { background: rgba(245,200,66,0.07); border-color: rgba(245,200,66,0.2); }
.dash-card.blue { background: rgba(58,58,110,0.4); }
.dash-card-label { font-size: 0.62rem; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.dash-card-val { font-size: 1.1rem; font-weight: 800; color: var(--text-white); }
.dash-card-trend { font-size: 0.65rem; font-weight: 700; margin-top: 2px; }
.dash-card-trend.up { color: #4ade80; }

.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 70px;
  padding: 0 4px;
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  border: 1px solid var(--bg-border);
  padding: 8px;
}
.chart-bar {
  flex: 1;
  background: var(--accent-mid);
  border-radius: 3px 3px 0 0;
  transition: var(--transition);
}
.chart-bar.active { background: var(--gold); }

.dash-kyc { width: 100%; }
.dash-kyc-label { font-size: 0.62rem; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.dash-kyc-bar {
  height: 6px;
  background: var(--bg-border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}
.dash-kyc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
}
.dash-kyc-pct { font-size: 0.65rem; color: var(--gold); font-weight: 600; }

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
#about {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
}
#about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 32px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-body { margin: 0 auto; }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
}
.badge:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.badge-icon { font-size: 1rem; }

.about-features { display: flex; flex-direction: column; gap: 20px; }
.feature-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(245,200,66,0.3);
  transform: translateX(4px);
}
.feature-num {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(245,200,66,0.2);
  line-height: 1;
  min-width: 44px;
}
.feature-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-white);
}
.feature-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
#services {
  padding: 100px 0;
  background: var(--bg-deep);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-mid), transparent);
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(245,200,66,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-gold);
}
.service-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.service-card.featured {
  border-color: rgba(245,200,66,0.3);
  background: linear-gradient(135deg, var(--bg-card), rgba(245,200,66,0.05));
}
.service-card.featured::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.service-featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.service-icon-wrap {
  width: 56px; height: 56px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,200,66,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
}
.service-icon { width: 28px; height: 28px; }
.service-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-white);
}
.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ══════════════════════════════════
   WHY US
══════════════════════════════════ */
#why {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
}
#why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(245,200,66,0.25);
  transform: translateY(-3px);
}
.why-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-white);
}
.why-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
#contact {
  padding: 100px 0;
  background: var(--bg-deep);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,200,66,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-value {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-value a { color: var(--gold); }
.contact-value a:hover { text-decoration: underline; }

#map {
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--bg-border);
  margin-top: 8px;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group input,
.form-group textarea {
  background: var(--bg-dark);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,200,66,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-success {
  display: none;
  text-align: center;
  color: #4ade80;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius-sm);
}
.form-success.show { display: block; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
#footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--bg-border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.6;
}
.footer-logo { margin-bottom: 4px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--bg-border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-langs { display: flex; gap: 8px; }
.lang-btn-sm {
  background: none;
  border: 1px solid var(--bg-border);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn-sm:hover, .lang-btn-sm.active {
  border-color: var(--gold);
  color: var(--gold);
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #hero { padding: 90px 24px 60px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-stats { gap: 16px; }
  .contact-form { padding: 24px; }
}
