/* ═══════════════════════════════════════════════════════════
   InPulsa — Cinematic Landing v4
   Fullscreen scroll-snap · CSS-only animations · Zero images
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #050A14;
  --bg-raised: #0A1122;
  --bg-card: #0F1A2E;
  --bg-card-hover: #152238;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);

  --text: #E8EDF5;
  --text-secondary: #8899B0;
  --text-muted: #4A5E78;

  --primary: #3B82F6;
  --primary-light: #60A5FA;
  --primary-dark: #2563EB;
  --primary-glow: rgba(59,130,246,0.2);
  --gradient: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
  --gradient-text: linear-gradient(135deg, #60A5FA 0%, #22D3EE 100%);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 3px;
  --transition: 200ms cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-snap-type: y proximity; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: var(--primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--text); }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5 { font-family: var(--font); letter-spacing: -0.03em; line-height: 1.1; font-weight: 700; }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1.1rem 3rem;
  background: transparent;
  color: #e6e6e6; font-weight: 700; font-size: 1rem;
  border-radius: 3px; border: 1.5px solid #e6e6e6; cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-family: var(--font, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}
button.btn-primary { line-height: 1; }
.btn-primary:hover {
  background: #e6e6e6; color: #08090a;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(230,230,230,0.18);
  border-color: #e6e6e6;
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: transparent; color: var(--text-secondary); font-weight: 600; font-size: 1.1rem;
  border-radius: 3px; border: 1px solid var(--border); cursor: pointer;
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--border-hover); color: var(--text); background: rgba(255,255,255,0.03); }

/* ─── Navbar ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  background: transparent;
  transition: all 0.4s;
}
.navbar.scrolled {
  background: rgba(5,10,20,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.navbar .container { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }

.nav-brand { display: flex; align-items: center; gap: 0.65rem; font-size: 1.2rem; font-weight: 700; color: var(--text); }
.nav-brand__circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.18), 0 4px 14px rgba(59,130,246,0.3);
  flex-shrink: 0;
}
.nav-brand__logo { width: 30px; height: 30px; object-fit: contain; }
.highlight { color: var(--primary-light); }

.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a { padding: 0.5rem 0.85rem; color: var(--text-secondary); font-size: 0.875rem; font-weight: 500; border-radius: 3px; transition: all var(--transition); }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-lang { font-size: 0.75rem !important; border: 1px solid var(--border) !important; border-radius: 3px !important; padding: 0.3rem 0.6rem !important; }
.nav-cta { background: transparent !important; color: #e6e6e6 !important; border: 1.5px solid #e6e6e6 !important; border-radius: 3px !important; font-weight: 600 !important; transition: all 0.3s !important; }
.nav-cta:hover { background: #e6e6e6 !important; color: #08090a !important; border-color: #e6e6e6 !important; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 3px; padding: 0.4rem; cursor: pointer; color: var(--text); }

/* ═══════════════════════════════════════
   CINEMATIC SECTIONS — Fullscreen
   ═══════════════════════════════════════ */

.cine-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  scroll-snap-align: start;
  padding: 2rem;
}

.cine-section .content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

/* ─── Cinematic Animations ─── */
.cine-section .content > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}
.cine-section.visible .content > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.1s; }
.cine-section.visible .content > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.25s; }
.cine-section.visible .content > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.4s; }
.cine-section.visible .content > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.55s; }
.cine-section.visible .content > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.7s; }

/* ═══ SECTION 1: HERO ═══ */
.s-hero {
  background: var(--bg);
}

/* Animated gradient orbs */
.s-hero::before,
.s-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: orb-float 8s ease-in-out infinite;
}
.s-hero::before {
  width: 600px; height: 600px;
  top: -15%; left: -5%;
  background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 70%);
  animation-delay: 0s;
}
.s-hero::after {
  width: 500px; height: 500px;
  bottom: -10%; right: -5%;
  background: radial-gradient(circle, rgba(6,182,212,0.2) 0%, transparent 70%);
  animation-delay: -4s;
}

/* Grid background */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 100%);
}

/* Animated scan line */
.hero-scanline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-light) 50%, transparent 100%);
  opacity: 0.3;
  animation: scanline 4s ease-in-out infinite;
}

@keyframes scanline {
  0% { top: 0; opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { top: 100%; opacity: 0; }
}

.s-hero h1 {
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 2rem;
  text-shadow: 0 0 80px rgba(59,130,246,0.15);
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(96,165,250,0.3));
}

.s-hero .subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  animation: scroll-bounce 2s ease-in-out infinite;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary-light), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes scroll-line {
  0% { opacity: 1; height: 40px; }
  50% { opacity: 0.3; height: 20px; }
  100% { opacity: 1; height: 40px; }
}

/* ═══ SECTION 2: PLUG & PLAY ═══ */
.s-plugplay {
  background: var(--bg-raised);
}

/* Circuit lines animation */
.circuit-bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.circuit-bg .line {
  position: absolute;
  background: var(--primary);
  opacity: 0.06;
}
.circuit-bg .line--h {
  height: 1px;
  animation: circuit-h 6s linear infinite;
}
.circuit-bg .line--h:nth-child(1) { top: 20%; width: 0; left: 0; animation-delay: 0s; }
.circuit-bg .line--h:nth-child(2) { top: 50%; width: 0; right: 0; animation-delay: 2s; animation-direction: reverse; }
.circuit-bg .line--h:nth-child(3) { top: 80%; width: 0; left: 0; animation-delay: 4s; }
.circuit-bg .line--v {
  width: 1px;
  animation: circuit-v 6s linear infinite;
}
.circuit-bg .line--v:nth-child(4) { left: 25%; height: 0; top: 0; animation-delay: 1s; }
.circuit-bg .line--v:nth-child(5) { left: 75%; height: 0; bottom: 0; animation-delay: 3s; animation-direction: reverse; }

/* Pulse nodes */
.circuit-bg .node {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0;
  animation: node-pulse 4s ease-in-out infinite;
}
.circuit-bg .node:nth-child(6) { top: 20%; left: 25%; animation-delay: 1.5s; }
.circuit-bg .node:nth-child(7) { top: 50%; left: 75%; animation-delay: 3.5s; }
.circuit-bg .node:nth-child(8) { top: 80%; left: 25%; animation-delay: 5.5s; }

@keyframes circuit-h { 0% { width: 0; } 50% { width: 100%; } 100% { width: 0; } }
@keyframes circuit-v { 0% { height: 0; } 50% { height: 100%; } 100% { height: 0; } }
@keyframes node-pulse {
  0%, 100% { opacity: 0; transform: scale(0); }
  20%, 80% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); box-shadow: 0 0 20px var(--primary-light); }
}

.s-plugplay .label {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #22D3EE;
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.15);
  padding: 0.35rem 1.2rem;
  border-radius: 3px;
  margin-bottom: 2.5rem;
}

.s-plugplay h2 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 1.75rem;
  text-shadow: 0 0 60px rgba(6,182,212,0.12);
}

.s-plugplay .desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

/* Animated feature pills */
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s;
}
.pill:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: rgba(59,130,246,0.08);
}
.pill svg { width: 16px; height: 16px; stroke: var(--primary-light); fill: none; stroke-width: 2; }

/* ═══ SECTION 3: CONFIGURE ═══ */
.s-configure {
  background: var(--bg);
}

/* Floating geometric shapes */
.geo-bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.geo-bg .shape {
  position: absolute;
  border: 1px solid rgba(139,92,246,0.1);
  animation: geo-float 12s ease-in-out infinite;
}
.geo-bg .shape:nth-child(1) {
  width: 200px; height: 200px;
  top: 10%; left: 5%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-delay: 0s;
}
.geo-bg .shape:nth-child(2) {
  width: 300px; height: 300px;
  bottom: 5%; right: 5%;
  border-radius: 50%;
  border-color: rgba(59,130,246,0.08);
  animation-delay: -4s;
}
.geo-bg .shape:nth-child(3) {
  width: 150px; height: 150px;
  top: 60%; left: 50%;
  transform: rotate(45deg);
  border-color: rgba(6,182,212,0.08);
  animation-delay: -8s;
}

@keyframes geo-float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
  25% { transform: translateY(-20px) rotate(5deg); opacity: 0.8; }
  50% { transform: translateY(10px) rotate(-3deg); opacity: 0.4; }
  75% { transform: translateY(-15px) rotate(2deg); opacity: 0.7; }
}

.s-configure .label {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #A78BFA;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.15);
  padding: 0.35rem 1.2rem;
  border-radius: 3px;
  margin-bottom: 2.5rem;
}

.s-configure h2 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 1.75rem;
  text-shadow: 0 0 60px rgba(139,92,246,0.12);
}

.s-configure .desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

/* Animated config list */
.config-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.config-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  min-width: 280px;
  transition: all 0.3s;
}
.config-item:hover {
  border-color: rgba(139,92,246,0.3);
  background: rgba(139,92,246,0.06);
  color: var(--text);
}
.config-item .check {
  width: 20px; height: 20px;
  border-radius: 3px;
  background: rgba(139,92,246,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.config-item .check svg { width: 12px; height: 12px; stroke: #A78BFA; fill: none; stroke-width: 3; }

/* ═══ SECTION 4: TAILORED ═══ */
.s-tailored {
  background: linear-gradient(180deg, var(--bg-raised) 0%, #0D0F1A 100%);
}

/* Premium glow effect */
.premium-glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.premium-glow::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(251,191,36,0.08) 0%, transparent 50%);
  animation: premium-breathe 6s ease-in-out infinite;
}
.premium-glow::after {
  content: '';
  position: absolute;
  width: 400px; height: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, rgba(251,191,36,0.2), transparent);
  animation: premium-line 4s ease-in-out infinite;
}

@keyframes premium-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}
@keyframes premium-line {
  0%, 100% { width: 200px; opacity: 0.2; }
  50% { width: 600px; opacity: 0.5; }
}

.s-tailored .label {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #FBBF24;
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.15);
  padding: 0.35rem 1.2rem;
  border-radius: 3px;
  margin-bottom: 2.5rem;
}

.s-tailored h2 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 1.75rem;
  text-shadow: 0 0 60px rgba(251,191,36,0.1);
}

.s-tailored .desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

/* ═══ SECTION 5: SECTORS ═══ */
.s-sectors {
  background: var(--bg);
}

.s-sectors h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.s-sectors .desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.sector-ring {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.sector-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-secondary);
  transition: all 0.4s;
}
.sector-item:hover { color: var(--text); }
.sector-item:hover .sector-icon {
  border-color: var(--s-color);
  box-shadow: 0 0 30px var(--s-glow);
  transform: scale(1.1);
}

.sector-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s;
}
.sector-icon svg { width: 28px; height: 28px; stroke: var(--s-color); fill: none; stroke-width: 1.5; }

.sector-item span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Stagger animation for sectors */
.s-sectors.visible .sector-item:nth-child(1) { transition-delay: 0.1s; }
.s-sectors.visible .sector-item:nth-child(2) { transition-delay: 0.2s; }
.s-sectors.visible .sector-item:nth-child(3) { transition-delay: 0.3s; }
.s-sectors.visible .sector-item:nth-child(4) { transition-delay: 0.4s; }
.s-sectors.visible .sector-item:nth-child(5) { transition-delay: 0.5s; }
.s-sectors.visible .sector-item:nth-child(6) { transition-delay: 0.6s; }

.sector-item {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.6s cubic-bezier(.16,1,.3,1);
}
.s-sectors.visible .sector-item {
  opacity: 1;
  transform: none;
}

/* ═══ SECTION 6: PRICING ═══ */
.s-pricing {
  background: var(--bg-raised);
  scroll-snap-align: start;
}

.s-pricing .content { max-width: 1100px; }

.s-pricing h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 1rem;
}
.s-pricing .desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; margin-bottom: 2.5rem;
}
.pricing-toggle span { font-size: 0.875rem; color: var(--text-muted); cursor: pointer; transition: color var(--transition); }
.pricing-toggle span.active { color: var(--text); font-weight: 600; }
.toggle-track {
  width: 44px; height: 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 3px; cursor: pointer; position: relative;
  transition: all var(--transition);
}
.toggle-track::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--primary); transition: transform var(--transition);
}
.toggle-track.annual::after { transform: translateX(20px); }
.save-badge {
  font-size: 0.7rem; font-weight: 700;
  background: rgba(34,197,94,0.15); color: #22C55E;
  padding: 0.2rem 0.5rem; border-radius: 3px;
  border: 1px solid rgba(34,197,94,0.2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: left;
}

.price-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
  position: relative;
}
.price-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(59,130,246,0.06) 0%, var(--bg-card) 100%);
}
.price-card .badge {
  position: absolute; top: -0.65rem; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--primary); color: #fff;
  padding: 0.25rem 0.75rem; border-radius: 3px; white-space: nowrap;
}
.price-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.price { margin-bottom: 0.5rem; }
.price-value { font-size: 3rem; font-weight: 800; letter-spacing: -0.04em; }
.price span { font-size: 1rem; color: var(--text-muted); }
.price-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.price-card ul { list-style: none; margin-bottom: 2rem; }
.price-card li { padding: 0.4rem 0; font-size: 0.875rem; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.price-card li::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); margin-right: 0.65rem; vertical-align: middle; }
.price-card .btn-primary, .price-card .btn-ghost {
  width: 100%; justify-content: center;
  padding: 0.75rem 1rem; font-size: 0.8rem;
  text-transform: none; letter-spacing: 0;
}

.pricing-loading { grid-column: 1 / -1; text-align: center; padding: 3rem 0; }

/* ═══ Footer ═══ */
.footer { padding: 4rem 2rem 2rem; border-top: 1px solid var(--border); scroll-snap-align: end; }
.footer .container { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; }
.footer-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; max-width: 280px; }
.footer h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 1rem; font-weight: 600; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.5rem; }
.footer li a { font-size: 0.875rem; color: var(--text-secondary); }
.footer li a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border);
  font-size: 0.75rem; color: var(--text-muted);
}

/* ═══ Global keyframes ═══ */
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 10px) scale(1.03); }
}

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 768px) {
  html { scroll-snap-type: none; }

  .nav-links {
    display: none; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5,10,20,0.97);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .cine-section { min-height: 100svh; padding: 6rem 1.25rem 3rem; }
  .cine-section .content { padding: 1rem; }

  .s-hero h1 { font-size: 2.5rem; }
  .s-plugplay h2, .s-configure h2, .s-tailored h2 { font-size: 2rem; }

  .feature-pills { gap: 0.5rem; }
  .pill { font-size: 0.8rem; padding: 0.4rem 0.75rem; }

  .config-item { min-width: auto; width: 100%; }

  .sector-ring { gap: 1rem; }
  .sector-icon { width: 56px; height: 56px; }
  .sector-icon svg { width: 22px; height: 22px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { order: -1; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .s-hero h1 { font-size: 2rem; }
  .btn-primary, .btn-ghost { padding: 0.8rem 1.5rem; font-size: 1rem; }
}

/* ─── Contact Modal ─── */
.contact-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; }
.contact-modal[hidden] { display: none; }
.contact-modal__backdrop { position: absolute; inset: 0; background: rgba(8,9,10,0.85); backdrop-filter: blur(4px); }
.contact-modal__panel {
  position: relative; background: #0f1421; border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem; max-width: 540px; width: calc(100% - 2rem); max-height: 90vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5); animation: cm-in 0.25s ease-out;
}
@keyframes cm-in { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: none; } }
.contact-modal__close { position: absolute; top: 0.75rem; right: 0.85rem; background: none; border: none; color: #e6e6e6; font-size: 1.8rem; cursor: pointer; line-height: 1; padding: 0.25rem 0.5rem; }
.contact-modal__close:hover { color: #fff; }
.contact-modal__panel h3 { margin: 0 0 0.4rem; font-size: 1.4rem; color: #e6e6e6; }
.contact-modal__lead { margin: 0 0 1.25rem; color: rgba(230,230,230,0.65); font-size: 0.875rem; }
.contact-field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.85rem; }
.contact-field label { font-size: 0.78rem; font-weight: 600; color: rgba(230,230,230,0.85); text-transform: uppercase; letter-spacing: 0.04em; }
.contact-field input, .contact-field select, .contact-field textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: #e6e6e6; padding: 0.65rem 0.85rem; font-size: 0.9rem; font-family: inherit;
  transition: border-color 0.2s; width: 100%; box-sizing: border-box;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
}
.contact-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23e6e6e6' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}
.contact-field select option {
  background: #0f1421; color: #e6e6e6;
}
.contact-field input:focus, .contact-field select:focus, .contact-field textarea:focus {
  outline: none; border-color: rgba(230,230,230,0.5);
}
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
@media (max-width: 480px) { .contact-row { grid-template-columns: 1fr; } }
.contact-legal { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.78rem; color: rgba(230,230,230,0.7); margin: 0.5rem 0 1rem; cursor: pointer; }
.contact-legal input { margin-top: 0.2rem; }
.contact-legal a { color: #e6e6e6; text-decoration: underline; }
.contact-modal__actions { display: flex; justify-content: flex-end; gap: 0.75rem; }
.contact-modal__actions .btn-ghost { padding: 0.65rem 1.25rem; font-size: 0.85rem; }
.contact-modal__actions .btn-primary { padding: 0.65rem 1.5rem; }
.contact-status { margin: 0.75rem 0 0; padding: 0.65rem 0.85rem; font-size: 0.85rem; }
.contact-status[data-type="success"] { background: rgba(34,197,94,0.1); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.contact-status[data-type="error"] { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }

/* ─── Cookie banner ─── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: rgba(8,9,10,0.96); backdrop-filter: blur(8px); border-top: 1px solid rgba(230,230,230,0.12); padding: 1.25rem; }
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; }
.cookie-banner__text strong { color: #e6e6e6; display: block; margin-bottom: 0.25rem; }
.cookie-banner__text p { margin: 0; color: rgba(230,230,230,0.7); font-size: 0.82rem; line-height: 1.5; }
.cookie-banner__text a { color: #e6e6e6; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.5rem; }
.cookie-banner__actions .btn-ghost { padding: 0.55rem 1rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; }
.cookie-banner__actions .btn-primary { padding: 0.55rem 1.25rem; font-size: 0.78rem; }
@media (max-width: 720px) {
  .cookie-banner__inner { grid-template-columns: 1fr; }
  .cookie-banner__actions { flex-wrap: wrap; }
}

/* ─── Cookie prefs modal ─── */
.cookie-cat { display: block; margin-bottom: 0.85rem; padding: 0.85rem 1rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); cursor: pointer; }
.cookie-cat__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.35rem; }
.cookie-cat__head strong { color: #e6e6e6; font-size: 0.95rem; }
.cookie-cat__locked { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(230,230,230,0.4); }
.cookie-cat p { margin: 0; font-size: 0.78rem; color: rgba(230,230,230,0.6); line-height: 1.45; }
.cookie-cat input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; }
