/* ═══════════════════════════════════════════
   ROOTWAVE LLC — styles.css
   Editorial Dark Fitness Premium Theme
═══════════════════════════════════════════ */

/* ── RESET & BASE ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #181818;
  --surface:   #1e1e1e;
  --border:    #2a2a2a;
  --text:      #f0ede8;
  --text-muted:#8a8580;
  --text-dim:  #5a5550;
  --accent:    #b8f53e;
  --accent-dim:#8dba2e;
  --white:     #ffffff;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'DM Serif Display', serif;
  --font-body:    'DM Sans', sans-serif;

  --nav-h:     72px;
  --radius:    4px;
  --radius-lg: 10px;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.0, 0.0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

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

/* ── UTILITY ───────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,245,62,0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(240,237,232,0.3);
}
.btn--ghost:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }
.btn--lg { padding: 18px 48px; font-size: 1rem; }

/* ── SECTION HEADER ────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header--light .section-header__title,
.section-header--light .section-header__sub { color: var(--text); }

.section-header__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.section-header__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.section-header__title em {
  font-style: italic;
  color: var(--accent);
}

.section-header__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
}

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.12em;
  color: var(--text);
  transition: color 0.2s;
}
.nav__logo span { color: var(--accent); }
.nav__logo:hover { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--text); background: var(--surface); }
.nav__link.active { color: var(--text); }

.nav__link--cta {
  background: var(--accent);
  color: #000 !important;
  font-weight: 700;
  padding: 10px 20px;
}
.nav__link--cta:hover {
  background: var(--accent-dim);
  color: #000 !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  position: absolute;
  inset: 0;
  object-position: center 20%;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(0,0,0,0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  width: 100%;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeUp 0.8s var(--ease-out) 0.35s both;
}
.hero__headline em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--accent);
  font-size: 0.85em;
  letter-spacing: 0.01em;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(240,237,232,0.75);
  max-width: 480px;
  font-weight: 300;
  margin-bottom: 44px;
  animation: fadeUp 0.8s var(--ease-out) 0.5s both;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease-out) 0.65s both;
}

/* Ticker */
.hero__ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  background: var(--accent);
  padding: 10px 0;
  overflow: hidden;
}
.ticker__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: tickerScroll 25s linear infinite;
  width: max-content;
}
.ticker__track span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  flex-shrink: 0;
}
.ticker__track .sep { color: rgba(0,0,0,0.4); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: background 0.3s var(--ease);
  position: relative;
}

.service-card:hover { background: var(--surface); }

.service-card--featured { background: var(--bg-3); }

.service-card__img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}
.service-card__img-wrap img {
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card__img-wrap img {
  transform: scale(1.06);
}
.service-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
}

.service-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(184,245,62,0.3);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.service-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  font-weight: 300;
}

.service-card__link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  transition: gap 0.2s var(--ease);
}
.service-card:hover .service-card__link { gap: 12px; }

/* ══════════════════════════════════════════════
   STATS
══════════════════════════════════════════════ */
.stats {
  background: var(--accent);
  padding: 56px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(0,0,0,0.15);
}
.stat:last-child { border-right: none; }

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: #000;
  letter-spacing: 0.02em;
  line-height: 1;
}
.stat__number span {
  font-size: 0.5em;
  vertical-align: super;
  opacity: 0.7;
}

.stat__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin-top: 8px;
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-frame {
  aspect-ratio: 3/4;
  max-height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--accent);
  color: #000;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 12px 40px rgba(184,245,62,0.3);
}
.about__badge-line1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
.about__badge-line2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
}

.about__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin: 16px 0 24px;
}
.about__title em { font-style: italic; color: var(--accent); }

.about__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

.about__credentials {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.credential__icon {
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,245,62,0.3);
}

.testi-card--accent {
  background: linear-gradient(135deg, rgba(184,245,62,0.08) 0%, rgba(184,245,62,0.03) 100%);
  border-color: rgba(184,245,62,0.2);
}

.testi-card__stars {
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 2px;
}

.testi-card__quote {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.testi-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-card__name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}
.testi-card__program {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
}
.cta-section__bg img { object-position: center 40%; }
.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 100%);
}

.cta-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: var(--white);
  margin: 16px 0 24px;
}
.cta-section__title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--accent);
  font-size: 0.88em;
}

.cta-section__sub {
  font-size: 1.05rem;
  color: rgba(240,237,232,0.7);
  font-weight: 300;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin: 16px 0 20px;
}
.contact__title em { font-style: italic; color: var(--accent); }

.contact__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 48px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.contact__detail-value {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact__detail-value a { color: var(--text); transition: color 0.2s; }
.contact__detail-value a:hover { color: var(--accent); }

/* Form */
.contact__form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8580' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,245,62,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  background: rgba(184,245,62,0.1);
  border: 1px solid rgba(184,245,62,0.3);
  color: var(--accent);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}
.form-success.show { display: block; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--text);
  display: block;
  margin-bottom: 16px;
  transition: color 0.2s;
}
.footer__logo span { color: var(--accent); }
.footer__logo:hover { color: var(--accent); }

.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col ul li a,
.footer__col ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--text-muted); }

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__image-wrap { max-width: 480px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr; gap: 56px; }
  .footer__top { grid-template-columns: 1fr; gap: 48px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease);
    pointer-events: none;
  }
  .nav__links.open {
    transform: translateY(0);
    pointer-events: all;
  }
  .nav__link { padding: 14px 16px; font-size: 0.85rem; }
  .nav__link--cta { text-align: center; margin-top: 8px; }

  .hero__headline { font-size: clamp(3rem, 13vw, 5rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }

  .services { padding: 64px 0; }
  .services__grid { grid-template-columns: 1fr; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(0,0,0,0.15); }
  .stat { padding: 28px 16px; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.15); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.15); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }

  .about { padding: 64px 0; }
  .about__badge { right: 0; bottom: -16px; }

  .testimonials { padding: 64px 0; }
  .testimonials__grid { grid-template-columns: 1fr; }

  .cta-section { padding: 80px 0; }

  .contact { padding: 64px 0; }
  .contact__form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 56px 0 24px; }
  .footer__nav { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer__nav { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 24px 16px; }
}
