/* ====================================================
   ASKA – Helles Premium-Design
   style.css — Gemeinsames Stylesheet für alle Seiten
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --bg: #f8f9fc;
  --surface: #ffffff;
  --card: #ffffff;
  --elevated: #f1f3f8;
  --text: #1a1f36;
  --muted: #5e6687;
  --accent: #D91A60;
  --accent-light: #ff3d7f;
  --blue: #1a365d;
  --blue-light: #2a4a7f;
  --cyan: #00bcf2;
  --border: rgba(26,31,54,0.08);
  --gradient: linear-gradient(135deg, #D91A60, #ff3d7f);
  --gradient-blue: linear-gradient(135deg, #1a365d, #2a4a7f);
  --accent-glow: rgba(217,26,96,0.06);
  --blue-glow: rgba(26,54,93,0.06);
  --shadow: 0 2px 12px rgba(26,31,54,0.06);
  --shadow-hover: 0 8px 30px rgba(26,31,54,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ====== NAVIGATION ====== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.9rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  backdrop-filter: blur(24px);
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
  font-weight: 700; font-size: 1.15rem; color: var(--text);
}
.nav-logo img { height: 36px; opacity: 0.9; }
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a {
  color: var(--muted); font-size: 0.88rem; font-weight: 500;
  transition: color 0.3s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav-cta {
  background: var(--gradient-blue) !important; color: #fff !important;
  padding: 0.55rem 1.4rem; border-radius: 8px;
  font-weight: 600; font-size: 0.85rem;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(26,54,93,0.15);
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-cta.active::after { display: none; }
.nav-mobile-toggle {
  display: none; background: none; border: none;
  color: var(--text); font-size: 1.5rem; cursor: pointer;
}

/* ====== HERO ====== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 3rem 5rem;
  background: linear-gradient(175deg, #edf0f7 0%, #f4f5fa 30%, #fff 100%);
}
.hero-inner {
  max-width: 1300px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--blue-glow); border: 1px solid rgba(26,54,93,0.1);
  border-radius: 100px; font-size: 0.75rem; font-weight: 600; color: var(--blue);
  margin-bottom: 1.5rem;
  animation: fadeUp .7s ease both;
}
.hero-tag .dot {
  width: 7px; height: 7px; background: var(--blue);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.03em;
  margin-bottom: 1.5rem; color: var(--text);
  animation: fadeUp .7s ease .1s both;
}
.hero h1 .highlight {
  background: var(--gradient-blue);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 1.15rem; color: var(--muted); line-height: 1.7;
  margin-bottom: 2rem; max-width: 500px;
  animation: fadeUp .7s ease .2s both;
}
.hero-actions { display: flex; gap: 1rem; animation: fadeUp .7s ease .3s both; }
.hero-trust {
  animation: fadeUp .7s ease .4s both;
  margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: var(--blue-glow); border: 1px solid rgba(26,54,93,0.1);
  border-radius: 8px; font-size: 0.75rem; font-weight: 500; color: var(--blue);
}
.trust-badge .check { color: #10b981; font-weight: 700; }
.hero-visual { position: relative; animation: fadeIn 1s ease .4s both; }
.hero-visual img {
  width: 100%; max-width: 460px; margin: 0 auto;
  filter: drop-shadow(0 20px 60px rgba(26,54,93,0.12));
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.8rem; border-radius: 12px;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  border: none; font-family: inherit; transition: all 0.3s;
}
.btn-primary {
  background: var(--gradient-blue); color: #fff;
  box-shadow: 0 4px 15px rgba(26,54,93,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,54,93,0.25); }
.btn-secondary {
  background: #fff; color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--blue); background: var(--blue-glow); }

/* ====== LOGOS BAR ====== */
.logos-bar {
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: #fff;
}
.logos-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 3rem; flex-wrap: wrap; opacity: 0.55;
}
.logos-inner img { height: 130px; transition: opacity 0.3s; }
.logos-inner img:hover { opacity: 0.8; }

/* ====== SECTIONS ====== */
section { padding: 6rem 3rem; }
.section-inner { max-width: 1300px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.8rem; display: block;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 0.8rem; color: var(--text);
}
.section-sub {
  font-size: 1.05rem; color: var(--muted);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* ====== PRODUCTS ====== */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.product-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 24px; padding: 3rem;
  transition: all 0.4s; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(26,54,93,0.12);
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient-blue);
  opacity: 0; transition: opacity 0.4s;
}
.product-card:hover::before { opacity: 1; }
.product-card-img {
  height: 200px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 2rem;
}
.product-card-img img {
  max-height: 180px;
  filter: drop-shadow(0 10px 25px rgba(26,54,93,0.1));
}
.product-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--text); }
.product-card .product-sub {
  font-size: 0.9rem; color: var(--accent);
  margin-bottom: 1.2rem; font-weight: 500;
}
.product-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.product-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; color: var(--muted); line-height: 1.5;
}
.product-features li::before {
  content: '✦'; color: var(--accent); font-size: 0.7rem;
  margin-top: 0.25rem; flex-shrink: 0;
}
.product-card .product-cta { margin-top: auto; padding-top: 1.5rem; }
.product-card .btn { width: 100%; justify-content: center; padding: 0.8rem; }

/* ====== BENEFITS ====== */
.benefits-section { background: var(--bg); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.benefit-card {
  text-align: center; padding: 2.5rem 1.5rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; transition: all 0.3s;
  box-shadow: var(--shadow);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.benefit-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 1.2rem;
  background: var(--accent-glow);
}
.benefit-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.benefit-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ====== CTA BOX ====== */
.cta-box {
  max-width: 750px; margin: 0 auto;
  background: var(--gradient-blue);
  border-radius: 28px; padding: 4rem; text-align: center;
  color: #fff; box-shadow: 0 12px 40px rgba(26,54,93,0.2);
}
.cta-box .section-tag { color: rgba(255,255,255,0.6); }
.cta-box .section-title { color: #fff; margin-bottom: 1rem; }
.cta-box .section-sub { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.cta-box .btn-primary {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: none;
}
.cta-box .btn-primary:hover { background: rgba(255,255,255,0.25); }
.cta-box .btn-secondary {
  background: #fff; color: var(--blue); border: none;
}

/* ====== CONTACT ====== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem; background: var(--bg);
  border: 1px solid var(--border); border-radius: 16px;
}
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; color: var(--text); }
.contact-item p { font-size: 0.88rem; color: var(--muted); }
.contact-item a { color: var(--accent); transition: color 0.3s; }
.contact-item a:hover { color: var(--accent-light); }
.contact-form {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 24px; padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.contact-form .form-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--muted); margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.8rem 1rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; color: var(--text);
  font-size: 0.9rem; font-family: inherit;
  transition: border-color 0.3s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; margin-top: 0.5rem; }
.form-hint { font-size: 0.75rem; color: var(--muted); margin-top: 1rem; text-align: center; }

/* Map */
.map-container {
  margin-top: 1.2rem; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); height: 220px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ====== ABOUT ====== */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h3 {
  font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem;
  letter-spacing: -0.02em; color: var(--text);
}
.about-text p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-value {
  padding: 1.2rem; background: var(--bg);
  border: 1px solid var(--border); border-radius: 14px;
}
.about-value h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--text); }
.about-value p { font-size: 0.8rem; color: var(--muted); }
.about-visual-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 24px; padding: 3rem; text-align: center;
  box-shadow: var(--shadow);
}
.about-visual-card .big-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 4rem; font-weight: 700;
  background: var(--gradient-blue);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.about-stat {
  padding: 1rem; background: #fff;
  border: 1px solid var(--border); border-radius: 12px; text-align: center;
}
.about-stat .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem; font-weight: 700; color: var(--blue);
}
.about-stat .label { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }

/* ====== PAGE HEADER ====== */
.page-header {
  position: relative; z-index: 1;
  padding: 10rem 3rem 4rem; text-align: center;
  background: linear-gradient(175deg, #edf0f7, #f4f5fa, #fff);
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 0.8rem; color: var(--text);
}
.page-header p { font-size: 1.1rem; color: var(--muted); max-width: 500px; margin: 0 auto; }

/* ====== LEGAL ====== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; font-weight: 700; margin: 2rem 0 0.8rem; color: var(--text); }
.legal-content h3 { font-size: 1.1rem; font-weight: 600; margin: 1.5rem 0 0.5rem; color: var(--text); }
.legal-content p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin-bottom: 0.8rem; }

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 99;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
  cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37,211,102,0.35);
}
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
.whatsapp-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 0.5rem 1rem;
  font-size: 0.8rem; white-space: nowrap; color: var(--text);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  box-shadow: var(--shadow);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ====== FOOTER ====== */
footer {
  border-top: 1px solid var(--border);
  padding: 4rem 3rem 2rem; background: #fff;
}
.footer-inner { max-width: 1300px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-col h4 {
  font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--text);
}
.footer-col p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
.footer-col a {
  display: block; font-size: 0.85rem; color: var(--muted);
  padding: 0.25rem 0; transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent); }
.footer-brand {
  font-weight: 700; font-size: 1.1rem; margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.5rem; color: var(--text);
}
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }
.footer-bottom a { color: var(--muted); font-size: 0.78rem; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--accent); }

/* ====== REFERENZEN / SMARTVOICE ====== */
.smartvoice-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem; align-items: start;
}
.smartvoice-text p {
  font-size: 0.95rem; color: var(--muted); line-height: 1.8;
  margin-bottom: 1rem;
}
.smartvoice-text strong { color: var(--text); font-weight: 600; }
.smartvoice-features { display: flex; flex-direction: column; gap: 1.2rem; }
.sv-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem; background: var(--bg);
  border: 1px solid var(--border); border-radius: 14px;
  transition: all 0.3s;
}
.sv-feature:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.sv-feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--blue-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.sv-feature h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; color: var(--text); }
.sv-feature p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* Reference Projects */
.ref-project {
  background: #fff; border: 1px solid var(--border);
  border-radius: 24px; padding: 2.5rem 3rem;
  margin-bottom: 2rem; box-shadow: var(--shadow);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.ref-project:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.ref-project::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--gradient-blue);
  opacity: 0; transition: opacity 0.4s;
}
.ref-project:hover::before { opacity: 1; }
.ref-project-header { margin-bottom: 1.5rem; }
.ref-badge {
  display: inline-block; padding: 0.3rem 0.8rem;
  background: var(--blue-glow); border: 1px solid rgba(26,54,93,0.1);
  border-radius: 100px; font-size: 0.72rem; font-weight: 600;
  color: var(--blue); margin-bottom: 0.8rem;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.05em;
}
.ref-project-header h3 {
  font-size: 1.35rem; font-weight: 700; color: var(--text);
  margin-bottom: 0.3rem;
}
.ref-client {
  font-size: 0.88rem; color: var(--accent); font-weight: 500;
}
.ref-project-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.ref-challenge, .ref-solution {
  padding: 0;
}
.ref-challenge h4, .ref-solution h4 {
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted);
  margin-bottom: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
}
.ref-challenge p, .ref-solution p {
  font-size: 0.9rem; color: var(--muted); line-height: 1.7;
}
.ref-results {
  grid-column: 1 / -1;
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}
.ref-result-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--text); font-weight: 500;
}
.ref-result-icon { color: var(--accent); font-size: 0.7rem; }

/* ====== ANIMATIONS ====== */
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.reveal { opacity: 0; transform: translateY(35px); transition: all 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
  .products-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .smartvoice-grid { grid-template-columns: 1fr; }
  .ref-project-body { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { padding: 0.9rem 1.5rem; }
  section { padding: 4.5rem 1.5rem; }
}
@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .about-stat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); gap: 1rem; box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
  .nav-mobile-toggle { display: block; }
  .hero { padding: 7rem 1.5rem 3rem; }
}
