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

:root {
  --red:      #b41e28;
  --red-light:#e0343f;
  --gold:     #d4af37;
  --gold-dim: #a07d20;
  --bg:       #0a0a0f;
  --bg2:      #0f0f18;
  --bg3:      #14141f;
  --surface:  #1a1a28;
  --surface2: #22223a;
  --border:   rgba(255,255,255,0.07);
  --text:     #e8e8f0;
  --text-dim: #8888aa;
  --white:    #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-script:'Dancing Script', cursive;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2.2rem; border-radius: 50px; font-family: var(--font-sans);
  font-size: .95rem; font-weight: 500; letter-spacing: .02em;
  cursor: pointer; border: none; transition: all .3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), #8b1520);
  color: #fff;
  box-shadow: 0 4px 20px rgba(180,30,40,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(180,30,40,.5);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: rgba(212,175,55,.5);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== SECTION LABELS ===== */
.section-label {
  font-size: .78rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2; color: var(--white); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--red-light); }
.section-sub { color: var(--text-dim); max-width: 600px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0; transition: all .4s ease;
}
#navbar.scrolled {
  background: rgba(10,10,15,.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: .85rem 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .05em;
}
.nav-logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}
.logo:hover .nav-logo {
  transform: rotate(15deg) scale(1.1);
}
.logo-text { display: flex; align-items: center; }
.logo-bodega{ color: var(--white); margin-right: 0.15rem; }
.logo-red   { color: var(--red); font-size: .85em; vertical-align: super; }

.nav-links {
  display: flex; align-items: center; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-dim);
  transition: all .3s ease; position: relative;
}
.nav-links a::after {
  content:''; position: absolute; bottom: -6px; left: 50%; width: 0; height: 1px;
  background: var(--gold); transition: all .3s ease; transform: translateX(-50%);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, rgba(180,30,40,.2), rgba(180,30,40,.05));
  border: 1px solid rgba(180,30,40,.5);
  padding: .6rem 1.5rem; border-radius: 50px; color: var(--white) !important;
  font-weight: 600; text-transform: none; font-size: 0.95rem; letter-spacing: normal;
}
.nav-cta:hover { background: var(--red) !important; border-color: var(--red-light); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(180,30,40,.3); }
.nav-cta::after { display: none !important; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .3s;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(180,30,40,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(212,175,55,.06) 0%, transparent 50%),
              var(--bg);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .6;
  animation: orb-float 8s ease-in-out infinite;
}
.orb1 { width: 400px; height: 400px; background: rgba(180,30,40,.15); top: -100px; left: -100px; animation-delay: 0s; }
.orb2 { width: 300px; height: 300px; background: rgba(212,175,55,.08); bottom: 100px; right: 100px; animation-delay: -3s; }
.orb3 { width: 200px; height: 200px; background: rgba(180,30,40,.1); top: 50%; left: 55%; animation-delay: -6s; }
@keyframes orb-float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(30px,-20px) scale(1.05); }
  66%  { transform: translate(-20px,15px) scale(.95); }
}
.hero-lines { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }

.hero-content {
  position: relative; z-index: 2; padding: 8rem 2rem 4rem;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-logo-wrap {
  margin-bottom: 2rem;
  animation: fade-up .8s ease both;
}
.hero-badge {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
  animation: logo-float 6s ease-in-out infinite;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(10deg); }
}
.hero-pre {
  font-size: .85rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  animation: fade-up .8s .2s ease both;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700; line-height: 1.05; color: var(--white); margin-bottom: 1.5rem;
  animation: fade-up .8s .3s ease both;
}
.hero-title em { color: var(--red-light); font-style: italic; }
.hero-tagline {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-script); font-size: 1.4rem; color: var(--gold);
  margin-bottom: 2rem; animation: fade-up .8s .4s ease both;
}
.line-dec { flex: 0 0 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.hero-desc {
  max-width: 560px; color: var(--text-dim); font-size: 1.05rem; line-height: 1.8;
  margin-bottom: 2.5rem; animation: fade-up .8s .5s ease both;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem;
  animation: fade-up .8s .6s ease both;
}
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  animation: fade-up .8s .7s ease both;
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-serif); font-size: 2.5rem;
  font-weight: 700; color: var(--white); line-height: 1;
}
.stat-label { font-size: .78rem; color: var(--text-dim); letter-spacing: .1em; text-transform: uppercase; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

.hero-scroll {
  position: absolute; bottom: 2rem; right: 3rem;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-dim);
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.2); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== ABOUT ===== */
#about {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center;
}
.about-visual { position: relative; }
.about-card-main {
  background: var(--surface);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 3rem 2rem; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.about-icon-wrap { margin-bottom: 1.5rem; }
.about-date-badge {
  background: rgba(180,30,40,.15); border: 1px solid rgba(180,30,40,.3);
  border-radius: 12px; padding: .75rem 1.5rem; display: inline-block;
  font-size: .85rem; color: var(--text-dim); line-height: 1.6;
}
.about-date-badge strong { display: block; color: var(--red-light); font-size: 1.1rem; }
.about-card-side {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 12px; padding: 1.25rem 1.75rem;
  box-shadow: 0 10px 30px rgba(212,175,55,.25);
}
.script-text { font-family: var(--font-script); font-size: 1.3rem; color: #1a1200; font-weight: 600; }
.about-text p { color: var(--text-dim); margin-bottom: 1rem; }
.about-text strong { color: var(--white); }

/* ===== STILURI ===== */
#stiluri {
  padding: 8rem 0;
  background: var(--bg2);
}
.stiluri-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.stil-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 3rem; position: relative; overflow: hidden;
  transition: all .4s ease; cursor: default;
}
.stil-card::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(180,30,40,.08), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.stil-card:hover { transform: translateY(-6px); border-color: rgba(180,30,40,.3); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.stil-card:hover::before { opacity: 1; }
.stil-card.featured { border-color: rgba(212,175,55,.25); }
.stil-card.featured::before { background: radial-gradient(circle at 80% 20%, rgba(212,175,55,.08), transparent 60%); opacity: 1; }
.stil-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #1a1200; font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: .3rem .85rem; border-radius: 50px;
}
.stil-num {
  font-family: var(--font-serif); font-size: 4rem; font-weight: 700;
  color: rgba(255,255,255,.04); line-height: 1; margin-bottom: -.5rem;
}
.stil-icon { margin: 1rem 0; }
.stil-card h3 { font-family: var(--font-serif); font-size: 2rem; color: var(--white); margin-bottom: .75rem; }
.stil-card p  { color: var(--text-dim); line-height: 1.8; margin-bottom: 1.5rem; }
.stil-link    { color: var(--red-light); font-weight: 500; display: inline-flex; align-items: center; gap: .4rem; transition: gap .3s; }
.stil-link:hover { gap: .8rem; }
.stil-link span { transition: transform .3s; }
.stil-link:hover span { transform: translateX(4px); }

/* ===== NIVELE ===== */
#nivele { padding: 6rem 0; background: var(--bg3); }
.nivele-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.nivel-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem 1.5rem; position: relative;
  transition: all .3s;
}
.nivel-item:hover { border-color: rgba(180,30,40,.3); transform: translateY(-4px); }
.nivel-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--red); margin-bottom: 1rem;
  box-shadow: 0 0 12px rgba(180,30,40,.6);
}
.nivel-info h4 { color: var(--white); font-size: 1.1rem; margin-bottom: .5rem; }
.nivel-info p  { color: var(--text-dim); font-size: .9rem; line-height: 1.6; }

/* ===== INSTRUCTORI ===== */
#instructori { padding: 8rem 0; background: var(--bg2); }
.instructori-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.instructor-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem; display: flex; gap: 2rem; align-items: flex-start;
  transition: all .4s;
}
.instructor-card:hover { border-color: rgba(212,175,55,.2); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.instructor-avatar { flex: 0 0 auto; }
.instructor-info h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--white); margin-bottom: .25rem; }
.instructor-role { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.instructor-info p { color: var(--text-dim); font-size: .95rem; line-height: 1.7; margin-bottom: 1.25rem; }
.instructor-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.instructor-tags span {
  background: rgba(180,30,40,.12); border: 1px solid rgba(180,30,40,.25);
  color: var(--red-light); font-size: .75rem; padding: .3rem .85rem; border-radius: 50px;
}

/* ===== PROGRAM ===== */
#program { padding: 8rem 0; background: var(--bg3); }
.program-cta-wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.program-info-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem 1.75rem;
  display: flex; align-items: flex-start; gap: 1.25rem;
  transition: all .3s;
}
.program-info-card:hover { border-color: rgba(212,175,55,.25); transform: translateY(-4px); }
.prog-link-card { cursor: pointer; justify-content: space-between; }
.prog-icon { font-size: 1.75rem; flex: 0 0 auto; }
.program-info-card strong { display: block; color: var(--white); margin-bottom: .4rem; }
.program-info-card p { color: var(--text-dim); font-size: .9rem; line-height: 1.6; }
.program-info-card a { color: var(--red-light); transition: color .3s; }
.program-info-card a:hover { color: var(--gold); }
.arrow-right { font-size: 1.5rem; color: var(--gold); align-self: center; }

/* ===== SCHEDULE GRID ===== */
.schedule-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  margin-bottom: 3rem;
}
.schedule-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden; transition: all .4s;
}
.schedule-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  border-color: rgba(180,30,40,.25);
}
.schedule-card-featured {
  border-color: rgba(212,175,55,.2);
  background: linear-gradient(180deg, rgba(212,175,55,.04) 0%, var(--surface) 100%);
}
.schedule-card-top { padding: 1.5rem 1.25rem 1.25rem; }
.schedule-badge {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .25rem .8rem; border-radius: 50px;
  display: inline-block; margin-bottom: .75rem;
}
.schedule-badge-start { background: rgba(76,175,80,.15); color: #66bb6a; border: 1px solid rgba(76,175,80,.3); }
.schedule-badge-inc   { background: rgba(66,165,245,.15); color: #42a5f5; border: 1px solid rgba(66,165,245,.3); }
.schedule-badge-imp   { background: rgba(212,175,55,.15); color: var(--gold); border: 1px solid rgba(212,175,55,.3); }
.schedule-badge-inter { background: rgba(180,30,40,.15); color: var(--red-light); border: 1px solid rgba(180,30,40,.3); }
.schedule-card h3 {
  font-family: var(--font-serif); font-size: 1.2rem;
  color: var(--white); margin-bottom: .6rem;
}
.schedule-meta {
  display: flex; flex-direction: column; gap: .25rem;
  font-size: .82rem; color: var(--text-dim);
}
.schedule-slots {
  border-top: 1px solid var(--border);
  padding: .75rem 1.25rem;
}
.schedule-slot {
  display: flex; align-items: center; gap: .75rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.03);
}
.schedule-slot:last-child { border-bottom: none; }
.slot-time {
  font-size: .78rem; font-weight: 600; color: var(--gold);
  font-family: var(--font-sans); letter-spacing: .03em;
  min-width: 40px;
}
.slot-name {
  font-size: .9rem; color: var(--text);
}

/* ===== ABONAMENTE ===== */
#abonamente {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}
.abonamente-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }
.abon-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem 2rem; position: relative;
  display: flex; flex-direction: column; gap: 1.5rem; transition: all .4s;
}
.abon-card:hover { transform: translateY(-6px); box-shadow: 0 25px 60px rgba(0,0,0,.4); }
.abon-card.featured {
  border-color: rgba(180,30,40,.4);
  background: linear-gradient(180deg, rgba(180,30,40,.08) 0%, var(--surface) 100%);
  transform: scale(1.03);
}
.abon-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.abon-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red), #8b1520);
  color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .35rem 1.25rem; border-radius: 50px;
  white-space: nowrap; box-shadow: 0 4px 15px rgba(180,30,40,.4);
}
.abon-header h3 { font-family: var(--font-serif); font-size: 1.75rem; color: var(--white); margin-bottom: .35rem; }
.abon-header p  { color: var(--text-dim); font-size: .9rem; }
.abon-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin: 1rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.abon-price span {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.abon-body ul   { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.abon-body li   { color: var(--text-dim); font-size: .95rem; }
.abon-body li:first-child { color: var(--text); }
.abon-note { text-align: center; margin-top: 2rem; color: var(--text-dim); font-size: .85rem; }
.abon-note a { color: var(--red-light); }

/* ===== CONTACT ===== */
#contact {
  padding: 8rem 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: center; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { font-size: 1.4rem; flex: 0 0 auto; margin-top: .2rem; }
.contact-item strong { display: block; color: var(--white); margin-bottom: .25rem; }
.contact-item p, .contact-item a { color: var(--text-dim); font-size: .95rem; line-height: 1.6; }
.contact-item a:hover { color: var(--gold); }
.contact-item small { color: rgba(255,255,255,.3); font-size: .8rem; }
.contact-map { height: 400px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.map-placeholder { height: 100%; background: var(--surface3); }

/* ===== FOOTER ===== */
#footer {
  background: #050508; border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; margin-bottom: 3rem; }
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-logo {
  width: 80px;
  height: auto;
  margin-bottom: 0.5rem;
}
.footer-logo-text {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.2rem;
}
.footer-brand p { color: var(--text-dim); font-family: var(--font-script); font-size: 1.1rem; }
.footer-links { display: flex; gap: 4rem; }
.footer-col { display: flex; flex-direction: column; gap: .75rem; }
.footer-col h5 { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .25rem; }
.footer-col a { color: var(--text-dim); font-size: .9rem; transition: color .3s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border);
  color: var(--text-dim); font-size: .82rem;
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--red-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid, .stiluri-grid, .instructori-grid,
  .contact-grid, .abonamente-grid { grid-template-columns: 1fr; }
  .nivele-grid { grid-template-columns: 1fr 1fr; }
  .program-cta-wrap { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr 1fr; }
  .abon-card.featured { transform: scale(1); }
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .about-card-side { position: relative; bottom: auto; right: auto; margin-top: 1rem; }
  .instructor-card { flex-direction: column; }
}
@media (max-width: 640px) {
  .nivele-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(10,10,15,.97); backdrop-filter: blur(20px); padding: 2rem;
    border-bottom: 1px solid var(--border); gap: 1.25rem; }
  .nav-links.open { display: flex; }
  .burger { display: flex; }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
}
