:root {
  --neon-cyan: #00f5ff;
  --neon-magenta: #ff2d78;
  --neon-cyan-rgb: 0, 245, 255;
  --neon-magenta-rgb: 255, 45, 120;
  --neon-green: #39ff14;
  --electric-yellow: #ffe600;
  --lime: #b8ff00;
  --sky: #00d4ff;
  --dark: #0a0a12;
  --dark-card: #12111d;
  --cream: #fff8f0;
  --purple: #7c3aed;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  font-family: "Space Mono", monospace;
  overflow-x: hidden;
  cursor: none;
}

/* ========== CURSOR ========== */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--neon-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
  display: none;
}
.cursor.visible { display: block; }
.cursor.big { width: 60px; height: 60px; }

/* ========== TICKER ========== */
.ticker {
  background: var(--dark);
  overflow: hidden;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(var(--neon-cyan-rgb), 0.08);
}
.ticker-inner {
  display: inline-flex;
  align-items: center;
  animation: ticker 22s linear infinite;
}
.ticker-word {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  padding: 12px 0;
  white-space: nowrap;
}
.ticker-word.cyan { color: var(--neon-cyan); padding-right: 28px; }
.ticker-word.magenta { color: var(--neon-magenta); padding-right: 28px; }
.ticker-word.cream { color: rgba(255, 248, 240, 0.25); padding-right: 28px; }
.ticker-sep {
  color: var(--neon-cyan);
  font-size: 1.2rem;
  padding: 0 20px 0 0;
  opacity: 0.5;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== NAV ========== */
nav {
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.nav-logo {
  font-family: "Permanent Marker", cursive;
  font-size: 1.5rem;
  color: var(--neon-cyan);
  text-decoration: none;
  text-shadow: 0 0 20px rgba(var(--neon-cyan-rgb), 0.5);
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--neon-cyan); }
.nav-links .cart-link {
  background: var(--neon-magenta);
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 1.1rem;
}
.nav-links .cart-link:hover {
  background: var(--neon-cyan);
  color: var(--dark);
}

/* ========== HERO ========== */
.hero {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 20px 40px 50px;
  position: relative;
  overflow: hidden;
  gap: 20px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--neon-cyan-rgb), 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--neon-cyan-rgb), 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--neon-cyan-rgb), 0.2) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  animation: blobPulse 5s ease-in-out infinite;
}
.hero-blob2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--neon-magenta-rgb), 0.15) 0%, transparent 70%);
  bottom: -50px;
  left: 100px;
  pointer-events: none;
  animation: blobPulse 7s ease-in-out infinite reverse;
}
@keyframes blobPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero-text { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(var(--neon-cyan-rgb), 0.1);
  border: 1px solid var(--neon-cyan);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.hero-eyebrow span {
  font-size: 0.72rem;
  color: var(--neon-cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--neon-cyan);
  border-radius: 50%;
  animation: blink 1s step-end infinite;
  box-shadow: 0 0 8px var(--neon-cyan);
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.5rem, 9vw, 9rem);
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.hero-h1 .cyan {
  color: var(--neon-cyan);
  text-shadow: 0 0 40px rgba(var(--neon-cyan-rgb), 0.5);
}
.hero-h1 .magenta {
  color: var(--neon-magenta);
  text-shadow: 0 0 40px rgba(var(--neon-magenta-rgb), 0.5);
}

.hero-sub {
  font-size: 0.82rem;
  color: rgba(255, 248, 240, 0.5);
  line-height: 1.7;
  max-width: 380px;
  margin: 16px 0 22px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.hero-pill {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 248, 240, 0.15);
  color: rgba(255, 248, 240, 0.45);
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: none;
  user-select: none;
}
.hero-pill:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}
.hero-pill.active {
  background: rgba(var(--neon-cyan-rgb), 0.1);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-hero-primary {
  background: var(--neon-magenta);
  color: white;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  padding: 14px 32px;
  border: none;
  border-radius: 100px;
  cursor: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 40px rgba(var(--neon-magenta-rgb), 0.5);
}
.btn-hero-secondary {
  background: transparent;
  color: var(--cream);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  padding: 14px 32px;
  border: 1.5px solid rgba(255, 248, 240, 0.25);
  border-radius: 100px;
  cursor: none;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-hero-secondary:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.hero-mini-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hms-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(var(--neon-cyan-rgb), 0.15);
  border-radius: 10px;
  padding: 8px 14px;
}
.hms-val {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  color: var(--neon-cyan);
  letter-spacing: 0.05em;
  line-height: 1;
}
.hms-lbl {
  font-size: 0.6rem;
  color: rgba(255, 248, 240, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ========== HERO BRACELET (SVG-like CSS) ========== */
.hero-img-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.hero-img-ring {
  position: relative;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 35% 35%, rgba(var(--neon-cyan-rgb), 0.1), rgba(var(--neon-magenta-rgb), 0.05));
  border-radius: 50%;
  border: 1px dashed rgba(var(--neon-cyan-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slowSpin 25s linear infinite;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }

.hero-bracelet {
  animation: slowSpin 25s linear infinite reverse, float 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(360deg); }
  50% { transform: translateY(-15px) rotate(360deg); }
}

.bracelet-band {
  width: 280px;
  height: 80px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 40px;
  border: 2px solid rgba(var(--neon-cyan-rgb), 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 0 30px rgba(var(--neon-cyan-rgb), 0.3),
    0 0 60px rgba(var(--neon-cyan-rgb), 0.1),
    inset 0 0 20px rgba(var(--neon-cyan-rgb), 0.05);
}

.led-strip {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}
.led {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 40px rgba(var(--neon-cyan-rgb), 0.3);
  animation: ledPulse 1.2s ease-in-out infinite;
}
.led:nth-child(1) { animation-delay: 0s; }
.led:nth-child(2) { animation-delay: 0.1s; }
.led:nth-child(3) { animation-delay: 0.2s; }
.led:nth-child(4) { animation-delay: 0.3s; }
.led:nth-child(5) { animation-delay: 0.4s; }
.led:nth-child(6) { animation-delay: 0.5s; }
.led:nth-child(7) { animation-delay: 0.6s; }
.led:nth-child(8) { animation-delay: 0.7s; }
.led:nth-child(9) { animation-delay: 0.8s; }
.led:nth-child(10) { animation-delay: 0.9s; }
.led:nth-child(11) { animation-delay: 1.0s; }
.led:nth-child(12) { animation-delay: 1.1s; }

@keyframes ledPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.bracelet-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: rgba(var(--neon-cyan-rgb), 0.6);
}

.hero-badge {
  position: absolute;
  top: 28px;
  right: 20px;
  background: var(--neon-cyan);
  color: var(--dark);
  font-family: "Permanent Marker", cursive;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 100px;
  transform: rotate(8deg);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3), 0 0 20px rgba(var(--neon-cyan-rgb), 0.4);
  animation: wiggle 2s ease-in-out infinite;
  z-index: 6;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(8deg); }
  50% { transform: rotate(12deg); }
}

/* ========== STATS ========== */
.stats-strip {
  display: flex;
  border-top: 1px solid rgba(var(--neon-cyan-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--neon-cyan-rgb), 0.08);
  padding: 0 40px;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 20px 10px;
  border-right: 1px solid rgba(var(--neon-cyan-rgb), 0.08);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: var(--neon-cyan);
  line-height: 1;
  text-shadow: 0 0 20px rgba(var(--neon-cyan-rgb), 0.3);
}
.stat-label {
  font-size: 0.62rem;
  color: rgba(255, 248, 240, 0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ========== SLIDER ========== */
.slider-section { padding: 80px 0 60px; }
.section-header {
  padding: 0 40px;
  margin-bottom: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.section-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  color: var(--cream);
}
.section-header h2 em {
  font-style: normal;
  color: var(--neon-cyan);
}
.section-header p {
  font-size: 0.78rem;
  color: rgba(255, 248, 240, 0.4);
  max-width: 280px;
  line-height: 1.7;
}

.slider-viewport {
  overflow: hidden;
  padding: 100px 0 40px;
  margin-top: -60px;
}
.slider-track {
  display: flex;
  gap: 24px;
  padding: 0 40px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  user-select: none;
}
.slider-track.dragging { transition: none; cursor: grabbing; }

.shake-card {
  min-width: 280px;
  height: 400px;
  border-radius: 28px;
  flex-shrink: 0;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px;
  cursor: none;
  transition: transform 0.3s ease;
}
.shake-card:hover { transform: translateY(-12px) rotate(-1deg); }
.shake-card:nth-child(even):hover { transform: translateY(-12px) rotate(1deg); }

.card-cyan {
  background: linear-gradient(160deg, #0a1628, #0d1f35);
  border: 1px solid rgba(var(--neon-cyan-rgb), 0.25);
}
.card-magenta {
  background: linear-gradient(160deg, #2a0a1e, #1f0815);
  border: 1px solid rgba(var(--neon-magenta-rgb), 0.3);
}
.card-green {
  background: linear-gradient(160deg, #0a1a0a, #081508);
  border: 1px solid rgba(57, 255, 20, 0.25);
}
.card-rainbow {
  background: linear-gradient(160deg, #1a0a2e, #120825);
  border: 1px solid rgba(124, 58, 237, 0.3);
}
.card-fire {
  background: linear-gradient(160deg, #2a1000, #1f0a00);
  border: 1px solid rgba(255, 140, 0, 0.3);
}

/* Card bracelet visual */
.card-bracelet-visual {
  position: absolute;
  top: 20px;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.card-bracelet-visual.cyan-glow { filter: drop-shadow(0 0 20px rgba(var(--neon-cyan-rgb), 0.5)); }
.card-bracelet-visual.magenta-glow { filter: drop-shadow(0 0 20px rgba(var(--neon-magenta-rgb), 0.5)); }
.card-bracelet-visual.green-glow { filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.5)); }
.card-bracelet-visual.rainbow-glow { filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.5)); }
.card-bracelet-visual.fire-glow { filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.5)); }

.mini-band {
  width: 160px;
  height: 45px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mini-led {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  animation: ledPulse 1.2s ease-in-out infinite;
}
.mini-led.ml-cyan {
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan), 0 0 16px rgba(var(--neon-cyan-rgb), 0.4);
}
.mini-led.ml-magenta {
  background: var(--neon-magenta);
  box-shadow: 0 0 8px var(--neon-magenta), 0 0 16px rgba(var(--neon-magenta-rgb), 0.4);
}
.mini-led.ml-green {
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green), 0 0 16px rgba(57, 255, 20, 0.4);
}
.mini-led.ml-rainbow.r1 { background: #ff0000; box-shadow: 0 0 8px #ff0000; }
.mini-led.ml-rainbow.r2 { background: #ff8c00; box-shadow: 0 0 8px #ff8c00; }
.mini-led.ml-rainbow.r3 { background: #ffe600; box-shadow: 0 0 8px #ffe600; }
.mini-led.ml-rainbow.r4 { background: #39ff14; box-shadow: 0 0 8px #39ff14; }
.mini-led.ml-rainbow.r5 { background: #7c3aed; box-shadow: 0 0 8px #7c3aed; }
.mini-led.ml-fire.f1 { background: #ff4500; box-shadow: 0 0 8px #ff4500; }
.mini-led.ml-fire.f2 { background: #ff6a00; box-shadow: 0 0 8px #ff6a00; }
.mini-led.ml-fire.f3 { background: #ff8c00; box-shadow: 0 0 8px #ff8c00; }
.mini-led.ml-fire.f4 { background: #ffa500; box-shadow: 0 0 8px #ffa500; }
.mini-led.ml-fire.f5 { background: #ff4500; box-shadow: 0 0 8px #ff4500; }

.mini-led:nth-child(1) { animation-delay: 0s; }
.mini-led:nth-child(2) { animation-delay: 0.15s; }
.mini-led:nth-child(3) { animation-delay: 0.3s; }
.mini-led:nth-child(4) { animation-delay: 0.45s; }
.mini-led:nth-child(5) { animation-delay: 0.6s; }

.card-chip {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid currentColor;
  z-index: 3;
}
.card-cyan .card-chip { color: var(--neon-cyan); }
.card-magenta .card-chip { color: var(--neon-magenta); }
.card-green .card-chip { color: var(--neon-green); }
.card-rainbow .card-chip { color: var(--purple); }
.card-fire .card-chip { color: #ff8c00; }

.card-bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
}
.card-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 6px;
}
.card-desc {
  font-size: 0.67rem;
  color: rgba(255, 248, 240, 0.45);
  line-height: 1.5;
  margin-bottom: 16px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  color: var(--neon-cyan);
}
.card-btn {
  background: var(--neon-magenta);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.card-btn:hover {
  transform: scale(1.08);
  background: #ff0060;
  box-shadow: 0 0 20px rgba(var(--neon-magenta-rgb), 0.5);
}

.slider-controls {
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
.ctrl-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--neon-cyan-rgb), 0.2);
  background: transparent;
  color: var(--cream);
  font-size: 1.2rem;
  cursor: none;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctrl-btn:hover {
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
  color: var(--dark);
}
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 248, 240, 0.2);
  transition: background 0.3s, width 0.3s;
  cursor: none;
}
.slider-dot.active {
  background: var(--neon-cyan);
  width: 28px;
  box-shadow: 0 0 10px rgba(var(--neon-cyan-rgb), 0.4);
}

/* ========== COMO FUNCIONA (INGREDIENTS) ========== */
.ingredients-section {
  padding: 100px 40px 80px;
  position: relative;
}
.ingredients-section::before {
  content: "PULSE";
  font-family: "Bebas Neue", sans-serif;
  font-size: 20vw;
  color: rgba(var(--neon-cyan-rgb), 0.02);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}

.ingredients-grid {
  max-width: 1000px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3px;
  row-gap: 20px;
  background: transparent;
  overflow: visible;
  position: relative;
}

.ing-card {
  background: #151222;
  padding: 32px 28px;
  position: relative;
  overflow: visible;
  transition: background 0.3s;
  cursor: none;
}
.ing-card:hover { background: #1c1830; }
.ing-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.4s;
}
.ing-card:hover::before { width: 100%; }
.ing-card.c1::before { background: var(--neon-cyan); }
.ing-card.c2::before { background: var(--neon-magenta); }
.ing-card.c3::before { background: var(--purple); }
.ing-card.c4::before { background: var(--neon-green); }
.ing-card.c5::before { background: var(--sky); }
.ing-card.c6::before { background: var(--neon-cyan); }

.ing-icon-wrap {
  margin-bottom: 16px;
}
.ing-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.ing-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: rgba(255, 248, 240, 0.2);
  margin-bottom: 8px;
}
.ing-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 10px;
}
.ing-desc {
  font-size: 0.7rem;
  color: rgba(255, 248, 240, 0.35);
  line-height: 1.7;
}

/* ========== NEWSLETTER ========== */
.newsletter { padding: 40px; }
.newsletter-inner {
  background: linear-gradient(135deg, var(--neon-magenta), #b8006a);
  border-radius: 28px;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
  overflow: hidden;
}
.newsletter-inner::after {
  content: "\26A1";
  font-size: 18rem;
  position: absolute;
  right: -40px;
  top: -60px;
  opacity: 0.07;
  pointer-events: none;
  line-height: 1;
}

.nl-left { position: relative; z-index: 1; }
.nl-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}
.nl-left h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.9;
  color: white;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.nl-proof { display: flex; align-items: center; gap: 12px; }
.nl-avatars { display: flex; }
.nl-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: "Space Mono", monospace;
  color: white;
  margin-left: -9px;
  flex-shrink: 0;
  line-height: 1;
}
.nl-avatar:first-child { margin-left: 0; }
.nl-avatar.av1 { background: #0088aa; }
.nl-avatar.av2 { background: #5b4ecf; }
.nl-avatar.av3 { background: #1aac8e; }
.nl-avatar.av4 { background: #d4820a; }

.nl-proof-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}
.nl-proof-text strong {
  color: white;
  font-weight: 700;
  display: block;
  font-size: 0.8rem;
}

.nl-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.nl-perks { display: flex; flex-direction: column; gap: 10px; }
.nl-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  color: rgba(0, 0, 0, 0.75);
}
.nl-perk-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.nl-form { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-input {
  flex: 1;
  min-width: 180px;
  padding: 14px 20px;
  border-radius: 100px;
  border: none;
  background: rgba(0, 0, 0, 0.18);
  color: white;
  font-family: "Space Mono", monospace;
  font-size: 0.82rem;
  outline: none;
}
.nl-input::placeholder { color: rgba(255, 255, 255, 0.55); }
.nl-btn {
  padding: 14px 26px;
  background: var(--dark);
  color: var(--neon-cyan);
  border: none;
  border-radius: 100px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  cursor: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nl-btn:hover {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(var(--neon-cyan-rgb), 0.3);
}

/* ========== LIFESTYLE / PERSONALIZACAO ========== */
.lifestyle { padding: 80px 40px 100px; }
.lifestyle-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lifestyle-img-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(var(--neon-cyan-rgb), 0.1);
}
.custom-frame {
  background: linear-gradient(135deg, #0a0a18, #12102a);
  padding: 60px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-preview {
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-band-large {
  width: 320px;
  height: 90px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 45px;
  border: 2px solid rgba(var(--neon-cyan-rgb), 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 40px rgba(var(--neon-cyan-rgb), 0.3),
    0 0 80px rgba(var(--neon-cyan-rgb), 0.1),
    inset 0 0 30px rgba(var(--neon-cyan-rgb), 0.05);
  animation: customGlow 3s ease-in-out infinite;
}
@keyframes customGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(var(--neon-cyan-rgb), 0.3), 0 0 80px rgba(var(--neon-cyan-rgb), 0.1); }
  50% { box-shadow: 0 0 60px rgba(var(--neon-cyan-rgb), 0.5), 0 0 120px rgba(var(--neon-cyan-rgb), 0.2); }
}
.custom-led-strip {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}
.led-lg {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
  animation: ledPulse 1.2s ease-in-out infinite;
}
.led-lg:nth-child(1) { animation-delay: 0s; }
.led-lg:nth-child(2) { animation-delay: 0.15s; }
.led-lg:nth-child(3) { animation-delay: 0.2s; }
.led-lg:nth-child(4) { animation-delay: 0.3s; }
.led-lg:nth-child(5) { animation-delay: 0.4s; }
.led-lg:nth-child(6) { animation-delay: 0.5s; }
.led-lg:nth-child(7) { animation-delay: 0.6s; }
.led-lg:nth-child(8) { animation-delay: 0.7s; }

.custom-name-display {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(var(--neon-cyan-rgb), 0.6);
}

.lifestyle-img-wrap { position: relative; }
.ls-badge {
  position: absolute;
  bottom: -16px;
  right: 28px;
  background: var(--neon-cyan);
  color: var(--dark);
  font-family: "Permanent Marker", cursive;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 100px;
  transform: rotate(-3deg);
  box-shadow: 3px 3px 0 var(--dark), 0 0 15px rgba(var(--neon-cyan-rgb), 0.3);
}
.lifestyle-content {}
.ls-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 16px;
}
.ls-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 0.92;
  color: var(--cream);
  margin-bottom: 22px;
}
.ls-copy {
  font-size: 0.76rem;
  color: rgba(255, 248, 240, 0.45);
  line-height: 1.8;
  margin-bottom: 30px;
}
.ls-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.ls-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.76rem;
  color: rgba(255, 248, 240, 0.6);
}
.ls-features li strong { color: var(--cream); }
.ls-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(var(--neon-cyan-rgb), 0.4);
}
.ls-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.ls-btn-p {
  background: var(--neon-magenta);
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ls-btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(var(--neon-magenta-rgb), 0.4);
}
.ls-btn-s {
  border: 1.5px solid rgba(255, 248, 240, 0.2);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 100px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.ls-btn-s:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

/* ========== FOOTER ========== */
footer {
  border-top: 1px solid rgba(var(--neon-cyan-rgb), 0.07);
  padding: 36px 40px;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo-text {
  font-family: "Permanent Marker", cursive;
  font-size: 1.2rem;
  color: var(--neon-cyan);
  text-decoration: none;
  text-shadow: 0 0 15px rgba(var(--neon-cyan-rgb), 0.4);
}
.footer-dev-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.3);
}
.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.68rem;
  color: rgba(255, 248, 240, 0.35);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }

.footer-contact {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 100px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: none;
}
.footer-contact-btn.btn-codepen {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--cream);
}
.footer-contact-btn.btn-codepen:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  transform: translateY(-2px);
}
.footer-contact-btn.btn-email {
  background: var(--neon-magenta);
  border: 1.5px solid var(--neon-magenta);
  color: white;
}
.footer-contact-btn.btn-email:hover {
  background: #ff0060;
  box-shadow: 0 0 20px rgba(var(--neon-magenta-rgb), 0.5);
  transform: translateY(-2px);
}
.footer-contact-btn i { font-size: 1rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 800px) {
  nav { padding: 14px 20px; }
  .nav-links { gap: 18px; }
  .nav-links li:not(:last-child) { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 20px 20px 40px;
    text-align: center;
  }
  .hero-img-wrap { order: -1; margin-bottom: 10px; }
  .hero-img-ring { width: 260px; height: 260px; }
  .bracelet-band { width: 200px; height: 60px; }
  .led { width: 8px; height: 8px; }
  .led-strip { gap: 5px; }
  .bracelet-text { font-size: 0.7rem; }
  .hero-badge { right: calc(50% - 160px); top: 10px; }
  .hero-eyebrow { margin: 0 auto 16px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-pills { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-mini-stats { justify-content: center; }

  .stats-strip { padding: 0 20px; }
  .stat-num { font-size: 2rem; }

  .slider-section { padding: 60px 0 40px; }
  .section-header { padding: 0 20px; }
  .slider-track { padding: 0 20px; }
  .slider-controls { padding: 0 20px; }
  .shake-card {
    min-width: 0;
    width: min(360px, calc(100vw - 80px));
  }

  .ingredients-section { padding: 70px 20px 60px; }
  .ingredients-grid { grid-template-columns: 1fr 1fr; row-gap: 16px; }

  .newsletter { padding: 20px; }
  .newsletter-inner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 30px;
  }

  .lifestyle { padding: 60px 20px 80px; }
  .lifestyle-inner { grid-template-columns: 1fr; gap: 40px; }

  footer { padding: 28px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { gap: 16px; }
  .footer-contact { flex-direction: row; }
}

@media (max-width: 480px) {
  .ticker-word { font-size: 1.1rem; }
  nav { padding: 12px 16px; }
  .nav-logo { font-size: 1.2rem; }

  .hero { padding: 16px 16px 36px; }
  .hero-h1 { font-size: clamp(3.5rem, 14vw, 5rem); }
  .hero-img-ring { width: 220px; height: 220px; }
  .bracelet-band { width: 170px; height: 50px; }
  .led { width: 7px; height: 7px; }
  .led-strip { gap: 4px; }
  .hero-badge { display: none; }
  .hero-sub { font-size: 0.78rem; }

  .stats-strip { overflow-x: auto; }
  .stat { min-width: 80px; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: 0.55rem; }

  .shake-card { min-width: 240px; height: 360px; }

  .ingredients-grid { grid-template-columns: 1fr; row-gap: 12px; }

  .newsletter-inner { padding: 32px 20px; }
  .nl-left h2 { font-size: 2.2rem; }
  .nl-form { flex-direction: column; }
  .nl-btn { text-align: center; }

  footer { padding: 24px 16px; }
  .footer-links { flex-direction: column; gap: 10px; }
  .footer-contact { flex-direction: column; gap: 10px; }
  .footer-contact-btn { width: 100%; justify-content: center; }

  .custom-band-large { width: 240px; height: 70px; }
  .custom-led-strip { gap: 8px; }
  .led-lg { width: 10px; height: 10px; }
}

/* ========================================================
   FLOATING CTA BUTTONS
   ======================================================== */
.float-cta-wrap {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9000;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 100px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.float-btn i { font-size: 1.2rem; }
.float-btn:hover { transform: translateY(-3px) scale(1.04); }
.float-wpp { background: #25d366; color: #fff; }
.float-wpp:hover { box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.float-shop { background: var(--neon-magenta); color: #fff; }
.float-shop:hover { box-shadow: 0 8px 32px rgba(var(--neon-magenta-rgb), 0.5); }
.float-btn-label { display: inline-block; }
@media (max-width: 480px) {
  .float-cta-wrap { bottom: 16px; right: 12px; gap: 10px; }
  .float-btn { padding: 12px 16px; font-size: 0.9rem; }
  .float-btn-label { display: none; }
}

/* ========================================================
   BRANDS SECTION
   ======================================================== */
.brands-section {
  padding: 80px 40px;
  background: var(--dark);
  overflow: hidden;
}
.brands-eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,248,240,0.45);
  margin-bottom: 12px;
}
.brands-ticker-wrap {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid rgba(var(--neon-cyan-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--neon-cyan-rgb), 0.08);
  margin: 32px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.brands-ticker-inner {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  animation: brandsTicker 28s linear infinite;
  white-space: nowrap;
}
@keyframes brandsTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-logo-item {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: rgba(255,248,240,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.brand-logo-item i { color: rgba(var(--neon-cyan-rgb), 0.35); font-size: 0.9rem; }
.brands-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.brands-stat {
  text-align: center;
  padding: 24px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(var(--neon-cyan-rgb), 0.08);
  border-radius: 12px;
}
.bs-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 4px;
}
.bs-num.cyan { color: var(--neon-cyan); text-shadow: 0 0 20px rgba(var(--neon-cyan-rgb), 0.4); }
.bs-num.magenta { color: var(--neon-magenta); text-shadow: 0 0 20px rgba(var(--neon-magenta-rgb), 0.4); }
.bs-num span { font-size: 1.5rem; }
.bs-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,248,240,0.4);
}
@media (max-width: 768px) {
  .brands-stats-row { grid-template-columns: repeat(2, 1fr); }
  .brands-section { padding: 60px 20px; }
}

/* ========================================================
   PORTFOLIO SECTION
   ======================================================== */
.portfolio-section {
  padding: 80px 40px;
  background: var(--dark-card);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.portfolio-card {
  position: relative;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 28px;
  min-height: 220px;
  transition: transform 0.3s, border-color 0.3s;
}
.portfolio-card:hover { transform: translateY(-4px); }
.port-lg { grid-row: span 1; }
.port-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  pointer-events: none;
  top: -60px; right: -60px;
  transition: width 0.3s, height 0.3s;
}
.port-glow-cyan { background: radial-gradient(circle, rgba(var(--neon-cyan-rgb), 0.15), transparent 70%); }
.port-glow-magenta { background: radial-gradient(circle, rgba(var(--neon-magenta-rgb), 0.15), transparent 70%); }
.port-glow-rainbow { background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 70%); }
.port-glow-green { background: radial-gradient(circle, rgba(57,255,20,0.15), transparent 70%); }
.port-glow-fire { background: radial-gradient(circle, rgba(255,106,0,0.15), transparent 70%); }
.portfolio-card:hover .port-glow { width: 280px; height: 280px; }
.port-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 16px; height: 100%;
}
.port-visual { display: flex; justify-content: center; margin-bottom: 4px; }
.port-band {
  height: 48px; border-radius: 24px;
  padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; width: 100%; max-width: 240px;
}
.pb-cyan { background: linear-gradient(135deg,#0d1f2d,#0a2d2d); border: 1px solid rgba(var(--neon-cyan-rgb), 0.3); }
.pb-magenta { background: linear-gradient(135deg,#1f0d1a,#2d0a1a); border: 1px solid rgba(var(--neon-magenta-rgb), 0.3); }
.pb-rainbow { background: linear-gradient(135deg,#1a0d2d,#0d1a2d); border: 1px solid rgba(124,58,237,0.3); }
.pb-green { background: linear-gradient(135deg,#0d1f0d,#0a2d0a); border: 1px solid rgba(57,255,20,0.3); }
.pb-fire { background: linear-gradient(135deg,#1f0d00,#2d1a00); border: 1px solid rgba(255,106,0,0.3); }
.port-leds { display: flex; gap: 6px; align-items: center; }
.port-led {
  width: 8px; height: 8px; border-radius: 50%;
  animation: ledBlink 0.8s ease-in-out infinite alternate;
}
.port-led:nth-child(2) { animation-delay: 0.15s; }
.port-led:nth-child(3) { animation-delay: 0.3s; }
.port-led:nth-child(4) { animation-delay: 0.45s; }
.port-led:nth-child(5) { animation-delay: 0.6s; }
.port-led:nth-child(6) { animation-delay: 0.75s; }
@keyframes ledBlink { 0% { opacity: 0.4; transform: scale(0.7); } 100% { opacity: 1; transform: scale(1); } }
.plc { background: var(--neon-cyan); box-shadow: 0 0 6px var(--neon-cyan); }
.plm { background: var(--neon-magenta); box-shadow: 0 0 6px var(--neon-magenta); }
.plg { background: var(--neon-green); box-shadow: 0 0 6px var(--neon-green); }
.plr { width: 7px; height: 7px; border-radius: 50%; }
.plr.r1 { background: #ff0000; box-shadow: 0 0 6px #ff0000; }
.plr.r2 { background: #ff8c00; box-shadow: 0 0 6px #ff8c00; }
.plr.r3 { background: #ffe600; box-shadow: 0 0 6px #ffe600; }
.plr.r4 { background: var(--neon-green); box-shadow: 0 0 6px var(--neon-green); }
.plr.r5 { background: var(--neon-cyan); box-shadow: 0 0 6px var(--neon-cyan); }
.plf { border-radius: 50%; }
.plf.f1 { background: #ff6a00; box-shadow: 0 0 6px #ff6a00; }
.plf.f2 { background: #ff4500; box-shadow: 0 0 6px #ff4500; }
.plf.f3 { background: #ff2000; box-shadow: 0 0 6px #ff2000; }
.plf.f4 { background: #ff4500; box-shadow: 0 0 6px #ff4500; }
.plf.f5 { background: #ff6a00; box-shadow: 0 0 6px #ff6a00; }
.port-band-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.65rem; letter-spacing: 0.15em;
  color: rgba(255,248,240,0.4);
}
.port-info { flex: 1; }
.port-tag {
  display: inline-block;
  font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(var(--neon-cyan-rgb), 0.25);
  color: var(--neon-cyan); margin-bottom: 8px;
}
.port-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem; letter-spacing: 0.08em;
  color: var(--cream); margin-bottom: 6px;
}
.port-desc { font-size: 0.65rem; color: rgba(255,248,240,0.45); line-height: 1.65; }
.port-cta-card {
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--neon-cyan-rgb), 0.03);
  border: 1px dashed rgba(var(--neon-cyan-rgb), 0.2);
}
.port-cta-inner { text-align: center; padding: 8px; }
.port-cta-btn {
  display: inline-block; padding: 10px 22px;
  background: var(--neon-cyan); color: var(--dark);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem; letter-spacing: 0.12em;
  border-radius: 100px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.port-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(var(--neon-cyan-rgb), 0.4);
}
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .port-lg { grid-column: span 2; }
  .port-cta-card { grid-column: span 2; }
}
@media (max-width: 560px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .port-lg, .port-cta-card { grid-column: span 1; }
  .portfolio-section { padding: 60px 20px; }
}

/* ========================================================
   FAQ SECTION
   ======================================================== */
.faq-section {
  padding: 80px 40px;
  background: var(--dark);
  max-width: 860px;
  margin: 0 auto;
}
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.faq-item {
  border: 1px solid rgba(var(--neon-cyan-rgb), 0.1);
  border-radius: 12px; overflow: hidden;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s;
}
.faq-item:hover, .faq-item.open { border-color: rgba(var(--neon-cyan-rgb), 0.3); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; text-align: left;
  color: var(--cream);
  font-family: "Space Mono", monospace; font-size: 0.82rem; line-height: 1.5;
  transition: color 0.2s;
}
.faq-question:hover, .faq-item.open .faq-question { color: var(--neon-cyan); }
.faq-icon { flex-shrink: 0; font-size: 0.9rem; color: var(--neon-cyan); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 24px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.75rem; color: rgba(255,248,240,0.55); line-height: 1.75; }
.faq-cta {
  text-align: center; margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(var(--neon-cyan-rgb), 0.08);
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.faq-cta p { font-size: 0.75rem; color: rgba(255,248,240,0.45); }
.faq-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; background: #25d366; color: #fff;
  font-family: "Bebas Neue", sans-serif; font-size: 1rem; letter-spacing: 0.1em;
  border-radius: 100px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.faq-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
@media (max-width: 768px) {
  .faq-section { padding: 60px 20px; }
  .faq-question { font-size: 0.75rem; padding: 16px 18px; }
  .faq-answer { padding: 0 18px; }
  .faq-item.open .faq-answer { padding: 0 18px 16px; }
}

/* ========================================================
   CONTACT SECTION
   ======================================================== */
.contact-section { padding: 80px 40px; background: var(--dark-card); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; max-width: 1100px; margin: 0 auto; align-items: start;
}
.contact-eyebrow {
  font-family: "Space Mono", monospace; font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--neon-cyan); margin-bottom: 16px;
}
.contact-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 0.9;
  color: var(--cream); margin-bottom: 20px;
}
.contact-copy { font-size: 0.78rem; color: rgba(255,248,240,0.5); line-height: 1.75; margin-bottom: 32px; }
.contact-channels { display: flex; flex-direction: column; gap: 12px; }
.contact-channel {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(var(--neon-cyan-rgb), 0.1);
  border-radius: 12px; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.contact-channel:hover { border-color: rgba(var(--neon-cyan-rgb), 0.3); background: rgba(var(--neon-cyan-rgb), 0.05); }
.contact-channel i { font-size: 1.3rem; color: var(--neon-cyan); width: 28px; text-align: center; }
.cc-label { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,248,240,0.35); margin-bottom: 2px; }
.cc-val { font-size: 0.78rem; color: var(--cream); }
.contact-form-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(var(--neon-cyan-rgb), 0.1);
  border-radius: 20px; padding: 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,248,240,0.45); }
.cf-field input, .cf-field select, .cf-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(var(--neon-cyan-rgb), 0.15);
  border-radius: 10px; padding: 12px 16px;
  color: var(--cream);
  font-family: "Space Mono", monospace; font-size: 0.75rem;
  outline: none; transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none; appearance: none;
}
.cf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%2300f5ff'%3E%3Cpath d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; cursor: pointer;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  border-color: var(--neon-cyan); background: rgba(var(--neon-cyan-rgb), 0.05);
}
.cf-field textarea { resize: vertical; min-height: 100px; }
.cf-field input::placeholder, .cf-field textarea::placeholder { color: rgba(255,248,240,0.2); }
.cf-submit-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cf-submit-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: var(--neon-magenta); color: #fff;
  font-family: "Bebas Neue", sans-serif; font-size: 1.1rem; letter-spacing: 0.12em;
  border: none; border-radius: 100px; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cf-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(var(--neon-magenta-rgb), 0.4); }
.cf-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.cf-privacy { font-size: 0.6rem; color: rgba(255,248,240,0.3); line-height: 1.5; flex: 1; }
.cf-success {
  padding: 14px 18px;
  background: rgba(57,255,20,0.1); border: 1px solid rgba(57,255,20,0.3);
  border-radius: 10px; color: var(--neon-green); font-size: 0.75rem;
  display: flex; align-items: center; gap: 10px;
}
@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 600px) {
  .contact-section { padding: 60px 20px; }
  .contact-form-wrap { padding: 24px 20px; }
  .cf-row { grid-template-columns: 1fr; }
}

/* ========================================================
   FLOATING CTA BUTTONS
   ======================================================== */
.float-cta-wrap {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9000;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 100px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.float-btn i { font-size: 1.2rem; }
.float-btn:hover { transform: translateY(-3px) scale(1.04); }
.float-wpp { background: #25d366; color: #fff; }
.float-wpp:hover { box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.float-shop { background: var(--neon-magenta); color: #fff; }
.float-shop:hover { box-shadow: 0 8px 32px rgba(var(--neon-magenta-rgb), 0.5); }
.float-btn-label { display: inline-block; }
@media (max-width: 480px) {
  .float-cta-wrap { bottom: 16px; right: 12px; gap: 10px; }
  .float-btn { padding: 12px 16px; font-size: 0.9rem; }
  .float-btn-label { display: none; }
}

/* ========================================================
   BRANDS SECTION
   ======================================================== */
.brands-section {
  padding: 80px 40px;
  background: var(--dark);
  overflow: hidden;
}
.brands-eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,248,240,0.45);
  margin-bottom: 12px;
}
.brands-ticker-wrap {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid rgba(var(--neon-cyan-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--neon-cyan-rgb), 0.08);
  margin: 32px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.brands-ticker-inner {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  animation: brandsTicker 28s linear infinite;
  white-space: nowrap;
}
@keyframes brandsTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-logo-item {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: rgba(255,248,240,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.brand-logo-item i { color: rgba(var(--neon-cyan-rgb), 0.35); font-size: 0.9rem; }
.brands-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.brands-stat {
  text-align: center;
  padding: 24px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(var(--neon-cyan-rgb), 0.08);
  border-radius: 12px;
}
.bs-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 4px;
}
.bs-num.cyan { color: var(--neon-cyan); text-shadow: 0 0 20px rgba(var(--neon-cyan-rgb), 0.4); }
.bs-num.magenta { color: var(--neon-magenta); text-shadow: 0 0 20px rgba(var(--neon-magenta-rgb), 0.4); }
.bs-num span { font-size: 1.5rem; }
.bs-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,248,240,0.4);
}
@media (max-width: 768px) {
  .brands-stats-row { grid-template-columns: repeat(2, 1fr); }
  .brands-section { padding: 60px 20px; }
}

/* ========================================================
   PORTFOLIO SECTION
   ======================================================== */
.portfolio-section {
  padding: 80px 40px;
  background: var(--dark-card);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.portfolio-card {
  position: relative;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 28px;
  min-height: 220px;
  transition: transform 0.3s, border-color 0.3s;
}
.portfolio-card:hover { transform: translateY(-4px); }
.port-lg { grid-row: span 1; }
.port-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  pointer-events: none;
  top: -60px; right: -60px;
  transition: width 0.3s, height 0.3s;
}
.port-glow-cyan { background: radial-gradient(circle, rgba(var(--neon-cyan-rgb), 0.15), transparent 70%); }
.port-glow-magenta { background: radial-gradient(circle, rgba(var(--neon-magenta-rgb), 0.15), transparent 70%); }
.port-glow-rainbow { background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 70%); }
.port-glow-green { background: radial-gradient(circle, rgba(57,255,20,0.15), transparent 70%); }
.port-glow-fire { background: radial-gradient(circle, rgba(255,106,0,0.15), transparent 70%); }
.portfolio-card:hover .port-glow { width: 280px; height: 280px; }
.port-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 16px; height: 100%;
}
.port-visual { display: flex; justify-content: center; margin-bottom: 4px; }
.port-band {
  height: 48px; border-radius: 24px;
  padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; width: 100%; max-width: 240px;
}
.pb-cyan { background: linear-gradient(135deg,#0d1f2d,#0a2d2d); border: 1px solid rgba(var(--neon-cyan-rgb), 0.3); }
.pb-magenta { background: linear-gradient(135deg,#1f0d1a,#2d0a1a); border: 1px solid rgba(var(--neon-magenta-rgb), 0.3); }
.pb-rainbow { background: linear-gradient(135deg,#1a0d2d,#0d1a2d); border: 1px solid rgba(124,58,237,0.3); }
.pb-green { background: linear-gradient(135deg,#0d1f0d,#0a2d0a); border: 1px solid rgba(57,255,20,0.3); }
.pb-fire { background: linear-gradient(135deg,#1f0d00,#2d1a00); border: 1px solid rgba(255,106,0,0.3); }
.port-leds { display: flex; gap: 6px; align-items: center; }
.port-led {
  width: 8px; height: 8px; border-radius: 50%;
  animation: ledBlink 0.8s ease-in-out infinite alternate;
}
.port-led:nth-child(2) { animation-delay: 0.15s; }
.port-led:nth-child(3) { animation-delay: 0.3s; }
.port-led:nth-child(4) { animation-delay: 0.45s; }
.port-led:nth-child(5) { animation-delay: 0.6s; }
.port-led:nth-child(6) { animation-delay: 0.75s; }
@keyframes ledBlink { 0% { opacity: 0.4; transform: scale(0.7); } 100% { opacity: 1; transform: scale(1); } }
.plc { background: var(--neon-cyan); box-shadow: 0 0 6px var(--neon-cyan); }
.plm { background: var(--neon-magenta); box-shadow: 0 0 6px var(--neon-magenta); }
.plg { background: var(--neon-green); box-shadow: 0 0 6px var(--neon-green); }
.plr { width: 7px; height: 7px; border-radius: 50%; }
.plr.r1 { background: #ff0000; box-shadow: 0 0 6px #ff0000; }
.plr.r2 { background: #ff8c00; box-shadow: 0 0 6px #ff8c00; }
.plr.r3 { background: #ffe600; box-shadow: 0 0 6px #ffe600; }
.plr.r4 { background: var(--neon-green); box-shadow: 0 0 6px var(--neon-green); }
.plr.r5 { background: var(--neon-cyan); box-shadow: 0 0 6px var(--neon-cyan); }
.plf { border-radius: 50%; }
.plf.f1 { background: #ff6a00; box-shadow: 0 0 6px #ff6a00; }
.plf.f2 { background: #ff4500; box-shadow: 0 0 6px #ff4500; }
.plf.f3 { background: #ff2000; box-shadow: 0 0 6px #ff2000; }
.plf.f4 { background: #ff4500; box-shadow: 0 0 6px #ff4500; }
.plf.f5 { background: #ff6a00; box-shadow: 0 0 6px #ff6a00; }
.port-band-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.65rem; letter-spacing: 0.15em;
  color: rgba(255,248,240,0.4);
}
.port-info { flex: 1; }
.port-tag {
  display: inline-block;
  font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(var(--neon-cyan-rgb), 0.25);
  color: var(--neon-cyan); margin-bottom: 8px;
}
.port-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem; letter-spacing: 0.08em;
  color: var(--cream); margin-bottom: 6px;
}
.port-desc { font-size: 0.65rem; color: rgba(255,248,240,0.45); line-height: 1.65; }
.port-cta-card {
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--neon-cyan-rgb), 0.03);
  border: 1px dashed rgba(var(--neon-cyan-rgb), 0.2);
}
.port-cta-inner { text-align: center; padding: 8px; }
.port-cta-btn {
  display: inline-block; padding: 10px 22px;
  background: var(--neon-cyan); color: var(--dark);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem; letter-spacing: 0.12em;
  border-radius: 100px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.port-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(var(--neon-cyan-rgb), 0.4);
}
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .port-lg { grid-column: span 2; }
  .port-cta-card { grid-column: span 2; }
}
@media (max-width: 560px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .port-lg, .port-cta-card { grid-column: span 1; }
  .portfolio-section { padding: 60px 20px; }
}

/* ========================================================
   FAQ SECTION
   ======================================================== */
.faq-section {
  padding: 80px 40px;
  background: var(--dark);
  max-width: 860px;
  margin: 0 auto;
}
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.faq-item {
  border: 1px solid rgba(var(--neon-cyan-rgb), 0.1);
  border-radius: 12px; overflow: hidden;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s;
}
.faq-item:hover, .faq-item.open { border-color: rgba(var(--neon-cyan-rgb), 0.3); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; text-align: left;
  color: var(--cream);
  font-family: "Space Mono", monospace; font-size: 0.82rem; line-height: 1.5;
  transition: color 0.2s;
}
.faq-question:hover, .faq-item.open .faq-question { color: var(--neon-cyan); }
.faq-icon { flex-shrink: 0; font-size: 0.9rem; color: var(--neon-cyan); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 24px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.75rem; color: rgba(255,248,240,0.55); line-height: 1.75; }
.faq-cta {
  text-align: center; margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(var(--neon-cyan-rgb), 0.08);
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.faq-cta p { font-size: 0.75rem; color: rgba(255,248,240,0.45); }
.faq-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; background: #25d366; color: #fff;
  font-family: "Bebas Neue", sans-serif; font-size: 1rem; letter-spacing: 0.1em;
  border-radius: 100px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.faq-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
@media (max-width: 768px) {
  .faq-section { padding: 60px 20px; }
  .faq-question { font-size: 0.75rem; padding: 16px 18px; }
  .faq-answer { padding: 0 18px; }
  .faq-item.open .faq-answer { padding: 0 18px 16px; }
}

/* ========================================================
   CONTACT SECTION
   ======================================================== */
.contact-section { padding: 80px 40px; background: var(--dark-card); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; max-width: 1100px; margin: 0 auto; align-items: start;
}
.contact-eyebrow {
  font-family: "Space Mono", monospace; font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--neon-cyan); margin-bottom: 16px;
}
.contact-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 0.9;
  color: var(--cream); margin-bottom: 20px;
}
.contact-copy { font-size: 0.78rem; color: rgba(255,248,240,0.5); line-height: 1.75; margin-bottom: 32px; }
.contact-channels { display: flex; flex-direction: column; gap: 12px; }
.contact-channel {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(var(--neon-cyan-rgb), 0.1);
  border-radius: 12px; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.contact-channel:hover { border-color: rgba(var(--neon-cyan-rgb), 0.3); background: rgba(var(--neon-cyan-rgb), 0.05); }
.contact-channel i { font-size: 1.3rem; color: var(--neon-cyan); width: 28px; text-align: center; }
.cc-label { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,248,240,0.35); margin-bottom: 2px; }
.cc-val { font-size: 0.78rem; color: var(--cream); }
.contact-form-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(var(--neon-cyan-rgb), 0.1);
  border-radius: 20px; padding: 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,248,240,0.45); }
.cf-field input, .cf-field select, .cf-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(var(--neon-cyan-rgb), 0.15);
  border-radius: 10px; padding: 12px 16px;
  color: var(--cream);
  font-family: "Space Mono", monospace; font-size: 0.75rem;
  outline: none; transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none; appearance: none;
}
.cf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%2300f5ff'%3E%3Cpath d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; cursor: pointer;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  border-color: var(--neon-cyan); background: rgba(var(--neon-cyan-rgb), 0.05);
}
.cf-field textarea { resize: vertical; min-height: 100px; }
.cf-field input::placeholder, .cf-field textarea::placeholder { color: rgba(255,248,240,0.2); }
.cf-submit-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cf-submit-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: var(--neon-magenta); color: #fff;
  font-family: "Bebas Neue", sans-serif; font-size: 1.1rem; letter-spacing: 0.12em;
  border: none; border-radius: 100px; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cf-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(var(--neon-magenta-rgb), 0.4); }
.cf-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.cf-privacy { font-size: 0.6rem; color: rgba(255,248,240,0.3); line-height: 1.5; flex: 1; }
.cf-success {
  padding: 14px 18px;
  background: rgba(57,255,20,0.1); border: 1px solid rgba(57,255,20,0.3);
  border-radius: 10px; color: var(--neon-green); font-size: 0.75rem;
  display: flex; align-items: center; gap: 10px;
}
@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 600px) {
  .contact-section { padding: 60px 20px; }
  .contact-form-wrap { padding: 24px 20px; }
  .cf-row { grid-template-columns: 1fr; }
}
