﻿:root {
  --bg: #0b0b10;
  --panel: #12121a;
  --text: #ffffff;
  --muted: #b8b8b8;
  --accent: #e91e63;
  --accent-2: #ff0055;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 20px;
  --container: 1200px;
  --gutter: clamp(16px, 2.2vw, 34px);
  --header-offset: 78px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + 18px);
}
body {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  background: radial-gradient(circle at top, #151520 0%, var(--bg) 45%);
  color: var(--text);
  font-weight: 400; /* Regular per audit */
  overflow-x: clip;
  opacity: 0;
  animation: pageFadeIn 0.7s ease forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Soft Grain Texture Overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}
.section {
  padding: clamp(72px, 8vw, 116px) 0;
  position: relative;
}
section[id] {
  scroll-margin-top: calc(var(--header-offset) + 18px);
}

/* Utility Classes */
.relative-z {
  position: relative;
  z-index: 1;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-4 {
  margin-top: 4rem;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 { 
  font-weight: 800; /* Extra Bold per audit */
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 0;
}

h1 { font-size: clamp(2.5rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }

.text-gradient, h2 {
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #b8b8b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

p, .section-copy, .lead {
  font-weight: 400; /* Regular per audit */
  line-height: 1.62; /* Improved readability per audit */
}

small, .small-label, .status-text, .scarcity, .footer-legal a {
  font-weight: 200; /* Extra Light per audit */
}

.identity-bar {
  width: 14px;
  min-width: 14px;
  height: 70px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}
.identity-bar--hero {
  height: 110px;
  margin-bottom: 1rem;
  animation: floatBar 5s ease-in-out infinite;
}
@keyframes floatBar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn--solid {
  color: #fff;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border: none;
  box-shadow: 0 0 0 transparent;
  position: relative;
  overflow: hidden;
}
.btn--solid::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn--solid:hover::before {
  left: 150%;
}
.btn--solid:hover { box-shadow: 0 8px 20px rgba(233, 30, 99, .15), 0 0 10px rgba(233, 30, 99, .1); }
.btn--ghost {
  background: transparent;
  border-color: var(--accent);
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn--ghost::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.btn--ghost:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.btn--ghost:hover {
  background: rgba(233, 30, 99, 0.1);
  box-shadow: 0 0 15px rgba(233, 30, 99, 0.15);
}

.site-header,
.aw-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(11, 11, 16, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.site-header.is-scrolled,
.aw-header.is-scrolled { border-color: var(--line); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}
.brand img { height: 42px; width: auto; }
.desktop-nav {
  display: flex;
  gap: clamp(1rem, 1.8vw, 2.2rem);
}
.desktop-nav a, .mobile-nav a { 
  color: var(--muted); 
  text-transform: uppercase;
  letter-spacing: clamp(1.2px, 0.18vw, 2px);
  font-size: clamp(0.74rem, 0.62rem + 0.35vw, 0.86rem);
  font-weight: 400;
  transition: color 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
}
.desktop-nav a { 
  color: var(--muted); 
  text-transform: uppercase;
  letter-spacing: clamp(1.2px, 0.18vw, 2px);
  font-size: clamp(0.74rem, 0.62rem + 0.35vw, 0.86rem);
  font-weight: 400;
  transition: color 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  padding: 0.5rem 0;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after,
.desktop-nav a.active-section::after {
  width: 100%;
}
.desktop-nav a:hover { color: var(--text); }
.aw-link.active-section { color: #fff; }

.header-actions { display: flex; align-items: center; gap: .75rem; }
.header-primary-cta {
  white-space: nowrap;
  padding-inline: clamp(1rem, 1.9vw, 2.1rem);
}

/* Minimalist Hamburger */
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  width: 42px;
  height: 42px;
  position: relative;
  cursor: pointer;
  z-index: 60;
}
.menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 24px;
  background: #fff;
  border-radius: 2px;
  opacity: 1;
  left: 9px;
  transform: rotate(0deg);
  transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 20px; }
.menu-toggle span:nth-child(3) { top: 26px; }

body.menu-open .menu-toggle span:nth-child(1) {
  top: 20px;
  transform: rotate(135deg);
}
body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
body.menu-open .menu-toggle span:nth-child(3) {
  top: 20px;
  transform: rotate(-135deg);
}

/* Mobile Nav Fullscreen Glassmorphism - Final Polish */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 16, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
body.menu-open .mobile-nav { 
  opacity: 1; 
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-nav a {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.5rem;
  font-weight: 800;
  padding: 1.2rem 2rem;
  min-height: 60px;
  display: block;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
body.menu-open .mobile-nav a {
  opacity: 1;
  transform: translateX(0);
}
body.menu-open .mobile-nav a:nth-child(1) { transition-delay: 0.1s; }
body.menu-open .mobile-nav a:nth-child(2) { transition-delay: 0.2s; }
body.menu-open .mobile-nav a:nth-child(3) { transition-delay: 0.3s; }
body.menu-open .mobile-nav a:nth-child(4) { transition-delay: 0.4s; }
body.menu-open .mobile-nav a:nth-child(5) { transition-delay: 0.5s; }
body.menu-open .mobile-nav a:nth-child(6) { transition-delay: 0.6s; }

.hero {
  position: relative;
  min-height: max(100vh, 760px);
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-video-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #09090d;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 16, 0.84) 0%, rgba(11, 11, 16, 0.56) 42%, rgba(11, 11, 16, 0.28) 70%, rgba(11, 11, 16, 0.52) 100%),
    linear-gradient(180deg, rgba(11, 11, 16, 0.4) 0%, rgba(11, 11, 16, 0.15) 48%, rgba(11, 11, 16, 0.32) 100%);
}
.hero-video-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(190px, 30vh, 360px);
  background: linear-gradient(
    180deg,
    rgba(11, 11, 16, 0) 0%,
    rgba(11, 11, 16, 0.34) 22%,
    rgba(11, 11, 16, 0.76) 48%,
    rgba(11, 11, 16, 0.97) 72%,
    rgba(11, 11, 16, 1) 100%
  );
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: min(920px, 100%);
  padding-top: calc(var(--header-offset) + clamp(64px, 10vh, 132px)); /* Keep first hero line below fixed header at any zoom */
  padding-bottom: clamp(36px, 6vh, 84px);
}
.hero-copy::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}
.hero-content-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.hero-content-main {
  max-width: min(780px, 100%);
}
.hero .identity-bar--hero {
  height: clamp(92px, 14vw, 160px);
  margin-bottom: 0;
  margin-top: .2rem;
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(2rem, 4.3vw, 4.25rem);
  margin: 0 0 1rem;
  line-height: 1.04;
  max-width: 16ch;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}
.hero .lead {
  max-width: 680px;
  color: #d6d6d6;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.hero-rating-pill-premium {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stars-group {
  display: flex;
  gap: 4px;
  color: #ffc107;
}

.star-icon {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.4));
  opacity: 0;
  transform: scale(0);
  animation: starPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.star-delay-1 { animation-delay: 0.8s; }
.star-delay-2 { animation-delay: 0.9s; }
.star-delay-3 { animation-delay: 1s; }
.star-delay-4 { animation-delay: 1.1s; }
.star-delay-5 { animation-delay: 1.2s; }

.rating-text-new {
  font-size: 0.95rem;
  color: #e0e0e0;
  margin: 0;
  font-weight: 200;
  letter-spacing: 0.2px;
}

.rating-text-new strong {
  color: #fff;
  font-weight: 800;
}

@keyframes fadeSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes starPop {
  0% { opacity: 0; transform: scale(0) rotate(-15deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
.hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-indicator-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}
.hero .hero-actions .btn {
  min-width: 220px;
  padding: .95rem 1.45rem;
  font-size: 1.02rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.hero .hero-actions .btn--ghost {
  background: rgba(9, 9, 15, 0.28);
  border-color: rgba(233, 30, 99, 0.62);
  transition: all 0.3s ease;
}
.hero .hero-actions .btn--ghost:hover {
  background: rgba(233, 30, 99, 0.15);
  border-color: rgba(233, 30, 99, 0.8);
  box-shadow: 0 0 20px rgba(233, 30, 99, 0.2);
}

.card-grid {
  display: grid;
  gap: 1rem;
}
.card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.glass-card {
  --mx: 50%;
  --my: 50%;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15), 0 20px 40px rgba(0, 0, 0, 0.25);
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(300px circle at var(--mx) var(--my), rgba(255,255,255,.18), transparent 45%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.glass-card:hover::before {
  opacity: .7;
}
.service-card img { border-radius: 14px; aspect-ratio: 16/10; object-fit: cover; margin-bottom: .85rem; }

.service-image-wrapper {
  position: relative;
}
.service-card-premium .service-image-wrapper {
  background:
    radial-gradient(520px 220px at 50% 12%, rgba(233, 30, 99, 0.14), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}
.service-card-premium .service-image-wrapper img {
  opacity: 0.96;
  transition: opacity .22s ease, transform .28s ease;
}
.service-hover-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  opacity: .32;
  transition: opacity .22s ease;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .service-image-wrapper:hover .service-hover-video {
    opacity: .86;
  }

  .service-image-wrapper:hover img {
    opacity: .42;
  }
}

/* USE CASES SECTION */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.usecase-card {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.usecase-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.5);
  opacity: 0.25;
  transition: all 0.4s ease;
  z-index: 0;
}

.usecase-card:hover .usecase-bg-image {
  filter: blur(6px) brightness(0.6);
  opacity: 0.4;
  transform: scale(1.05);
}

.usecase-icon-box {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.12);
  border: 1px solid rgba(233, 30, 99, 0.3);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.usecase-icon-box svg {
  width: 26px;
  height: 26px;
  color: rgba(233, 30, 99, 0.9);
  transition: transform 0.3s ease;
}

.usecase-card:hover .usecase-icon-box {
  background: rgba(233, 30, 99, 0.18);
  border-color: rgba(233, 30, 99, 0.5);
  transform: translateY(-2px);
}

.usecase-card:hover .usecase-icon-box svg {
  transform: scale(1.1);
}

.usecase-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.usecase-content h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #fff;
}

.usecase-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  font-size: 0.95rem;
}

.usecases-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 800px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(233, 30, 99, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.trust-strip {
  padding: 1.1rem 0 1.8rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
.trust-reviews {
  margin: 0 0 1.15rem;
}
.trust-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-rating-pill--animated {
  position: relative;
  overflow: hidden;
  animation: floatPill 4s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.15), 0 0 0 1px rgba(255, 193, 7, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
  padding: 12px 32px;
  margin-bottom: 0;
}

.trust-rating-pill--animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-20deg);
  animation: shinePill 3s infinite;
}

@keyframes floatPill {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes shinePill {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.trust-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: .7rem;
}
.trust-testimonial-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  padding: .9rem;
}
.trust-testimonial-card p {
  margin: 0 0 .55rem;
  color: #e4e4e7;
  line-height: 1.52;
  font-size: .92rem;
}
.trust-testimonial-card span {
  color: #b7b7bf;
  font-size: .82rem;
}
.trust-strip__label {
  margin: 0 0 .65rem;
  color: var(--muted);
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.trust-strip__viewport {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.trust-strip__viewport::before,
.trust-strip__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.trust-strip__viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(11, 11, 16, .95) 0%, rgba(11, 11, 16, 0) 100%);
}
.trust-strip__viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(11, 11, 16, .95) 0%, rgba(11, 11, 16, 0) 100%);
}
.trust-strip__viewport--glass {
  padding: 0;
  border-radius: 16px;
}
.trust-strip__track {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: .9rem .7rem;
  width: max-content;
  animation: trustMarquee 26s linear infinite;
}
.trust-strip__logo-wrap {
  min-width: 152px;
  min-height: 58px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  display: grid;
  place-items: center;
  padding: .55rem .9rem;
}
.trust-strip__logo {
  max-height: 26px;
  width: auto;
  max-width: 100%;
  opacity: .7;
  filter: grayscale(1) brightness(7.2);
  transition: transform .24s ease, filter .24s ease, opacity .24s ease;
}
.trust-strip__logo-wrap:hover .trust-strip__logo {
  opacity: 1;
  filter: grayscale(0) brightness(1);
  transform: scale(1.1);
}

@keyframes trustMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.parallax-break {
  position: relative;
  height: clamp(240px, 42vh, 520px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.parallax-break__media {
  position: absolute;
  inset: -12% 0;
  background-image: var(--parallax-image);
  background-position: center;
  background-size: cover;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.parallax-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,16,.72), rgba(11,11,16,.2) 45%, rgba(11,11,16,.75));
}
.parallax-break__copy {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}
.parallax-break__copy span {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: .68rem 1.2rem;
  font-weight: 800;
  letter-spacing: .08em;
  font-size: clamp(.72rem, 2vw, .95rem);
  background: rgba(8,8,12,.44);
}

.review-snippet {
  margin-top: .8rem;
  color: #f2f2f2;
  font-weight: 400;
  letter-spacing: .02em;
  text-shadow: 0 6px 20px rgba(0,0,0,.35);
}
.review-snippet--footer {
  margin: .6rem 0 .9rem;
}

.scarcity-copy {
  margin: .15rem 0 .8rem;
  color: #ffb3cd;
  font-size: .88rem;
  font-weight: 400;
  min-height: 1.1rem;
  animation: scarcityPulse 1.8s ease-in-out infinite;
}

@keyframes scarcityPulse {
  0%, 100% { opacity: .8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

.media-reveal {
  clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
  opacity: .25;
  transition: clip-path .72s cubic-bezier(.2,.8,.2,1), opacity .45s ease;
}
.media-reveal.is-visible {
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  opacity: 1;
}

/* Sticky CTA - Final Polish */
.mobile-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 150%);
  z-index: 100; /* Over everything */
  border: 1px solid rgba(233, 30, 99, 0.3);
  border-radius: 50px;
  background: rgba(11, 11, 16, 0.85);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(233, 30, 99, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0.6rem 0.6rem 1.5rem;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.mobile-sticky-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.mobile-sticky-cta__text {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}
.mobile-sticky-cta .btn {
  width: auto;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .mobile-sticky-cta {
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 0.8rem 1rem;
    width: 100%;
  }
  .mobile-sticky-cta.is-visible {
    transform: translateY(0);
  }
  .mobile-sticky-cta__text {
    font-size: 0.85rem;
    white-space: normal;
  }
}

/* Master CTA Component */
.master-cta-wrapper {
  padding: 3rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.master-cta-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(233, 30, 99, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.master-cta-banner:hover {
  transform: scale(1.01);
  border-color: rgba(233, 30, 99, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(233, 30, 99, 0.1);
}
.master-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.master-cta-banner__copy {
  color: #fff;
  font-size: clamp(1rem, 1.25rem, 1.3rem);
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
  max-width: 600px;
}
.master-cta-banner__copy strong {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
}
.master-cta-banner__btn {
  white-space: nowrap;
}

@media (max-width: 991px) {
  .master-cta-banner__inner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }
  .master-cta-banner__copy {
    text-align: center;
  }
  .master-cta-banner__btn {
    width: 100%;
  }
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #4CAF50;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background-color: #4CAF50;
  opacity: 0.4;
  animation: pulseLoop 1.8s infinite;
}
@keyframes pulseLoop {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.8); opacity: 0; }
}

.banner-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.1), transparent);
  transform: skewX(-20deg);
  animation: sweep 8s infinite ease-in-out;
  z-index: 1;
  pointer-events: none;
}
@keyframes sweep {
  0% { left: -100%; }
  15% { left: 150%; }
  100% { left: 150%; }
}

/* Reveal Sequencing */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-item { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal-item.visible { opacity: 1; transform: translateY(0); }

.reveal-card { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-card.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

.conversion-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(233, 30, 99, 0.3);
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 15px rgba(233, 30, 99, .1);
  backdrop-filter: blur(11px);
  padding: .72rem .82rem .72rem 1rem;
  overflow: hidden;
}
.conversion-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -45%;
  width: 35%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.28) 50%, transparent 100%);
  transform: skewX(-18deg);
  animation: bannerShimmer 5s ease-in-out infinite;
}
.conversion-banner__copy {
  margin: 0;
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
}
.conversion-banner__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.12);
}
.conversion-banner__cta svg {
  width: 16px;
  height: 16px;
}
.conversion-banner--inline {
  width: min(100%, 980px);
  margin: 0 auto;
}

@keyframes bannerShimmer {
  0%, 72% { left: -45%; }
  86% { left: 120%; }
  100% { left: 120%; }
}

.timeline-item--banner {
  margin-top: 1rem;
}
.timeline-item--banner .timeline-dot {
  right: -10px;
}
.timeline-content--banner {
  padding: .8rem;
}

.addons-grid--media {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.addon-card--media {
  position: relative;
  min-height: 320px;
  padding: 1rem;
  border-radius: 20px;
  overflow: hidden;
  align-items: flex-end;
  isolation: isolate;
}
.addon-card.addon-card--media {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.addon-card--media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--addon-image);
  background-size: cover;
  background-position: center;
  opacity: 1;
  filter: brightness(0.78) saturate(1.03) contrast(1.04);
  z-index: 0;
  transition: transform .55s ease, filter .55s ease;
}
.addon-card--media::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle at 50% 44%, rgba(233, 30, 99, 0.18) 0%, rgba(233, 30, 99, 0) 58%);
  opacity: .12;
  transform: scale(0.97);
  transition: opacity .45s ease, transform .45s ease;
  z-index: 2;
  pointer-events: none;
}
.addon-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 4, 7, 0.2) 0%, rgba(4, 4, 7, 0.48) 52%, rgba(4, 4, 7, 0.86) 100%);
  z-index: 1;
  transition: opacity .35s ease;
  opacity: .96;
}
.addon-card.addon-card--media:hover {
  border-color: rgba(233, 30, 99, 0.38);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}
.addon-card--media:hover::before {
  opacity: 1;
  transform: scale(1.045);
  filter: brightness(0.9) saturate(1.08) contrast(1.05);
}
.addon-card--media:hover::after {
  opacity: .3;
  transform: scale(1);
}
.addon-card--media:hover .addon-overlay {
  opacity: .88;
}
.addon-card--media .addon-text {
  position: relative;
  z-index: 3;
  margin-top: auto;
  width: 100%;
  padding: .95rem 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(7, 7, 12, 0.24) 0%, rgba(7, 7, 12, 0.84) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  text-align: left;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.addon-card--media:hover .addon-text {
  border-color: rgba(233, 30, 99, 0.42);
  background: linear-gradient(180deg, rgba(7, 7, 12, 0.22) 0%, rgba(7, 7, 12, 0.88) 100%);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}
.addon-card--media .addon-text h4 {
  margin: 0 0 .38rem;
  font-size: clamp(1.05rem, 0.88rem + 0.45vw, 1.35rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.addon-card--media .addon-text p {
  margin: 0;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
.addon-card--media .addon-text h4,
.addon-card--media .addon-text p {
  color: #fff;
}
.addon-icon--glow {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 0 0 10px rgba(233, 30, 99, .1);
  backdrop-filter: blur(8px);
}
@media (max-width: 768px) {
  .addon-card--media {
    min-height: 290px;
    padding: .85rem;
  }
  .addon-card--media .addon-text {
    padding: .82rem .88rem .95rem;
  }
}

.media-preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .86;
  transition: transform .5s ease, opacity .3s ease;
}
.media-card:hover .media-preview-video {
  transform: scale(1.08);
  opacity: .98;
}

.footer-modern {
  background: #07070b;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, #e91e63, #ff0055) 1;
}
.footer-brand-logo {
  width: 152px;
  margin-bottom: .35rem;
}
.footer-socials {
  display: flex;
  gap: .6rem;
  margin-top: .65rem;
}
.footer-social-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: #f2f2f4;
  background: rgba(255,255,255,.03);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.footer-social-link svg {
  width: 18px;
  height: 18px;
}
.footer-social-link:hover {
  transform: translateY(-1px) scale(1.04);
  border-color: rgba(233, 30, 99, .4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 10px rgba(233, 30, 99, .15);
}
.footer-phone a {
  font-size: 1.35rem;
  color: #fff;
  font-weight: 800;
}
.footer-map-preview {
  width: 100%;
  height: 92px;
  border-radius: 12px;
  object-fit: cover;
  margin-top: .5rem;
  border: 1px solid rgba(255,255,255,.12);
}


.steps {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: .75rem;
}
.steps li {
  display: flex;
  align-items: center;
  gap: .75rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .85rem 1rem;
}
.steps span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  font-size: .9rem;
}

.gallery-category-label {
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 800;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: .75rem;
}

.reels-placeholder,
.cinema-placeholder {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  min-height: 220px;
}

.reels-placeholder .placeholder-icon,
.cinema-placeholder .placeholder-icon {
  width: 64px;
  height: 64px;
  color: rgba(255, 255, 255, 0.2);
  opacity: 0.6;
}

.reels-placeholder p,
.cinema-placeholder p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  font-weight: 500;
}

.reels-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 900px;
  height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(42, 114, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cinema-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: .75rem;
}

/* Media Cards - Reels & Cinema */
.media-card {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.media-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 2;
}

.media-poster-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #1a1a20;
}

.media-poster-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
  opacity: 0.9;
}

.media-card:hover .media-poster-wrapper img {
  transform: scale(1.08);
  opacity: 0.6;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.media-card:hover .play-overlay {
  opacity: 1;
}

.glass-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s;
}

.media-card:hover .glass-icon {
  transform: scale(1);
  background: linear-gradient(135deg, #e91e63, #ff0055);
  border-color: transparent;
}

.glass-icon svg {
  width: 24px;
  height: 24px;
  margin-left: 2px;
}

.reel-card {
  aspect-ratio: 9/16;
}

.cinema-card {
  aspect-ratio: 16/9;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}
.reel-tile, .proof-tile, .gallery-item {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}
.reel-tile img { aspect-ratio: 9/16; object-fit: cover; }
.proof-tile img { aspect-ratio: 16/9; object-fit: cover; }

.currency-toggle { display: inline-flex; gap: .5rem; margin-bottom: 1rem; }
.currency-btn {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .5rem .95rem;
  cursor: pointer;
}
.currency-btn.is-active {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-color: transparent;
}
.pricing-card { position: relative; padding-left: 2rem; }
.pricing-card .identity-bar {
  position: absolute;
  left: .8rem;
  top: 1.2rem;
  height: calc(100% - 2.4rem);
}
.hours-tabs { display: flex; gap: .5rem; margin: .7rem 0; }
.hour-tab {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .35rem .65rem;
  cursor: pointer;
}
.hour-tab.is-active { border-color: var(--accent); }
.price { font-size: 1.9rem; font-weight: 800; margin: .35rem 0 1rem; }

.masonry-grid { columns: 4 220px; column-gap: .75rem; }
.gallery-item { 
  width: 100%; 
  margin-bottom: .75rem; 
  break-inside: avoid; 
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, filter 0.4s ease;
}
.gallery-item::after {
  content: "Увеличи";
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 16, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  z-index: 2;
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item img { 
  width: 100%; 
  height: auto; 
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: blur(2px);
}
.gallery-item img.media-reveal,
.gallery-item img.media-reveal.is-visible {
  clip-path: none;
  opacity: 1;
}
.gallery-item.is-hidden { display: none; }
#load-more-gallery { margin-top: 1rem; }

.testimonial-slider {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  min-height: 180px;
}
.testimonial { display: none; }
.testimonial.is-active { display: block; }
.testimonial p { font-size: 1.15rem; margin-top: 0; }
.testimonial span { color: var(--muted); }

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .85rem 1rem;
  margin-bottom: .65rem;
  background: rgba(255,255,255,.02);
}
.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list p { color: var(--muted); }

.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: rgba(255,255,255,.02);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}
label { display: grid; gap: .4rem; color: var(--muted); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #13131b;
  color: #fff;
  padding: .7rem .75rem;
  border-radius: 12px;
  font: inherit;
}
textarea { resize: vertical; }
.form-actions { margin-top: .85rem; display: flex; gap: .65rem; flex-wrap: wrap; }
.form-status { margin-top: .65rem; color: var(--muted); }

.site-footer {
  background:
    radial-gradient(1200px 380px at 10% -4%, rgba(233, 30, 99, 0.14), transparent 62%),
    radial-gradient(900px 340px at 92% -8%, rgba(42, 114, 255, 0.1), transparent 60%),
    #08080c;
  padding: clamp(62px, 8vw, 88px) 0 0;
  position: relative;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.site-footer::before,
.footer-border-glow {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  opacity: 0.5;
}
.footer-hero {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1rem;
  margin-bottom: 1.2rem;
  background: rgba(255,255,255,.02);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr 1fr;
  gap: clamp(1.5rem, 2.5vw, 3.4rem);
  padding-bottom: clamp(34px, 4.5vw, 60px);
}
.footer-grid--rich {
  grid-template-columns: 1.2fr 0.7fr 1fr 1fr;
  gap: clamp(1.5rem, 2.5vw, 3.4rem);
}
.footer-col {
  border: 0;
  border-radius: 0;
  padding: 0.35rem 0;
  background: transparent;
}
.footer-logo-wrapper {
  margin-bottom: 0.9rem;
}
.footer-logo-text {
  font-size: clamp(1.8rem, 2.2vw, 2.3rem);
  line-height: 1.05;
  margin: 0 0 0.35rem;
  letter-spacing: 0.01em;
}

.footer-title,
.footer-h {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 1.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.35;
}
.footer-copy {
  color: #a0a0a0;
  font-size: 1rem;
  margin: .25rem 0 1.5rem;
  line-height: 1.5;
  max-width: 42ch;
}
.footer-copy--muted {
  font-size: .88rem;
  opacity: .9;
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.footer-list li {
  color: #a0a0a0;
  line-height: 1.45;
  margin-bottom: 12px;
}
.footer-link,
.footer-list a {
  color: #a0a0a0;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  position: relative;
}
.footer-link::after,
.footer-list a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}
.footer-link:hover::after,
.footer-list a:hover::after {
  width: 100%;
}

.footer-link:hover,
.footer-list a:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.trust-badges-vertical {
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.86rem;
  color: #d7d7dc;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.trust-pill:hover {
  transform: translateX(3px);
  border-color: rgba(233, 30, 99, 0.55);
  background: rgba(255, 255, 255, 0.05);
}
.footer-trust-badges {
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  font-size: 0.85rem;
  color: #d0d0d0;
  background: rgba(255,255,255,.03);
  transition: .3s;
}
.footer-badge:hover {
  background: rgba(255,255,255,.06);
  border-color: var(--accent);
}
.pill-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.footer-seo-text {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}
.footer-contact-info {
  display: grid;
  gap: 0.65rem;
}

.contact-item,
.footer-phone a,
.footer-copy a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  margin-bottom: 8px;
  transition: 0.3s;
}

.contact-item:hover,
.footer-phone a:hover,
.footer-copy a:hover {
  color: var(--accent);
}
.footer-address p {
  margin: 0.25rem 0 0.8rem;
  color: #b5b5be;
  line-height: 1.55;
}
.footer-map-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.45rem;
}
.footer-map-box img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.map-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.7rem 0.8rem;
  background: linear-gradient(180deg, rgba(8, 8, 12, 0), rgba(8, 8, 12, 0.9) 75%);
  color: #fff;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 30px 0;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1rem 2rem;
}

.copyright {
  font-size: 0.9rem;
  color: #8a8a97;
  margin: 0;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.35rem;
}
.footer-legal a {
  color: #ababba;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0,0,0,.88);
  display: grid;
  place-items: center;
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.media-lightbox.is-open { opacity: 1; }
.media-lightbox__content {
  width: min(92vw, 1100px);
  max-height: 90vh;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(6, 6, 10, 0.4);
  touch-action: pan-y;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.media-lightbox.is-open .media-lightbox__content {
  transform: scale(1);
}
.media-lightbox__content img,
.media-lightbox__content video {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
}
.media-lightbox__media {
  width: 100%;
  max-height: 88vh;
  display: block;
  object-fit: contain;
}
.media-lightbox__media.is-entering-from-right {
  animation: lightboxEnterFromRight .34s cubic-bezier(.2,.8,.2,1) both;
}
.media-lightbox__media.is-entering-from-left {
  animation: lightboxEnterFromLeft .34s cubic-bezier(.2,.8,.2,1) both;
}
.media-lightbox__media.is-leaving-to-left,
.media-lightbox__media.is-leaving-to-right {
  position: absolute;
  inset: 0;
}
.media-lightbox__media.is-leaving-to-left {
  animation: lightboxLeaveToLeft .34s cubic-bezier(.2,.8,.2,1) both;
}
.media-lightbox__media.is-leaving-to-right {
  animation: lightboxLeaveToRight .34s cubic-bezier(.2,.8,.2,1) both;
}
.media-lightbox__media.is-active {
  z-index: 1;
}
.media-lightbox__close,
.media-lightbox__nav {
  position: absolute;
  border: 1px solid var(--line);
  color: #fff;
  background: rgba(0,0,0,.4);
  border-radius: 10px;
  width: 44px;
  height: 44px;
}
.media-lightbox__close { top: 1.2rem; right: 1.2rem; }
.media-lightbox__nav--prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.media-lightbox__nav--next { right: 1rem; top: 50%; transform: translateY(-50%); }

@keyframes lightboxEnterFromRight {
  from { opacity: .3; transform: translateX(32px) scale(.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes lightboxEnterFromLeft {
  from { opacity: .3; transform: translateX(-32px) scale(.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes lightboxLeaveToLeft {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to { opacity: 0; transform: translateX(-32px) scale(.985); }
}

@keyframes lightboxLeaveToRight {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to { opacity: 0; transform: translateX(32px) scale(.985); }
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #12121a;
  padding: .9rem;
  max-width: 920px;
  margin: 0 auto;
}
.cookie-banner__content p { margin: 0; color: var(--muted); line-height: 1.5; }
.cookie-banner__content a { color: #fff; text-decoration: none; border-bottom: none; }
.cookie-banner__actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.cookie-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(233, 30, 99, .45);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.2), rgba(233,30,99,.92));
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 35;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(233,30,99,.35);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: cookiePulse 2.2s ease-in-out infinite;
}
.cookie-fab svg { width: 24px; height: 24px; }
.cookie-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 34px rgba(233,30,99,.45);
}
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.cookie-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 8, .72);
  backdrop-filter: blur(6px);
}
.cookie-modal__dialog {
  position: relative;
  width: min(92vw, 560px);
  z-index: 1;
  border-radius: 18px;
  transform: translateY(12px) scale(.98);
  transition: transform .24s ease;
}
.cookie-modal.is-open .cookie-modal__dialog {
  transform: translateY(0) scale(1);
}
.cookie-modal__close {
  position: absolute;
  top: .7rem;
  right: .7rem;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: #fff;
  cursor: pointer;
}
.cookie-modal__copy {
  margin-top: .25rem;
  margin-bottom: 1rem;
}
.cookie-preferences {
  border-top: 1px solid var(--line);
  padding-top: .85rem;
  display: grid;
  gap: .65rem;
}
.cookie-modal .cookie-preferences {
  border-top: 0;
  padding-top: 0;
}
.cookie-preferences__title {
  margin: 0;
  font-weight: 800;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--muted);
}
.cookie-option input {
  width: 18px;
  height: 18px;
}
.cookie-preferences__actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: .25rem;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.legal-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 8, .78);
  backdrop-filter: blur(8px);
}
.legal-modal__dialog {
  position: relative;
  width: min(96vw, 1120px);
  height: min(88vh, 840px);
  z-index: 1;
  border-radius: 20px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  transform: translateY(14px) scale(.98);
  transition: transform .24s ease;
}
.legal-modal.is-open .legal-modal__dialog {
  transform: translateY(0) scale(1);
}
.legal-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  padding: .8rem .9rem;
}
.legal-modal__header h3 {
  margin: 0;
  font-size: 1.05rem;
}
.legal-modal__actions {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.legal-action,
.legal-modal__close {
  min-width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: #fff;
  padding: 0 .55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.legal-action svg {
  width: 18px;
  height: 18px;
}
.legal-action:hover,
.legal-modal__close:hover {
  transform: translateY(-1px);
  border-color: rgba(233, 30, 99, .3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 0 0 10px rgba(233, 30, 99, .1);
}
.legal-action--primary {
  min-width: auto;
  padding: 0 .8rem;
  font-size: .8rem;
  font-weight: 800;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-color: transparent;
}
.legal-modal__body {
  min-height: 0;
  background: rgba(8, 8, 12, .68);
}
.legal-modal__frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b0b10;
}

body.cookie-banner-visible .cookie-fab {
  bottom: 6.6rem;
}

@keyframes cookiePulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(233,30,99,.35); }
  50% { box-shadow: 0 10px 34px rgba(233,30,99,.55); }
}

.policy-page {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #151520 0%, var(--bg) 45%);
}
.policy-content {
  max-width: 880px;
  padding: 3rem 0 4rem;
}
.policy-content h1,
.policy-content h2,
.policy-content h3 {
  margin-top: 1.35rem;
  margin-bottom: .65rem;
}
.policy-content p {
  color: var(--muted);
  line-height: 1.62;
  margin: .45rem 0;
}
.policy-content a {
  color: #fff;
  text-decoration: none;
}

.policy-content a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Developer Credit */
.dev-credit-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.35rem 0 2.1rem;
  text-align: center;
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(39, 217, 255, 0.12) 0%, rgba(39, 217, 255, 0) 60%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.dev-credit-wrapper .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
}

.dev-credit-text {
  margin: 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 400;
}

.dev-credit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(11, 15, 26, 0.86), rgba(6, 9, 17, 0.92));
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.dev-name {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(0.94rem, 1.15vw, 1.18rem);
  font-weight: 700;
  color: rgba(244, 247, 255, 0.92);
  letter-spacing: 0.01em;
  line-height: 1;
}

.dev-slash {
  color: #27d9ff;
  margin: 0 0.08em;
}

.dev-credit-link:hover {
  transform: translateY(-1px);
  border-color: rgba(39, 217, 255, 0.45);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 14px rgba(39, 217, 255, 0.18);
}

@media (min-width: 1600px) {
  :root { --container: 1320px; }
  .hero h1 { max-width: 15ch; }
}

@media (min-width: 2100px) {
  :root { --container: 1460px; }
  .hero h1 {
    font-size: clamp(2.3rem, 3.25vw, 4.5rem);
    max-width: 14ch;
  }
}

@media (max-width: 1240px) {
  .header-inner {
    gap: 0.7rem;
    min-height: 68px;
  }
  .desktop-nav {
    gap: clamp(0.75rem, 1.2vw, 1.2rem);
  }
  .header-primary-cta {
    font-size: 0.86rem;
    padding-inline: 1.05rem;
  }
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .header-primary-cta {
    font-size: 0.82rem;
    padding-inline: 0.95rem;
  }
  .usecases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .header-primary-cta { display: none; }
  .hero-copy {
    padding-top: calc(var(--header-offset) + 38px);
  }
  .card-grid--2, .card-grid--3, .usecases-grid, .reels-grid, .cinema-grid, .proof-grid { grid-template-columns: 1fr; }
  .footer-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .footer-hero .identity-bar {
    height: 48px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .hero,
  .hero-copy { min-height: 100vh; }
  .hero-video-fade { height: clamp(170px, 30vh, 280px); }
  .hero-content-row {
    gap: .9rem;
  }
  .hero .hero-actions .btn {
    min-width: 0;
    width: 100%;
  }
  .cookie-banner {
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
  }
  .cookie-fab {
    right: .75rem;
    bottom: .75rem;
    width: 52px;
    height: 52px;
  }
  body.cookie-banner-visible .cookie-fab {
    bottom: 11.2rem;
  }
  .cookie-banner__actions .btn,
  .cookie-preferences__actions .btn {
    width: 100%;
  }
  .conversion-banner {
    border-radius: 16px;
    align-items: flex-start;
    flex-direction: column;
  }
  .legal-modal__dialog {
    width: min(98vw, 1120px);
    height: min(92vh, 900px);
  }
  .legal-modal__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .legal-modal__actions {
    width: 100%;
  }
  .addons-grid--media {
    grid-template-columns: 1fr;
  }
  .timeline-item--banner .timeline-dot {
    left: 10px;
    right: auto;
  }
}

@media (max-width: 767px) {
  .header-primary-cta {
    display: none;
  }

  .usecases-snap {
    display: flex !important;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: .5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .usecases-snap .usecase-card {
    min-width: min(86vw, 340px);
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .hero-rating-pill-premium {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 14px;
    padding: 6px 16px;
    gap: 10px;
    margin-bottom: 1.5rem;
  }
  .rating-text-new {
    font-size: 0.85rem;
  }
  .star-icon {
    width: 14px;
    height: 14px;
  }

  body {
    padding-bottom: 80px; /* Prevent overlap with mobile sticky CTA */
  }

  .trust-rating-pill {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 14px;
    padding: 6px 16px;
    gap: 10px;
  }

  .trust-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .footer-grid,
  .footer-grid--rich {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-map-box img {
    aspect-ratio: 21 / 10;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-top: 56px;
  }
  .footer-h {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  .footer-copy {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .footer-grid,
  .footer-grid--rich {
    grid-template-columns: 1fr;
    gap: 1.55rem;
  }
  .footer-bottom,
  .footer-bottom-flex {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
    gap: 0.45rem 1rem;
  }
  .trust-pill {
    font-size: 0.82rem;
  }
}

@media (min-width: 768px) {
  /* Removed display: none for sticky CTA to show on desktop */
}

@media (prefers-reduced-motion: reduce) {
  .site-noise,
  .trust-strip__track,
  .scarcity-copy {
    animation: none !important;
  }
}
#form-status { margin-top: 1rem; font-weight: 800; font-size: 0.9rem; transition: all 0.3s ease; }
.error-msg { color: #ff5252; }
.success-msg { color: #4CAF50; }




