/* =========================================================
   C3 Producciones & Eventos — Premium Mobile-First
   ========================================================= */

@font-face {
  font-family: 'C3Custom';
  src: url('Fuente.ttf') format('truetype');
  font-display: swap;
}

:root {
  --bg: #060606;
  --bg-2: #0d0d0f;
  --bg-3: #14141a;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);

  --orange: #ff6b00;
  --orange-2: #ff8c1a;
  --orange-3: #ffa744;
  --gold: #f4c170;
  --orange-glow: rgba(255, 107, 0, 0.35);

  --text: #ffffff;
  --text-2: #b8b8c2;
  --text-3: #7a7a85;

  --grad-fire: linear-gradient(135deg, #ff4500 0%, #ff8c00 50%, #ffb347 100%);
  --grad-orange: linear-gradient(135deg, #ff6b00, #ffa500);
  --grad-dark: linear-gradient(180deg, #0a0a0a 0%, #14141a 100%);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 8px 40px rgba(255, 107, 0, 0.25);

  --font-display: 'C3Custom', 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-sans: 'Inter', 'Space Grotesk', system-ui, -apple-system, sans-serif;

  --pad-x: clamp(18px, 5vw, 32px);
}

/* ===== Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
svg { display: block; }

::selection { background: var(--orange); color: #000; }

/* ===== Utility ===== */
.grad {
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.glow {
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 140, 0, 0.4),
               0 0 40px rgba(255, 107, 0, 0.2);
}

/* ===== Ambient Background ===== */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: orb 18s ease-in-out infinite;
  will-change: transform;
}
.ambient__orb--1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #ff6b00 0%, transparent 70%);
  top: -100px; left: -100px;
  opacity: 0.45;
}
.ambient__orb--2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #ff4500 0%, transparent 70%);
  top: 50%; right: -100px;
  opacity: 0.35;
  animation-delay: -6s;
}
.ambient__orb--3 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, #ffa500 0%, transparent 70%);
  bottom: -200px; left: 30%;
  opacity: 0.25;
  animation-delay: -12s;
}
.ambient__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  opacity: 0.4;
}
@keyframes orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 10px 16px;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(6, 6, 6, 0.88);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.6));
  flex-shrink: 0;
}
.nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  white-space: nowrap;
  gap: 2px;
}
.nav__wordmark b {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}
.nav__wordmark i {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-transform: uppercase;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.4));
}
.nav__menu {
  display: none;
  gap: 6px;
  margin-left: 8px;
}
.nav__menu a {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  transition: all 0.2s ease;
}
.nav__menu a:hover { color: #fff; background: rgba(255,255,255,0.05); }

.nav__cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 100px;
  background: var(--grad-orange);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255, 107, 0, 0.5); }
.nav__cta svg { width: 14px; height: 14px; }
.nav__cta span { font-size: 12px; }

.nav__burger {
  display: flex;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 16px; height: 1.5px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.nav__burger.active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile menu drawer */
.nav__menu.open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 10px;
  gap: 2px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.7);
  animation: menuIn 0.25s ease both;
}
.nav__menu.open a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  text-align: left;
  border: 1px solid transparent;
}
.nav__menu.open a:hover {
  background: var(--surface);
  border-color: var(--border);
}
@keyframes menuIn {
  0% { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 90px var(--pad-x) 50px;
  overflow: hidden;
  z-index: 1;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__spotlight {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.3) 0%, transparent 60%);
  filter: blur(60px);
}
.hero__wave {
  position: absolute;
  bottom: 50px;
  left: -10%;
  width: 120%;
  height: 200px;
  opacity: 0.5;
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero__badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.hero__logo {
  margin: 0 auto 24px;
  width: 180px;
  max-width: 55vw;
  position: relative;
}
.hero__logo::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
  filter: blur(30px);
  z-index: -1;
}
.hero__logo img {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.6))
    drop-shadow(0 0 14px rgba(255, 140, 0, 0.45))
    drop-shadow(0 4px 30px rgba(255, 107, 0, 0.35));
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-transform: none;
}
.hero__title span { display: block; }
.hero__title .grad { font-weight: 800; }

.hero__sub {
  font-size: 15px;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.hero__ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8px 4px;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--border);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 800;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.stat__num svg {
  color: var(--orange-3);
  -webkit-text-fill-color: var(--orange-3);
}
.stat__plus {
  font-family: var(--font-display);
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 800;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat__lbl {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-3);
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1.5px solid var(--border-2);
  border-radius: 100px;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.hero__scroll span {
  width: 3px;
  height: 8px;
  background: var(--orange-3);
  border-radius: 100px;
  animation: scroll 2s ease-in-out infinite;
}
@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--grad-orange);
  color: #000;
  box-shadow: 0 6px 24px rgba(255, 107, 0, 0.4);
  font-weight: 700;
}
.btn--primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}
.btn--primary:hover::before { left: 100%; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 107, 0, 0.55); }
.btn--ghost {
  background: var(--surface);
  color: #fff;
  border: 1px solid var(--border-2);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: var(--surface-2); border-color: var(--orange-3); transform: translateY(-1px); }
.btn--big { padding: 16px 28px; font-size: 15px; }

/* ===== Quote Wizard ===== */
.quote {
  position: relative;
  padding: 60px var(--pad-x) 56px;
  z-index: 2;
}
.quote::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.4), transparent);
}
.quote__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 28px;
}
.quote__head .section__title { margin-bottom: 10px; }

.wizard {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 107, 0, 0.04));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 18px 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 107, 0, 0.08);
  overflow: hidden;
}
.wizard::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.25), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.wizard::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* Progress */
.wizard__progress {
  position: relative;
  margin-bottom: 22px;
  z-index: 1;
}
.wizard__bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 14px;
}
.wizard__bar span {
  display: block;
  height: 100%;
  width: 25%;
  background: var(--grad-orange);
  border-radius: 100px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(255, 140, 0, 0.5);
}
.wizard__steps {
  display: flex;
  justify-content: space-between;
  list-style: none;
  gap: 6px;
}
.wizard__steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  font-size: 10px;
  color: var(--text-3);
  cursor: pointer;
  transition: color 0.3s;
  text-align: center;
}
.wizard__steps li span {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  transition: all 0.3s;
}
.wizard__steps li b {
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.wizard__steps li.active span {
  background: var(--grad-orange);
  border-color: transparent;
  color: #000;
  box-shadow: 0 0 16px rgba(255, 107, 0, 0.5);
  transform: scale(1.1);
}
.wizard__steps li.active { color: var(--orange-3); }
.wizard__steps li.done span {
  background: rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.5);
  color: var(--orange-3);
}
.wizard__steps li.done b { color: var(--text-2); }

/* Steps body */
.wizard__body {
  position: relative;
  min-height: 280px;
  z-index: 1;
}
.wstep {
  border: 0;
  padding: 0;
  margin: 0;
  display: none;
  animation: stepIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.wstep.active { display: block; }
@keyframes stepIn {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}
.wstep__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: #fff;
  line-height: 1.25;
}
.wstep__hint {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.wstep__counter {
  display: inline-grid;
  place-items: center;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  border-radius: 100px;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: var(--orange-3);
  font-size: 10px;
  font-weight: 700;
  margin-left: auto;
}
.wstep__counter:empty::before, .wstep__counter[data-count="0"]::before { content: '0'; }

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chips--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.chip {
  position: relative;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.chip::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 0 var(--orange);
  transition: box-shadow 0.2s;
  pointer-events: none;
}
.chip:hover {
  border-color: var(--border-2);
  color: #fff;
  transform: translateY(-1px);
}
.chip.selected {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.22), rgba(255, 140, 0, 0.12));
  border-color: rgba(255, 107, 0, 0.55);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.25);
}
.chip.selected::after {
  box-shadow: inset 0 0 0 1px rgba(255, 200, 100, 0.3);
}
.chip--sm {
  font-size: 12px;
  padding: 8px 12px;
}
.chips--cards .chip {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 14px 8px;
  border-radius: var(--radius);
  white-space: normal;
  min-height: 96px;
  gap: 8px;
  font-size: 11.5px;
  line-height: 1.2;
}
.chip__ic {
  font-size: 24px;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 0, 0.3));
}
.chip__lbl {
  display: block;
  font-weight: 600;
}

/* Service categories */
.svc {
  margin-bottom: 14px;
}
.svc:last-child { margin-bottom: 0; }
.svc__cat {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.svc__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad-orange);
  box-shadow: 0 0 8px var(--orange);
}
.svc__cat h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* Form fields */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.field {
  display: block;
  margin-bottom: 12px;
}
.field__lbl {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea {
  resize: vertical;
  min-height: 72px;
  border-radius: var(--radius-sm);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-3);
  opacity: 0.7;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 107, 0, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12);
}
.field input:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 80, 80, 0.5);
}
.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(1) hue-rotate(0deg) saturate(2);
  cursor: pointer;
}

/* Wizard summary card */
.wizard__summary {
  margin-top: 14px;
  padding: 14px;
  background: rgba(255, 107, 0, 0.06);
  border: 1px dashed rgba(255, 107, 0, 0.3);
  border-radius: var(--radius);
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.55;
  display: none;
}
.wizard__summary.show { display: block; animation: fadeUp 0.3s ease both; }
.wizard__summary strong {
  display: block;
  font-family: var(--font-display);
  color: var(--orange-3);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.wizard__summary ul {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}
.wizard__summary li {
  padding: 4px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
}
.wizard__summary li:last-child { border: 0; }
.wizard__summary li b { color: #fff; font-weight: 600; text-align: right; }

/* Wizard navigation */
.wizard__nav {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}
.wizard__nav .btn { flex: 1; }
.wizard__nav .btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.btn--wa {
  background: linear-gradient(135deg, #25d366 0%, #20b658 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4) !important;
}
.btn--wa:hover {
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6) !important;
}

.wizard__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 10.5px;
  color: var(--text-3);
  text-align: center;
  position: relative;
  z-index: 1;
}
.wizard__trust svg { color: var(--orange-3); flex-shrink: 0; }

/* Field error state */
.field.error input,
.field.error textarea {
  border-color: rgba(255, 80, 80, 0.7);
  background: rgba(255, 80, 80, 0.06);
}
.field__err {
  display: none;
  font-size: 11px;
  color: #ff7070;
  margin-top: 4px;
}
.field.error .field__err { display: block; }

/* ===== Brands Marquee ===== */
.brands {
  position: relative;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.5);
  overflow: hidden;
  z-index: 1;
}
.brands__label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 0 var(--pad-x);
}
.brands__track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.brands__row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}
.brands__row > span {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}
.brands__row > span:hover { opacity: 1; color: var(--orange-3); }
.brands__row > span:nth-child(even) { color: var(--orange-3); opacity: 0.4; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Section ===== */
.section {
  position: relative;
  padding: 56px var(--pad-x) 56px;
  z-index: 1;
}
.section--alt {
  background: linear-gradient(180deg, transparent 0%, rgba(20, 20, 26, 0.6) 50%, transparent 100%);
}
.section__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 28px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--orange-3);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kicker i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}
.kicker--white { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: #fff; }
.kicker--white i { background: #fff; box-shadow: 0 0 8px #fff; }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 7vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section__sub {
  color: var(--text-2);
  font-size: 14px;
  max-width: 480px;
  margin: 0 auto;
}

/* ===== Tabs ===== */
.tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px;
  margin: 0 calc(-1 * var(--pad-x)) 24px;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  flex-shrink: 0;
  transition: all 0.25s ease;
  scroll-snap-align: start;
  min-width: 88px;
  backdrop-filter: blur(10px);
}
.tab svg { width: 22px; height: 22px; color: var(--text-2); transition: color 0.25s; }
.tab.active {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.18), rgba(255, 165, 0, 0.05));
  border-color: rgba(255, 107, 0, 0.5);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.2);
}
.tab.active svg { color: var(--orange-3); }
.tab:not(.active):hover { background: var(--surface-2); border-color: var(--border-2); color: #fff; }

/* ===== Panels & Cards ===== */
.panel { display: none; animation: fadeUp 0.45s ease both; }
.panel.active { display: block; }
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.card {
  position: relative;
  padding: 16px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.3s ease;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-3px); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,107,0,0.05));
  border: 1px solid rgba(255,107,0,0.2);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: var(--orange-3);
}
.card__icon svg { width: 18px; height: 18px; }
.card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.card p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
}

/* ===== Swipe (eventos) ===== */
.swipe {
  margin: 0 calc(-1 * var(--pad-x));
  overflow: hidden;
  position: relative;
}
.swipe__track {
  display: flex;
  gap: 10px;
  padding: 4px var(--pad-x) 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
}
.swipe__track::-webkit-scrollbar { display: none; }
.event {
  flex: 0 0 200px;
  padding: 22px 18px;
  background: linear-gradient(180deg, rgba(255,107,0,0.05), rgba(20,20,26,0.6));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.event:hover {
  border-color: rgba(255,107,0,0.4);
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(255,107,0,0.1), rgba(20,20,26,0.8));
}
.event__icon {
  font-size: 32px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(255,107,0,0.3));
}
.event h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.event p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
}

.swipe__dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 4px;
}
.swipe__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-2);
  transition: all 0.3s ease;
}
.swipe__dots span.active {
  background: var(--orange);
  width: 24px;
  border-radius: 100px;
}

/* ===== Principios ===== */
.principles__grid {
  display: grid;
  gap: 10px;
}
.principle {
  position: relative;
  padding: 18px 16px 18px 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,107,0,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.principle:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-3px);
}
.principle__num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 0.9;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.95;
  margin: 0;
  grid-row: span 2;
  align-self: center;
}
.principle h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.principle p {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.45;
}
.principle__line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.principle:hover .principle__line { opacity: 1; }

.principles__quote {
  margin-top: 20px;
  text-align: center;
  padding: 20px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.principles__quote p {
  font-family: var(--font-display);
  font-size: clamp(14px, 3.8vw, 17px);
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
}

/* ===== Artists ===== */
.artists {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px var(--pad-x) 12px;
  margin: 0 calc(-1 * var(--pad-x));
}
.artists::-webkit-scrollbar { display: none; }
.artist {
  flex: 0 0 160px;
  padding: 16px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  scroll-snap-align: start;
}
.artist::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255,107,0,0.15), transparent 70%);
  top: -20px; right: -20px;
  filter: blur(20px);
}
.artist h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  position: relative;
}
.artist p {
  font-size: 11px;
  color: var(--text-3);
  position: relative;
}
.artist:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-2px); }

.artist--main {
  flex: 0 0 220px;
  padding: 20px 18px;
  background: linear-gradient(135deg, rgba(255,107,0,0.18), rgba(255,107,0,0.04));
  border-color: rgba(255,107,0,0.35);
}
.artist--main h3 {
  font-size: 20px;
}
.artist--main p {
  font-size: 13px;
  color: var(--text-2);
}
.artist__tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--grad-orange);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  position: relative;
}
.artists__note {
  text-align: center;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 16px;
  font-style: italic;
}

/* ===== Process Steps ===== */
.steps {
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: step;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}
.step:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateX(4px);
}
.step__num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  line-height: 1;
  min-width: 36px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
}

/* ===== Final CTA ===== */
.cta {
  position: relative;
  padding: 80px var(--pad-x);
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 107, 0, 0.4), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 69, 0, 0.3), transparent 50%),
    linear-gradient(135deg, #1a0a00, #0a0a0a);
  z-index: -1;
}
.cta__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.cta__inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 7vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.cta p {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 28px;
}
.cta__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  padding: 50px var(--pad-x) 30px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
  border-top: 1px solid var(--border);
  z-index: 1;
}
.footer__top {
  text-align: center;
  margin-bottom: 36px;
}
.footer__logo {
  height: 50px;
  width: auto;
  margin: 0 auto 16px;
  opacity: 0.92;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.5))
    drop-shadow(0 4px 16px rgba(255,107,0,0.25));
}
.footer__tag {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-2);
  font-style: italic;
}
.footer__grid {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.finfo {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
a.finfo:hover { border-color: rgba(255,107,0,0.3); transform: translateX(2px); }
.finfo__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,107,0,0.05));
  border: 1px solid rgba(255,107,0,0.2);
  display: grid;
  place-items: center;
  color: var(--orange-3);
  flex-shrink: 0;
}
.finfo__icon svg { width: 16px; height: 16px; }
.finfo__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.finfo__val {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  word-break: break-word;
}
.finfo > div { min-width: 0; flex: 1; }

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  transition: all 0.3s ease;
}
.footer__social a:hover {
  color: var(--orange-3);
  border-color: rgba(255,107,0,0.4);
  transform: translateY(-2px);
}
.footer__social svg { width: 16px; height: 16px; }

.footer__legal {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ===== Floating WhatsApp ===== */
.float-wa {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 40;
  transition: transform 0.3s ease;
  animation: floatpulse 2s ease-in-out infinite;
}
.float-wa svg { width: 26px; height: 26px; }
.float-wa:hover { transform: scale(1.1); }
@keyframes floatpulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* >= 480px Small tablets */
@media (min-width: 480px) {
  .cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero__stats { padding: 18px; gap: 12px; }
}

/* >= 720px */
@media (min-width: 720px) {
  body { font-size: 16px; }
  :root { --pad-x: 40px; }

  .section { padding: 100px var(--pad-x); }

  .nav { padding: 12px 14px 12px 20px; }
  .nav__menu { display: flex; }
  .nav__burger { display: none; }
  .nav__cta span { display: inline; }
  .hero__scroll { display: flex; }

  .cards { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .card { padding: 20px; }
  .card__icon { width: 44px; height: 44px; }
  .card__icon svg { width: 22px; height: 22px; }
  .card h3 { font-size: 16px; }
  .card p { font-size: 13px; }

  .principles__grid { grid-template-columns: repeat(3, 1fr); }
  .principle { grid-template-columns: 1fr; gap: 6px; padding: 26px 22px; }
  .principle__num { font-size: 56px; grid-row: auto; align-self: start; margin-bottom: 4px; }
  .principle h3 { font-size: 20px; }
  .principle p { font-size: 13px; }
  .artists {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    overflow: visible;
    padding: 0;
    margin: 0;
  }
  .artist { flex: initial; padding: 20px; scroll-snap-align: none; }
  .artist--main { flex: initial; grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }
  .artist h3 { font-size: 15px; }
  .artist p { font-size: 12px; }

  .steps { grid-template-columns: repeat(5, 1fr); }
  .step { flex-direction: column; padding: 22px 18px; }
  .step__num { font-size: 32px; }

  .event { flex: 0 0 240px; padding: 26px 22px; }
  .event__icon { font-size: 40px; }
  .event h3 { font-size: 17px; }
  .event p { font-size: 13px; }

  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .float-wa { bottom: 24px; right: 24px; width: 60px; height: 60px; }

  .hero__title { font-size: clamp(36px, 6vw, 56px); }
  .hero__sub { font-size: 17px; }
  .hero__logo { width: 280px; }
}

/* >= 1024px */
@media (min-width: 1024px) {
  :root { --pad-x: 60px; }

  .section { padding: 120px var(--pad-x); }
  .section__head { margin-bottom: 56px; }

  .nav { top: 16px; left: 24px; right: 24px; padding: 14px 16px 14px 24px; }
  .nav__logo { height: 36px; gap: 10px; }
  .nav__wordmark b { font-size: 14px; letter-spacing: 0.1em; }
  .nav__wordmark i { font-size: 13px; letter-spacing: 0.12em; }

  .hero { padding: 140px var(--pad-x) 80px; }
  .hero__inner { max-width: 760px; }
  .hero__title { font-size: clamp(42px, 5.5vw, 68px); margin-bottom: 24px; }
  .hero__sub { font-size: 18px; margin-bottom: 40px; }
  .hero__logo { width: 320px; }
  .hero__stats { padding: 22px; }
  .stat__num { font-size: 36px; }
  .stat__lbl { font-size: 11px; }

  .cards { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: repeat(4, 1fr); }

  .principles__grid { gap: 20px; }
  .principle { padding: 32px 28px; }
  .principle__num { font-size: 72px; }

  .artists { grid-template-columns: repeat(5, 1fr); }
}

/* >= 1280px */
@media (min-width: 1280px) {
  .section, .hero { padding-left: 80px; padding-right: 80px; }
  .cta { padding-left: 80px; padding-right: 80px; }
  .footer { padding: 70px 80px 40px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ambient__orb { animation: none; }
  .brands__track { animation: none; }
}
