/* ============================================
   BigRock — styles.css
   Palette: Warm charcoal · Blazing orange · Cream
   Type: Playfair Display + Inter
   ============================================ */

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

:root {
  /* Brand */
  --orange:     #FF6900;
  --orange-dim: #CC5200;
  --orange-glow:rgba(255,105,0,0.18);
  --green:      #16A34A;
  --amber:      #D97706;

  /* Surfaces */
  --bg:         #080705;
  --bg-2:       #0E0C0A;
  --bg-3:       #141210;
  --bg-card:    #111009;

  /* Text */
  --cream:      #F0EBE3;
  --cream-dim:  #B0A898;
  --cream-dark: #6B6358;
  --white:      #FAFAF8;

  /* Borders */
  --border:       rgba(240,235,227,0.07);
  --border-warm:  rgba(255,105,0,0.22);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Layout */
  --max-w: 1180px;
  --nav-h: 70px;
  --radius: 14px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2520; border-radius: 99px; }

/* container */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* sr-only */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border-width:0; }

/* ============================================
   NOISE OVERLAY
   ============================================ */
.noise {
  position: fixed; inset: 0; z-index: 1000;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}


/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 200ms var(--spring), box-shadow 200ms var(--ease), background 150ms;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #FF7A1A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,105,0,0.35);
}
.btn-primary:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.btn-primary:active { transform: translateY(0); }

.btn-primary.green { background: var(--green); }
.btn-primary.green:hover { background: #15803D; box-shadow: 0 8px 28px rgba(22,163,74,0.3); }

.btn-primary.amber { background: var(--amber); }
.btn-primary.amber:hover { background: #B45309; box-shadow: 0 8px 28px rgba(217,119,6,0.3); }

.btn-xl { padding: 16px 36px; font-size: 1rem; border-radius: 12px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--cream-dim);
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 500;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 200ms var(--ease);
}
.btn-outline:hover { border-color: rgba(240,235,227,0.2); color: var(--cream); }
.btn-outline:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.btn-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.84rem; font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 200ms var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-cta:hover { background: #FF7A1A; box-shadow: 0 4px 16px rgba(255,105,0,0.35); }
.btn-cta.mobile { width: 100%; justify-content: center; margin-top: 8px; }

/* ============================================
   SECTION LABELS
   ============================================ */
.section-label {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.section-num {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-name {
  font-size: 0.72rem; font-weight: 500;
  color: var(--cream-dark);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-name::before { content: '—'; margin-right: 8px; color: var(--border); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 64px;
}
.section-title em {
  font-style: italic;
  color: var(--orange);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: var(--di, 0ms);
}
.reveal-up.in-view { opacity: 1; transform: translateY(0); }

.reveal-char {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 900ms var(--ease-out);
  transition-delay: var(--di, 0ms);
}
.reveal-char.in-view { clip-path: inset(0 0% 0 0); }

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-char { opacity:1; transform:none; clip-path:none; transition:none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  top: 12px; left: 12px; right: 12px;
  z-index: 500;
  background: rgba(8,7,5,0.7);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: background 300ms, border-color 300ms, box-shadow 300ms;
}
#navbar.scrolled {
  background: rgba(8,7,5,0.9);
  border-color: rgba(240,235,227,0.1);
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 14px 20px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 200ms;
}
.nav-logo:hover { opacity: 0.75; }
.nav-logo img { height: 26px; width: auto; filter: brightness(0) invert(1); }
.nav-logo-fallback {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--cream);
}

.nav-links {
  display: flex; list-style: none; gap: 4px;
  margin-left: auto;
}
.nav-links a {
  display: block;
  padding: 7px 13px;
  font-size: 0.87rem; color: var(--cream-dim);
  border-radius: 7px;
  transition: all 180ms;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--cream);
  background: rgba(240,235,227,0.06);
}
.nav-links a:focus-visible { outline: 2px solid var(--orange); }

.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 250ms var(--ease);
}

.nav-mobile {
  display: none; flex-direction: column;
  padding: 0 20px 16px; gap: 2px;
}
.nav-mobile a {
  padding: 10px 13px; font-size: 0.95rem;
  color: var(--cream-dim); border-radius: 7px;
  transition: all 180ms;
}
.nav-mobile a:hover { color: var(--cream); background: rgba(240,235,227,0.05); }
.nav-mobile.open { display: flex; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; flex-direction: column;
  padding-top: calc(var(--nav-h) + 56px);
}


.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
  filter: blur(90px);
}
.orb-a {
  width: 760px; height: 560px;
  background: radial-gradient(ellipse, rgba(255,105,0,0.28) 0%, transparent 65%);
  top: -100px; left: -180px;
  animation: orbDrift 14s ease-in-out infinite alternate;
}
.orb-b {
  width: 540px; height: 440px;
  background: radial-gradient(ellipse, rgba(255,105,0,0.16) 0%, transparent 65%);
  top: 20%; right: -80px;
  animation: orbDrift 18s ease-in-out infinite alternate-reverse;
}
@keyframes orbDrift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.06); }
}

.hero-body {
  position: relative; z-index: 1;
  padding-bottom: 0;
}

.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 36px 0 48px;
  position: relative; z-index: 1;
}

.hero-kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.75rem; font-weight: 500;
  color: var(--cream-dark);
  letter-spacing: 0.12em; text-transform: uppercase;
  padding-top: 32px;
}
.kicker-line {
  display: block; width: 40px; height: 1px;
  background: var(--orange); opacity: 0.6;
}

/* ---- Hero visual: full-width neural canvas ---- */
.hero-visual {
  position: relative;
  width: 100%;
  height: 420px;
  margin: 24px 0 0;
  z-index: 1;
  overflow: hidden;
}

#neuralCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}

.hero-visual-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 24px;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(8,7,5,0.1) 0%, rgba(8,7,5,0.5) 100%);
  pointer-events: none;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  text-shadow: 0 0 80px rgba(255,105,0,0.4), 0 2px 40px rgba(0,0,0,0.8);
  margin-bottom: 16px;
}
.hero-headline em {
  font-style: italic;
  color: var(--orange);
  text-shadow: 0 0 60px rgba(255,105,0,0.6), 0 2px 40px rgba(0,0,0,0.8);
}

.hero-slogan {
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  font-weight: 500;
  color: var(--cream-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 20px rgba(0,0,0,0.9);
  opacity: 0;
  transform: translateY(10px);
  animation: sloganIn 800ms 600ms var(--ease-out) forwards;
}
@keyframes sloganIn {
  to { opacity: 1; transform: translateY(0); }
}


.hero-sub {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 420px;
  line-height: 1.75;
}

.hero-actions {
  display: flex; gap: 12px; align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}


/* Responsive hero */
@media (max-width: 768px) {
  .hero-visual { height: 320px; }
  .hero-row { flex-direction: column; align-items: flex-start; gap: 24px; }
}
@media (max-width: 480px) {
  .hero-visual { height: 240px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { justify-content: center; }
}

/* MARQUEE */
.hero-marquee {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0;
  margin-top: auto;
}
.marquee-track {
  display: flex; align-items: center; gap: 32px;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-size: 0.78rem; font-weight: 600;
  color: var(--cream-dark);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.marquee-track .dot { color: var(--orange); font-size: 1.2rem; line-height: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================
   APPROACH
   ============================================ */
.approach {
  padding: 130px 0;
  border-top: 1px solid var(--border);
}

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

.approach-card {
  background: var(--bg-2);
  padding: 40px 36px;
  position: relative;
  transition: background 300ms, transform 300ms var(--ease);
  cursor: default;
  overflow: hidden;
}
.approach-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease-out);
}
.approach-card:hover { background: var(--bg-3); }
.approach-card:hover::after { transform: scaleX(1); }

.approach-card.featured { background: var(--bg-3); }
.approach-card.featured::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,105,0,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.card-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 900;
  color: rgba(240,235,227,0.05);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  user-select: none;
}

.approach-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.approach-card p {
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.75;
}

.card-arrow {
  position: absolute; bottom: 28px; right: 28px;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 250ms, transform 250ms var(--spring);
}
.approach-card:hover .card-arrow { opacity: 1; transform: translateX(0); }

/* ============================================
   PRODUCTS
   ============================================ */
.products { padding-bottom: 120px; }

.product-row {
  border-top: 1px solid var(--border);
  padding: 96px 0;
}

.product-row-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-row-alt .product-row-inner {
  /* visual on left, info on right */
}

.product-meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.product-index {
  font-size: 0.7rem; font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.16em;
}
.product-category {
  font-size: 0.7rem; font-weight: 500;
  color: var(--cream-dark);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.product-category::before { content: '—'; margin-right: 8px; }

.product-name {
  margin-bottom: 20px;
}
.product-name .product-logo {
  height: 44px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  max-width: 240px;
}
.product-name .product-logo.product-logo--color {
  filter: none;
  opacity: 1;
}
.product-name .text-name {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.product-desc {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 460px;
}

.product-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 36px;
}
.product-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--cream-dim); font-weight: 500;
}
.feat-dash { color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* Product visual frame */
.pv-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  aspect-ratio: 4/3;
  transition: transform 120ms linear;
  transform-style: preserve-3d;
}
.pv-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms var(--ease);
}
.pv-frame:hover img { transform: scale(1.04); }

/* Fallback when image fails */
.pv-frame.pv-fallback {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  display: flex; align-items: center; justify-content: center;
}

/* Product overlays */
.pv-overlay {
  position: absolute;
  pointer-events: none;
}

.ai-overlay {
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(8,7,5,0.92) 0%, transparent 100%);
}
.ai-wave {
  display: flex; align-items: center; gap: 3px;
  height: 44px; margin-bottom: 10px;
}
.wb {
  flex: 1; height: var(--h);
  background: linear-gradient(to top, var(--orange), rgba(255,105,0,0.3));
  border-radius: 2px;
  animation: wbAnim 1.1s ease-in-out infinite;
  animation-delay: calc(var(--n,0) * 65ms);
}
.wb:nth-child(1){--n:0} .wb:nth-child(2){--n:1} .wb:nth-child(3){--n:2} .wb:nth-child(4){--n:3}
.wb:nth-child(5){--n:4} .wb:nth-child(6){--n:5} .wb:nth-child(7){--n:6} .wb:nth-child(8){--n:7}
.wb:nth-child(9){--n:8} .wb:nth-child(10){--n:9} .wb:nth-child(11){--n:10} .wb:nth-child(12){--n:11}
.wb:nth-child(13){--n:12} .wb:nth-child(14){--n:13} .wb:nth-child(15){--n:14} .wb:nth-child(16){--n:15}
@keyframes wbAnim {
  0%,100% { transform: scaleY(0.45); opacity: 0.6; }
  50%      { transform: scaleY(1.2);  opacity: 1;   }
}

.ai-status {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.75rem; font-weight: 600; color: var(--orange);
  letter-spacing: 0.05em;
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,105,0,0.6); }
  50%      { box-shadow: 0 0 0 5px rgba(255,105,0,0); }
}

.vol-overlay {
  top: 16px; right: 16px;
}
.vol-badge { display: none; }
.vol-pulse { display: none; }
@keyframes livePulse2 {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  50%      { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

.tourist-overlay {
  bottom: 16px; left: 16px;
}
.tourist-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(8,7,5,0.8);
  border: 1px solid rgba(217,119,6,0.3);
  border-radius: 99px;
  font-size: 0.75rem; font-weight: 600; color: #FCD34D;
  backdrop-filter: blur(8px);
}

/* ============================================
   STATS BAND
   ============================================ */
.stats-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
  background: var(--bg-2);
}
.stats-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: 6px; }
.stat-n {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.count-num { display: inline; }
.stat-small { font-size: 1.6rem; opacity: 0.7; }
.stat-l {
  font-size: 0.8rem; font-weight: 500;
  color: var(--cream-dark);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.stat-div { width: 1px; height: 48px; background: var(--border); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative; overflow: hidden;
  padding: 140px 0;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,105,0,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.cta-body { position: relative; z-index: 1; }
.cta-num { display: block; margin-bottom: 20px; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: var(--orange); }
.cta-sub {
  font-size: 1.05rem; color: var(--cream-dim);
  max-width: 420px; margin: 0 auto 44px;
  line-height: 1.75;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
  background: var(--bg-2);
}
.footer-inner {
  display: flex; justify-content: space-between;
  gap: 60px; flex-wrap: wrap;
  padding-bottom: 64px;
}
.footer-left p.footer-tagline {
  font-size: 0.88rem; color: var(--cream-dark);
  line-height: 1.65; margin-top: 16px;
}
.footer-links {
  display: flex; gap: 56px; flex-wrap: wrap;
}
.fl-col { display: flex; flex-direction: column; gap: 10px; }
.fl-col h4 {
  font-size: 0.72rem; font-weight: 700;
  color: var(--cream-dark);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.fl-col a {
  font-size: 0.9rem; color: var(--cream-dim);
  transition: color 180ms;
}
.fl-col a:hover { color: var(--cream); }
.fl-col a:focus-visible { outline: 2px solid var(--orange); border-radius: 2px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.footer-bottom span { font-size: 0.8rem; color: var(--cream-dark); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .approach-grid { grid-template-columns: 1fr; }
  .product-row-inner { grid-template-columns: 1fr; gap: 48px; }
  .product-row-alt .product-visual { order: 1; }
  .product-row-alt .product-info { order: 0; }
  .stats-inner { justify-content: center; }
  .stat-div { display: none; }
}

@media (max-width: 768px) {
  .nav-links, #navbar .btn-cta:not(.nav-mobile .btn-cta) { display: none; }
  .nav-toggle { display: flex; }
  .hero-headline { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .product-row { padding: 64px 0; }
  .footer-inner { gap: 40px; }
  .footer-links { gap: 32px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { justify-content: center; }
  .approach-card { padding: 28px 24px; }
  .stats-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-title { font-size: 2.2rem; }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 780px;
  z-index: 9000;
  opacity: 0;
  transition: opacity 350ms var(--ease), transform 350ms var(--ease);
  transform: translateX(-50%) translateY(16px);
}
.cookie-banner.cookie-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner.cookie-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
}

.cookie-inner {
  background: #161310;
  border: 1px solid rgba(255,105,0,0.2);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,105,0,0.06);
  display: flex;
  gap: 28px;
  align-items: flex-end;
}

.cookie-text { flex: 1; }

.cookie-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.cookie-body {
  font-size: 0.78rem;
  color: var(--cream-dim);
  line-height: 1.65;
  margin-bottom: 7px;
}
.cookie-body:last-child { margin-bottom: 0; }
.cookie-body strong { color: var(--cream); font-weight: 600; }
.cookie-body a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.cookie-body a:hover { color: #FF8C3A; }

.cookie-legal {
  padding-top: 8px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--cream-dark);
  margin-top: 8px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  display: block;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: all 180ms var(--ease);
  text-align: center;
}

.cookie-accept {
  background: var(--orange);
  color: #fff;
}
.cookie-accept:hover {
  background: #FF7A1A;
  box-shadow: 0 4px 16px rgba(255,105,0,0.4);
}

.cookie-decline {
  background: transparent;
  color: var(--cream-dim);
  border: 1px solid var(--border);
}
.cookie-decline:hover {
  border-color: rgba(240,235,227,0.2);
  color: var(--cream);
}

@media (max-width: 640px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .cookie-actions {
    flex-direction: row;
  }
  .cookie-btn { flex: 1; }
}

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

.cookie-settings-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--cream-dark);
  cursor: pointer;
  transition: color 180ms;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
}
.cookie-settings-btn:hover {
  color: var(--cream-dim);
  text-decoration-color: var(--cream-dim);
}
.cookie-settings-btn:focus-visible {
  outline: 2px solid var(--orange);
  border-radius: 3px;
}
