/* ==================== VARIABLES ==================== */
/* UI/UX Optimizado: Colores suaves para reducir fatiga visual */
:root {
  /* Colores primarios - tonos suavizados */
  --primary: #1a65d1;
  --primary-dark: #0d4fa8;
  --primary-light: #5ca3ff;
  --secondary: #00b8aa;
  --secondary-light: #00d4c4;
  --accent: #f2784b;

  /* Oscuros - menos intensos para menor contraste */
  --dark: #1a2332;
  --dark-light: #2a3548;

  /* Escala de grises - más suave para la vista */
  --gray-900: #2d3748;
  --gray-700: #4a5568;
  --gray-500: #5a6677; /* Darkened for better contrast */
  --gray-300: #a0aec0;
  --gray-100: #f7fafc;

  /* Fondo off-white - reduce fatiga visual vs blanco puro */
  --white: #fafbfc;
  --pure-white: #ffffff;

  /* Gradientes suavizados */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  /* Gradient hero removed to use global.css value */

  /* Sombras más sutiles - menos agresivas */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 8px -1px rgba(0, 0, 0, 0.06),
    0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 20px -4px rgba(0, 0, 0, 0.08),
    0 4px 8px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 24px 32px -6px rgba(0, 0, 0, 0.1),
    0 12px 16px -6px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 50px rgba(26, 101, 209, 0.2);

  /* Espaciado generoso para mejor respiración visual */
  --section-padding: clamp(4rem, 10vw, 7rem);

  /* Nuevas variables de confort visual */
  --text-base: 1.0625rem; /* 17px - ligeramente más grande */
  --line-height-relaxed: 1.75;
  --letter-spacing-comfortable: 0.01em;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: var(--text-base);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--letter-spacing-comfortable);
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Mejor renderizado de texto */
  text-rendering: optimizeLegibility;
}

/* Prevenir overflow horizontal global */
main,
section,
div,
header,
footer,
nav {
  max-width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Text overflow handling */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li {
  -ms-word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
}

/* ==================== LOADING SCREEN ==================== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.loader-plane {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  animation: loaderFly 2s ease-in-out infinite;
}

.loader-plane svg {
  width: 40px;
  height: 40px;
  fill: var(--secondary);
}

@keyframes loaderFly {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateX(-50%) translateY(-10px) rotate(5deg);
  }
}

.loader-logo {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.loader-logo span {
  color: var(--secondary);
}

.loader-bar {
  width: min(200px, 80vw);
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.loader-progress {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 10px;
  animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--secondary);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 199, 183, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.navbar.scrolled .btn-outline {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
}

.navbar.scrolled .menu-toggle {
  color: var(--dark);
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 3rem;
}

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 199, 183, 0.15) 0%,
    transparent 70%
  );
  top: -150px;
  right: -150px;
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}

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

.hero-glow-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 82, 204, 0.2) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: -100px;
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
  animation-delay: -4s;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  max-width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--secondary);
  font-size: clamp(0.75rem, 2.5vw, 0.85rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

.hero-badge i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.4s;
}

.hero h1 .highlight {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 540px; /* Ancho óptimo de lectura */
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.6s;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.8s;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 1s;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}

.metric-item svg {
  color: var(--secondary);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.hero-image {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.6s;
}

/* Flying Planes */
.hero-plane {
  position: absolute;
  opacity: 0.1;
  animation: flyAcross 30s linear infinite;
}

.hero-plane svg {
  fill: var(--secondary);
  width: 30px;
  height: 30px;
  transform: rotate(90deg);
}

.hero-plane.plane-1 {
  top: 20%;
  animation-delay: 0s;
}

.hero-plane.plane-2 {
  top: 60%;
  animation-delay: -15s;
}

@keyframes flyAcross {
  0% {
    left: -5%;
  }
  100% {
    left: 105%;
  }
}

/* Clouds */
.hero-cloud {
  position: absolute;
  opacity: 0.08;
  animation: floatCloud 40s linear infinite;
}

.hero-cloud svg {
  fill: var(--white);
  width: 80px;
  height: 40px;
}

.hero-cloud.cloud-1 {
  top: 15%;
  animation-duration: 45s;
}

.hero-cloud.cloud-2 {
  top: 45%;
  animation-duration: 35s;
  animation-delay: -15s;
}

.hero-cloud.cloud-2 svg {
  width: 60px;
  height: 30px;
}

.hero-cloud.cloud-3 {
  top: 75%;
  animation-duration: 50s;
  animation-delay: -25s;
}

.hero-cloud.cloud-3 svg {
  width: 100px;
  height: 50px;
}

@keyframes floatCloud {
  0% {
    left: -15%;
  }
  100% {
    left: 110%;
  }
}

.hero-cloud.cloud-4 {
  top: 30%;
  animation-duration: 55s;
  animation-delay: -8s;
}

.hero-cloud.cloud-4 svg {
  width: 50px;
  height: 25px;
}

.hero-cloud.cloud-5 {
  top: 55%;
  animation-duration: 42s;
  animation-delay: -30s;
}

.hero-cloud.cloud-5 svg {
  width: 70px;
  height: 35px;
}

.hero-cloud.cloud-6 {
  top: 85%;
  animation-duration: 38s;
  animation-delay: -20s;
}

.hero-cloud.cloud-6 svg {
  width: 55px;
  height: 28px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 1.2s;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-number span {
  color: var(--secondary);
}

.stat-label {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

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

/* ==================== LOGOS SECTION ==================== */
.logos-section {
  padding: 2rem 1rem;
  background: var(--dark-light);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.logos-section p {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  margin-bottom: 1.25rem;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0.7;
}

.logos-grid img {
  height: auto;
  width: 160px;
  max-width: 100px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.3s ease;
  object-fit: contain;
}

.logos-grid img:hover {
  opacity: 1;
}

/* ==================== CONTAINER & SECTIONS ==================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  padding: 0 0.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 82, 204, 0.1);
  color: var(--white);
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-tag i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 600px; /* Ancho óptimo de lectura: 50-75 caracteres */
  margin-left: auto;
  margin-right: auto;
}

/* ==================== PROBLEM/PROMISE SECTION ==================== */
.problem-section {
  padding: var(--section-padding) 1rem;
  background: var(--gray-100);
  overflow: hidden;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.problem-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.problem-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.problem-icon.red {
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent);
}

.problem-icon.blue {
  background: rgba(0, 82, 204, 0.1);
  color: var(--primary);
}

.problem-icon.green {
  background: rgba(0, 199, 183, 0.1);
  color: var(--secondary);
}

.problem-card h3 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.problem-list {
  list-style: none;
  text-align: left;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.375rem 0;
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  color: var(--gray-700);
}

.problem-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

.result-stats {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.result-stat {
  text-align: center;
}

.result-stat .number {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
}

.result-stat .number.green {
  color: var(--secondary);
}
.result-stat .number.blue {
  color: var(--primary);
}
.result-stat .number.purple {
  color: var(--primary);
}

.result-stat .label {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  color: var(--gray-500);
}

/* ==================== PAIN POINTS SECTION ==================== */
.pain-section {
  padding: var(--section-padding) 1rem;
  background: var(--white);
  overflow: hidden;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.pain-card {
  background: var(--gray-100);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pain-card:hover::before {
  transform: scaleX(1);
}

.pain-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pain-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  background: var(--white);
}

.pain-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1) 0%,
    rgba(255, 107, 53, 0.05) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.pain-card:hover .pain-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.2) 0%,
    rgba(255, 107, 53, 0.1) 100%
  );
}

.pain-card h3 {
  font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.625rem;
}

.pain-card p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--gray-500);
  line-height: 1.75;
}

/* ==================== HOW IT WORKS ==================== */
.how-section {
  padding: var(--section-padding) 1rem;
  background: var(--gray-100);
  overflow: hidden;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-card {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 82, 204, 0.3);
}

.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 82, 204, 0.4);
}

.step-card h3 {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.625rem;
}

.step-card p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--gray-500);
  line-height: 1.75;
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
  padding: var(--section-padding) 1rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.features-globe {
  position: absolute;
  top: 50%;
  right: -30%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
  opacity: 0.5;
  animation: globeRotate 60s linear infinite;
  pointer-events: none;
}

@keyframes globeRotate {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

.features-section .section-tag {
  background: rgba(0, 199, 183, 0.2);
  color: var(--secondary);
}

.features-section .section-title {
  color: var(--white);
}
.features-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 199, 183, 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
  pointer-events: none;
}

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

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 199, 183, 0.3);
  transform: translateY(-8px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--white);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.625rem;
  position: relative;
  z-index: 1;
}

.feature-card ul {
  list-style: none;
  position: relative;
  z-index: 1;
}

.feature-card ul li {
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
  color: rgba(255, 255, 255, 0.75);
  padding: 0.375rem 0;
  line-height: 1.6;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--secondary);
  font-weight: 600;
  font-size: clamp(0.8125rem, 2vw, 0.875rem);
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: gap 0.3s ease;
}

.feature-link:hover {
  gap: 0.75rem;
}

.feature-link i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ==================== VIDEO SECTION ==================== */
.video-section {
  padding: var(--section-padding) 1rem;
  background: var(--gray-100);
  text-align: center;
  overflow: hidden;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/9;
  background: var(--dark);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==================== COMPARISON TABLE ==================== */
.comparison-section {
  padding: var(--section-padding) 1rem;
  background: var(--white);
  overflow: hidden;
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -1rem;
  padding: 0 1rem;
}

.comparison-table {
  width: 100%;
  min-width: 600px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border-collapse: collapse;
}

.comparison-table thead {
  background: var(--gray-100);
}

.comparison-table th,
.comparison-table td {
  padding: 0.875rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  min-width: 180px;
}

.comparison-table th {
  font-weight: 600;
  font-size: clamp(0.6875rem, 1.5vw, 0.8125rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
}

.comparison-table th.highlight {
  color: var(--primary);
}

.comparison-table td {
  color: var(--gray-700);
}

.comparison-table tr:hover {
  background: var(--gray-100);
}

.check-icon {
  color: var(--secondary);
}

.x-icon {
  color: var(--accent);
}

.highlight-text {
  color: var(--secondary);
  font-weight: 600;
}

/* ==================== INTEGRATIONS SECTION ==================== */
.integrations-section {
  padding: var(--section-padding) 1rem;
  background: var(--gray-100);
  overflow: hidden;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.integrations-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}

.integration-logo {
  background: var(--white);
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  min-height: 60px;
}

.integration-logo:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.integration-logo img {
  height: 24px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.security-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.security-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.security-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-icon.green {
  background: rgba(0, 199, 183, 0.1);
  color: var(--secondary);
}
.security-icon.blue {
  background: rgba(0, 82, 204, 0.1);
  color: var(--primary);
}
.security-icon.purple {
  background: rgba(0, 82, 204, 0.1);
  color: var(--primary);
}
.security-icon.orange {
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent);
}

.security-item h4 {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.security-item p {
  font-size: clamp(0.8125rem, 2vw, 0.875rem);
  color: var(--gray-500);
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
  padding: var(--section-padding) 1rem;
  background: var(--white);
  overflow: hidden;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.pricing-toggle span {
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  color: var(--white);
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 26px;
  background: var(--gray-300);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.toggle-switch.active {
  background: var(--primary);
}

.toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(26px);
}

.savings-badge {
  background: rgba(0, 199, 183, 0.1);
  color: var(--secondary);
  padding: 0.25rem 0.625rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ==================== FAQ ACCORDION ==================== */
.faq-section {
  padding: var(--section-padding) 2rem;
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  transition: color 0.3s ease;
}

.faq-question:hover h3 {
  color: var(--primary);
}

.faq-question i {
  color: var(--gray-300);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question:hover i {
  color: var(--primary);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-item.open .faq-question h3 {
  color: var(--primary);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  height: auto;
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--gray-500);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  border: 2px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card.featured {
  border-color: var(--primary);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.375rem 1.25rem;
  border-radius: 0 0 10px 10px;
  font-size: clamp(0.6875rem, 1.5vw, 0.75rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-name {
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.price-currency {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--gray-500);
}

.price-amount {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.price-period {
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  color: var(--gray-500);
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.625rem 0;
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  color: var(--gray-700);
}

.pricing-features li i {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  padding: 0.875rem;
}

.pricing-card.featured .btn-primary {
  background: var(--primary);
  color: var(--white);
}

.pricing-card.featured .btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-glow);
}

/* ==================== LEAD MAGNET SECTION ==================== */
.lead-magnet-section {
  padding: var(--section-padding) 1rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.lead-magnet-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.lead-magnet-content h2 {
  font-size: clamp(1.375rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.875rem;
}

.lead-magnet-content p {
  font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.lead-magnet-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
  transition: all 0.3s ease;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
  text-align: left;
}

.consent-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.consent-group label {
  font-size: clamp(0.75rem, 2vw, 0.8125rem);
  color: rgba(255, 255, 255, 0.7);
}

.lead-magnet-form .btn {
  width: 100%;
}

.form-disclaimer {
  font-size: clamp(0.6875rem, 1.5vw, 0.75rem);
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.875rem;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  padding: var(--section-padding) 1rem;
  background: var(--gray-100);
  overflow: hidden;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 0.875rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question h3 {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 600;
  color: var(--dark);
  flex: 1;
}

.faq-question svg {
  color: var(--gray-500);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: clamp(0.9375rem, 2vw, 1rem);
  color: var(--gray-500);
  line-height: 1.8;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: var(--section-padding) 1rem;
  background: var(--white);
  text-align: center;
  overflow: hidden;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.875rem;
}

.cta-content h2 .highlight {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content > p {
  font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-offer {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta-buttons .btn-primary {
  background: var(--primary);
  color: var(--white);
}

.cta-buttons .btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-glow);
}

.cta-buttons .btn-outline {
  color: var(--primary);
  border-color: var(--primary);
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--white);
  font-size: clamp(0.8125rem, 2vw, 0.875rem);
}

.cta-feature svg {
  color: var(--secondary);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--dark);
  padding: 3rem 1rem 1.5rem;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 0.875rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  line-height: 1.7;
  max-width: 280px;
}

.footer-column h4 {
  color: var(--white);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  transition: all 0.3s ease;
}

.footer-column ul a:hover {
  color: var(--secondary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: clamp(0.75rem, 2vw, 0.8125rem);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ==================== UTILITIES ==================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.problem-list li {
  color: var(--dark);
}
/* ==================== RESPONSIVE - TABLET ==================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-content {
    max-width: 100%;
    order: 1;
  }

  .hero-image {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-metrics {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .integrations-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .integrations-logos {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .features-globe {
    width: 400px;
    height: 400px;
    right: -40%;
  }
}

/* ==================== RESPONSIVE - MOBILE ==================== */
@media (max-width: 768px) {
  :root {
    --section-padding: clamp(2.5rem, 8vw, 4rem);
  }

  /* Navbar Mobile */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    z-index: 9999;
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .navbar.scrolled .nav-links {
    background: var(--white);
  }

  .menu-toggle {
    display: block;
  }

  /* Hero Mobile */
  .hero {
    padding: 90px 0 2.5rem;
    min-height: auto;
  }

  .hero-glow,
  .hero-glow-2 {
    width: 250px;
    height: 250px;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: space-around;
    gap: 1rem;
  }

  .stat-item {
    text-align: center;
  }

  /* Problem Grid Mobile */
  .problem-card {
    padding: 1.25rem;
  }

  .problem-icon {
    width: 48px;
    height: 48px;
  }

  /* Pain Cards Mobile */
  .pain-grid {
    grid-template-columns: 1fr;
  }

  /* Steps Mobile */
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.125rem;
  }

  /* Features Mobile */
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-globe {
    display: none;
  }

  /* Pricing Mobile */
  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured.visible {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

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

  /* Integrations Mobile */
  .integrations-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    margin: 0 auto;
    text-align: center;
  }

  .footer-column ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
  }

  .footer-column ul li {
    margin: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Form Mobile */
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* Table Mobile */
  .table-wrapper {
    margin: 0 -1rem;
    padding: 0 1rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.625rem 0.5rem;
    font-size: 0.75rem;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    min-width: 120px;
  }

  /* Logos Mobile */
  .logos-grid {
    gap: 1rem;
  }

  .logos-grid img {
    height: 20px;
    max-width: 80px;
  }
}

/* ==================== RESPONSIVE - SMALL MOBILE ==================== */
@media (max-width: 480px) {
  .navbar {
    padding: 0.5rem 0.75rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-metrics {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

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

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .pricing-toggle {
    flex-direction: column;
    gap: 0.5rem;
  }

  .pricing-card {
    padding: 1.5rem 1.25rem;
  }

  .integrations-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }

  .integration-logo {
    padding: 0.75rem;
    min-height: 50px;
  }

  .integration-logo img {
    height: 20px;
  }

  .faq-question {
    padding: 1rem 1.25rem;
  }

  .faq-answer {
    padding: 0 1.25rem 1rem;
  }

  .lead-magnet-form {
    padding: 1.25rem;
  }

  .security-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .security-icon {
    margin: 0 auto;
  }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ==================== DARK MODE SUPPORT ==================== */
@media (prefers-color-scheme: dark) {
  .problem-card,
  .pain-card:hover,
  .pricing-card,
  .faq-item,
  .integration-logo {
    background: var(--white);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .problem-card h3,
  .pain-card h3,
  .step-card h3,
  .pricing-name,
  .faq-question h3,
  .security-item h4 {
    color: var(--dark);
  }

  .section-title {
    color: var(--white);
  }

  .problem-section,
  .how-section,
  .video-section,
  .integrations-section,
  .faq-section {
    background: var(--dark);
  }

  .pain-section,
  .comparison-section,
  .pricing-section,
  .cta-section {
    background: var(--dark-light);
  }
}

/* ==================== PRINT STYLES ==================== */
@media print {
  .loader,
  .navbar,
  .hero-glow,
  .hero-glow-2,
  .features-globe,
  .menu-toggle {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: #f5f5f5 !important;
    color: #000;
  }

  .hero h1,
  .hero-subtitle {
    color: #000 !important;
  }

  section {
    page-break-inside: avoid;
  }
}
