/* ============================================
   EIGENFRAME — Light, Colorful, Creative
   ============================================ */

:root {
  /* Base */
  --white: #ffffff;
  --off-white: #fafafa;
  --light: #f4f4f6;
  --dark: #0f0f12;
  --text: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8888a8;
  --border: rgba(0,0,0,0.07);
  --border-strong: rgba(0,0,0,0.12);

  /* Brand Colors */
  --purple: #7c5cbf;
  --purple-light: #a882e8;
  --purple-pale: #f0eaff;
  --pink: #e05c9a;
  --pink-light: #f59bc8;
  --pink-pale: #ffeef6;
  --orange: #f5832a;
  --orange-light: #ffb370;
  --orange-pale: #fff4ea;
  --teal: #1ec8a0;
  --teal-light: #6ee8ca;
  --teal-pale: #eafaf6;
  --blue: #3a7bd5;
  --blue-light: #80aef0;
  --blue-pale: #eaf0ff;
  --green: #2ec97a;
  --green-pale: #e8fbf0;
  --yellow: #f5c842;
  --yellow-pale: #fffbea;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #e8d5ff 0%, #ffd6e8 40%, #ffe8c8 70%, #d6f0ff 100%);
  --grad-purple: linear-gradient(135deg, #a882e8, #7c5cbf);
  --grad-pink: linear-gradient(135deg, #f59bc8, #e05c9a);
  --grad-orange: linear-gradient(135deg, #ffb370, #f5832a);
  --grad-teal: linear-gradient(135deg, #6ee8ca, #1ec8a0);
  --grad-blue: linear-gradient(135deg, #80aef0, #3a7bd5);
  --grad-green: linear-gradient(135deg, #8ff0b8, #2ec97a);

  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* Full-width: sections nutzen volle Breite, Container limitiert den Content */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.tc { text-align: center; }

/* Sections nehmen volle Breite ein */
section { width: 100%; position: relative; overflow: hidden; }

/* ============================================
   BLOBS — Wiederverwendbare Deko-Formen
   ============================================ */

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
}
.section-headline em {
  font-style: italic;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 100px;
}
.section-tag--purple { background: var(--purple-pale); color: var(--purple); }
.section-tag--pink   { background: var(--pink-pale);   color: var(--pink); }
.section-tag--orange { background: var(--orange-pale);  color: var(--orange); }
.section-tag--teal   { background: var(--teal-pale);   color: var(--teal); }
.section-tag--green  { background: var(--green-pale);  color: var(--green); }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--text);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(15,15,18,0.2);
}
.btn--primary:hover {
  background: #2a2a3e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15,15,18,0.25);
}
.btn--outline {
  border: 1.5px solid var(--border-strong);
  color: var(--text);
}
.btn--outline:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-pale);
}
.btn--lg { padding: 16px 32px; font-size: 0.95rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 48px;
  max-width: 1440px;
  margin: 0 auto;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1.1; flex-shrink: 0; }
.logo-mark { font-family: var(--font-serif); font-size: 1.2rem; letter-spacing: 0.04em; color: var(--text); }
.logo-sub  { font-size: 0.58rem; letter-spacing: 0.1em; color: var(--text-light); text-transform: uppercase; }
.nav__links { display: flex; list-style: none; gap: 28px; margin-left: auto; }
.nav__links a { font-size: 0.85rem; color: var(--text-mid); transition: color var(--transition); font-weight: 500; }
.nav__links a:hover { color: var(--text); }
.nav__cta { margin-left: 8px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; margin-left: auto; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  gap: 16px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.nav__mobile a { font-size: 1rem; color: var(--text-mid); font-weight: 500; }
.nav__mobile.open { display: flex; }

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 48px 100px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 80px;
  width: 100%;
  /* Blobs brauchen relativen Container — kein Extra-overflow nötig */
}

/* Hero Blobs */
.blob--hero-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,170,255,0.5) 0%, rgba(255,180,220,0.3) 50%, transparent 70%);
  top: -200px; right: -100px;
  filter: blur(100px);
}
.blob--hero-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,200,100,0.4) 0%, transparent 70%);
  bottom: 0px; right: 300px;
  filter: blur(80px);
}
.blob--hero-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(100,220,200,0.3) 0%, transparent 70%);
  top: 30%; left: 20%;
  filter: blur(70px);
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 560px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-pale);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text);
}
.hero__headline em {
  font-style: italic;
  background: linear-gradient(135deg, #a882e8 0%, #e05c9a 50%, #f5832a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__trusted {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
}
.trusted-logos {
  display: flex;
  gap: 12px;
}
.trusted-logos span {
  background: var(--light);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-mid);
}

/* Hero Visual */
.hero__visual {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero__card--main {
  width: 320px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.card-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(160,120,240,0.12), transparent 60%);
  pointer-events: none;
}
.card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.card-visual {
  height: 180px;
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f0eaff 0%, #ffd6e8 50%, #ffe8c8 100%);
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-orb {
  position: absolute;
  border-radius: 50%;
}
.bo1 { width: 100px; height: 100px; background: radial-gradient(circle, rgba(160,130,230,0.6), rgba(160,130,230,0.1)); top: -10px; left: -20px; }
.bo2 { width: 80px; height: 80px; background: radial-gradient(circle, rgba(240,100,160,0.5), transparent); bottom: -10px; right: -10px; }
.bo3 { width: 50px; height: 50px; background: radial-gradient(circle, rgba(245,130,40,0.5), transparent); top: 50%; right: 30%; }
.card-center-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  text-align: center;
  color: var(--text);
  line-height: 1.2;
  position: relative;
  z-index: 2;
}
.card-tag {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  background: var(--teal-pale);
  padding: 6px 12px;
  border-radius: 100px;
  display: inline-block;
}

/* Mini Cards */
.hero__card--mini {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
}
.hero__card--top { top: -10px; right: -50px; }
.hero__card--bottom { bottom: -10px; left: -50px; }
.mini-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--purple-pale);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.mini-icon--green { background: var(--green-pale); color: var(--green); }
.mini-title { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.mini-sub { font-size: 0.72rem; color: var(--text-light); }

/* ============================================
   LOGOS BAND
   ============================================ */

.logos-band {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
  width: 100%;
}
.logos-band__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.logos-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.logos-label--right { margin-top: 28px; }
.logos-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.logo-item--text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-mid);
  opacity: 0.55;
  letter-spacing: 0.02em;
}
.logo-sep { color: var(--border-strong); font-size: 1.4rem; }

/* Client logo slots */
.logos-row--clients { gap: 16px; }
.client-logo-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 64px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--shadow-sm);
}
.client-logo-slot span {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.client-logo-slot--empty {
  border-style: dashed;
  opacity: 0.5;
  font-style: italic;
  color: var(--text-light);
}

/* ============================================
   PROBLEM
   ============================================ */

.problem {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.blob--problem-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,92,191,0.12), transparent 70%);
  top: -100px; left: -150px;
}
.blob--problem-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,100,160,0.1), transparent 70%);
  bottom: -100px; right: -100px;
}
.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.problem__text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.problem__text strong { color: var(--text); }
.problem__cards { display: flex; flex-direction: column; gap: 16px; }

.stat-pill {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.stat-pill:hover { transform: translateX(4px); box-shadow: var(--shadow); }

.stat-pill--1 { border-left: 4px solid var(--purple); }
.stat-pill--2 { border-left: 4px solid var(--pink); }
.stat-pill--3 { border-left: 4px solid var(--orange); }

.stat-pill__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--purple);
  flex-shrink: 0;
  min-width: 70px;
}
.stat-pill--2 .stat-pill__num { color: var(--pink); }
.stat-pill--3 .stat-pill__num { color: var(--orange); }
.stat-pill__num span { font-size: 1.2rem; }
.stat-pill__text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.5; }
.stat-pill__icon { font-size: 2rem; color: var(--orange); min-width: 70px; text-align: center; }

/* ============================================
   AI BRAND WORLDS
   ============================================ */

.brand-worlds {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, #fdf8ff 100%);
}
.blob--bw-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,170,255,0.2), transparent 70%);
  top: -100px; right: -150px;
}
.blob--bw-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,160,200,0.15), transparent 70%);
  bottom: 0; left: -100px;
}
.bw__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.bw__intro-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* Compare Cards */
.bw__compare {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.compare-card {
  flex: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--white);
}
.compare-label {
  padding: 14px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.compare-label--bad  { background: #fff0f0; color: #d63030; border-bottom: 1px solid #ffe0e0; }
.compare-label--good { background: var(--teal-pale); color: var(--teal); border-bottom: 1px solid rgba(30,200,160,0.2); }

/* World-Card bekommt leichten Highlight-Rahmen */
.compare-card--world {
  border-color: rgba(124,92,191,0.3);
  box-shadow: 0 8px 40px rgba(124,92,191,0.12);
}

.compare-visual {
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}
.generic-visual { background: linear-gradient(135deg, #f5f5f7, #ebebef); }
.brand-visual   { background: linear-gradient(135deg, #f0eaff 0%, #ffd6e8 60%, #ffe8c8 100%); }

/* Generic visual shapes */
.gv-circle { position: absolute; border-radius: 50%; }
.gc1 { width: 80px; height: 80px; background: rgba(150,150,170,0.15); top: 10%; left: 10%; }
.gc2 { width: 100px; height: 100px; background: rgba(130,130,150,0.12); bottom: 10%; right: 5%; }
.gc3 { width: 50px; height: 50px; background: rgba(140,140,160,0.1); top: 50%; left: 40%; }
.gv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 120px; }
.gv-tile { height: 50px; border-radius: 8px; background: rgba(150,150,170,0.15); }

/* Brand visual shapes */
.bv-orb { position: absolute; border-radius: 50%; }
.bvo1 { width: 100px; height: 100px; background: radial-gradient(circle, rgba(168,130,232,0.5), transparent); top: 0; left: 0; }
.bvo2 { width: 80px; height: 80px; background: radial-gradient(circle, rgba(224,92,154,0.4), transparent); bottom: 0; right: 0; }
.bvo3 { width: 60px; height: 60px; background: radial-gradient(circle, rgba(245,131,42,0.3), transparent); top: 40%; right: 20%; }
.bv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 120px; position: relative; z-index: 2; }
.bv-tile { height: 50px; border-radius: 8px; }
.bt1 { background: linear-gradient(135deg, rgba(168,130,232,0.6), rgba(168,130,232,0.2)); }
.bt2 { background: linear-gradient(135deg, rgba(224,92,154,0.5), rgba(224,92,154,0.1)); }
.bt3 { background: linear-gradient(135deg, rgba(245,131,42,0.5), rgba(245,131,42,0.1)); }
.bt4 { background: linear-gradient(135deg, rgba(168,130,232,0.4), rgba(224,92,154,0.3)); }

.compare-footer {
  padding: 14px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border-top: 1px solid var(--border);
}
.bad-footer  { color: #a03030; background: #fff8f8; }
.good-footer { color: var(--teal); background: var(--teal-pale); }

.compare-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.arrow-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--text);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
}
.arrow-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
}

/* Brand Visual Storytelling Badge */
.bv-story-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--purple);
  white-space: nowrap;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

/* Outcome label */
.bw__outcome { position: relative; z-index: 1; }
.bw__outcome-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Use Cases */
.bw__usecases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.usecase-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.usecase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.uc--1 .uc-icon { color: var(--purple); }
.uc--2 .uc-icon { color: var(--pink); }
.uc--3 .uc-icon { color: var(--orange); }
.uc--4 .uc-icon { color: var(--teal); }
.uc--1:hover { border-color: var(--purple); background: var(--purple-pale); }
.uc--2:hover { border-color: var(--pink); background: var(--pink-pale); }
.uc--3:hover { border-color: var(--orange); background: var(--orange-pale); }
.uc--4:hover { border-color: var(--teal); background: var(--teal-pale); }
.uc-icon { font-size: 1.8rem; margin-bottom: 14px; }
.usecase-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.usecase-card p  { font-size: 0.82rem; color: var(--text-mid); line-height: 1.55; }

/* Product CTAs */
.bw__products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.product-cta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.product-cta--world:hover { border-color: var(--pink); background: var(--pink-pale); }
.product-cta--film:hover  { border-color: var(--orange); background: var(--orange-pale); }
.product-cta__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.product-cta--world .product-cta__label { color: var(--pink); }
.product-cta--film  .product-cta__label { color: var(--orange); }
.product-cta__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.product-cta__sub {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================
   AI FILMS
   ============================================ */

.films {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff8f0 0%, var(--white) 100%);
}
.blob--films-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,131,42,0.15), transparent 70%);
  top: -80px; right: -100px;
}
.blob--films-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(245,200,66,0.15), transparent 70%);
  bottom: 0; left: -80px;
}
.films__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.films__left p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}
.films__services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.fsl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
}
.fsl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-orange);
  flex-shrink: 0;
}
.tech-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-chip {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--orange-pale);
  color: var(--orange);
  border: 1px solid rgba(245,131,42,0.2);
}

/* Reel Card */
.reel-card {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}
.reel-card:hover { transform: scale(1.02); box-shadow: 0 30px 80px rgba(0,0,0,0.12); }
.reel-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffe8c8 0%, #ffd6e8 40%, #e8d5ff 100%);
}
.reel-blob { position: absolute; border-radius: 50%; }
.rb1 { width: 60%; height: 60%; background: radial-gradient(circle, rgba(245,131,42,0.5), transparent); top: -20%; left: -10%; }
.rb2 { width: 50%; height: 50%; background: radial-gradient(circle, rgba(224,92,154,0.4), transparent); bottom: -10%; right: -10%; }
.rb3 { width: 40%; height: 40%; background: radial-gradient(circle, rgba(168,130,232,0.3), transparent); top: 30%; right: 10%; }
.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
}
.reel-play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}
.reel-card:hover .reel-play-btn { transform: scale(1.1); background: var(--white); }
.reel-title { font-weight: 700; font-size: 1rem; color: var(--text); }
.reel-sub { font-size: 0.75rem; color: var(--text-mid); letter-spacing: 0.04em; }

.films__right { position: relative; }
.films__speed-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.speed-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
}
.speed-text { font-size: 0.78rem; color: var(--text-mid); line-height: 1.4; }

/* ============================================
   ADVANTAGES
   ============================================ */

.advantages {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f4fff9 0%, var(--white) 100%);
}
.blob--adv-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,200,160,0.12), transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
}
.adv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.adv-card {
  padding: 36px 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.adv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.adv--1:hover { border-color: var(--blue); }
.adv--2:hover { border-color: var(--pink); }
.adv--3:hover { border-color: var(--orange); }
.adv-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-light);
}
.adv-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.adv-icon-wrap--blue  { background: var(--blue-pale);   color: var(--blue); }
.adv-icon-wrap--pink  { background: var(--pink-pale);   color: var(--pink); }
.adv-icon-wrap--orange{ background: var(--orange-pale);  color: var(--orange); }
.adv-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.adv-card p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================
   PROCESS
   ============================================ */

.process {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, #f8f5ff 100%);
}
.blob--proc-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,92,191,0.1), transparent 70%);
  top: 0; right: -100px;
}
.blob--proc-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(240,100,160,0.08), transparent 70%);
  bottom: 0; left: -80px;
}
.process__timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.proc-step { display: flex; flex-direction: column; gap: 12px; }
.proc-step__head { display: flex; align-items: center; gap: 0; }
.proc-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.proc-num--1 { background: var(--grad-purple); }
.proc-num--2 { background: var(--grad-pink); }
.proc-num--3 { background: var(--grad-orange); }
.proc-num--4 { background: var(--grad-teal); }
.proc-num--5 { background: var(--grad-blue); }
.proc-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--border-strong), var(--border));
  margin-left: 4px;
}
.proc-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  flex: 1;
}
.proc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.proc-card--1:hover { border-color: var(--purple); }
.proc-card--2:hover { border-color: var(--pink); }
.proc-card--3:hover { border-color: var(--orange); }
.proc-card--4:hover { border-color: var(--teal); }
.proc-card--5:hover { border-color: var(--blue); }
.proc-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; }
.proc-card p  { font-size: 0.8rem; color: var(--text-mid); line-height: 1.55; }

/* ============================================
   CASES
   ============================================ */

.cases {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.blob--cases-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,201,122,0.12), transparent 70%);
  top: -80px; left: -100px;
}
.blob--cases-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,130,232,0.1), transparent 70%);
  bottom: 0; right: -80px;
}
.cases__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.case-card--big { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.case-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.case-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-card--big .case-visual { height: 100%; min-height: 280px; }
.cv--green  { background: linear-gradient(135deg, #d6f5e6 0%, #a8f0cc 100%); }
.cv--purple { background: linear-gradient(135deg, #e8d6ff 0%, #c8a8f5 100%); }
.cv--orange { background: linear-gradient(135deg, #ffe8c8 0%, #ffc87a 100%); }

.cv-blob { position: absolute; border-radius: 50%; }
.cvb1 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(46,201,122,0.4), transparent); top: -50px; left: -50px; }
.cvb2 { width: 150px; height: 150px; background: radial-gradient(circle, rgba(30,200,160,0.3), transparent); bottom: -30px; right: -20px; }
.cvb3 { width: 250px; height: 250px; background: radial-gradient(circle, rgba(168,130,232,0.4), transparent); top: -60px; right: -60px; }
.cvb4 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(245,131,42,0.4), transparent); bottom: -50px; left: 50%; transform: translateX(-50%); }

.cv-tag-overlay {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
}

.case-body { padding: 28px; }
.case-chip {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text-light);
  background: var(--light);
  padding: 4px 10px;
  border-radius: 100px;
}
.case-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.case-body p  { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
.case-metrics { display: flex; gap: 10px; flex-wrap: wrap; }
.metric-pill {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}
.metric-pill span { font-weight: 800; }
.metric-pill--green  { background: var(--green-pale);  color: var(--green); }
.metric-pill--purple { background: var(--purple-pale); color: var(--purple); }
.metric-pill--orange { background: var(--orange-pale); color: var(--orange); }

/* ============================================
   PRICING
   ============================================ */

.pricing {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fdf8ff 0%, var(--white) 100%);
}
.blob--price-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(224,92,154,0.1), transparent 70%);
  top: -100px; left: 50%; transform: translateX(-50%);
}
.pricing__sub {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 48px;
  margin-top: -8px;
}
.pricing__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.pricing__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--white);
  border-radius: var(--radius-xl);
}
.pricing__table thead tr { background: var(--off-white); }
.pricing__table th {
  padding: 18px 24px;
  text-align: left;
  font-weight: 700;
  color: var(--text-mid);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.th--highlight { color: var(--purple); background: var(--purple-pale); }
.pricing__table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.pricing__table tbody tr:last-child { border-bottom: none; }
.pricing__table tbody tr:hover { background: var(--off-white); }
.pricing__table td { padding: 16px 24px; color: var(--text-mid); vertical-align: middle; line-height: 1.4; }
.pricing__table td:first-child { color: var(--text); font-weight: 600; }
.pricing__table td small { display: block; font-size: 0.72rem; color: var(--text-light); margin-top: 2px; font-weight: 400; }
.td--highlight { background: var(--purple-pale); color: var(--purple) !important; font-weight: 700 !important; }
.td--highlight small { color: var(--purple-light) !important; }
.td--muted { color: var(--text-light) !important; }
.td--muted small { color: var(--text-light) !important; }
.td--na { color: var(--text-light) !important; font-style: italic; }
.td--na small { color: var(--text-light) !important; font-style: normal; }
.pricing__cta { margin-top: 16px; }

/* ============================================
   ABOUT
   ============================================ */

.about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.blob--about-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,200,160,0.1), transparent 70%);
  top: -80px; right: -100px;
}
.blob--about-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,92,191,0.08), transparent 70%);
  bottom: 0; left: -80px;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about__frame {
  width: 100%;
  aspect-ratio: 1;
  max-width: 440px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8d5ff 0%, #ffd6e8 50%, #d6f5e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.af-blob { position: absolute; border-radius: 50%; }
.af1 { width: 60%; height: 60%; background: radial-gradient(circle, rgba(168,130,232,0.5), transparent); top: -10%; left: -10%; }
.af2 { width: 50%; height: 50%; background: radial-gradient(circle, rgba(224,92,154,0.4), transparent); bottom: -5%; right: -5%; }
.af3 { width: 40%; height: 40%; background: radial-gradient(circle, rgba(245,200,66,0.3), transparent); top: 40%; right: 5%; }
.af-center { position: relative; z-index: 2; text-align: center; }
.af-logo {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.af-tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.about__text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about__facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.about-fact { display: flex; align-items: center; gap: 20px; }
.af-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  min-width: 70px;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.af-label { font-size: 0.85rem; color: var(--text-mid); }

/* ============================================
   CONTACT
   ============================================ */

.contact {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, #f8f5ff 100%);
}
.blob--contact-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,130,232,0.12), transparent 70%);
  top: -100px; right: -100px;
}
.blob--contact-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,100,160,0.1), transparent 70%);
  bottom: -80px; left: -80px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact__left p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}
.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple);
  transition: opacity var(--transition);
}
.contact-email-link:hover { opacity: 0.7; }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}
input, textarea {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: none;
}
input::placeholder, textarea::placeholder { color: var(--text-light); }
input:focus, textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,92,191,0.1);
  background: var(--white);
}

.interest-btns { display: flex; gap: 8px; }
.interest-btn {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: var(--off-white);
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  font-family: inherit;
}
.interest-btn:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-pale); }
.interest-btn.active { border-color: var(--purple); color: var(--purple); background: var(--purple-pale); }

.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success.show { display: flex; }
.success-orb {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.form-success h3 { font-size: 1.2rem; color: var(--text); }
.form-success p  { font-size: 0.9rem; color: var(--text-mid); }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
  width: 100%;
}
.footer__inner-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-by {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer-claim {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  margin-top: 8px;
}
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero { flex-direction: column; padding: 130px 32px 80px; gap: 50px; }
  .hero__content { max-width: 100%; }
  .hero__visual { width: 100%; }
  .logos-band__inner { padding: 0 32px; }
  .footer__inner-wrap { padding: 0 32px; }
  .problem__inner { grid-template-columns: 1fr; gap: 48px; }
  .bw__header { grid-template-columns: 1fr; gap: 20px; }
  .bw__compare { flex-direction: column; }
  .bw__products { grid-template-columns: 1fr; }
  .compare-arrow { flex-direction: row; }
  .films__layout { grid-template-columns: 1fr; }
  .adv__grid { grid-template-columns: 1fr; }
  .process__timeline { grid-template-columns: 1fr 1fr; }
  .cases__grid { grid-template-columns: 1fr; }
  .case-card--big { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .bw__usecases { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .logos-band__inner { padding: 0 20px; }
  .footer__inner-wrap { padding: 0 20px; }
  .nav__inner { padding: 16px 20px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { padding: 16px 20px 24px; }
  .hero { padding: 110px 20px 60px; }
  .hero__card--top, .hero__card--bottom { position: static; }
  .hero__visual { flex-direction: column; }
  .hero__card--mini { display: none; }
  .process__timeline { grid-template-columns: 1fr; }
  .proc-line { display: none; }
  .bw__usecases { grid-template-columns: 1fr 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .interest-btns { flex-direction: column; }
  .films__speed-badge { position: static; margin-top: 16px; width: fit-content; }
  .logos-row--clients { flex-wrap: wrap; }
  .client-logo-slot { min-width: 100px; }
  .pricing__table { min-width: 640px; }
}
