/* ==========================================================================
   ONE PRODUCTION - Design System & Stylesheet
   Theme: Cinematic Dark Studio (#09090b), Neon Production RED (#ff1e27), High-Contrast White (#ffffff)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Primary Background: Deep Cinematic Dark Studio */
  --bg-dark: #070709;
  --bg-surface: #0e0e14;
  --bg-card: rgba(18, 18, 26, 0.75);
  --bg-card-hover: rgba(28, 28, 40, 0.9);
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-active: #ff1e27;

  /* Primary Accent: Neon Production RED */
  --accent-red: #ff1e27;
  --accent-red-dark: #d60000;
  --accent-red-glow: rgba(255, 30, 39, 0.45);
  --accent-glow-spot: radial-gradient(circle at 50% 30%, rgba(255, 30, 39, 0.2) 0%, rgba(7, 7, 9, 0) 70%);
  
  /* Typography & Contrast: High-contrast Crisp Text */
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;

  /* Typography Fonts */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  /* Layout & Metrics */
  --header-height: 76px;
  --bottom-nav-height: 64px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background: var(--bg-dark);
  color: var(--text-primary);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

p {
  line-height: 1.6;
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  user-select: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ff1e27 0%, #d60000 100%);
  color: #ffffff;
  box-shadow: 0 4px 25px rgba(255, 30, 39, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px rgba(255, 30, 39, 0.65);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-danger {
  background: #dc2626;
  color: #ffffff;
}

.btn-danger:hover {
  background: #b91c1c;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* Section Header */
.section-title-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px auto;
}

.badge {
  display: inline-block;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-red);
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: #f4f4f5;
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  color: var(--text-primary);
}

.lang-btn.active {
  box-shadow: 0 2px 10px rgba(255, 0, 0, 0.25);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.6s ease;
}

#preloader.loaded {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.loader-logo-symbol {
  height: 60px;
  padding: 0 24px;
  border-radius: 18px;
  background: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  box-shadow: 0 10px 35px rgba(255, 30, 39, 0.5);
  animation: pulseLogo 2s infinite ease-in-out;
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 25px rgba(255, 30, 39, 0.4); }
  50% { transform: scale(1.06); box-shadow: 0 14px 45px rgba(255, 30, 39, 0.7); }
}

.loader-logo-text {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: #ffffff;
  text-transform: uppercase;
}

.loader-logo-sub {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--accent-red);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: -12px;
}

.loader-progress-box {
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.loader-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--accent-red);
  border-radius: 6px;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(255, 30, 39, 0.6);
}

.loader-counter {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-red);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
  background: rgba(9, 9, 13, 0.88);
  backdrop-filter: blur(20px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  height: 36px;
  padding: 0 12px;
  min-width: 52px;
  background: var(--accent-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(255, 30, 39, 0.4);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ffffff;
  line-height: 1.1;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-red);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 30, 39, 0.8);
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  color: #ffffff;
}

.lang-btn.active {
  background: var(--accent-red);
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(255, 30, 39, 0.4);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 6px;
}

@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .header-btn-desktop, .header-lang-desktop {
    display: none !important;
  }
  .header-container {
    padding: 0 16px;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #0d0d12;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  z-index: 2000;
  padding: 80px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  cursor: pointer;
}

.drawer-link {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-secondary);
}

.drawer-link:hover, .drawer-link.active {
  color: var(--accent-red);
}

/* Mobile Bottom Nav */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--bottom-nav-height);
  background: rgba(12, 12, 16, 0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1500;
  justify-content: space-around;
  align-items: center;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.7);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  width: 20%;
  height: 100%;
  transition: color var(--transition-fast);
}

.bottom-nav-item svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: stroke var(--transition-fast), transform var(--transition-fast);
}

.bottom-nav-item.active {
  color: var(--accent-red);
}

.bottom-nav-item.active svg {
  stroke: var(--accent-red);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
  }
  body {
    padding-bottom: var(--bottom-nav-height);
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background: #070709;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: contrast(1.2) brightness(0.7);
  transform: scale(1.05);
  animation: heroZoom 25s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: 
    radial-gradient(circle at 50% 40%, rgba(255, 30, 39, 0.25) 0%, rgba(7, 7, 9, 0.8) 75%),
    linear-gradient(180deg, rgba(7, 7, 9, 0.4) 0%, #070709 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 40px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffffff;
  background: rgba(255, 30, 39, 0.15);
  border: 1px solid rgba(255, 30, 39, 0.4);
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(255, 30, 39, 0.25);
}

.badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-red);
  animation: badgeBlink 1.5s infinite ease-in-out;
}

@keyframes badgeBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #ffffff;
}

.text-gradient {
  background: linear-gradient(135deg, #ff1e27 0%, #ff6b6b 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Portfolio Grid */
.portfolio {
  padding: 100px 0;
  position: relative;
  background: #070709;
}

.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.portfolio-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  backdrop-filter: blur(12px);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #ffffff;
  box-shadow: 0 0 25px rgba(255, 30, 39, 0.5);
  transform: translateY(-2px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  background: rgba(18, 18, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 30, 39, 0.6);
  box-shadow: 0 20px 45px rgba(255, 30, 39, 0.25);
}

.project-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-thumb img {
  transform: scale(1.08);
}

.project-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-red);
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0;
  transition: all var(--transition-fast);
  box-shadow: 0 0 30px rgba(255, 30, 39, 0.8);
}

.project-card:hover .project-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.project-info {
  padding: 24px;
}

.project-category {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-red);
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  margin-top: 12px;
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: #0a0a0f;
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-normal);
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 30, 39, 0.5);
  box-shadow: 0 20px 40px rgba(255, 30, 39, 0.2);
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #070709;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  background: rgba(18, 18, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 30, 39, 0.6);
  box-shadow: 0 20px 45px rgba(255, 30, 39, 0.25);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(255, 30, 39, 0.15);
  border: 1px solid rgba(255, 30, 39, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(255, 30, 39, 0.2);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li::before {
  content: '✓';
  color: var(--accent-red);
  font-weight: 800;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: #0a0a0f;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: rgba(18, 18, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 30, 39, 0.6);
  box-shadow: 0 20px 45px rgba(255, 30, 39, 0.25);
}

.pricing-card.popular {
  border: 2px solid var(--accent-red);
  box-shadow: 0 0 35px rgba(255, 30, 39, 0.35);
  background: rgba(25, 18, 24, 0.85);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--accent-red);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(255, 30, 39, 0.6);
}

.pricing-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.pricing-price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.pricing-old-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.7;
}

.pricing-discount-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 30, 39, 0.15);
  color: var(--accent-red);
  border: 1px dashed var(--accent-red);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  align-self: flex-start;
  box-shadow: 0 2px 10px rgba(255, 30, 39, 0.2);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-red);
  line-height: 1;
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 20px;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-primary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-red);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
}

.pricing-btn {
  width: 100%;
  margin-top: auto;
}

/* About Section & Animated Client Logos Marquee Carousel */
.about {
  padding: 100px 0;
  background: #070709;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.logo-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: rgba(18, 18, 26, 0.65);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(16px);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-marquee-row {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marqueeLeft 45s linear infinite;
  transform: translateZ(0);
  will-change: transform;
}

.logo-marquee-row.reverse {
  animation: marqueeRight 50s linear infinite;
}

.logo-marquee-container:hover .logo-marquee-row {
  animation-play-state: paused;
}

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

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

.logo-item-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.logo-item-card:hover {
  background: rgba(255, 30, 39, 0.15);
  border-color: var(--accent-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 30, 39, 0.35);
}

.logo-item-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.logo-item-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.stat-card {
  background: rgba(18, 18, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all var(--transition-fast);
}

.stat-card:hover {
  border-color: rgba(255, 30, 39, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 30, 39, 0.2);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--accent-red);
  margin-bottom: 4px;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Contact Social */
.contact {
  padding: 100px 0;
  background: #0a0a0f;
  position: relative;
}

.contact-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-social-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.contact-social-card {
  background: rgba(18, 18, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.contact-social-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 30, 39, 0.6);
  box-shadow: 0 20px 45px rgba(255, 30, 39, 0.25);
}

.social-icon-box {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform var(--transition-normal);
}

.contact-social-card:hover .social-icon-box {
  transform: scale(1.08);
}

.social-icon-box.telegram {
  background: linear-gradient(135deg, #0088cc 0%, #00a8ff 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.45);
}

.social-icon-box.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.45);
}

.social-icon-box svg {
  width: 34px;
  height: 34px;
}

.social-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.social-handle {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 12px;
}

.social-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.5;
}

.social-btn {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  padding: 60px 0 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #070709;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Video Player Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 100%;
  max-width: 920px;
  background: #0d0d14;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-overlay.open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s ease;
}

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

.modal-video-container {
  aspect-ratio: 16 / 9;
  background: #000000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-video-container video, .modal-video-container img, .modal-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.modal-body {
  padding: 24px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #ffffff;
  border: 2px solid var(--accent-red);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes toastIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Admin Styles & Tabbed Navigation */
.admin-body {
  background: #f8f9fa;
  min-height: 100vh;
}

.admin-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.admin-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-nav-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0;
  background: #ffffff;
  padding: 6px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  overflow-x: auto;
}

.admin-tab-btn {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.admin-tab-btn:hover {
  color: var(--accent-red);
  background: #f8f9fa;
}

.admin-tab-btn.active {
  background: var(--accent-red);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.28);
}

.admin-tab-pane {
  display: none;
}

.admin-tab-pane.active {
  display: block;
}

.admin-login-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.admin-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.admin-dashboard {
  padding: 40px 0;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.admin-stat-box {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: border-color 0.2s ease;
}

.admin-stat-box:hover {
  border-color: var(--accent-red);
}

.admin-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-red);
}

.admin-table-wrap {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th, .admin-table td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.admin-table th {
  background: #f8f9fa;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.admin-table tr:hover {
  background: #fdfdfd;
}

.admin-thumb-sm {
  width: 70px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: #f4f4f5;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-red);
  background: #ffffff;
}
