/* ===== Variables ===== */
:root {
  --bg: #0B0F1A;
  --surface: #121729;
  --surface-2: #171d33;
  --border: rgba(255,255,255,0.08);
  --text: #F1F3F9;
  --text-muted: #9AA3B8;
  --grad-1: #22D3EE;
  --grad-2: #6366F1;
  --radius: 16px;
  --max-width: 1200px;
  --section-pad: 6rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grad-1);
  margin-bottom: 1rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #06121A;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(99, 102, 241, 0.45); }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover { border-color: var(--grad-1); color: var(--grad-1); }

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 15, 26, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-accent {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.main-nav a:hover, .main-nav a.active { color: var(--text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.lang-switch a {
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  color: var(--text-muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-switch a:hover { color: var(--text); }
.lang-switch a.lang-active { color: #fff; background: rgba(255,255,255,0.08); }
.lang-switch .lang-sep { color: var(--text-muted); opacity: 0.4; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: float 12s ease-in-out infinite;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: var(--grad-1);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 480px;
  height: 480px;
  background: var(--grad-2);
  bottom: -150px;
  right: -100px;
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.3rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 2.2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 700px;
}

.stat { display: flex; flex-direction: column; gap: 0.2rem; }

.stat-num { font-size: 1.8rem; font-weight: 800; }

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

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  position: relative;
  padding: calc(76px + 4.5rem) 0 4rem;
  overflow: hidden;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0.4rem 0 1rem;
}

.page-hero p { color: var(--text-muted); font-size: 1.05rem; }

/* ===== Page Hero with athlete photo (Amonre Digital) ===== */
.page-hero-athlete { padding-bottom: 6rem; min-height: 640px; display: flex; align-items: center; }

.page-hero-athlete .hero-photo {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(11,15,26,0.95) 0%, rgba(11,15,26,0.75) 35%, rgba(11,15,26,0.35) 65%, rgba(11,15,26,0.55) 100%), url('../images/hero-athlete.jpg');
  background-size: cover;
  background-position: center 20%;
}

.page-hero-athlete .orb { opacity: 0.18; mix-blend-mode: screen; }

@media (max-width: 768px) {
  .page-hero-athlete .hero-photo {
    background-image: linear-gradient(180deg, rgba(11,15,26,0.75) 0%, rgba(11,15,26,0.55) 45%, rgba(11,15,26,0.92) 100%), url('../images/hero-athlete.jpg');
    background-position: center 15%;
  }
}

/* ===== Sections generic ===== */
section:not(.hero) { padding: var(--section-pad) 0; }
.services-page { padding-top: 0; }

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.section-head p { color: var(--text-muted); font-size: 1.05rem; }

.section-sub-head { margin: 3.5rem 0 1.5rem; }
.section-sub-head h3 { font-size: 1.3rem; font-weight: 800; }

/* ===== Services ===== */
.services { background: var(--surface); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.4);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.service-icon svg { width: 24px; height: 24px; }

.icon-blue { background: rgba(99, 102, 241, 0.14); color: #818CF8; }
.icon-purple { background: rgba(192, 132, 252, 0.14); color: #C084FC; }
.icon-cyan { background: rgba(34, 211, 238, 0.14); color: #22D3EE; }

.service-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.6rem; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.1rem; }

.feature-list { margin-bottom: 1.4rem; }
.feature-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.3rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-1);
}

.card-link { font-weight: 700; font-size: 0.9rem; color: var(--grad-1); }

.exp-note { font-size: 0.85rem; color: var(--grad-1); font-weight: 600; margin-bottom: 1rem; }

.process-grid-compact { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; margin-bottom: 2rem; }
.process-grid-compact .process-step:not(:last-child)::after { display: none; }

.amonre-points { margin: 0 0 2rem; }

.mini-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.mini-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem;
  transition: transform 0.2s ease;
}

.mini-card:hover { transform: translateY(-3px); }

.mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.mini-icon svg { width: 20px; height: 20px; }

.mini-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.mini-card p { font-size: 0.85rem; color: var(--text-muted); }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.mission-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.mission-card:hover { transform: translateY(-4px); border-color: rgba(99, 102, 241, 0.4); }

.mission-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  color: #06121A;
  margin-bottom: 1rem;
}

.mission-card h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.6rem; }
.mission-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.1rem; }

.check-list { margin-bottom: 1.3rem; }
.check-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}

.mission-link { font-weight: 700; font-size: 0.9rem; }

.badge-green { background: #10B981; }
.badge-amber { background: #F59E0B; }
.badge-pink { background: #EC4899; }
.badge-orange { background: #F97316; }
.badge-purple { background: #7C3AED; color: #fff; }
.badge-cyan { background: #22D3EE; color: #06121A; }

.check-list.list-green li::before { color: #10B981; }
.check-list.list-amber li::before { color: #F59E0B; }
.check-list.list-pink li::before { color: #EC4899; }
.check-list.list-orange li::before { color: #F97316; }
.check-list.list-purple li::before { color: #7C3AED; }
.check-list.list-cyan li::before { color: #22D3EE; }

.link-green { color: #10B981; }
.link-amber { color: #F59E0B; }
.link-pink { color: #EC4899; }
.link-orange { color: #F97316; }
.link-purple { color: #A78BFA; }
.link-cyan { color: #22D3EE; }

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-step {
  position: relative;
  padding-top: 1rem;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2.1rem;
  left: 60%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, var(--grad-1), transparent);
}

.step-num { font-size: 1.8rem; font-weight: 800; display: block; margin-bottom: 0.6rem; }
.process-step h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== About ===== */
.about { background: var(--surface); }

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1.2rem; letter-spacing: -0.02em; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }

.about-points { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; }
.about-point { font-size: 0.95rem; font-weight: 600; }
.about-point span { color: var(--grad-1); margin-right: 0.5rem; }

.about-card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  overflow: hidden;
}

.about-card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--grad-2);
  filter: blur(80px);
  opacity: 0.3;
  top: -50px;
  right: -50px;
}

.about-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 1.4rem; position: relative; }

.about-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  position: relative;
}

.about-mini-stats strong { display: block; font-size: 1.7rem; font-weight: 800; }
.about-mini-stats span { font-size: 0.85rem; color: var(--text-muted); }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.testimonial-card p { font-size: 0.95rem; color: var(--text); margin-bottom: 1.4rem; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #06121A;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== CTA ===== */
.cta-box {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 500px;
  height: 300px;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  filter: blur(120px);
  opacity: 0.25;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-box h2 { position: relative; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 0.8rem; }
.cta-box p { position: relative; color: var(--text-muted); margin-bottom: 2rem; }
.cta-actions { position: relative; }

.cta-contacts {
  position: relative;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cta-contacts a:hover { color: var(--grad-1); }

/* ===== Contact ===== */
.contact-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--grad-1);
}

.contact-form button { align-self: flex-start; }

.form-status { font-weight: 600; margin-top: -0.4rem; }
.form-status.success { color: #22C55E; }
.form-status.error { color: #F87171; }

.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }

.contact-info-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-info-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.4rem; }
.contact-info-card a, .contact-info-card span { font-size: 0.9rem; color: var(--text-muted); }
.contact-info-card a:hover { color: var(--grad-1); }

/* ===== Footer ===== */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding-top: var(--section-pad); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin: 1rem 0 1.2rem; max-width: 280px; }

.footer-social { display: flex; gap: 0.7rem; }

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover { border-color: var(--grad-1); color: var(--grad-1); }

.footer-col h4 { font-size: 0.9rem; font-weight: 800; margin-bottom: 1rem; }
.footer-col a, .footer-col span { display: block; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.7rem; }
.footer-col a:hover { color: var(--text); }

.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; }

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a:hover { color: var(--text); }

/* ===== WhatsApp floating button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 150;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5); }
.whatsapp-float svg { width: 30px; height: 30px; color: #fff; }
.whatsapp-float.shift-up { transform: translateY(-88px); }
.whatsapp-float.shift-up:hover { transform: translateY(-91px) scale(1.05); }

@media (max-width: 480px) {
  .whatsapp-float { width: 50px; height: 50px; bottom: 1rem; right: 1rem; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-float.shift-up { transform: translateY(-104px); }
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  z-index: 200;
  transform: translateY(140%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.cookie-content p { font-size: 0.85rem; color: var(--text-muted); margin: 0; flex: 1 1 260px; }
.cookie-content p a { color: var(--grad-1); font-weight: 600; }

.cookie-actions { display: flex; gap: 0.7rem; flex-shrink: 0; }

@media (max-width: 480px) {
  .cookie-content { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --section-pad: 4rem; }

  .main-nav { position: fixed; top: 76px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 1.5rem; gap: 0.5rem; border-bottom: 1px solid var(--border); transform: translateY(-150%); transition: transform 0.3s ease; }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 0.7rem 0; border-bottom: 1px solid var(--border); }

  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
