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

:root {
  --bg: #f5f3f0;
  --bg-card: #ffffff;
  --bg-dark: #111114;
  --fg: #1a1a1e;
  --fg-soft: #5c5a57;
  --fg-muted: #9e9b96;
  --border: #e2e0dc;
  --accent: #e8553a;
  --accent-soft: #fef0ed;
  --radius: 16px;
  --font: 'Sora', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }
body.menu-open { overflow: hidden; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ─ BACKGROUND TEXTURE ─ */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0,0,0,0.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

.bg-glow-1 {
  width: 600px; height: 600px;
  top: -10%; right: -8%;
  background: radial-gradient(circle, rgba(232,85,58,0.18) 0%, transparent 70%);
}

.bg-glow-2 {
  width: 500px; height: 500px;
  top: 45%; left: -10%;
  background: radial-gradient(circle, rgba(232,85,58,0.1) 0%, transparent 70%);
}

.bg-glow-3 {
  width: 700px; height: 700px;
  bottom: -5%; right: 15%;
  background: radial-gradient(circle, rgba(100,80,200,0.08) 0%, transparent 70%);
}

/* ─ SECTION DIVIDERS ─ */
.section-accent-bar {
  height: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.15;
}

/* ─ SKIP LINK ─ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 200;
}

.skip-link:focus {
  top: 1rem;
}

/* ─ NOVA CARD ─ */
.nova-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.nova-footer { text-align: right; }
.card-footer-end { justify-content: flex-end; }
.card-status-mr { margin-right: 1rem; }
.card-badge-accent { background: var(--accent-soft); color: var(--accent); }
.card-title-lg { font-size: 1.6rem; }

::selection { background: var(--accent); color: #fff; }
a { color: inherit; text-decoration: none; }

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

/* ─ NAV ─ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s, backdrop-filter 0.35s;
}

nav.scrolled {
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(245,243,240,0.82);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 64px;
  display: flex; justify-content: space-between; align-items: center;
}

.nav-logo { font-weight: 700; font-size: 1.15rem; letter-spacing: -0.03em; }
.nav-logo span { color: var(--accent); }

/* in hero = white, after scroll = dark */
nav:not(.scrolled) .nav-logo,
nav:not(.scrolled) .nav-links a { color: #fff; }
nav:not(.scrolled) .nav-cta { background: #fff; color: var(--bg-dark); }

.nav-links {
  display: flex; gap: 2rem; list-style: none;
  font-size: 0.82rem; font-weight: 500; color: var(--fg-soft);
}

.nav-links a { transition: opacity 0.15s; }
.nav-links a:hover { opacity: 0.7; }

.nav-cta {
  font-size: 0.8rem; font-weight: 600;
  background: var(--accent); color: #fff;
  padding: 0.5rem 1.2rem; border-radius: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ─ HERO ─ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 6rem 0 5rem;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    url('header.webp')
    center/cover no-repeat;
  filter: brightness(0.35) saturate(1.2);
}

.hero-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(17,17,20,0.3) 0%, rgba(17,17,20,0.0) 40%, rgba(17,17,20,0.85) 85%),
    linear-gradient(90deg, rgba(17,17,20,0.6) 0%, transparent 60%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  width: 100%;
}

.hero-tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}

.hero-tag::before {
  content: '';
  width: 32px; height: 2px; background: var(--accent);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: #fff;
  max-width: 780px;
}

.hero h1 .accent { color: var(--accent); }

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex; gap: 1rem; align-items: center;
}

.btn-hero {
  display: inline-flex; align-items: center;
  font-family: var(--font);
  font-size: 0.88rem; font-weight: 600;
  background: var(--accent); color: #fff;
  padding: 0.85rem 2rem; border-radius: 10px;
  border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,85,58,0.35);
}

.btn-ghost {
  font-family: var(--font);
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.6); background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: color 0.15s;
}

.btn-ghost:hover { color: #fff; }
.btn-ghost .arrow { transition: transform 0.15s; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* stats row inside hero */
.hero-stats {
  display: flex; gap: 3.5rem;
  justify-content: center;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
  font-family: var(--mono);
}


/* ─ SECTION COMMON ─ */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: 1.8rem; font-weight: 700; letter-spacing: -0.03em;
}

.section-head p {
  font-size: 0.82rem; color: var(--fg-muted); font-weight: 500;
}

/* ─ BENTO GRID ─ */
.bento-section { padding: 6rem 0; }

.bento-top {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}

.bento-col-left {
  flex: 2;
  min-width: 0;
}

.bento-col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.35s ease, border-color 0.35s ease;
}

/* shine sweep on hover */
.bento-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 45%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.06) 55%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
  z-index: 3;
}

.bento-card:hover::after {
  transform: translateX(100%);
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow:
    0 16px 48px rgba(232,85,58,0.12),
    0 4px 16px rgba(0,0,0,0.08);
}

/* featured card */
.bento-card.featured {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.bento-wide {
  width: 100%;
}

.featured-video-link {
  position: relative;
  display: block;
  cursor: pointer;
}

.featured-video-link .featured-img {
  width: 100%; height: 250px;
  object-fit: cover;
  transition: filter 0.25s;
}

.featured-video-link:hover .featured-img {
  filter: brightness(0.7);
}

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  transition: background 0.25s, transform 0.25s;
}

.featured-video-link:hover .play-btn {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.1);
}

.featured-img {
  width: 100%; height: 250px;
  object-fit: contain;
  background: transparent;
}

.featured-img-placeholder {
  width: 100%; height: 250px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2);
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.featured-img-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(232,85,58,0.08) 50%, transparent 70%);
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0; transform: translateX(-50%); }
  50% { opacity: 1; transform: translateX(50%); }
}

.featured-body {
  padding: 2rem;
  flex: 1;
  display: flex; flex-direction: column; justify-content: space-between;
}

.bento-card.featured .card-badge {
  background: var(--accent);
  color: #fff;
}

.card-badge {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  background: var(--bg);
  color: var(--fg-soft);
  margin-bottom: 1rem;
  width: fit-content;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}

.bento-card:hover .card-title { color: var(--accent); }

.bento-card.featured .card-title { font-size: 2rem; }

.card-desc {
  font-size: 0.78rem;
  color: var(--fg-soft);
  line-height: 1.6;
}

/* details dropdown */
.card-details {
  margin-top: 1rem;
}

.card-details summary {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  padding: 0.6rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.15s;
}

.card-details summary:hover { opacity: 0.7; }

.card-details summary::before {
  content: '▸';
  font-size: 0.85rem;
  transition: transform 0.25s;
}

.card-details[open] summary::before {
  transform: rotate(90deg);
}

.card-details summary::-webkit-details-marker { display: none; }

.card-details-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  padding: 1.2rem 0 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.detail-block h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.detail-block p {
  font-size: 0.78rem;
  color: var(--fg-soft);
  line-height: 1.55;
  margin-bottom: 0.3rem;
}

.detail-block ul {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0;
}

.detail-block ul li {
  font-size: 0.78rem;
  color: var(--fg-soft);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}

.detail-block ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .card-details-content { grid-template-columns: 1fr; }
}

.card-stack {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-top: 1.2rem;
}

.card-stack span {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.25rem 0.55rem;
  background: var(--bg);
  border-radius: 5px;
  color: var(--fg-soft);
  transition: background 0.2s, color 0.2s;
}

.bento-card:hover .card-stack span {
  background: var(--accent-soft);
  color: var(--accent);
}

.bento-card.featured .card-stack span {
  background: var(--accent-soft);
  color: var(--accent);
}

.card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 0.8rem;
}


.card-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--fg-soft);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.bento-card:hover .card-arrow {
  background: var(--accent);
  color: #fff;
  transform: translate(3px, -3px);
}

/* status indicator */
.card-status {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-status .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: pulse-dot 2s ease-in-out infinite;
}

.card-status .dot.ended { background: var(--fg-muted); animation: none; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}


/* ─ APPROACH SECTION ─ */
.approach-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  color: #fff;
}

.approach-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(1.2);
}

.approach-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(17,17,20,0.5) 0%, rgba(17,17,20,0.15) 40%, rgba(17,17,20,0.7) 100%),
    linear-gradient(90deg, rgba(17,17,20,0.5) 0%, transparent 60%);
}

.approach-section .container {
  position: relative; z-index: 2;
}

/* ─ WHY LEX ─ */
.why-section {
  text-align: center;
  margin-bottom: 3.5rem;
}

.why-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 0.8rem;
}

.why-title span { color: var(--accent); }

.why-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

/* stats row */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.why-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.why-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.why-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.why-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  line-height: 1.4;
}

/* statement lines */
.why-statements {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.why-statement {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.why-line {
  width: 3px;
  height: 100%;
  min-height: 24px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.why-statement p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  font-weight: 400;
}

/* ─ TESTIMONIALS ─ */
.testimonials-section { padding: 4rem 0 6rem; }

.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.t-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex; flex-direction: column; justify-content: space-between;
}

.t-card.accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  grid-row: 1 / 3;
}

.t-card blockquote {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.t-card.accent blockquote {
  font-size: 1.15rem;
  font-weight: 500;
}

.t-author { font-weight: 600; font-size: 0.85rem; }

.t-role {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.15rem;
}

.t-card.accent .t-role { color: rgba(255,255,255,0.7); }

.t-stars {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #f5a623;
}

.t-card.accent .t-stars { color: #fff; }

/* ─ CONTACT ─ */
.contact-section {
  padding: 6rem 0 3rem;
}

.contact-box {
  background: var(--bg-dark);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.contact-box::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232,85,58,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(100,80,200,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.contact-box > * { position: relative; z-index: 1; }

.contact-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}

.contact-tag::before, .contact-tag::after {
  content: '';
  width: 24px; height: 2px; background: var(--accent); opacity: 0.5;
}

.contact-box h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.8rem;
  color: #fff;
}

.contact-box > p {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.contact-btns {
  display: flex; justify-content: center; gap: 0.8rem;
  flex-wrap: wrap;
}

.contact-btn {
  font-family: var(--font);
  font-size: 0.85rem; font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; gap: 0.5rem;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.contact-btn:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.contact-btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.contact-btn.primary:hover {
  box-shadow: 0 6px 28px rgba(232,85,58,0.4);
  border-color: var(--accent);
}

.contact-icon { width: 18px; height: 18px; flex-shrink: 0; }

.contact-footer-note {
  margin-top: 2rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  font-family: var(--mono);
}

/* ─ FOOTER ─ */
footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.72rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

/* ─ SCROLL REVEALS ─ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal:nth-child(5) { transition-delay: 0.28s; }

/* ─ PARALLAX TILT ON BENTO CARDS ─ */
.bento-card.tilt-active {
  will-change: transform;
  transition: transform 0.1s ease-out, box-shadow 0.3s ease;
}

/* ─ BURGER MENU ─ */
.burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 24px;
  position: relative; z-index: 101;
}

.burger span {
  display: block; position: absolute; left: 0;
  width: 100%; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

nav.scrolled .burger span { background: var(--fg); }

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }

.burger.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: rgba(17,17,20,0.95);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  list-style: none;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: #fff; font-size: 1.3rem; font-weight: 600;
  transition: color 0.15s;
}

.mobile-menu a:hover { color: var(--accent); }

/* ─ RESPONSIVE ─ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: block; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  .bento-top { flex-direction: column; }
  .bento-col-left, .bento-col-right { flex: auto; width: 100%; }
  .nova-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-statement { gap: 1rem; }
  .testimonial-cards { grid-template-columns: 1fr; }
  .t-card.accent { grid-row: auto; }
  .contact-box { padding: 2.5rem 1.5rem; }
  .hero h1 { font-size: clamp(2rem, 7vw, 3.5rem); }
  .container { padding: 0 1.2rem; }
}
