/* =============================================
   VIRALPRODUCTION.PRO — Black / Red / White
   ============================================= */

:root {
  --black: #030303;
  --black-2: #0d0d0d;
  --black-3: #141414;
  --black-4: #1c1c1c;
  --black-5: #242424;

  --red: #E8001C;
  --red-dark: #B8001A;
  --red-glow: rgba(232, 0, 28, 0.35);
  --red-subtle: rgba(232, 0, 28, 0.08);

  --white: #FFFFFF;
  --gray-1: #F0F0F0;
  --gray-2: #AAAAAA;
  --gray-3: #666666;
  --gray-4: #333333;

  --border: rgba(255,255,255,0.07);
  --border-red: rgba(232,0,28,0.3);

  --font: 'Inter', sans-serif;
  --font-display: 'Bebas Neue', cursive;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--gray-1);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

.text-red {
  color: var(--red);
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

/* =============================================
   TICKER
   ============================================= */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  z-index: 999;
}

.ticker {
  display: flex;
  gap: 0;
  animation: ticker 35s linear infinite;
  width: max-content;
}

.ticker span {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.3px;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.3);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   NAV
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  margin-top: 41px; /* ticker height */
}

#navbar.scrolled {
  background: rgba(3,3,3,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  margin-top: 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

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

.logo-img {
  width: 36px; height: 36px;
  max-width: 36px; max-height: 36px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  color: var(--white);
}

.logo-red { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  color: var(--gray-2);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.nav-cta {
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  background: var(--red);
  color: white;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 8px 0 20px;
}
.mob-link { padding: 13px 24px; font-size: 15px; color: var(--gray-2); transition: var(--transition); }
.mob-link:hover { color: var(--white); }
.mob-cta {
  margin: 8px 20px 0;
  background: var(--red); color: white !important;
  border-radius: 50px; text-align: center; padding: 13px;
  font-weight: 700;
}

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}

.hero-noise {
  position: absolute; inset: 0;
  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)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-red-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,0,28,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero-left { display: flex; flex-direction: column; gap: 28px; }

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,0,28,0.1);
  border: 1px solid var(--border-red);
  color: #FF6B6B;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  width: fit-content;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
}

.hero-title .text-red { color: var(--red); }

.hero-sub {
  font-size: 16px;
  color: var(--gray-2);
  line-height: 1.8;
  border-left: 3px solid var(--red);
  padding-left: 16px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-2);
  padding: 15px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: var(--transition);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }

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

.platforms {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-1);
  transition: var(--transition);
}
.platform-badge:hover { border-color: rgba(255,255,255,0.15); }

/* Phone mockup */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 220px;
  margin: 0 auto;
}

.phone-screen {
  width: 220px;
  height: 380px;
  background: var(--black-3);
  border-radius: 32px;
  border: 2px solid var(--black-5);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.phone-video {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a0808 0%, #2a0010 40%, #0d0d0d 100%);
  position: relative;
}

.phone-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.8));
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.video-play {
  width: 52px; height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: white;
  box-shadow: 0 0 30px var(--red-glow);
  animation: videoPulse 2s infinite;
}

@keyframes videoPulse {
  0%, 100% { box-shadow: 0 0 20px var(--red-glow); }
  50% { box-shadow: 0 0 40px rgba(232,0,28,0.6); }
}

.video-stats {
  position: absolute;
  bottom: 60px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-stats span {
  font-size: 11px;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.video-label {
  position: absolute;
  bottom: 16px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}

.phone-glow {
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 60px;
  background: var(--red);
  filter: blur(40px);
  opacity: 0.25;
  border-radius: 50%;
}

.hero-stat-card {
  position: absolute;
  top: 20px; right: -20px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.hero-stat-card--2 {
  top: auto;
  bottom: 40px;
  right: -20px;
}

.stat-card-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  line-height: 1;
  display: inline;
}

.stat-card-suf {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--red);
}

.stat-card-label {
  font-size: 11px;
  color: var(--gray-3);
  margin-top: 4px;
  font-weight: 500;
}

/* =============================================
   SECTIONS BASE
   ============================================= */
.section { padding: 96px 0; }
.section--dark { background: var(--black-2); }

.section-header { text-align: center; margin-bottom: 56px; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  padding: 5px 14px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: 50px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 1px;
}

.section-sub {
  margin-top: 14px;
  font-size: 17px;
  color: var(--gray-2);
}

/* =============================================
   WHITE / LIGHT SECTIONS
   ============================================= */
.section--light {
  background: #FFFFFF;
  position: relative;
  overflow: visible;
}

/* Spike top — white teeth biting INTO the dark section above */
.section--light::before {
  content: '';
  position: absolute;
  top: -56px;
  left: 0; right: 0;
  height: 56px;
  background: #FFFFFF;
  clip-path: polygon(
    0 100%,
    1.5% 20%, 3.5% 100%, 5.5% 0%, 7.5% 100%,
    9% 35%, 11% 100%, 13% 8%, 15% 100%,
    17% 55%, 19% 100%, 21% 18%, 23% 100%,
    25% 42%, 27% 100%, 29% 5%, 31% 100%,
    33% 28%, 35% 100%, 37% 60%, 39% 100%,
    41% 12%, 43% 100%, 45% 38%, 47% 100%,
    49% 2%, 51% 100%, 53% 48%, 55% 100%,
    57% 22%, 59% 100%, 61% 70%, 63% 100%,
    65% 15%, 67% 100%, 69% 40%, 71% 100%,
    73% 8%, 75% 100%, 77% 30%, 79% 100%,
    81% 55%, 83% 100%, 85% 18%, 87% 100%,
    89% 45%, 91% 100%, 93% 10%, 95% 100%,
    97% 25%, 99% 100%, 100% 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Spike bottom — white teeth biting INTO dark section below */
.section--light::after {
  content: '';
  position: absolute;
  bottom: -56px;
  left: 0; right: 0;
  height: 56px;
  background: #FFFFFF;
  clip-path: polygon(
    0 0,
    1.5% 80%, 3.5% 0%, 5.5% 100%, 7.5% 0,
    9% 65%, 11% 0%, 13% 92%, 15% 0,
    17% 45%, 19% 0%, 21% 82%, 23% 0,
    25% 58%, 27% 0%, 29% 95%, 31% 0,
    33% 72%, 35% 0%, 37% 40%, 39% 0,
    41% 88%, 43% 0%, 45% 62%, 47% 0,
    49% 98%, 51% 0%, 53% 52%, 55% 0,
    57% 78%, 59% 0%, 61% 30%, 63% 0,
    65% 85%, 67% 0%, 69% 60%, 71% 0,
    73% 92%, 75% 0%, 77% 70%, 79% 0,
    81% 45%, 83% 0%, 85% 82%, 87% 0,
    89% 55%, 91% 0%, 93% 90%, 95% 0,
    97% 75%, 99% 0%, 100% 0
  );
  z-index: 2;
  pointer-events: none;
}

/* Red gloss stripe at top of light sections */
.section--light .container::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    #E8001C 10%,
    #FF3347 30%,
    #FFFFFF 50%,
    #FF3347 70%,
    #E8001C 90%,
    transparent 100%
  );
  margin-bottom: 56px;
  opacity: 0.7;
}

/* Fix section-header spacing when stripe is present */
.section--light .section-header {
  margin-bottom: 0;
}

/* Shiny metallic red on big numbers in light sections */
.section--light .wsc-num {
  background: linear-gradient(160deg,
    #FF1A2E 0%,
    #8B0010 25%,
    #FF4455 45%,
    #CC000E 65%,
    #FF2233 85%,
    #8B0010 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(232,0,28,0.3));
}

/* Text recoloring for light sections */
.section--light .section-title { color: #0a0a0a; }
.section--light .section-tag {
  background: rgba(232,0,28,0.07);
  border-color: rgba(232,0,28,0.25);
  color: #C20018;
}
.section--light .section-sub { color: #555; }

/* Cards on white bg */
.section--light .why-short-card {
  background: #FAFAFA;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.section--light .why-short-card:hover {
  border-color: rgba(232,0,28,0.3);
  box-shadow: 0 8px 40px rgba(232,0,28,0.12);
}
.section--light .why-short-card p { color: #444; }
.section--light .wsc-src { color: #888; }

.section--light .inside-item {
  background: #FAFAFA;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.section--light .inside-item:hover {
  border-color: rgba(232,0,28,0.25);
  box-shadow: 0 8px 30px rgba(232,0,28,0.1);
  transform: translateY(-4px);
}
.section--light .inside-num {
  background: linear-gradient(160deg, #E8001C, #8B0010, #FF4455);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 1;
}
.section--light .inside-body h4 { color: #111; }
.section--light .inside-body p { color: #555; }

.section--light .testi-card {
  background: #FAFAFA;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.section--light .testi-card:hover {
  border-color: rgba(232,0,28,0.25);
  box-shadow: 0 8px 30px rgba(232,0,28,0.1);
}
.section--light .testi-card p { color: #333; font-style: italic; }
.section--light .testi-name { color: #0a0a0a; }
.section--light .testi-role { color: #888; }

.section--light .faq-item {
  background: #FAFAFA;
  border-color: rgba(0,0,0,0.09);
}
.section--light .faq-item.open {
  border-color: rgba(232,0,28,0.35);
  box-shadow: 0 4px 24px rgba(232,0,28,0.08);
}
.section--light .faq-q { color: #111; }
.section--light .faq-q:hover { color: var(--red); }
.section--light .faq-a p { color: #555; }

/* Увеличиваем z-index секций чтобы спайки не перекрывали соседей */
.section--light { z-index: 1; }
.section--dark { z-index: 0; position: relative; }
#hero { z-index: 2; }


/* =============================================
   WHY SHORT CONTENT
   ============================================= */
.why-short-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-short-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
}

.why-short-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
}

.wsc-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.why-short-card p { font-size: 14px; color: var(--gray-2); line-height: 1.7; }
.wsc-src { color: var(--gray-3); font-size: 12px; }

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.service-card--ai {
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(232,0,28,0.06), var(--black-3));
  border-color: var(--border-red);
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.ai-label {
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  display: inline-block;
}

.sc-platform {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p { font-size: 14px; color: var(--gray-2); line-height: 1.7; margin-bottom: 20px; }

.sc-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sc-features li { font-size: 13px; color: var(--gray-2); }

.ai-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.ai-features span {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  padding: 4px 12px;
  border-radius: 50px;
}

/* =============================================
   WHAT'S INSIDE
   ============================================= */
.inside-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.inside-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.inside-item:hover { border-color: var(--border-red); transform: translateY(-3px); }

.inside-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.8;
}

.inside-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.inside-body p { font-size: 13px; color: var(--gray-2); line-height: 1.6; }

/* =============================================
   CASES
   ============================================= */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.case-card:hover { border-color: var(--border-red); transform: translateY(-4px); }

.case-card--featured {
  border-color: var(--border-red);
  background: linear-gradient(135deg, rgba(232,0,28,0.06), var(--black-3));
}

.case-platform {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.case-platform--tiktok { background: rgba(105,201,208,0.15); color: #69C9D0; border: 1px solid rgba(105,201,208,0.3); }
.case-platform--reels { background: rgba(253,89,73,0.15); color: #fd5949; border: 1px solid rgba(253,89,73,0.3); }
.case-platform--shorts { background: rgba(255,0,0,0.12); color: #FF4444; border: 1px solid rgba(255,0,0,0.25); }

.case-metrics-big { margin-bottom: 16px; }

.case-views {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
}

.case-views-label {
  display: block;
  font-size: 13px;
  color: var(--gray-3);
  margin-top: 2px;
}

.case-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.case-card p { font-size: 13px; color: var(--gray-2); line-height: 1.6; margin-bottom: 20px; }

.case-results { display: flex; gap: 16px; }

.case-result { display: flex; flex-direction: column; }

.cr-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--red);
  line-height: 1;
}

.cr-label { font-size: 12px; color: var(--gray-3); margin-top: 2px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testi-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.testi-card:hover { border-color: var(--border-red); transform: translateY(-3px); }

.testi-stars { color: var(--red); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }

.testi-card p {
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: white;
  flex-shrink: 0;
}

.testi-name { font-size: 14px; font-weight: 700; color: var(--white); }
.testi-role { font-size: 12px; color: var(--gray-3); margin-top: 2px; }

/* =============================================
   PRICING
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.pricing-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover { border-color: var(--border-red); transform: translateY(-4px); }

.pricing-card--hot {
  border-color: var(--red);
  background: linear-gradient(160deg, rgba(232,0,28,0.08), var(--black-3) 60%);
  transform: scale(1.04);
  box-shadow: 0 0 60px rgba(232,0,28,0.15);
}

.pricing-card--hot:hover { transform: scale(1.04) translateY(-4px); }

.plan-hot-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray-3); margin-bottom: 10px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 36px; color: var(--white);
  letter-spacing: 2px; margin-bottom: 8px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 44px; color: var(--white);
  line-height: 1;
}

.plan-currency { font-size: 24px; color: var(--gray-3); }
.plan-period { font-size: 13px; color: var(--gray-3); margin-bottom: 12px; }
.plan-desc { font-size: 13px; color: var(--gray-2); line-height: 1.6; margin-bottom: 24px; }

.plan-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}

.plan-features li { font-size: 14px; color: var(--gray-1); display: flex; align-items: center; gap: 8px; }
.pf-check { color: var(--red); font-size: 16px; flex-shrink: 0; }
.pf-dim { color: var(--gray-3); font-size: 16px; flex-shrink: 0; }
.plan-features li .pf-dim ~ * { color: var(--gray-3); }

.plan-btn {
  display: block; text-align: center;
  padding: 13px; border-radius: 50px;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.plan-btn--red {
  background: var(--red); color: white;
  box-shadow: 0 4px 20px var(--red-glow);
}
.plan-btn--red:hover { background: var(--red-dark); transform: translateY(-2px); }

.plan-btn--outline {
  border: 1px solid var(--border-red);
  color: var(--red);
}
.plan-btn--outline:hover { background: var(--red-subtle); }

.pricing-note {
  text-align: center; font-size: 12px; color: var(--gray-3);
}

/* =============================================
   FAQ
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: var(--border-red); }

.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px;
  font-size: 15px; font-weight: 600;
  color: var(--white); text-align: left;
  gap: 16px; transition: var(--transition);
  font-family: var(--font);
}

.faq-q:hover { color: var(--red); }

.faq-icon { font-size: 22px; color: var(--red); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 22px 20px; font-size: 14px; color: var(--gray-2); line-height: 1.7; }

/* =============================================
   CONTACT
   ============================================= */
.contact-section { position: relative; overflow: hidden; }

.contact-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,0,28,0.1), transparent 70%);
  top: -100px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}

.contact-form {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  margin-bottom: 32px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group {
  display: flex; flex-direction: column; gap: 7px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 12px; font-weight: 700;
  color: var(--gray-3); letter-spacing: 1px; text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 15px; font-family: var(--font);
  padding: 13px 16px;
  transition: var(--transition);
  outline: none; -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,0,28,0.1);
}

.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-4); }
.form-group select option { background: var(--black-3); }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-privacy { text-align: center; font-size: 12px; color: var(--gray-3); margin-top: 12px; }

.contact-direct {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}

.direct-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--gray-1);
  padding: 13px 22px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: var(--transition);
}

.direct-link:hover { border-color: rgba(255,255,255,0.15); color: var(--white); transform: translateY(-2px); }

.direct-link--tg:hover { border-color: rgba(105,201,208,0.4); color: #69C9D0; }

.or { color: var(--gray-3); font-size: 13px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-inner {
  display: flex; align-items: flex-start;
  gap: 48px; flex-wrap: wrap;
  margin-bottom: 36px;
}

.footer-brand { flex: 1; min-width: 200px; }
.footer-brand p { margin-top: 12px; font-size: 13px; color: var(--gray-3); line-height: 1.6; }

.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a { font-size: 14px; color: var(--gray-3); transition: var(--transition); }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid var(--border);
}

.footer-bottom p { font-size: 12px; color: var(--gray-3); }

/* =============================================
   STICKY MOBILE CTA
   ============================================= */
.sticky-cta {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 10px;
  z-index: 999;
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.sticky-tg, .sticky-form {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700;
  padding: 10px 18px; border-radius: 50px;
  transition: var(--transition);
}

.sticky-tg { background: rgba(105,201,208,0.15); color: #69C9D0; border: 1px solid rgba(105,201,208,0.3); }
.sticky-form { background: var(--red); color: white; }
.sticky-tg:hover { background: rgba(105,201,208,0.25); }
.sticky-form:hover { background: var(--red-dark); }

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}

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

.modal {
  background: var(--black-3);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center; max-width: 380px; width: 90%;
  transform: scale(0.9);
  transition: var(--transition);
}

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

.modal-icon {
  width: 68px; height: 68px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: white;
  margin: 0 auto 20px;
  box-shadow: 0 0 40px var(--red-glow);
}

.modal h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.modal p { color: var(--gray-2); margin-bottom: 28px; }

/* Large Modal Settings */
.modal--large { max-width: 600px; padding: 40px; }
.modal-close { position: absolute; top: 16px; right: 16px; font-size: 24px; color: var(--gray-2); transition: var(--transition); background: transparent; border: none; cursor: pointer; }
.modal-close:hover { color: var(--white); }
.modal-sub { color: var(--red) !important; font-weight: 600; font-size: 14px; margin-bottom: 32px !important; text-transform: uppercase; letter-spacing: 1px; }

/* Roadmap Timeline */
.roadmap { text-align: left; position: relative; margin-top: 24px; }
.roadmap::before { content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: var(--border-red); }
.road-step { position: relative; padding-left: 36px; padding-bottom: 24px; }
.road-step:last-child { padding-bottom: 0; }
.road-dot { position: absolute; left: 0; top: 4px; width: 24px; height: 24px; background: var(--black-3); border: 2px solid var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; box-shadow: 0 0 10px var(--red-glow); }
.road-dot::after { content: ''; width: 8px; height: 8px; background: var(--red); border-radius: 50%; opacity: 0; transition: var(--transition); }
.road-step:hover .road-dot::after { opacity: 1; box-shadow: 0 0 8px var(--red); }
.road-dot--red { background: var(--red); }
.road-dot--red::after { background: var(--white); opacity: 1; }
.road-content h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.road-content p { font-size: 14px; color: var(--gray-2); line-height: 1.6; margin: 0; }

/* Plan Actions */
.plan-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.plan-btn-roadmap { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--gray-2); background: transparent; padding: 12px; border-radius: var(--radius); transition: var(--transition); border: 1px solid transparent; width: 100%; cursor: pointer; }
.plan-btn-roadmap:hover { color: var(--white); background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card--ai { grid-column: span 2; }
  .why-short-grid { grid-template-columns: 1fr 1fr; }
  .inside-list { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .mobile-menu.open { display: flex; }
  #navbar { margin-top: 0; }

  .services-grid, .cases-grid, .pricing-grid,
  .why-short-grid, .inside-list, .testi-grid { grid-template-columns: 1fr; }

  .service-card--ai { grid-column: span 1; }
  .pricing-card--hot { transform: none; }
  .pricing-card--hot:hover { transform: translateY(-4px); }

  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }

  .sticky-cta { display: flex; }

  .footer-inner { gap: 28px; }
  .footer-links, .footer-contact { flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .contact-direct { flex-direction: column; width: 100%; }
  .direct-link { width: 100%; justify-content: center; }
  .contact-form { padding: 20px; }
}
