/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --brand-1: #6d28d9;
  --brand-2: #8b5cf6;
  --brand-3: #22d3ee;
  --brand-accent: #a78bfa;
  --gradient-brand: linear-gradient(135deg, var(--brand-2), var(--brand-3));

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;

  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
  --transition: 0.3s ease;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--gray-950);
  color: var(--gray-100);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Shared section spacing & typography */
section:not(.hero) {
  padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 24px);
}
section:not(.hero) h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(139, 92, 246, 0.1);
  color: var(--brand-accent);
  border: 1px solid rgba(139, 92, 246, 0.2);
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(3, 7, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
}
.navbar-logo-img {
  height: 32px;
  width: auto;
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--gray-200);
  font-weight: 600;
  font-size: 13px;
  transition: all var(--transition);
}
.navbar-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}
.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--gradient-brand);
  color: var(--gray-950);
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

/* ============================================
   BLOK 1 - HERO (Rozpoznanie)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
  background: #0a0e1a;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.25) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.7;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}
.hero-blob-1 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.2);
  filter: blur(100px);
  top: -10%; left: -10%;
}
.hero-blob-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.15);
  filter: blur(80px);
  bottom: -5%; right: -5%;
}
@keyframes blobPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-keyword {
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

/* Glitch effect */
.glitch {
  position: relative;
  animation: glitchAppear 0.6s ease 0.3s both;
}
@keyframes glitchAppear {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  opacity: 0;
}
.glitch::before {
  color: #ff00ff;
  text-shadow: -2px 0 #ff00ff;
  animation: glitchLayer1 4s step-end infinite;
}
.glitch::after {
  color: #00ffff;
  text-shadow: 2px 0 #00ffff;
  animation: glitchLayer2 4s step-end infinite 0.5s;
}

/* Glitch na samym tekscie - jitter */
.glitch {
  animation: glitchAppear 0.6s ease 0.3s both, glitchJitter 4s step-end infinite 1s;
}

@keyframes glitchLayer1 {
  0%  { opacity: 0; clip-path: inset(0 0 0 0); transform: translate(0); }
  15% { opacity: 1; clip-path: inset(15% 0 55% 0); transform: translate(-10px, 0) skewX(-4deg); }
  16% { opacity: 1; clip-path: inset(50% 0 10% 0); transform: translate(8px, 0) skewX(2deg); }
  17% { opacity: 1; clip-path: inset(30% 0 45% 0); transform: translate(-12px, 0); }
  18% { opacity: 1; clip-path: inset(70% 0 5% 0); transform: translate(6px, 0) skewX(-3deg); }
  19% { opacity: 0; transform: translate(0); }
  42% { opacity: 0; }
  43% { opacity: 1; clip-path: inset(5% 0 65% 0); transform: translate(12px, 0) skewX(-5deg); }
  44% { opacity: 1; clip-path: inset(60% 0 10% 0); transform: translate(-8px, 0) skewX(3deg); }
  45% { opacity: 1; clip-path: inset(25% 0 40% 0); transform: translate(14px, 0) skewX(-2deg); }
  46% { opacity: 1; clip-path: inset(45% 0 25% 0); transform: translate(-6px, 0) skewX(4deg); }
  47% { opacity: 0; transform: translate(0); }
  78% { opacity: 0; }
  79% { opacity: 1; clip-path: inset(35% 0 30% 0); transform: translate(-11px, 0) skewX(3deg); }
  80% { opacity: 1; clip-path: inset(8% 0 75% 0); transform: translate(9px, 0); }
  81% { opacity: 1; clip-path: inset(55% 0 15% 0); transform: translate(-7px, 0) skewX(-4deg); }
  82% { opacity: 0; transform: translate(0); }
  100% { opacity: 0; }
}

@keyframes glitchLayer2 {
  0%  { opacity: 0; clip-path: inset(0 0 0 0); transform: translate(0); }
  20% { opacity: 0; }
  21% { opacity: 1; clip-path: inset(45% 0 15% 0); transform: translate(10px, 0) skewX(3deg); }
  22% { opacity: 1; clip-path: inset(5% 0 55% 0); transform: translate(-8px, 0) skewX(-4deg); }
  23% { opacity: 1; clip-path: inset(65% 0 5% 0); transform: translate(12px, 0); }
  24% { opacity: 0; transform: translate(0); }
  55% { opacity: 0; }
  56% { opacity: 1; clip-path: inset(60% 0 5% 0); transform: translate(-12px, 0) skewX(5deg); }
  57% { opacity: 1; clip-path: inset(20% 0 45% 0); transform: translate(9px, 0) skewX(-3deg); }
  58% { opacity: 1; clip-path: inset(40% 0 30% 0); transform: translate(-14px, 0) skewX(2deg); }
  59% { opacity: 0; transform: translate(0); }
  85% { opacity: 0; }
  86% { opacity: 1; clip-path: inset(10% 0 50% 0); transform: translate(11px, 0) skewX(-4deg); }
  87% { opacity: 1; clip-path: inset(55% 0 10% 0); transform: translate(-8px, 0) skewX(3deg); }
  88% { opacity: 1; clip-path: inset(30% 0 40% 0); transform: translate(6px, 0); }
  89% { opacity: 0; transform: translate(0); }
  100% { opacity: 0; }
}

@keyframes glitchJitter {
  0%  { transform: translate(0); }
  15% { transform: translate(-4px, 2px) skewX(-1deg); }
  16% { transform: translate(3px, -2px) skewX(1deg); }
  17% { transform: translate(-2px, 1px); }
  19% { transform: translate(0) skewX(0); }
  43% { transform: translate(3px, -1px) skewX(-1.5deg); }
  44% { transform: translate(-3px, 2px) skewX(1deg); }
  46% { transform: translate(2px, 0); }
  47% { transform: translate(0) skewX(0); }
  79% { transform: translate(-3px, 2px) skewX(1deg); }
  80% { transform: translate(2px, -2px) skewX(-1deg); }
  81% { transform: translate(-1px, 1px); }
  82% { transform: translate(0) skewX(0); }
  100% { transform: translate(0); }
}

.hero-sub {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--gray-200);
  margin-top: 40px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}
.hero-tagline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-top: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.5s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 2.0s forwards;
}
.hero-scroll-hint span {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid var(--gray-500);
  border-bottom: 2px solid var(--gray-500);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ============================================
   BLOK 2 - TRANSFORMACJA
   ============================================ */
.transformation {
  text-align: center;
  position: relative;
  background: #0d1025;
  overflow: hidden;
}
/* Blobs layer - solid bg, izolowana warstwa GPU */
.transformation-blobs-layer {
  position: absolute;
  inset: 0;
  background: #0d1025;
  pointer-events: none;
  will-change: contents;
  isolation: isolate;
}
.transformation-blob,
.transformation-blob-2,
.transformation-blob-3 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: opacity, transform;
}
.transformation-blob {
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(109, 40, 217, 0.12) 0%, rgba(34, 211, 238, 0.05) 50%, transparent 70%);
  filter: blur(60px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.transformation-blob-2 {
  width: 350px; height: 350px;
  background: rgba(34, 211, 238, 0.06);
  filter: blur(70px);
  top: 20%; left: 10%;
}
.transformation-blob-3 {
  width: 300px; height: 300px;
  background: rgba(139, 92, 246, 0.07);
  filter: blur(60px);
  bottom: 15%; right: 10%;
}
.transformation-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}
.transformation h2 {
  margin-bottom: 16px;
}

/* Reusable: szary opis pod naglowkiem */
.section-desc {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--gray-400);
  line-height: 1.7;
  margin-top: 12px;
}

/* Reusable: wyrazisty podtekst pod naglowkiem */
.section-claim {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--gray-200);
  line-height: 1.4;
}

/* Visual container - moduły wrzucają tu swój content */
.transform-visual-container {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
}
.transform-visual-container canvas {
  border-radius: var(--radius-xl);
}


/* Shared helpers for visual modules */
.tv-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
}
.tv-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tv-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 16px;
  text-align: center;
}
.tv-arrow {
  font-size: 32px;
  color: var(--gray-500);
  flex-shrink: 0;
}
.tv-single canvas {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 2 / 1;
}

@media (max-width: 768px) {
  .tv-split { gap: 24px; }
  .tv-arrow { transform: rotate(90deg); }
}

/* ============================================
   BLOK 3 - CZLOWIEK (3 karty)
   ============================================ */
.human {
  position: relative;
}
.human-header {
  text-align: center;
  margin-bottom: 64px;
}
.human-header h2 {
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  position: relative;
  background: var(--gray-900);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-2xl);
  padding: 40px 32px;
  transition: all var(--transition);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: transform var(--transition);
}
.card:hover .card-icon { transform: scale(1.1); }

.card-icon--time {
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
}
.card-icon--control {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.card-icon--identity {
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.card h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.card h3 .gradient-text {
  display: inline;
}
.card p {
  color: var(--gray-400);
  line-height: 1.7;
  font-size: 16px;
}

/* ============================================
   BLOK 4 - AUTENTYCZNOSC
   ============================================ */
.authenticity {
  background: #0d1025;
  text-align: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.authenticity-blob {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.05);
  filter: blur(100px);
  top: -20%; right: -10%;
  pointer-events: none;
}
.authenticity-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}
.authenticity h2 {
  margin-bottom: 16px;
}
.authenticity .subtitle {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 32px;
  max-width: none;
}
.authenticity p {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--gray-400);
  line-height: 1.7;
  margin: 0 auto 16px;
}
.authenticity p:last-of-type {
  margin-bottom: 48px;
}

.partners-main {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}
.partners-bar {
  width: 100%;
}
.partner-logo-main {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: inline-block;
}
.partners-bar {
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 32px 48px;
}
.partner-logo-img {
  height: 60px;
  width: auto;
}

/* ============================================
   BLOK 5 - ZAKRES (kostki techniczne)
   ============================================ */
.scope {
  position: relative;
}
.scope-header {
  text-align: center;
  margin-bottom: 64px;
}
.scope-header h2 {
}
.scope-header p {
  color: var(--gray-400);
  margin-top: 12px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.scope-card {
  background: var(--gray-900);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.scope-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.scope-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.15);
  transition: transform var(--transition);
}
.scope-card:hover .scope-card-icon { transform: scale(1.1); }
.scope-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.scope-card .tech-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-accent);
  margin-bottom: 12px;
}
.scope-card p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ============================================
   BLOK - ZALETY MSP
   ============================================ */
.msp-benefits {
  text-align: center;
  background: #0d1025;
}
.msp-content {
  max-width: 1000px;
  margin: 0 auto;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.benefit-card {
  background: var(--gray-900);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: left;
  transition: all var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.6;
}
.benefit-card p strong {
  color: #ffffff;
  font-weight: 600;
}

/* ============================================
   BLOK - JAK WYGLĄDA WDROŻENIE
   ============================================ */
.onboarding {
}
.onboarding-content {
  max-width: 700px;
  margin: 0 auto;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-top: 48px;
}
/* Vertical line */
.steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-2), var(--brand-3));
  opacity: 0.2;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0;
  position: relative;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--brand-accent);
  position: relative;
  z-index: 1;
}
.step-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  padding-top: 2px;
}
.step-text p {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ============================================
   BLOK 6 - CTA / FORMULARZ
   ============================================ */
.cta {
  background: #0d1025;
  position: relative;
  overflow: hidden;
}
.cta-blob {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.08);
  filter: blur(100px);
  bottom: -20%; left: -10%;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.cta h2 {
  margin-bottom: 12px;
}
.cta .cta-sub {
  color: var(--gray-400);
  margin-bottom: 48px;
  font-size: 17px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-200);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--gray-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  color: white;
  font-family: var(--font);
  font-size: 16px;
  transition: all var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-hint {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 2px;
}

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--gradient-brand);
  color: var(--gray-950);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.3);
}
.btn-submit:active {
  transform: translateY(0);
}

.form-status {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
}
.form-status--ok { color: #4ade80; }
.form-status--error { color: #f87171; }

.form-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--gray-500);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.footer p {
  font-size: 14px;
  color: var(--gray-500);
}
.footer a {
  color: var(--brand-accent);
  transition: color var(--transition);
}
.footer a:hover { color: var(--brand-3); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero { min-height: 90vh; padding: 100px 20px 60px; }
  .navbar-btn-secondary { display: none !important; }
  .cards-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .partners-bar { grid-template-columns: 1fr; gap: 24px; }
  .partner-logo-img { height: auto; max-width: 200px; }
  .partner-logo-main { max-width: 80%; }
  .card h3 { font-size: 24px; }
  .scope-grid { grid-template-columns: 1fr; }
  .tv-split {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .tv-split canvas {
    max-width: 280px;
    max-height: 280px;
  }
  .tv-split .tv-col:nth-child(2) canvas {
    transform: rotate(90deg);
  }
  .partners-bar { gap: 24px; }
  .navbar-cta { padding: 8px 18px; font-size: 13px; }
}

@media (max-width: 480px) {
  .hero-keyword { font-size: clamp(44px, 14vw, 60px); }
  .card { padding: 32px 24px; }
  .section-badge { font-size: 11px; }
}
