/* ============ BASE ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0a0f;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
video { display: block; max-width: 100%; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.main { padding-bottom: 40px; }
.text-orange { color: #f97316; }
.hidden { display: none !important; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0a0a0f; }
::-webkit-scrollbar-thumb { background: #f97316; border-radius: 4px; }

/* ============ NAVBAR ============ */
.navbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(10,10,15,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: #f97316;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(249,115,22,0.3);
}
.logo-icon svg { width: 20px; height: 20px; color: white; stroke-width: 2.5; }
.logo-text { font-weight: 800; letter-spacing: 0.05em; font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  position: relative; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.85); transition: color 0.2s;
  padding-bottom: 4px; cursor: pointer;
}
.nav-link:hover { color: #f97316; }
.nav-link.active { color: #f97316; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -8px; left: 50%;
  transform: translateX(-50%); width: 24px; height: 2px;
  background: #f97316; border-radius: 2px;
}
@media (max-width: 900px) { .nav-links { display: none; } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; padding: 10px 20px;
  border-radius: 6px; border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: #f97316; color: white; box-shadow: 0 10px 25px rgba(249,115,22,0.25); }
.btn-primary:hover { background: #ea6a10; }
.btn-outline { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: white; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-ghost {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15);
  color: white; font-size: 13px; padding: 8px 16px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-ghost.xs { font-size: 12px; padding: 6px 12px; }

/* ============ SECTION ============ */
.section-card {
  background: linear-gradient(180deg, rgba(30,20,15,0.6) 0%, rgba(15,10,10,0.8) 100%);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: 20px;
}
.section-card.padded { padding: 32px; }
.section { margin-top: 40px; }
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.section-head.sm { margin-bottom: 20px; }
.section-head h2 { font-size: 32px; font-weight: 800; line-height: 1.2; }
.section-head.sm h2 { font-size: 26px; }

/* ============ HERO ============ */
.hero { position: relative; padding: 32px 0 40px; }
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 70% 40%, rgba(249,115,22,0.15) 0%, transparent 60%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.hero-title { font-size: clamp(40px, 6vw, 72px); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 24px; }
.hero-sub { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.6; margin-bottom: 24px; max-width: 420px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-btns .btn { padding: 14px 24px; }
.hero-right {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 16 / 11; border: 1px solid rgba(249,115,22,0.2);
  box-shadow: 0 25px 60px rgba(249,115,22,0.1);
  background: linear-gradient(135deg, #1e3a8a, #581c87);
}
.hero-right img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,58,138,0.4), transparent, rgba(88,28,135,0.4));
}
.hero-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.ht-1 { font-size: 36px; font-weight: 900; text-shadow: 0 4px 12px rgba(0,0,0,0.6); }
.ht-2 { font-size: 20px; font-weight: 700; color: #fb923c; margin-top: 4px; }
.ht-3 { font-size: 12px; color: rgba(255,255,255,0.9); margin-top: 6px; letter-spacing: 0.2em; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .ht-1 { font-size: 24px; } .ht-2 { font-size: 16px; } }

/* ============ STATS ============ */
.stats { margin-top: 32px; padding: 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { display: flex; align-items: center; gap: 12px; }
.stat-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-icon svg { width: 20px; height: 20px; color: #fb923c; }
.stat-num { font-size: 22px; font-weight: 800; color: #fb923c; }
.stat-lbl { font-size: 12px; color: rgba(255,255,255,0.6); }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ============ ARROW & HSCROLL ============ */
.slider-wrap { position: relative; }
.arrow-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.8); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}
.arrow-btn svg { width: 20px; height: 20px; color: white; }
.arrow-btn:hover { background: #f97316; border-color: #f97316; transform: translateY(-50%) scale(1.08); }
.arrow-btn.arrow-left { left: -12px; }
.arrow-btn.arrow-right { right: -12px; }
.arrow-btn.sm { width: 32px; height: 32px; }
.arrow-btn.sm svg { width: 16px; height: 16px; }
.arrow-btn.sm.arrow-left { left: -8px; }
.arrow-btn.sm.arrow-right { right: -8px; }
.hscroll { display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth; padding-bottom: 8px; -ms-overflow-style: none; scrollbar-width: none; }
.hscroll::-webkit-scrollbar { display: none; }

/* ============ EVENT CARDS ============ */
.event-card {
  flex-shrink: 0; width: calc(25% - 12px); min-width: 260px;
  border-radius: 12px; overflow: hidden;
  background: #141018; border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(249,115,22,0.2); border-color: rgba(249,115,22,0.4); }
.event-thumb { position: relative; height: 170px; overflow: hidden; }
.event-thumb img { width: 100%; height: 100%; object-fit: cover; }
.event-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2), transparent); }
.event-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(0,0,0,0.7); border: 1px solid rgba(255,255,255,0.15);
}
.event-title { position: absolute; bottom: 12px; left: 12px; right: 12px; font-weight: 700; font-size: 14px; line-height: 1.2; }
.event-body { padding: 16px; }
.event-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.event-meta svg { width: 14px; height: 14px; color: #fb923c; }
.event-btn {
  width: 100%; margin-top: 10px;
  background: transparent; border: 1px solid rgba(249,115,22,0.6); color: #fb923c;
  font-size: 12px; font-weight: 600; padding: 10px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s;
}
.event-btn:hover { background: #f97316; border-color: #f97316; color: white; }
.event-btn svg { width: 14px; height: 14px; }

/* ============ WHAT WE DO ============ */
.wwd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.wwd-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.wwd-title { font-size: 26px; font-weight: 700; line-height: 1.3; margin-bottom: 24px; }
.wwd-list { display: flex; flex-direction: column; gap: 16px; }
.wwd-item { display: flex; gap: 12px; }
.wwd-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wwd-icon svg { width: 16px; height: 16px; color: #fb923c; }
.wwd-txt { font-size: 14px; line-height: 1.4; }
.wwd-txt b { color: white; }
.wwd-txt span { color: rgba(255,255,255,0.6); }
.wwd-video { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 3; background: #0f0c14; }
.wwd-video video { width: 100%; height: 100%; object-fit: cover; }
.wwd-video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); pointer-events: none; }
.play-btn {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: #f97316; display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s; z-index: 2;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.play-btn svg { width: 28px; height: 28px; color: white; fill: white; margin-left: 3px; }
.play-btn.hidden { display: none; }
.wwd-watch { position: absolute; bottom: 24px; right: 24px; font-weight: 600; font-size: 18px; z-index: 2; pointer-events: none; }
.pulse-ring { animation: pulse-ring 2s infinite; }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(249,115,22,0.6); }
  70% { box-shadow: 0 0 0 20px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}
@media (max-width: 900px) { .wwd-grid { grid-template-columns: 1fr; } }

/* ============ TWO COL ============ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* ============ STARTUPS ============ */
.startup-card {
  flex-shrink: 0; width: calc(20% - 12px); min-width: 130px;
  background: #141018; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 16px; text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.startup-card:hover { transform: translateY(-4px); border-color: rgba(249,115,22,0.5); }
.startup-logo {
  width: 56px; height: 56px; border-radius: 14px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 900; color: white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.startup-name { margin-top: 12px; font-weight: 600; font-size: 14px; }
.startup-tag { font-size: 10px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.startup-loc { display: flex; align-items: center; justify-content: center; gap: 4px; font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 8px; }
.startup-loc svg { width: 12px; height: 12px; color: #fb923c; }

/* ============ PODCASTS ============ */
.podcast-card {
  flex-shrink: 0; width: calc(25% - 12px); min-width: 130px;
  border-radius: 12px; overflow: hidden;
  background: #141018; border: 1px solid rgba(255,255,255,0.1);
  position: relative; aspect-ratio: 3 / 4; cursor: pointer;
}
.podcast-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.podcast-card:hover img { transform: scale(1.05); }
.podcast-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.3), transparent); }
.podcast-duration { position: absolute; top: 8px; right: 8px; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 4px; background: rgba(0,0,0,0.7); color: #fb923c; }
.podcast-play { position: absolute; top: 8px; left: 8px; width: 28px; height: 28px; border-radius: 50%; background: rgba(249,115,22,0.9); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; }
.podcast-card:hover .podcast-play { opacity: 1; }
.podcast-play svg { width: 12px; height: 12px; fill: white; color: white; margin-left: 2px; }
.podcast-info { position: absolute; bottom: 8px; left: 8px; right: 8px; }
.podcast-name { font-size: 12px; font-weight: 600; line-height: 1.2; }
.podcast-title { font-size: 10px; color: #fb923c; margin-top: 2px; }

/* ============ MEMBERSHIP PLANS ============ */
.toggle-wrap { display: inline-flex; align-items: center; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); border-radius: 999px; padding: 4px; gap: 4px; }
.toggle { padding: 6px 16px; font-size: 12px; font-weight: 600; border-radius: 999px; color: rgba(255,255,255,0.7); transition: background 0.2s, color 0.2s; }
.toggle.active { background: white; color: black; }
.save-badge { margin-left: 4px; padding: 4px 10px; font-size: 10px; font-weight: 700; border-radius: 999px; background: #f97316; color: white; }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1100px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .plans-grid { grid-template-columns: 1fr; } }
.plan { background: #0f0c14; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; transition: border-color 0.3s; }
.plan:hover { border-color: rgba(249,115,22,0.4); }
.plan-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.plan-icon svg { width: 20px; height: 20px; }
.plan-icon.cyan { background: rgba(6,182,212,0.2); color: #22d3ee; }
.plan-icon.orange { background: rgba(249,115,22,0.2); color: #fb923c; }
.plan-icon.purple { background: rgba(168,85,247,0.2); color: #c084fc; }
.plan-icon.teal { background: rgba(20,184,166,0.2); color: #2dd4bf; }
.plan-name { font-weight: 700; font-size: 16px; margin-bottom: 12px; line-height: 1.2; }
.plan-price { font-size: 26px; font-weight: 800; }
.plan-price.cyan { color: #22d3ee; }
.plan-price.orange { color: #fb923c; }
.plan-price.purple { color: #c084fc; }
.plan-price.teal { color: #2dd4bf; }
.plan-price small { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.6); margin-left: 4px; }
.plan-alt { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.plan-tag { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 12px; font-weight: 600; }
.plan-perks { margin-top: 12px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.plan-perk { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.8); }
.plan-perk svg { width: 14px; height: 14px; color: #4ade80; flex-shrink: 0; margin-top: 2px; }
.plan-btn { margin-top: 20px; width: 100%; color: white; font-size: 14px; font-weight: 600; padding: 10px; border-radius: 6px; transition: opacity 0.2s; }
.plan-btn:hover { opacity: 0.9; }
.plan-btn.cyan { background: #06b6d4; }
.plan-btn.orange { background: #f97316; }
.plan-btn.purple { background: #a855f7; }
.plan-btn.teal { background: #14b8a6; }
.hide-monthly-only .monthly-price, .hide-yearly-only .yearly-price { display: none; }

/* ============ REELS GALLERY (Auto slide) ============ */
.reels-section { position: relative; overflow: hidden; }
.reels-wrap { position: relative; padding: 32px 60px; }
.reel-arrow { z-index: 30; }
#reel-prev { left: 0; }
#reel-next { right: 0; }
.reel-arrow { width: 40px; height: 40px; }

.reels-viewport {
  overflow: hidden;
  width: 100%;
}
.reels-track {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  padding: 40px 0;
}
.reel-item {
  position: relative;
  flex-shrink: 0;
  width: 115px;
  aspect-ratio: 7 / 14;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  filter: brightness(0.75);
  transition:
    transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
    opacity 0.5s ease,
    box-shadow 0.5s ease,
    filter 0.5s ease;
}
.reel-item img { width: 100%; height: 100%; object-fit: cover; }
.reel-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.1), rgba(0,0,0,0.2)); }
.reel-ig {
  position: absolute; top: 8px; right: 8px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
}
.reel-ig svg { width: 10px; height: 10px; color: white; }
.reel-views { position: absolute; bottom: 8px; left: 8px; display: flex; align-items: center; gap: 6px; color: white; font-size: 12px; font-weight: 600; }
.reel-play { width: 20px; height: 20px; border-radius: 50%; background: #f97316; display: flex; align-items: center; justify-content: center; }
.reel-play svg { width: 10px; height: 10px; fill: white; color: white; margin-left: 1px; }

.reel-item.near { opacity: 0.85; filter: brightness(0.95); }
.reel-item.active {
  opacity: 1;
  filter: brightness(1.1);
  transform: scale(1.3) translateY(-6px);
  z-index: 10;
  box-shadow:
    0 0 60px rgba(249, 115, 22, 0.6),
    0 0 30px rgba(249, 115, 22, 0.4),
    inset 0 0 0 2px rgba(249, 115, 22, 0.8);
}

.reels-dots { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }
.reels-dots .dot { width: 6px; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.25); transition: all 0.4s ease; cursor: pointer; }
.reels-dots .dot:hover { background: rgba(255,255,255,0.4); }
.reels-dots .dot.active { width: 24px; background: #f97316; }
.glow-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent 0%, rgba(249,115,22,0.7) 50%, transparent 100%); filter: blur(2px); pointer-events: none; }

/* ============ MEDIA GALLERY (Auto slide - Portrait) ============ */
.media-section-wrap { position: relative; padding: 0 40px; }
.media-arrow { width: 36px; height: 36px; z-index: 20; }
#media-prev { left: -8px; }
#media-next { right: -8px; }

.media-viewport {
  overflow: hidden;
  width: 100%;
}
.media-track {
  display: flex;
  gap: 12px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.media-track.no-transition { transition: none !important; }
.media-item {
  position: relative;
  flex-shrink: 0;
  width: calc((100% - 72px) / 6); /* 7 items visible, 6 gaps of 12px = 72px */
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.media-item img { width: 100%; height: 100%; object-fit: cover; }
.media-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.media-item:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 15px 40px rgba(249,115,22,0.35); z-index: 5; }
.media-item:hover::after { opacity: 1; }
.media-max { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; border-radius: 50%; background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; z-index: 2; }
.media-item:hover .media-max { opacity: 1; }
.media-max svg { width: 14px; height: 14px; color: white; }

@media (max-width: 1024px) { .media-item { width: calc((100% - 48px) / 5); } }
@media (max-width: 640px)  { .media-item { width: calc((100% - 24px) / 3); } }

/* ============ BANNER ============ */
.banner { padding: 20px 24px; display: flex; align-items: center; gap: 24px; justify-content: space-between; flex-wrap: wrap; }
.banner-left { display: flex; align-items: center; gap: 16px; }
.banner-icon { width: 44px; height: 44px; border-radius: 50%; background: #f97316; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(249,115,22,0.3); flex-shrink: 0; }
.banner-icon svg { width: 20px; height: 20px; color: white; stroke-width: 2.5; }
.banner-title { font-weight: 700; font-size: 17px; }
.banner-sub { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.banner-stats { display: flex; gap: 32px; }
.bs-num { font-size: 22px; font-weight: 800; color: #fb923c; text-align: center; }
.bs-lbl { font-size: 11px; color: rgba(255,255,255,0.6); text-align: center; }

/* ============ FOOTER ============ */
.footer { margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); background: #080609; padding: 40px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr; gap: 32px; }
.footer-desc { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-top: 12px; }
.footer h4 { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { font-size: 12px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer ul a:hover { color: #fb923c; }
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; }
.socials a:hover { background: #f97316; border-color: #f97316; }
.socials svg { width: 14px; height: 14px; }
.newsletter { display: flex; gap: 8px; }
.newsletter input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 8px 12px; color: white; font-size: 12px; outline: none; transition: border-color 0.2s; }
.newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter input:focus { border-color: #f97316; }
.newsletter button { width: 36px; height: 36px; border-radius: 6px; background: #f97316; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.newsletter button:hover { background: #ea6a10; }
.newsletter svg { width: 16px; height: 16px; color: white; }
.copyright { text-align: center; font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============ LIGHTBOX ============ */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.95); display: flex; align-items: center; justify-content: center; padding: 24px; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.7); }
.lb-close, .lb-nav { position: absolute; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,0.2); }
.lb-close { top: 24px; right: 24px; }
.lb-nav svg, .lb-close svg { width: 24px; height: 24px; color: white; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }