/* ============================================
   SMARTVEFUR THEME — Shared Stylesheet
   Used by all pages in the SmartVefur WP theme
   ============================================ */

:root {
  /* Brand colors */
  --yellow: #FFD000;
  --yellow-bright: #FFE14A;
  --yellow-deep: #FFB800;
  --yellow-soft: #FFF8E6;
  --yellow-glow: rgba(255, 208, 0, 0.5);

  /* Rainbow (for ring, progress bar) */
  --red: #ef4444;
  --orange: #f97316;
  --green: #10b981;
  --cyan: #06b6d4;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --pink: #ec4899;

  /* Text */
  --white: #ffffff;
  --white-muted: rgba(255, 255, 255, 0.7);
  --white-soft: rgba(255, 255, 255, 0.5);
  --white-faint: rgba(255, 255, 255, 0.1);

  /* Dark theme backgrounds */
  --dark: #0a0a0f;
  --dark-2: #12121a;
  --dark-3: #1a1a24;
  --dark-4: #222230;

  /* Fonts */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Layout */
  --max-width: 1280px;
  --nav-height: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  position: relative;
}

@media (max-width: 968px) {
  body { cursor: auto; }
}

/* ===== KEYFRAMES ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes ringRotate { to { transform: rotate(360deg); } }
@keyframes ringCounterRotate { to { transform: rotate(-360deg); } }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px var(--yellow-glow); }
  50% { box-shadow: 0 0 40px var(--yellow-glow), 0 0 80px rgba(255, 208, 0, 0.3); }
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}
@keyframes shimmer {
  0% { transform: translateX(-150%) skewX(-20deg); }
  100% { transform: translateX(250%) skewX(-20deg); }
}
@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, 60px) scale(1.1); }
  66% { transform: translate(-50px, 100px) scale(0.95); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-100px, 60px) scale(1.15); }
}
@keyframes charReveal {
  0% { opacity: 0; transform: translateY(40px) rotateX(-90deg); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes liveDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== CURSOR ===== */
.cursor-dot, .cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  top: -100px; left: -100px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cursor-dot.active, .cursor-ring.active {
  opacity: 1;
  top: 0; left: 0;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  box-shadow: 0 0 15px var(--yellow), 0 0 30px var(--yellow-glow);
  transition: transform 0.1s ease-out;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 2px solid var(--yellow);
  transition: width 0.3s var(--ease), height 0.3s var(--ease);
}
.cursor-ring.hover {
  width: 70px; height: 70px;
  background: rgba(255, 208, 0, 0.08);
}
@media (max-width: 968px) { .cursor-dot, .cursor-ring { display: none; } }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--cyan), var(--blue), var(--purple), var(--pink));
  z-index: 9998;
  box-shadow: 0 0 10px var(--yellow-glow);
  transition: width 0.05s linear;
}

/* ===== NOISE ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 997;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

/* ===== AMBIENT BLOBS ===== */
.ambient { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); mix-blend-mode: screen; }
.blob-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--yellow), transparent 70%); top: -10%; left: -5%; animation: float1 25s ease-in-out infinite; opacity: 0.2; }
.blob-2 { width: 500px; height: 500px; background: radial-gradient(circle, var(--purple), transparent 70%); top: 40%; right: -5%; animation: float2 30s ease-in-out infinite; opacity: 0.2; }
.blob-3 { width: 450px; height: 450px; background: radial-gradient(circle, var(--cyan), transparent 70%); bottom: 10%; left: 30%; animation: float1 28s ease-in-out infinite reverse; opacity: 0.15; }

.grid-pattern {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 208, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 208, 0, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 80%);
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 208, 0, 0.2);
  border-radius: 100px;
  padding: 10px 10px 10px 24px;
  display: flex; align-items: center; gap: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  max-width: calc(100vw - 40px);
}
.nav-logo {
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
  color: var(--white); letter-spacing: -0.02em; position: relative;
  text-decoration: none;
}
.nav-logo span {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-logo::after {
  content: ''; position: absolute; right: -12px; top: 50%;
  transform: translateY(-50%); width: 6px; height: 6px;
  border-radius: 50%; background: var(--yellow);
  box-shadow: 0 0 10px var(--yellow);
  animation: pulseDot 2s infinite;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--white-muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.2s var(--ease); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -6px; left: 50%;
  transform: translateX(-50%); width: 4px; height: 4px;
  border-radius: 50%; background: var(--yellow);
  box-shadow: 0 0 8px var(--yellow);
}
.nav-cart {
  position: relative;
  color: var(--white-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-cart:hover { color: var(--yellow); border-color: var(--yellow); }
.nav-cart-count {
  background: var(--yellow);
  color: var(--dark);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 100px;
  min-width: 18px;
  text-align: center;
}
.nav-cta {
  background: var(--yellow); color: var(--dark);
  padding: 10px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
  animation: pulseGlow 3s ease-in-out infinite;
}
.nav-cta::before {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 3s infinite;
}
.nav-cta:hover { transform: translateY(-2px) scale(1.05); }

@media (max-width: 968px) { .nav-links { display: none; } .nav { gap: 16px; padding: 8px 8px 8px 18px; } }

/* ===== PAGE HEADER (for non-home pages) ===== */
.page-header {
  padding: 160px 24px 60px;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}
.page-header .breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--white-soft);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-header .breadcrumb a { color: var(--yellow); text-decoration: none; }
.page-header .breadcrumb a:hover { color: var(--yellow-bright); }
.page-header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-header h1 .highlight {
  color: var(--yellow);
  text-shadow: 0 0 30px var(--yellow-glow);
}
.page-header p {
  font-size: 1.1rem;
  color: var(--white-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 14px 26px; border-radius: 100px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: all 0.3s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
  cursor: none;
  position: relative; overflow: hidden;
  font-family: var(--font-body);
  border: none;
}
@media (max-width: 968px) { .btn { cursor: pointer; } }
.btn-primary {
  background: var(--yellow); color: var(--dark);
  box-shadow: 0 0 25px var(--yellow-glow);
  animation: pulseGlow 3s ease-in-out infinite;
}
.btn-primary::before {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: shimmer 2.5s infinite;
  z-index: 2;
}
.btn-primary span { position: relative; z-index: 3; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { transform: translateY(-3px) scale(1.03); }
.btn-primary .arrow { transition: transform 0.3s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(5px); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.05); border-color: var(--white); }
.btn-sm { padding: 10px 18px; font-size: 12px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }

/* ===== BADGE ===== */
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 208, 0, 0.08);
  border: 1px solid rgba(255, 208, 0, 0.3);
  padding: 8px 16px; border-radius: 100px;
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 600; color: var(--yellow);
  text-transform: uppercase; letter-spacing: 0.1em;
  backdrop-filter: blur(10px);
}
.badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: liveDot 1.5s infinite;
}
.badge-yellow {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
  box-shadow: 0 0 20px var(--yellow-glow);
}
.badge-purple {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
  color: var(--purple);
}
.badge-purple .dot { background: var(--purple); box-shadow: 0 0 8px var(--purple); }

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--dark); background: var(--yellow);
  padding: 6px 14px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 20px; font-weight: 700;
  box-shadow: 0 0 20px var(--yellow-glow);
}
.eyebrow::before {
  content: '✦';
  animation: spin 3s linear infinite;
  display: inline-block;
}

/* ===== SECTION ===== */
.section {
  padding: 100px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 16px;
}
.section-head h2 .highlight {
  color: var(--yellow);
  text-shadow: 0 0 30px var(--yellow-glow);
}
.section-head p {
  font-size: 1.05rem; color: var(--white-muted);
  line-height: 1.7;
}

/* Split text */
.split-text .char {
  display: inline-block; opacity: 0;
  transform: translateY(40px) rotateX(-90deg);
  transform-origin: bottom;
}
.split-text.in-view .char {
  animation: charReveal 0.7s var(--ease-out) forwards;
}
.split-text .char.space { width: 0.25em; }

/* ===== CENTRAL RING (used on multiple pages) ===== */
.ring-container {
  position: relative;
  width: min(520px, 60vw);
  aspect-ratio: 1 / 1;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 0.5s forwards;
}
.ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  animation: ringRotate 40s linear infinite;
}
.ring-svg-2 {
  position: absolute;
  inset: 6%;
  width: 88%;
  height: 88%;
  animation: ringCounterRotate 60s linear infinite;
}
.ring-segment {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0;
  animation: fadeIn 0.04s ease-out forwards;
}
.inner-ring-deco {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.inner-ring-deco.r1 { inset: 14%; }
.inner-ring-deco.r2 { inset: 22%; border-color: rgba(255, 208, 0, 0.1); }
.inner-ring-deco.r3 { inset: 30%; }
.dot-grid {
  position: absolute;
  inset: 38%;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: repeat(11, 1fr);
  gap: 2px;
  z-index: 2;
}
.dot {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 6px rgba(255, 208, 0, 0.5);
}
.dot.active { opacity: 1; transform: scale(1); }
.ring-label {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--white-muted);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  white-space: nowrap;
  text-align: center;
  z-index: 3;
  transition: opacity 0.3s ease;
}
.ring-label::before {
  content: '●'; color: var(--yellow); margin-right: 8px;
  font-size: 8px; vertical-align: middle;
}
.ring-title {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--white-soft);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  z-index: 3;
}

/* Orbiting text labels around the ring */
.ring-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}
/* ===== MARQUEE ===== */
.marquee {
  background: var(--yellow);
  overflow: hidden;
  padding: 18px 0;
  transform: rotate(-1.5deg);
  margin: 60px -30px;
  box-shadow: 0 20px 60px rgba(255, 208, 0, 0.3);
  position: relative;
  z-index: 1;
}
.marquee-inner {
  display: flex;
  gap: 40px;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}
.marquee-inner span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.marquee-inner span::after {
  content: '★';
  font-size: 0.7em;
  animation: spin 4s linear infinite;
  display: inline-block;
}

/* ===== PRODUCT CARD (used in shop, home) ===== */
.product-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 208, 0, 0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  opacity: 0;
  transform: translateY(40px);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card.in-view { opacity: 1; transform: translateY(0); }
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 208, 0, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 208, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 208, 0, 0.15);
}
.product-card:hover::before { opacity: 1; }
.product-visual {
  aspect-ratio: 16 / 10;
  background: var(--dark-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(10, 10, 15, 0.7) 100%);
  pointer-events: none;
}
.product-visual .pv-icon {
  width: 60%;
  height: 60%;
  position: relative;
  z-index: 1;
}
.product-body {
  padding: 24px;
  position: relative;
  z-index: 2;
}
.product-tag {
  display: inline-block;
  background: rgba(255, 208, 0, 0.1);
  color: var(--yellow);
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 208, 0, 0.2);
}
.product-tag.sub {
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple);
  border-color: rgba(139, 92, 246, 0.2);
}
.product-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.product-card p.desc {
  color: var(--white-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}
.product-price .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--yellow);
}
.product-price .unit {
  font-size: 12px;
  color: var(--white-soft);
  font-weight: 500;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.product-footer .view {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease);
}
.product-card:hover .product-footer .view { gap: 10px; }
.product-footer .cart-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 0 15px var(--yellow-glow);
}
.product-footer .cart-btn:hover {
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 0 25px var(--yellow-glow);
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 24px 32px;
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 208, 0, 0.15);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 20px, transparent 20px 40px);
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand h3 span { color: var(--yellow); }
.footer-brand p {
  color: var(--white-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
}
.footer-newsletter {
  margin-top: 20px;
  display: flex;
  gap: 0;
  background: var(--dark-3);
  border: 1px solid rgba(255, 208, 0, 0.2);
  border-radius: 100px;
  padding: 4px;
  max-width: 320px;
}
.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 16px;
  color: var(--white);
  font-size: 13px;
  font-family: inherit;
}
.footer-newsletter input::placeholder { color: var(--white-soft); }
.footer-newsletter button {
  background: var(--yellow);
  color: var(--dark);
  border: none;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.footer-newsletter button:hover { box-shadow: 0 0 20px var(--yellow-glow); }
.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--yellow);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 208, 0, 0.2);
  display: inline-block;
}
.footer-col a {
  display: block;
  color: var(--white-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: all 0.2s var(--ease);
}
.footer-col a:hover { transform: translateX(4px); color: var(--yellow); }
.footer-bottom {
  max-width: var(--max-width); margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--white-soft);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid rgba(255, 208, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  transition: all 0.3s var(--ease);
}
.footer-socials a:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--yellow-glow);
}

@media (max-width: 968px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===== UTILITIES ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

.card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.4s var(--ease);
}
.card:hover {
  border-color: rgba(255, 208, 0, 0.3);
  transform: translateY(-4px);
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--white-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 208, 0, 0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
