/* ═══════════════════════════════════════════════════════════
   ISAY — css/style.css  (index page)
   Theme: Dark Indigo / Deep Space  — sama persis dengan main.css
   Fonts: Syne (display/judul) + DM Sans (body)
═══════════════════════════════════════════════════════════ */

/* ─── Variables (identik dengan main.css) ───────────────── */
:root {
  --bg-base:        #0e0c1e;
  --bg-surface:     #13112a;
  --bg-card:        #1a1635;
  --bg-card-hover:  #201c42;

  --indigo-900:     #1a1248;
  --indigo-700:     #2d2480;
  --indigo-500:     #4b3fc0;
  --indigo-400:     #6b5fe8;
  --indigo-300:     #9585f0;

  --accent-violet:  #a78bfa;
  --accent-pink:    #f472b6;
  --accent-gold:    #fbbf24;
  --accent-teal:    #34d399;
  --accent-blue:    #60a5fa;

  --text-primary:   #f1eeff;
  --text-secondary: #b0a9d8;
  --text-muted:     #6b6490;

  --border:         rgba(255, 255, 255, 0.07);
  --border-bright:  rgba(167, 139, 250, 0.25);

  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;

  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.1;
  font-weight: 800;
}

p { color: var(--text-secondary); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── Layout helpers ────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-violet);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.section-title em { font-style: normal; color: var(--accent-violet); }

.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR  (style diambil/override dari component)
   Pastikan navbar.html menggunakan CSS variables di sini
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.25rem 3.75rem;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(14, 12, 30, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo { justify-self: start; }
.logo img { height: 40px; width: auto; }

.nav-menu {
  display: flex;
  gap: 2rem;
  justify-self: center;
}

.nav-menu a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-secondary);
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--text-primary); }

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-violet);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  justify-self: end;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .navbar { padding: 1.25rem 1.5rem; }
  .hamburger { display: flex; }
  .nav-menu {
    position: absolute;
    top: 70px; right: 1.5rem;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(26, 22, 53, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    display: none;
  }
  .nav-menu.active { display: flex; }
  .logo img { height: 28px; }
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 0 6rem 4rem;
  gap: 4rem;
  background: linear-gradient(135deg, #0e0c1e 0%, #120f30 45%, #1e1660 100%);
  color: var(--text-primary);
  overflow: hidden;
  position: relative;
}

/* orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(75,63,192,0.28) 0%, transparent 70%);
  top: -200px; left: -180px;
}
.hero-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(167,139,250,0.15) 0%, transparent 70%);
  bottom: -80px; right: 8%;
}

/* LEFT */
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-violet);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.85;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--accent-violet);
  opacity: 0.5;
}

.hero-left h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.hero-left h1 em {
  font-style: normal;
  color: var(--accent-violet);
}

.btn-lihat {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.85rem 1.75rem;
  border-radius: 99px;
  border: 1px solid var(--border-bright);
  background: rgba(75, 63, 192, 0.2);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.btn-lihat:hover {
  background: rgba(75, 63, 192, 0.45);
  border-color: rgba(167, 139, 250, 0.6);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(75,63,192,0.3);
}
.btn-lihat svg { transition: transform 0.2s; }
.btn-lihat:hover svg { transform: translateX(4px); }

/* RIGHT / SLIDER */
.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.video-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 480px;
}

.video-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.video-card video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.video-card.active {
  width: 200px; height: 340px;
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 3;
  pointer-events: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  border: 1px solid var(--border-bright);
}
.video-card.prev {
  width: 150px; height: 260px;
  opacity: 0.45;
  transform: translateX(-185px) scale(0.88);
  z-index: 2; pointer-events: auto; filter: blur(2px);
}
.video-card.next {
  width: 150px; height: 260px;
  opacity: 0.45;
  transform: translateX(185px) scale(0.88);
  z-index: 2; pointer-events: auto; filter: blur(2px);
}
.video-card.prev-2 {
  width: 115px; height: 200px;
  opacity: 0.18;
  transform: translateX(-305px) scale(0.73);
  z-index: 1; pointer-events: auto; filter: blur(5px);
}
.video-card.next-2 {
  width: 115px; height: 200px;
  opacity: 0.18;
  transform: translateX(305px) scale(0.73);
  z-index: 1; pointer-events: auto; filter: blur(5px);
}

/* DOTS */
.slider-dots { display: flex; gap: 6px; align-items: center; justify-content: center; }
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 99px;
  background: rgba(167,139,250,0.3);
  border: none; cursor: pointer; padding: 0;
  transition: width 0.3s, background 0.3s;
}
.slider-dot.active { width: 20px; background: var(--accent-violet); }

/* ═══════════════════════════════════════════════════════════
   JOURNEY / TIMELINE
═══════════════════════════════════════════════════════════ */
.journey {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.journey-bg {
  position: absolute;
  inset: 0;
  background: url("/assets/bgjourney.jpg") center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}
.journey::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,12,30,0.92), rgba(75,63,192,0.35));
  z-index: 0;
}

.journey .container { position: relative; z-index: 1; }

.journey .section-title { margin-bottom: 3.5rem; }

/* Timeline — sama persis dengan main.css */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 1rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-bright) 10%, var(--border-bright) 90%, transparent);
  transform: translateX(-50%);
}

.timeline__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  transition: var(--transition-slow);
}
.timeline__item.visible { opacity: 1; }

.timeline__item--left  { flex-direction: row;         transform: translateX(-30px); }
.timeline__item--right { flex-direction: row-reverse;  transform: translateX(30px);  }
.timeline__item--left.visible,
.timeline__item--right.visible { transform: none; }

.timeline__dot {
  position: absolute;
  left: 50%; top: 1.2rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--indigo-500);
  border: 2px solid var(--bg-base);
  transform: translateX(-50%);
  z-index: 1;
}
.timeline__dot--active {
  width: 18px; height: 18px;
  background: var(--accent-violet);
  box-shadow: 0 0 0 4px rgba(167,139,250,0.2), 0 0 20px rgba(167,139,250,0.5);
}

.timeline__card {
  width: calc(50% - 3rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  position: relative;
  transition: var(--transition);
}
.timeline__item--left  .timeline__card { margin-left: auto; margin-right: 3rem; }
.timeline__item--right .timeline__card { margin-right: auto; margin-left: 3rem; }

.timeline__card:hover {
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}
.timeline__card--active {
  border-color: rgba(167,139,250,0.4);
  background: linear-gradient(135deg, rgba(75,63,192,0.15), var(--bg-card));
}

.timeline__year {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-violet);
  margin-bottom: 0.5rem;
}
.timeline__card h3 { font-size: 1.05rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.timeline__card p  { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }

/* Video hotspot */
.video-hotspot {
  position: absolute;
  top: -12px; right: -12px;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #e11d48, #f43f5e);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  animation: pulse 1.8s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(225,29,72,0.4);
}
.video-hotspot svg { width: 16px; height: 16px; fill: white; margin-left: 2px; }

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(225,29,72,0.4); }
  50%       { transform: scale(1.15); box-shadow: 0 4px 24px rgba(225,29,72,0.65); }
}

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center; align-items: center;
  z-index: 2000;
}
.lightbox-content {
  position: relative;
  width: 80%; max-width: 640px;
}
.lightbox video {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.close-lightbox {
  position: absolute;
  top: -40px; right: 0;
  font-size: 2rem; line-height: 1;
  background: none; border: none;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}
.close-lightbox:hover { color: var(--accent-violet); }

/* Mobile timeline */
@media (max-width: 768px) {
  .timeline::before { left: 1.25rem; }
  .timeline__item,
  .timeline__item--left,
  .timeline__item--right { flex-direction: column; padding-left: 3.5rem; transform: none; }
  .timeline__dot { left: 1.25rem; }
  .timeline__card,
  .timeline__item--left  .timeline__card,
  .timeline__item--right .timeline__card { width: 100%; margin: 0; }
}

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════════════════════ */
.portfolio {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--bg-base), var(--bg-surface) 10%, var(--bg-surface) 90%, var(--bg-base));
}

.portfolio .section-title { margin-bottom: 2rem; }

.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.portfolio-filter button {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.portfolio-filter button:hover {
  border-color: var(--border-bright);
  color: var(--text-primary);
}
.portfolio-filter button.active {
  background: linear-gradient(135deg, var(--indigo-500), var(--indigo-400));
  border-color: transparent;
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.portfolio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-slow);
}
.portfolio-item.visible { opacity: 1; transform: none; }

.image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-card);
}
.image-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.portfolio-item:hover .image-wrapper img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,12,30,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-violet);
}

.overlay-tools {
  position: absolute;
  bottom: 0.75rem; right: 0.75rem;
  z-index: 2;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .overlay-tools { opacity: 1; }

.invert-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  background: rgba(14,12,30,0.8);
  color: var(--text-primary);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.invert-btn:hover { background: var(--indigo-500); border-color: transparent; }

@media (max-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .portfolio-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   MULTIMEDIA
═══════════════════════════════════════════════════════════ */
.multimedia {
  padding: 7rem 0;
  background: var(--bg-base);
}

.multimedia .section-title { margin-bottom: 0.25rem; }

.video-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.video-tabs button {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}
.video-tabs button:hover { color: var(--text-primary); border-color: var(--border-bright); }
.video-tabs button.active {
  background: linear-gradient(135deg, var(--indigo-500), var(--indigo-400));
  border-color: transparent;
  color: #fff;
}

.video-group { display: none; gap: 1.25rem; flex-wrap: wrap; }
.video-group.active { display: flex; }

.vid-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 260px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(16px);
}
.vid-card.visible { opacity: 1; transform: none; }
.vid-card:hover { border-color: var(--border-bright); transform: translateY(-4px); }
.vid-card iframe { width: 100%; height: 100%; border: none; display: block; }

@media (max-width: 1024px) { .vid-card { flex: 0 0 calc(50% - 1rem); } }
@media (max-width: 768px) {
  .video-group.active {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.75rem;
  }
  .vid-card { flex: 0 0 80vw; scroll-snap-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   SOCIAL PROOF
═══════════════════════════════════════════════════════════ */
.social-proof {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--bg-base), var(--bg-surface));
}

.instagram-profile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 520px;
}
.instagram-profile img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-bright);
}
.ig-info { flex: 1; }
.ig-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.ig-info p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

.follow-btn {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 1.25rem;
  background: linear-gradient(135deg, var(--indigo-500), var(--indigo-400));
  color: #fff;
  border-radius: 99px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(75,63,192,0.35);
}
.follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(75,63,192,0.5);
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}
.insta-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-card);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition-slow);
  border: 1px solid var(--border);
}
.insta-card.visible { opacity: 1; transform: none; }
.insta-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.insta-card:hover img { transform: scale(1.08); }
.insta-card:hover { border-color: var(--border-bright); }

@media (max-width: 1024px) { .instagram-feed { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px)  { .instagram-feed { grid-template-columns: repeat(2,1fr); } }

/* ═══════════════════════════════════════════════════════════
   FOOTER  (style diambil/override dari component)
═══════════════════════════════════════════════════════════ */
.footer {
  background: #05040f;
  color: var(--text-secondary);
  padding: 5rem 2rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.footer h3, .footer h4 {
  font-family: 'Syne', sans-serif;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.footer p { font-size: 0.88rem; line-height: 1.7; color: var(--text-muted); }
.social-links { display: flex; flex-direction: column; gap: 0.5rem; }
.social-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.social-links a:hover { color: var(--accent-violet); }
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-container { flex-direction: column; text-align: center; }
  .social-links { align-items: center; }
}

/* ═══════════════════════════════════════════════════════════
   HERO RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { padding: 6rem 3rem 4rem; gap: 2rem; }
  .hero-left h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); }
  .video-card.active  { width: 170px; height: 290px; }
  .video-card.prev, .video-card.next { width: 125px; height: 215px; }
  .video-card.prev  { transform: translateX(-155px) scale(0.85); }
  .video-card.next  { transform: translateX(155px)  scale(0.85); }
  .video-card.prev-2 { transform: translateX(-255px) scale(0.7); }
  .video-card.next-2 { transform: translateX(255px)  scale(0.7); }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: 100svh;
    padding: 5.5rem 1.75rem 2.5rem;
    gap: 2rem;
    align-items: center;
  }
  .hero-left { align-items: center; text-align: center; width: 100%; gap: 1.25rem; }
  .hero-eyebrow { justify-content: center; }
  .hero-right { width: 100%; }
  .video-slider { height: 320px; }
  .video-card.active { width: 140px; height: 240px; }
  .video-card.prev, .video-card.next { width: 105px; height: 180px; filter: blur(3px); }
  .video-card.prev  { transform: translateX(-130px) scale(0.85); }
  .video-card.next  { transform: translateX(130px)  scale(0.85); }
  .video-card.prev-2, .video-card.next-2 { opacity: 0; pointer-events: none; }
}

@media (max-width: 480px) {
  .hero { padding: 5rem 1.25rem 2rem; }
  .hero-left h1 { font-size: clamp(2rem, 9vw, 2.5rem); }
  .video-slider { height: 280px; }
  .video-card.active { width: 120px; height: 210px; }
  .video-card.prev, .video-card.next { width: 90px; height: 158px; }
  .video-card.prev { transform: translateX(-110px) scale(0.83); }
  .video-card.next { transform: translateX(110px)  scale(0.83); }
}