/* =============================================
   Forever Gold Capital – Black & Gold Theme
   ============================================= */

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

:root {
  --black:       #060402;
  --dark:        #0a0806;
  --dark2:       #0f0b07;
  --surface:     #161009;
  --surface2:    #1e160a;
  --gold:        #c9a84c;
  --gold-bright: #e8c55a;
  --gold-light:  #f5d98a;
  --gold-dim:    rgba(201,168,76,0.35);
  --gold-pale:   rgba(201,168,76,0.08);
  --white:       #f5f0e8;
  --gray:        #9a8a6a;
  --gray-light:  #c8b890;
  --border:      rgba(201,168,76,0.18);
  --card-bg:     rgba(201,168,76,0.05);
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 6px 40px rgba(0,0,0,0.7);
  --gold-glow:   0 0 30px rgba(201,168,76,0.3);
  --transition:  0.3s ease;
  --font:        -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn-gold {
  background: linear-gradient(135deg, #b8912e, var(--gold-bright));
  color: #0a0806;
  box-shadow: 0 4px 24px rgba(201,168,76,0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(201,168,76,0.6);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold-dim);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}

/* ---------- Section Titles ---------- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-sub {
  font-size: 1.02rem;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.75;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

.divider {
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  margin-bottom: 22px;
}
.text-center .divider { margin: 0 auto 22px; }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}
#header.scrolled {
  background: rgba(6,4,2,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.08);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4px;
  position: relative;
  z-index: 1;
}
.logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), transparent);
}
.logo-text { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.5px; }
.logo-text span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  position: relative;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: rgba(6,4,2,0.98);
  z-index: 1001;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.4rem; font-weight: 700;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  width: 220px; text-align: center;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

/* ============================================================
   HERO — ANIMATED RINGS
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 100% 90% at 50% 50%, #120e04 0%, #080502 50%, #060402 100%);
  text-align: center;
}

/* Circuit board SVG background */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Central radial glow */
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.06) 40%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1);   opacity: 1; }
  50%       { transform: translate(-50%,-50%) scale(1.3); opacity: 0.6; }
}

/* Rings container */
.hero-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  pointer-events: none;
}

.ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 160px; height: 160px;
  border: 2px solid rgba(201,168,76,0.9);
  box-shadow: 0 0 20px rgba(201,168,76,0.4), inset 0 0 20px rgba(201,168,76,0.1);
  animation: spin 18s linear infinite;
}
.ring-1::before, .ring-1::after {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  margin-left: -6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold-bright), 0 0 24px rgba(201,168,76,0.6);
}
.ring-1::after { top: auto; bottom: -6px; }

.ring-2 {
  width: 260px; height: 260px;
  border: 1.5px dashed rgba(201,168,76,0.45);
  animation: spinReverse 25s linear infinite;
}

.ring-3 {
  width: 380px; height: 380px;
  border: 1px solid rgba(201,168,76,0.25);
  animation: spin 35s linear infinite;
}
.ring-3::before {
  content: '';
  position: absolute;
  top: -5px; right: 80px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.ring-4 {
  width: 500px; height: 500px;
  border: 1px dotted rgba(201,168,76,0.18);
  animation: spinReverse 50s linear infinite;
}

.ring-5 {
  width: 650px; height: 650px;
  border: 0.5px solid rgba(201,168,76,0.1);
  animation: spin 70s linear infinite;
}

/* Decorative arc segments */
.ring-arc {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid transparent;
  border-top-color: rgba(201,168,76,0.6);
  border-right-color: rgba(201,168,76,0.3);
}
.ring-arc-1 {
  width: 220px; height: 220px;
  animation: spinReverse 8s linear infinite;
}
.ring-arc-2 {
  width: 430px; height: 430px;
  border-top-color: rgba(201,168,76,0.35);
  border-right-color: transparent;
  border-bottom-color: rgba(201,168,76,0.2);
  animation: spin 12s linear infinite;
}

@keyframes spin        { to { transform: translate(-50%,-50%) rotate(360deg);  } }
@keyframes spinReverse { to { transform: translate(-50%,-50%) rotate(-360deg); } }

/* Corner circuit lines */
.hero-circuit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.circuit-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
  height: 1px;
  animation: circuitSweep 6s ease-in-out infinite;
}
.circuit-line:nth-child(1) { width: 200px; top: 20%;  left: -10%; animation-delay: 0s; }
.circuit-line:nth-child(2) { width: 160px; top: 40%;  right: -5%; background: linear-gradient(270deg, transparent, rgba(201,168,76,0.2), transparent); animation-delay: 1.5s; }
.circuit-line:nth-child(3) { width: 140px; top: 65%;  left: -5%; animation-delay: 3s; }
.circuit-line:nth-child(4) { width: 120px; top: 80%;  right: -5%; background: linear-gradient(270deg, transparent, rgba(201,168,76,0.15), transparent); animation-delay: 4.5s; }

@keyframes circuitSweep {
  0%   { transform: translateX(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(300%); opacity: 0; }
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}
.particle:nth-child(1)  { left: 15%; top: 20%; animation-delay: 0s;   animation-duration: 7s; }
.particle:nth-child(2)  { left: 80%; top: 15%; animation-delay: 1s;   animation-duration: 9s; }
.particle:nth-child(3)  { left: 70%; top: 70%; animation-delay: 2s;   animation-duration: 6s; }
.particle:nth-child(4)  { left: 25%; top: 75%; animation-delay: 3s;   animation-duration: 8s; }
.particle:nth-child(5)  { left: 50%; top: 10%; animation-delay: 4s;   animation-duration: 7.5s; }
.particle:nth-child(6)  { left: 90%; top: 50%; animation-delay: 0.5s; animation-duration: 8s; }
.particle:nth-child(7)  { left: 10%; top: 50%; animation-delay: 2.5s; animation-duration: 6.5s; }
.particle:nth-child(8)  { left: 60%; top: 85%; animation-delay: 1.5s; animation-duration: 9s; }

@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  20%  { opacity: 0.8; }
  80%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-60px) scale(0.5); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 120px 20px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px var(--gold-bright);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--gold-bright); }
  50%     { opacity: 0.5; transform: scale(1.5); box-shadow: 0 0 16px var(--gold-bright); }
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero-title .gold-text {
  background: linear-gradient(90deg, #c9a84c, #f5d98a, #c9a84c);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--gray-light);
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.hero-sub strong { color: var(--gold); font-weight: 700; }

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.h-stat-num {
  font-size: 1.8rem; font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.h-stat-label { font-size: 0.78rem; color: var(--gray); margin-top: 4px; letter-spacing: 0.5px; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker-strip {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 13px 0;
}
.ticker-inner {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600;
}
.ticker-item .sym { color: var(--gold); }
.ticker-item .prc { color: var(--gray); }
.ticker-item .chg.up { color: #5eead4; }
.ticker-item .chg.dn { color: #f87171; }
.ticker-sep { color: var(--border); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
#about { padding: 100px 0; background: var(--dark); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-visual { position: relative; }

.about-box {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface), var(--dark));
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.about-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
}

.about-icon-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px;
  margin-bottom: 24px;
}
.aig-item {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 18px 10px; text-align: center;
  transition: var(--transition);
  cursor: default;
}
.aig-item:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.aig-item .icon { font-size: 1.8rem; margin-bottom: 7px; }
.aig-item .label { font-size: 0.7rem; font-weight: 600; color: var(--gray); }

.about-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.about-badge {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.76rem; font-weight: 600; color: var(--gold);
}

.check-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--gray-light); }
.check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; flex-shrink: 0; margin-top: 2px;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
#products { padding: 100px 0; background: var(--black); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.product-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), var(--gold-glow);
}

/* Product thumbnail — unique gold/black design per product */
.product-thumb {
  height: 170px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
/* Reusable gradient bases */
.pt-1 { background: linear-gradient(135deg, #0f0b04 0%, #1e1608 40%, #2a1f08 100%); }
.pt-2 { background: linear-gradient(135deg, #080a04 0%, #101808 40%, #182006 100%); }
.pt-3 { background: linear-gradient(135deg, #080406 0%, #15050c 40%, #200812 100%); }
.pt-4 { background: linear-gradient(135deg, #040a08 0%, #061808 40%, #0a2008 100%); }
.pt-5 { background: linear-gradient(135deg, #050810 0%, #081220 40%, #0a1830 100%); }
.pt-6 { background: linear-gradient(135deg, #100808 0%, #201008 40%, #301808 100%); }
.pt-7 { background: linear-gradient(135deg, #04080e 0%, #081018 40%, #0c1825 100%); }
.pt-8 { background: linear-gradient(135deg, #0a0804 0%, #181208 40%, #201808 100%); }
.pt-9 { background: linear-gradient(135deg, #080406 0%, #120810 40%, #1a0c18 100%); }

/* Gold shimmer overlay on thumb hover */
.product-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(201,168,76,0.06) 100%);
  pointer-events: none;
  transition: opacity var(--transition);
  opacity: 0;
}
.product-card:hover .product-thumb::after { opacity: 1; }

/* Product icon SVG wrapper */
.prod-icon-wrap {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.prod-icon-wrap svg {
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.5));
  transition: transform var(--transition);
}
.product-card:hover .prod-icon-wrap svg { transform: scale(1.1); }

/* Corner lines decoration */
.product-thumb .corner-tl, .product-thumb .corner-br {
  position: absolute;
  width: 24px; height: 24px;
  border-color: rgba(201,168,76,0.35);
  border-style: solid;
}
.corner-tl { top: 12px; left: 12px; border-width: 1.5px 0 0 1.5px; }
.corner-br { bottom: 12px; right: 12px; border-width: 0 1.5px 1.5px 0; }

.product-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }

.product-category {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 7px;
}
.product-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 9px; color: var(--white); }
.product-desc { font-size: 0.84rem; color: var(--gray); line-height: 1.65; flex: 1; margin-bottom: 18px; }

.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.product-tag {
  display: inline-flex; align-items: center;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.75rem; font-weight: 600; color: var(--gold-light);
}
.product-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--gold);
  transition: var(--transition); cursor: pointer;
}
.product-arrow:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ============================================================
   EVENTS
   ============================================================ */
#events { padding: 100px 0; background: var(--dark); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 56px;
}

.event-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--border);
}
.event-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.event-card:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }

.event-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  min-height: 240px;
}
.event-card:nth-child(1) img,
.event-card:nth-child(4) img { min-height: 300px; }

.event-card:hover img { transform: scale(1.04); }

.event-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,4,2,0.85) 0%, rgba(6,4,2,0.2) 60%, transparent 100%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.event-card:hover .event-overlay { opacity: 1; }

.event-overlay-text {
  color: var(--white);
}
.event-overlay-text .ev-title { font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.event-overlay-text .ev-loc   { font-size: 0.8rem; color: var(--gray-light); }

/* Placeholder for missing images */
.event-placeholder {
  width: 100%; min-height: 240px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  color: var(--gray);
  font-size: 0.85rem; gap: 10px;
}
.event-placeholder .ph-icon { font-size: 2.5rem; opacity: 0.4; }

/* ============================================================
   STATS
   ============================================================ */
#stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0b04, #1a1408);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-block {
  text-align: center; padding: 24px 20px;
  border-right: 1px solid var(--border);
}
.stat-block:last-child { border-right: none; }
.stat-block .big-num {
  font-size: clamp(2rem,5vw,2.8rem); font-weight: 900;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  line-height: 1;
}
.stat-block .big-label { font-size: 0.88rem; color: var(--gray); margin-top: 8px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { padding: 100px 0; background: var(--black); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px;
}
.testi-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
}
.testi-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote {
  font-size: 0.92rem; color: var(--gray-light); line-height: 1.75;
  margin-bottom: 22px; font-style: italic;
}
.testi-quote::before { content: '\201C'; font-size: 2.2rem; color: var(--gold); vertical-align: -10px; margin-right: 4px; font-style: normal; line-height: 0; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: var(--black);
  flex-shrink: 0;
  background: linear-gradient(135deg, #c9a84c, #f5d98a);
}
.testi-name  { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.testi-role  { font-size: 0.78rem; color: var(--gray); }

/* ============================================================
   CTA
   ============================================================ */
#cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0b04 0%, #0a0804 50%, #0f0b04 100%);
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
#cta::before {
  content: '';
  position: absolute; top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 680px; margin: 0 auto;
}
.cta-inner .section-title { font-size: clamp(2rem,4.5vw,3rem); margin-bottom: 18px; }
.cta-inner .section-sub   { margin: 0 auto 36px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; margin-top: 36px; flex-wrap: wrap;
}
.ct-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--gray); }
.ct-item .icon { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #030200;
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p {
  font-size: 0.88rem; color: var(--gray);
  line-height: 1.7; margin-bottom: 24px; max-width: 280px;
}
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--gray);
  cursor: pointer; transition: var(--transition);
  font-weight: 700;
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.86rem; color: var(--gray);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.83rem; color: var(--gray); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--gray); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   SCROLL TOP
   ============================================================ */
#scroll-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #b8912e, var(--gold-bright));
  color: var(--black); border: none; cursor: pointer;
  font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: var(--transition); opacity: 0; pointer-events: none; z-index: 500;
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover   { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(201,168,76,0.6); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid    { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid      { grid-template-columns: repeat(2,1fr); }
  .about-grid       { gap: 48px; }
  .events-grid      { grid-template-columns: repeat(2,1fr); }
  .event-card:nth-child(1),
  .event-card:nth-child(4) { grid-column: auto; grid-row: auto; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid          { grid-template-columns: 1fr; }
  .products-grid       { grid-template-columns: 1fr; }
  .events-grid         { grid-template-columns: 1fr; }
  .stats-grid          { grid-template-columns: repeat(2,1fr); }
  .stat-block          { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-block:nth-child(odd) { border-right: 1px solid var(--border); }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; }
  .footer-bottom       { flex-direction: column; text-align: center; }
  .hero-stats          { gap: 24px; }
  .hero-rings          { width: 400px; height: 400px; }
  .ring-4, .ring-5     { display: none; }
  .ring-arc-2          { display: none; }
}

@media (max-width: 480px) {
  .stats-grid   { grid-template-columns: 1fr; }
  .stat-block   { border-right: none; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .cta-buttons  { flex-direction: column; align-items: center; }
  .hero-rings   { width: 280px; height: 280px; }
  .ring-3, .ring-4, .ring-5, .ring-arc-2 { display: none; }
}
