@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Amoria';
  src: url('../fonts/AMORIA.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --red: #730c1e;
  --red-dark: #480415;
  --red-glow: #9b1228;
  --red-bright: #c41632;
  --black: #000000;
  --black-card: #0a0a0a;
  --black-elevated: #111111;
  --gray-900: #0f0f0f;
  --gray-800: #1a1a1a;
  --gray-700: #2a2a2a;
  --gray-600: #444;
  --gray-500: #666;
  --gray-400: #999;
  --gray-300: #ccc;
  --gray-100: #e8e8e8;
  --white: #f5f5f5;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Rajdhani', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--gray-300);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ========== GRAIN ========== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red-dark); }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease);
  background: transparent;
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(115, 12, 30, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--red);
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-logo-text span { color: var(--red-bright); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color 0.3s var(--ease);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background: var(--red-bright);
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: translateX(-50%) scaleX(1); }

.nav-cta {
  padding: 0.5rem 1.2rem !important;
  background: var(--white) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  margin-left: 0.5rem;
  transition: all 0.3s var(--ease) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--red-bright) !important;
  color: white !important;
  transform: scale(1.05);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO — SPLIT SCREEN ========== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 4rem 5vw;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--red);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: block;
  transform: translateY(110%);
  animation: slideUp 0.8s var(--ease-out) forwards;
}

.hero-title .line:nth-child(2) span { animation-delay: 0.1s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.2s; }

.hero-title .highlight {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes slideUp {
  to { transform: translateY(0); }
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-numbers {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
}

.hero-number {
  display: flex;
  flex-direction: column;
}

.hero-number-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-number-label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.3rem;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroSlideFade 24s linear infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 4s; }
.hero-slide:nth-child(3) { animation-delay: 8s; }
.hero-slide:nth-child(4) { animation-delay: 12s; }
.hero-slide:nth-child(5) { animation-delay: 16s; }
.hero-slide:nth-child(6) { animation-delay: 20s; }

@keyframes heroSlideFade {
  0% { opacity: 0; }
  6% { opacity: 1; }
  20% { opacity: 1; }
  26% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-right-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--black) 0%, transparent 30%),
    linear-gradient(0deg, var(--black) 0%, transparent 20%);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 30px rgba(115, 12, 30, 0.3);
}

.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(115, 12, 30, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ========== MARQUEE ========== */
.marquee {
  overflow: hidden;
  padding: 1.2rem 0;
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
}

.marquee-inner {
  display: flex;
  gap: 4rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray-700);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.marquee-item .dot { color: var(--red); margin: 0 0.5rem; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== SECTIONS ========== */
.section {
  padding: 8rem 5vw;
  max-width: 1400px;
  margin: 0 auto;
}

.section-wide {
  padding: 8rem 0;
  max-width: 100%;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--red);
}

.section-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  color: var(--gray-800);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  user-select: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 500px;
  line-height: 1.8;
}

/* ========== BENTO GRID ========== */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.bento-item {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s var(--ease);
}

.bento-item:hover {
  border-color: rgba(115, 12, 30, 0.3);
  transform: translateY(-4px);
}

.bento-item.span-8 { grid-column: span 8; }
.bento-item.span-4 { grid-column: span 4; }
.bento-item.span-6 { grid-column: span 6; }
.bento-item.span-5 { grid-column: span 5; }
.bento-item.span-7 { grid-column: span 7; }
.bento-item.span-12 { grid-column: span 12; }

.bento-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  position: relative;
  z-index: 2;
}

.bento-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.bento-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 350px;
}

.bento-content .price-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0.4rem 1rem;
  background: rgba(115, 12, 30, 0.15);
  border: 1px solid rgba(115, 12, 30, 0.2);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red-bright);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.bento-img {
  position: absolute;
  inset: 0;
}

.bento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.bento-item:hover .bento-img img { transform: scale(1.05); }

.bento-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.6) 100%);
}

/* ========== HORIZONTAL SCROLL GALLERY ========== */
.hscroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 5vw 2rem;
  scrollbar-width: none;
}

.hscroll::-webkit-scrollbar { display: none; }

.hscroll-item {
  flex: 0 0 auto;
  width: 500px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-800);
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.hscroll-item:hover {
  border-color: rgba(115, 12, 30, 0.3);
  transform: translateY(-4px);
}

.hscroll-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.hscroll-item:hover img { transform: scale(1.05); }

.hscroll-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
}

.hscroll-item:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.hscroll-item .overlay span {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hscroll-arrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 5vw;
  margin-top: 1.5rem;
}

.hscroll-arrow button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-700);
  background: var(--gray-900);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.hscroll-arrow button:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ========== EDITORIAL SPLIT ========== */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
  padding: 8rem 5vw;
}

.editorial.reversed { direction: rtl; }
.editorial.reversed > * { direction: ltr; }

.editorial-text .big-number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  color: var(--gray-800);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.editorial-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.editorial-text p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 450px;
  margin-bottom: 1.5rem;
}

.editorial-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-800);
}

.editorial-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ========== DIAGONAL SECTION ========== */
.diagonal-section {
  position: relative;
  padding: 10rem 5vw;
  overflow: hidden;
}

.diagonal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  right: -5%;
  height: 100%;
  background: var(--gray-900);
  transform: skewY(-3deg);
  transform-origin: top left;
  z-index: 0;
}

.diagonal-section > * {
  position: relative;
  z-index: 1;
}

/* ========== GALLERY GRID ========== */
.gallery {
  display: grid;
  gap: 1rem;
  padding: 0 5vw;
}

.gallery.cols-2 { grid-template-columns: repeat(2, 1fr); }
.gallery.cols-3 { grid-template-columns: repeat(3, 1fr); }
.gallery.cols-4 { grid-template-columns: repeat(4, 1fr); }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--gray-800);
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.gallery-item:hover {
  border-color: rgba(115, 12, 30, 0.3);
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item.overlay-visible .gallery-overlay { opacity: 1; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

.gallery-item.square img { aspect-ratio: 1/1; }

/* Masonry */
.gallery.masonry {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 8px;
}

.gallery.masonry .gallery-item:nth-child(1) { grid-row: span 50; }
.gallery.masonry .gallery-item:nth-child(2) { grid-row: span 40; }
.gallery.masonry .gallery-item:nth-child(3) { grid-row: span 55; }
.gallery.masonry .gallery-item:nth-child(4) { grid-row: span 45; }
.gallery.masonry .gallery-item:nth-child(5) { grid-row: span 50; }
.gallery.masonry .gallery-item:nth-child(6) { grid-row: span 42; }
.gallery.masonry .gallery-item:nth-child(7) { grid-row: span 48; }
.gallery.masonry .gallery-item:nth-child(8) { grid-row: span 44; }
.gallery.masonry .gallery-item:nth-child(9) { grid-row: span 52; }

.gallery.masonry .gallery-item img {
  height: 100%;
}

/* ========== PRICING ========== */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
}

.pricing-layout.full {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
}

.pricing-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: rgba(115, 12, 30, 0.4);
  background: linear-gradient(180deg, rgba(115, 12, 30, 0.08) 0%, var(--gray-900) 100%);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: var(--red-bright);
  border-radius: 0 0 2px 2px;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(115, 12, 30, 0.3);
}

.pricing-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--red);
  color: white;
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-bottom: 1rem;
  width: fit-content;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.pricing-price span {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 400;
}

.pricing-features {
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-features li {
  padding: 0.6rem 0;
  font-size: 0.85rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--gray-800);
}

.pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red-bright);
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ========== CUSTOMERS ========== */
.customers-row {
  display: flex;
  gap: 1.5rem;
  padding: 0 5vw;
  overflow-x: auto;
  scrollbar-width: none;
}

.customers-row::-webkit-scrollbar { display: none; }

.customer-card {
  flex: 0 0 auto;
  width: 320px;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.4s var(--ease);
}

.customer-card:hover {
  border-color: rgba(115, 12, 30, 0.3);
  transform: translateY(-4px);
}

.customer-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--red-dark);
  flex-shrink: 0;
}

.customer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-info h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.customer-info p {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.customer-info a {
  font-size: 0.75rem;
  color: var(--red-bright);
  font-weight: 500;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.contact-card:hover {
  border-color: rgba(115, 12, 30, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.contact-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.discord-icon-bg {
  background: var(--red);
  box-shadow: 0 8px 25px rgba(115, 12, 30, 0.3);
}

.email-icon-bg {
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-card .card-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.contact-card .card-handle {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* ========== STEPS TIMELINE ========== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 3rem auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gray-800);
}

.timeline-step {
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--black), 0 0 0 6px var(--gray-800);
}

.timeline-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.timeline-step p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.timeline-step .step-num {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 900;
  color: var(--red-bright);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 5vw 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--black));
  z-index: 1;
}

.page-hero .section-label,
.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1;
}

.page-hero h1 .highlight {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 550px;
  line-height: 1.8;
}

/* ========== CTA SECTION ========== */
.cta-section {
  text-align: center;
  padding: 8rem 5vw;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(115, 12, 30, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* ========== YOUTUBE ========== */
.yt-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 24px;
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  transition: all 0.4s var(--ease);
}

.yt-card:hover {
  border-color: rgba(115, 12, 30, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.yt-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--red-dark);
  flex-shrink: 0;
}

.yt-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-info h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.yt-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.yt-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.yt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  background: rgba(115, 12, 30, 0.12);
  border: 1px solid rgba(115, 12, 30, 0.2);
  border-radius: 100px;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.yt-embed {
  max-width: 900px;
  margin: 4rem auto 0;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-800);
  background: var(--gray-900);
}

.yt-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========== ABOUT ========== */
.about-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5vw;
  align-items: center;
}

.about-split h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about-split p {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-800);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ========== COMPARISON SLIDER ========== */
.compare-container {
  max-width: 900px;
  margin: 0 auto;
}

.compare-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: ew-resize;
  border-radius: 16px;
  border: 1px solid var(--gray-800);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  user-select: none;
}

.compare-after,
.compare-before {
  position: absolute;
  inset: 0;
}

.compare-after img,
.compare-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-before {
  clip-path: inset(0 50% 0 0);
}

.compare-label {
  position: absolute;
  bottom: 1.25rem;
  padding: 0.4rem 1rem;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  pointer-events: none;
}

.compare-label-after {
  right: 1.25rem;
  background: var(--red);
  color: white;
}

.compare-label-before {
  left: 1.25rem;
  background: rgba(0, 0, 0, 0.85);
  color: white;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.compare-handle-line {
  position: absolute;
  inset: 0;
  background: var(--red-bright);
  box-shadow: 0 0 20px rgba(196, 22, 50, 0.5);
}

.compare-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(115, 12, 30, 0.4);
  pointer-events: auto;
  cursor: ew-resize;
  transition: transform 0.2s var(--ease);
}

.compare-handle-circle:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.compare-handle-circle svg:last-child { margin-left: -14px; }

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid var(--gray-800);
  padding: 3rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer p {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
}

.footer a { color: var(--red-bright); font-weight: 600; }

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
  transition: color 0.3s var(--ease);
}

.footer-links a:hover { color: var(--white); }

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
}

.lightbox-close:hover { background: var(--red); }

/* ========== PAGE TRANSITION ========== */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

.page-transition.exit {
  animation: pageExit 0.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.page-transition.enter {
  animation: pageEnter 0.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes pageExit {
  0% { transform: scaleY(0); transform-origin: bottom; }
  100% { transform: scaleY(1); transform-origin: bottom; }
}

@keyframes pageEnter {
  0% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: top; }
}

/* ========== SCROLL ANIMATIONS ========== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ========== THUMBNAIL PAGINATED GRID ========== */
.thumb-grid-wrap {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.thumb-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--gray-800);
  cursor: pointer;
  transition: all 0.4s var(--ease);
  aspect-ratio: 16/9;
}

.thumb-grid-item:hover {
  border-color: rgba(115, 12, 30, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.thumb-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.thumb-grid-item:hover img { transform: scale(1.06); }

.thumb-grid-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.thumb-grid-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-700);
  background: var(--gray-900);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.thumb-grid-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.thumb-grid-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.thumb-grid-btn:disabled:hover {
  background: var(--gray-900);
  border-color: var(--gray-700);
}

.thumb-grid-dots {
  display: flex;
  gap: 0.5rem;
}

.thumb-grid-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-700);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.thumb-grid-dot.active {
  background: var(--red-bright);
  width: 24px;
  border-radius: 4px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 7rem 1.5rem 3rem;
    text-align: center;
    align-items: center;
  }

  .hero-desc { margin-left: auto; margin-right: auto; }

  .hero-actions { justify-content: center; }

  .hero-numbers { justify-content: center; }

  .hero-right {
    height: 40vh;
    min-height: 280px;
  }

  .hero-right-overlay {
    background:
      linear-gradient(0deg, var(--black) 0%, transparent 40%),
      linear-gradient(180deg, var(--black) 0%, transparent 20%);
  }

  .editorial {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 5rem 1.5rem;
  }

  .editorial.reversed { direction: ltr; }

  .bento-item.span-8,
  .bento-item.span-4,
  .bento-item.span-5,
  .bento-item.span-7,
  .bento-item.span-6 {
    grid-column: span 12;
  }

  .pricing-layout,
  .pricing-layout.full {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .timeline::before { display: none; }

  .yt-card {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery.cols-3,
  .gallery.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery.masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .nav {
    padding: 1rem 1.5rem;
  }

  .section {
    padding: 5rem 1.5rem;
  }

  .section-wide {
    padding: 5rem 0;
  }

  .hscroll {
    padding: 0 1.5rem 2rem;
  }

  .hscroll-arrow {
    padding: 0 1.5rem;
  }

  .customers-row {
    padding: 0 1.5rem;
  }
}

@media (max-width: 600px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 2rem 2rem;
    gap: 0.25rem;
    transition: right 0.4s var(--ease);
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    justify-content: flex-start;
  }

  .nav-cta { text-align: center; margin-left: 0; margin-top: 1rem; }

  .nav-toggle { display: flex; }

  .nav-logo-text { display: none; }

  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }

  .hero-numbers { gap: 2rem; flex-wrap: wrap; }

  .hero-number-value { font-size: 1.5rem; }

  .timeline { grid-template-columns: 1fr; }

  .gallery.cols-2,
  .gallery.cols-3,
  .gallery.cols-4 {
    grid-template-columns: 1fr;
  }

  .gallery.masonry {
    grid-template-columns: 1fr;
  }

  .hscroll-item { width: 300px; }

  .customer-card { width: 260px; }

  .section-number { font-size: clamp(3rem, 15vw, 6rem); }

  .thumb-grid { grid-template-columns: repeat(2, 1fr); }
}
