/* ============================================
   SEGZIO — Premium Landing Page
   Design System & Styles
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors — Light clean palette with blue accent */
  --bg-primary: #ffffff;
  --bg-secondary: #f6f8fb;
  --bg-tertiary: #eef1f6;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-glass: rgba(255, 255, 255, 0.8);

  /* Borders */
  --border-subtle: #e8ecf1;
  --border-light: #dde3eb;
  --border-accent: rgba(0, 82, 204, 0.25);

  /* Accent — Blue from SEGZIO logo */
  --accent-primary: #0052cc;
  --accent-primary-rgb: 0, 82, 204;
  --accent-secondary: #0065ff;
  --accent-secondary-rgb: 0, 101, 255;
  --accent-light: #e6f0ff;
  --accent-warm: #f59e0b;
  --accent-rose: #f472b6;
  --accent-green: #059669;
  --accent-green-rgb: 5, 150, 105;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0052cc 0%, #0065ff 100%);
  --gradient-accent: linear-gradient(135deg, #0042a3 0%, #0052cc 50%, #0065ff 100%);
  --gradient-card: linear-gradient(135deg, rgba(0, 82, 204, 0.04) 0%, rgba(0, 101, 255, 0.02) 100%);
  --gradient-glow: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 82, 204, 0.04), transparent 40%);

  /* Text */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 140px);
  --container-px: clamp(20px, 4vw, 40px);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(var(--accent-primary-rgb), 0.1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ---------- Utility ---------- */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hide-mobile {
  display: inline;
}

/* ---------- Animations ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0);
}

/* Stagger delays */
[data-delay="50"].is-visible { transition-delay: 50ms; }
[data-delay="100"].is-visible { transition-delay: 100ms; }
[data-delay="150"].is-visible { transition-delay: 150ms; }
[data-delay="200"].is-visible { transition-delay: 200ms; }
[data-delay="250"].is-visible { transition-delay: 250ms; }
[data-delay="300"].is-visible { transition-delay: 300ms; }
[data-delay="350"].is-visible { transition-delay: 350ms; }
[data-delay="400"].is-visible { transition-delay: 400ms; }
[data-delay="450"].is-visible { transition-delay: 450ms; }
[data-delay="500"].is-visible { transition-delay: 500ms; }
[data-delay="550"].is-visible { transition-delay: 550ms; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

.btn--primary {
  background: var(--gradient-primary);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(var(--accent-primary-rgb), 0.25);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration-fast);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--accent-primary-rgb), 0.4);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn--ghost:hover {
  background: var(--bg-secondary);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
}

/* ---------- Section Utilities ---------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(var(--accent-primary-rgb), 0.1);
  border: 1px solid rgba(var(--accent-primary-rgb), 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-primary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-tag--light {
  background: rgba(var(--accent-primary-rgb), 0.08);
  border-color: rgba(var(--accent-primary-rgb), 0.15);
  color: var(--accent-primary);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.navbar.is-scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__logo-img {
  height: 32px;
  width: auto;
  filter: brightness(1.1);
  transition: filter var(--duration-fast);
}

.navbar__logo:hover .navbar__logo-img {
  filter: brightness(1.3);
}

.footer__logo-img {
  height: 28px;
  width: auto;
  filter: brightness(0.9);
  margin-bottom: 16px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 1001;
}

.navbar__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--accent-primary);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

.navbar__toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 204, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 204, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.hero__glow--1 {
  width: 600px;
  height: 600px;
  background: rgba(var(--accent-primary-rgb), 0.06);
  top: -20%;
  right: -10%;
  animation: glowPulse 8s ease-in-out infinite;
}

.hero__glow--2 {
  width: 500px;
  height: 500px;
  background: rgba(var(--accent-secondary-rgb), 0.05);
  bottom: -10%;
  left: -10%;
  animation: glowPulse 8s ease-in-out infinite 4s;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-primary-rgb), 0.1);
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  top: 10%;
  right: 5%;
  border-color: rgba(var(--accent-primary-rgb), 0.06);
  animation: orbRotate 20s linear infinite;
}

.hero__orb--2 {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 10%;
  border-color: rgba(var(--accent-primary-rgb), 0.04);
  animation: orbRotate 15s linear infinite reverse;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

@keyframes orbRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(var(--accent-primary-rgb), 0.08);
  border: 1px solid rgba(var(--accent-primary-rgb), 0.15);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 28px;
  animation: badgeFade 1s var(--ease-out) forwards;
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

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

@keyframes badgeFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
}

.proof-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  display: inline;
  font-variant-numeric: tabular-nums;
}

.proof-suffix {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-primary);
}

.proof-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero__proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* Hero Dashboard Visual */
.hero__visual {
  position: relative;
}

.hero__dashboard {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.dash__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-subtle);
}

.dash__dots {
  display: flex;
  gap: 6px;
}

.dash__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash__dots span:nth-child(1) { background: #ef4444; }
.dash__dots span:nth-child(2) { background: #f59e0b; }
.dash__dots span:nth-child(3) { background: #22c55e; }

.dash__title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dash__badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 600;
  color: #22c55e;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

.dash__body {
  padding: 20px;
}

.dash__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.dash__stat-card {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.dash__stat-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.dash__stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.dash__stat-change {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 600;
  margin-top: 4px;
}

.dash__stat-change--up {
  color: var(--accent-green);
}

.dash__chart {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
}

.dash__chart-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash__chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
}

.dash__bar {
  flex: 1;
  height: var(--h);
  background: var(--gradient-primary);
  border-radius: 3px 3px 0 0;
  opacity: 0.6;
  transition: opacity var(--duration-fast);
  position: relative;
  min-width: 0;
}

.dash__bar:hover {
  opacity: 1;
}

.dash__bar--highlight {
  opacity: 1;
  box-shadow: 0 0 16px rgba(var(--accent-primary-rgb), 0.3);
}

.dash__bar--muted {
  opacity: 0.3;
  background: var(--text-muted);
}

.dash__bar span {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5625rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.dash__alerts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash__alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.dash__alert-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  flex-shrink: 0;
}

.dash__alert-icon--warn {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.dash__alert-icon--success {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

/* Floating badges */
.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  animation: floatBadge 6s ease-in-out infinite;
}

.hero__float svg {
  color: var(--accent-green);
}

.hero__float--1 {
  bottom: 15%;
  left: -40px;
}

.hero__float--2 {
  top: 10%;
  right: -20px;
  animation-delay: 3s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: var(--border-light);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gradient-primary);
  border-radius: 2px;
  animation: scrollDown 2s var(--ease-out) infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.trust-bar__label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.6;
  transition: opacity var(--duration-fast);
}

.trust-logo:hover {
  opacity: 1;
}

.trust-logo svg {
  opacity: 0.5;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
  position: relative;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  position: relative;
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity var(--duration-normal);
  pointer-events: none;
}

.benefit-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card--featured {
  grid-row: span 2;
  background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.03) 0%, rgba(var(--accent-primary-rgb), 0.06) 100%);
  border-color: rgba(var(--accent-primary-rgb), 0.2);
}

.benefit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-card__icon--purple {
  background: rgba(var(--accent-primary-rgb), 0.1);
  color: var(--accent-primary);
}

.benefit-card__icon--emerald {
  background: rgba(var(--accent-green-rgb), 0.1);
  color: var(--accent-green);
}

.benefit-card__icon--blue {
  background: rgba(var(--accent-primary-rgb), 0.1);
  color: var(--accent-primary);
}

.benefit-card__icon--amber {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.benefit-card__icon--rose {
  background: rgba(219, 39, 119, 0.1);
  color: #db2777;
}

.benefit-card__metric {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.benefit-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.benefit-card__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.benefit-card__tag {
  display: inline-flex;
  margin-top: 20px;
  padding: 6px 14px;
  background: rgba(var(--accent-primary-rgb), 0.1);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================
   TRANSFORMATION
   ============================================ */
.transformation {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
}

.transform__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
}

.transform__col {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
}

.transform__col--before {
  background: rgba(239, 68, 68, 0.03);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.transform__col--after {
  background: rgba(var(--accent-green-rgb), 0.03);
  border: 1px solid rgba(var(--accent-green-rgb), 0.15);
}

.transform__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.transform__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.transform__dot--red { background: #ef4444; }
.transform__dot--green { background: var(--accent-green); }

.transform__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.transform__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.transform__col--before .transform__list li svg {
  color: #ef4444;
  opacity: 0.7;
  flex-shrink: 0;
  margin-top: 2px;
}

.transform__col--after .transform__list li svg {
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.transform__divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.transform__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(var(--accent-primary-rgb), 0.25);
}

/* ============================================
   HIGHLIGHTS
   ============================================ */
.highlights {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.highlight-card {
  position: relative;
  padding: 40px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity var(--duration-normal);
  pointer-events: none;
}

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

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-card__number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.highlight-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.highlight-card__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   FAST DEPLOY
   ============================================ */
.fast-deploy {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
}

.fast-deploy__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fast-deploy__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  margin-top: 16px;
}

.fast-deploy__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.deploy-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.deploy-step:hover {
  border-color: var(--border-accent);
  background: rgba(var(--accent-primary-rgb), 0.04);
}

.deploy-step__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(var(--accent-primary-rgb), 0.1);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.deploy-step strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.deploy-step span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Deploy Timer */
.fast-deploy__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.deploy-timer {
  position: relative;
  width: 280px;
  height: 280px;
}

.deploy-timer__ring {
  position: absolute;
  inset: 0;
}

.deploy-timer__ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.timer-progress {
  animation: timerDraw 3s var(--ease-out) forwards;
  stroke-dashoffset: 565.48;
}

@keyframes timerDraw {
  to { stroke-dashoffset: 0; }
}

.deploy-timer__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.deploy-timer__number {
  font-size: 4.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.deploy-timer__unit {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.deploy-timer__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================
   FREE TRIAL
   ============================================ */
.free-trial {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.free-trial__inner {
  position: relative;
  text-align: center;
  padding: clamp(48px, 8vw, 80px) clamp(24px, 4vw, 64px);
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.free-trial__inner .section-tag {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color: #ffffff;
}

.free-trial__title {
  color: #ffffff !important;
}

.free-trial__title .text-gradient {
  background: none;
  -webkit-text-fill-color: rgba(255,255,255,0.85);
  color: rgba(255,255,255,0.85);
}

.free-trial__desc {
  color: rgba(255,255,255,0.8) !important;
}

.free-trial__features .trial-feature {
  color: rgba(255,255,255,0.85);
}

.free-trial__features .trial-feature svg {
  color: rgba(255,255,255,0.9);
}

.free-trial .btn--primary {
  background: #ffffff;
  color: var(--accent-primary);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.free-trial .btn--primary:hover {
  background: #f0f4ff;
}

.free-trial__glow {
  display: none;
}

.free-trial__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  position: relative;
}

.free-trial__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 36px;
  position: relative;
}

.free-trial__features {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
}

.trial-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.trial-feature svg {
  color: var(--accent-secondary);
  flex-shrink: 0;
}

.free-trial .btn {
  position: relative;
}

/* ============================================
   JOURNEY
   ============================================ */
.journey {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
}

.journey__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.journey__step {
  text-align: center;
  position: relative;
}

.journey__step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bg-primary);
  position: relative;
  z-index: 1;
}

.journey__step-line {
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: var(--border-subtle);
}

.journey__step:last-child .journey__step-line {
  display: none;
}

.journey__step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.journey__step-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   MODULES
   ============================================ */
.modules {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
  position: relative;
}

.modules__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.module-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity var(--duration-normal);
  pointer-events: none;
}

.module-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.module-card:hover::before {
  opacity: 1;
}

.module-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(var(--accent-primary-rgb), 0.08);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--duration-normal) var(--ease-out);
}

.module-card:hover .module-card__icon {
  background: rgba(var(--accent-primary-rgb), 0.15);
  transform: scale(1.05);
}

.module-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.module-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   SECURITY
   ============================================ */
.security {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
}

.security__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.security__content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.security__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 8px;
}

.security__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.security-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

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

.security-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(var(--accent-primary-rgb), 0.08);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.security-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.security-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 40px;
}

.pricing-card {
  background: var(--bg-primary);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--duration-normal);
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
}

.pricing-card--featured {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 1px rgba(var(--accent-primary-rgb), 0.25), var(--shadow-md);
}

.pricing-card__tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* Period row: name + discount badge */
.pricing-card__period-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pricing-card__period {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-card__discount {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent-primary);
  background: rgba(var(--accent-primary-rgb), 0.08);
  border: 1px solid rgba(var(--accent-primary-rgb), 0.2);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* Crossed-out original price */
.pricing-card__original {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

/* Main price */
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 2px;
}

.pricing-card__currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-card__value {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card__cents {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-card__per {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Savings badge */
.pricing-card__savings {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  width: fit-content;
}

.pricing-card__billing {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.pricing-card__features li::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background: rgba(var(--accent-primary-rgb), 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='%230052cc' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-card__payment {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.pricing-card__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

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

.pricing__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pricing__note svg {
  color: var(--accent-primary);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .pricing__cards {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  user-select: none;
  transition: color var(--duration-fast);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
  color: var(--accent-primary);
}

.faq-item__chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--duration-fast);
}

.faq-item[open] summary .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item[open] summary {
  color: var(--accent-primary);
}

.faq-item__answer {
  padding: 0 0 22px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.faq-item__answer p + p {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .faq-item summary {
    padding: 18px 0;
    font-size: 0.875rem;
  }
}

/* ============================================
   DEMO FORM
   ============================================ */
.demo {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
  position: relative;
}

.demo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.demo__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 32px;
}

.demo__guarantees {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.demo__guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.demo__guarantee svg {
  color: var(--accent-green);
  flex-shrink: 0;
}

/* Form */
.demo__form-wrapper {
  position: relative;
}

.demo__form {
  padding: 40px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form__group input,
.form__group select {
  width: 100%;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--text-primary);
  transition: all var(--duration-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__group input::placeholder {
  color: var(--text-muted);
}

.form__group input:focus,
.form__group select:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.15);
  background: rgba(var(--accent-primary-rgb), 0.04);
}

.form__group input.error,
.form__group select.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form__disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 32px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer__brand .footer__logo-img {
  display: block;
}

.footer__brand p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 300px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color var(--duration-fast);
}

.footer__col a:hover {
  color: var(--text-primary);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color var(--duration-fast);
}

.footer__legal a:hover {
  color: var(--text-primary);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__content {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__proof {
    justify-content: center;
  }

  .hero__visual {
    max-width: 560px;
    margin: 0 auto;
  }

  .hero__float--1 {
    left: -10px;
    bottom: 10%;
  }

  .hero__float--2 {
    right: -10px;
    top: -10px;
  }

  .benefits__grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .modules__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .security__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fast-deploy__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .fast-deploy__steps {
    max-width: 400px;
    margin: 0 auto;
  }

  .demo__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .demo__content {
    text-align: center;
  }

  .demo__guarantees {
    align-items: center;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-py: clamp(56px, 10vw, 80px);
    --container-px: 18px;
  }

  /* Navbar */
  .navbar {
    padding: 14px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 32px 28px;
    transition: right var(--duration-normal) var(--ease-out);
    border-left: 1px solid var(--border-subtle);
    box-shadow: -8px 0 40px rgba(0,0,0,0.08);
    z-index: 1000;
  }

  .navbar__links.is-open { right: 0; }

  .navbar__links .nav-link {
    font-size: 1rem;
    color: var(--text-primary);
  }

  .navbar__toggle { display: flex; }
  .navbar__actions .btn { display: none; }
  .hide-mobile { display: none; }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 88px 0 48px;
  }

  .hero__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    letter-spacing: -0.025em;
  }

  .hero__subtitle {
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .hero__badge {
    font-size: 0.6875rem;
    padding: 6px 14px;
  }

  .hero__ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
  }

  .hero__proof {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 24px;
    justify-content: center;
    padding-top: 24px;
  }

  .hero__proof-divider { display: none; }

  .proof-number, .proof-suffix {
    font-size: 1.375rem;
  }

  .hero__float { display: none; }
  .hero__scroll-indicator { display: none; }

  /* Dashboard — compact no mobile */
  .hero__dashboard {
    margin-top: 8px;
  }

  .dash__stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .dash__stat-card {
    padding: 10px 12px;
  }

  .dash__stat-value {
    font-size: 1rem;
  }

  .dash__chart-bars {
    height: 70px;
    gap: 4px;
  }

  .dash__bar span { display: none; }

  /* Trust bar */
  .trust-bar { padding: 32px 0; }

  .trust-bar__logos {
    gap: 16px 20px;
    justify-content: center;
  }

  .trust-logo {
    font-size: 0.75rem;
    gap: 6px;
  }

  .trust-logo svg { width: 22px; height: 22px; }

  /* Benefits */
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit-card {
    padding: 28px 24px;
  }

  .benefit-card--featured {
    grid-column: span 1;
  }

  .benefit-card__metric {
    font-size: 2.25rem;
  }

  /* Transformation */
  .transform__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .transform__col {
    padding: 28px 24px;
  }

  .transform__divider {
    display: flex;
    justify-content: center;
  }

  .transform__divider .transform__arrow {
    transform: rotate(90deg);
    width: 40px;
    height: 40px;
  }

  .transform__list li {
    font-size: 0.875rem;
  }

  /* Highlights */
  .highlights__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .highlight-card {
    padding: 28px 24px;
  }

  .highlight-card__number {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  /* Fast Deploy */
  .fast-deploy__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
  }

  .fast-deploy__visual {
    justify-content: flex-start;
  }

  .deploy-timer {
    width: 180px;
    height: 180px;
  }

  .deploy-timer__number {
    font-size: 3rem;
  }

  .deploy-timer__unit {
    font-size: 0.875rem;
  }

  .deploy-step {
    padding: 16px 18px;
  }

  /* Free Trial */
  .free-trial__inner {
    padding: 40px 24px;
  }

  .free-trial__title {
    font-size: 1.625rem !important;
  }

  .free-trial__features {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }

  /* Journey */
  .journey__steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .journey__step {
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }

  .journey__step-number {
    width: 48px;
    height: 48px;
    margin: 0;
    flex-shrink: 0;
    font-size: 1.25rem;
  }

  .journey__step-line { display: none; }

  .journey__step-title {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .journey__step-desc {
    font-size: 0.875rem;
    max-width: 100%;
    margin: 0;
  }

  /* Modules */
  .modules__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .module-card {
    padding: 20px 16px;
  }

  .module-card h3 {
    font-size: 0.875rem;
  }

  .module-card p {
    font-size: 0.75rem;
  }

  .module-card__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  /* Security */
  .security__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .security-card {
    padding: 24px 20px;
  }

  /* Demo Form */
  .demo__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .demo__content { text-align: left; }

  .demo__guarantees { align-items: flex-start; }

  .demo__form {
    padding: 24px 20px;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .form__group {
    margin-bottom: 14px;
  }

  .form__group input,
  .form__group select {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  /* Section utilities */
  .section-title {
    font-size: clamp(1.625rem, 6vw, 2.25rem);
  }

  .section-header {
    margin-bottom: clamp(32px, 5vw, 48px);
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__links {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --container-px: 16px;
  }

  .modules__grid {
    grid-template-columns: 1fr 1fr;
  }

  .security__grid {
    grid-template-columns: 1fr;
  }

  .footer__links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__proof {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .dash__stats {
    height: 60px;
  }

  .dash__bar span {
    display: none;
  }
}

/* ============================================
   FORM SUCCESS STATE
   ============================================ */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.is-visible {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.5s var(--ease-out) forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(var(--accent-secondary-rgb), 0.15);
  color: var(--accent-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  max-width: 320px;
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal);
}

.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   SELECTION & SCROLLBAR
   ============================================ */
::selection {
  background: rgba(var(--accent-primary-rgb), 0.3);
  color: var(--text-primary);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--accent-primary-rgb), 0.4);
}

/* ============================================
   PARTNER LP — MANTISEG EXCLUSIVOS
   ============================================ */

/* Partner hero override */
.hero--partner .hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

/* Partner strip */
.partner-strip {
  padding: 56px 0;
  background: #f0f7f0;
  border-top: 1px solid #c8e6c8;
  border-bottom: 1px solid #c8e6c8;
}

.partner-strip__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.partner-strip__logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.partner-strip__logo {
  height: 52px;
  width: auto;
}

.partner-strip__sep {
  font-size: 1.5rem;
  font-weight: 300;
  color: #94a3b8;
}

.partner-strip__text h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.partner-strip__text p {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.65;
  max-width: 560px;
}

.partner-strip__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1a5c1a;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* Exclusive pricing note */
.pricing-exclusive-note {
  text-align: center;
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pricing-exclusive-note__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #1a5c1a;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
}

.pricing__validity {
  text-align: center;
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 16px;
}

/* Regular price comparison */
.pricing-card__compare {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 4px;
}

@media (max-width: 640px) {
  .partner-strip__inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .partner-strip__logos {
    justify-content: center;
  }

  .partner-strip__text p {
    max-width: 100%;
  }
}

/* Footer partner strip */
.footer__partner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
}

.footer__partner-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
}

.footer__partner-logo {
  height: 36px;
  width: auto;
  opacity: 0.85;
}

/* Partner notice above footer bottom line */
.footer__partner-notice {
  text-align: center;
  font-size: 0.8125rem;
  color: #64748b;
  padding: 20px 0 16px;
  margin-top: 0;
}
