﻿/* ============================================================
   INNquietus 2026 вЂ” Landing Page Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Brand Colors */
  --naranja-impulso: #FF6B00;
  --naranja-hover: #E55F00;
  --purpura-sabiduria: #6A0DAD;
  --purpura-deep: #4A0578;
  --purpura-light: #8B3FCF;
  --amarillo-claridad: #F9D71C;
  --amarillo-hover: #E5C400;
  --gris-estrategia: #4A4A4A;
  --blanco-espacio: #FFFFFF;

  /* Light Mode (default) */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F4FF;
  --bg-tertiary: #F0E8FF;
  --bg-hero: linear-gradient(135deg, #1A0536 0%, #0D0221 40%, #150830 70%, #1A0536 100%);
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.95);
  --bg-navbar: rgba(255, 255, 255, 0.8);
  --text-primary: #1A1A2E;
  --text-secondary: #4A4A6A;
  --text-muted: #6B6B8D;
  --text-on-dark: #F5F0FF;
  --border-color: rgba(106, 13, 173, 0.12);
  --border-card: rgba(106, 13, 173, 0.08);
  --shadow-sm: 0 2px 8px rgba(106, 13, 173, 0.06);
  --shadow-md: 0 4px 20px rgba(106, 13, 173, 0.1);
  --shadow-lg: 0 8px 40px rgba(106, 13, 173, 0.15);
  --shadow-glow: 0 0 30px rgba(249, 215, 28, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --fs-hero: clamp(2.2rem, 5vw, 4rem);
  --fs-h1: clamp(1.8rem, 4vw, 3rem);
  --fs-h2: clamp(1.4rem, 3vw, 2.2rem);
  --fs-h3: clamp(1.1rem, 2vw, 1.5rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-small: clamp(0.8rem, 1vw, 0.9rem);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --section-pad: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---------- Dark Mode ---------- */
[data-theme="dark"] {
  --bg-primary: #0D0221;
  --bg-secondary: #150830;
  --bg-tertiary: #1A0536;
  --bg-card: rgba(26, 5, 54, 0.7);
  --bg-card-hover: rgba(36, 12, 72, 0.85);
  --bg-navbar: rgba(13, 2, 33, 0.85);
  --text-primary: #F0E8FF;
  --text-secondary: #C4B5D9;
  --text-muted: #9886B0;
  --border-color: rgba(139, 63, 207, 0.2);
  --border-card: rgba(139, 63, 207, 0.15);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(249, 215, 28, 0.25);
  --glass-bg: rgba(26, 5, 54, 0.5);
  --glass-border: rgba(139, 63, 207, 0.2);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: background-color var(--transition-slow), color var(--transition-slow);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--purpura-sabiduria), var(--purpura-light));
  color: #fff;
  font-size: var(--fs-small);
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: none;
  /* Changed to none to support mixed case */
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  max-width: 600px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--amarillo-claridad), var(--naranja-impulso));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 120px;
  min-height: 120px;
  position: relative;
  overflow: visible;
}

.navbar.scrolled {
  top: 8px;
  box-shadow: var(--shadow-lg);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.navbar-logo img {
  width: auto;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--purpura-sabiduria);
}

.navbar-logo .nav-logo-img {
  height: 280px;
  width: auto;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
  z-index: 200;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
}

.navbar-brand span {
  color: var(--naranja-impulso);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid #e1e1e1;
  background: #f8f9fa;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  font-size: 1.2rem;
}

.theme-toggle:hover {
  background: var(--purpura-sabiduria);
  border-color: var(--purpura-sabiduria);
  color: #fff;
  transform: rotate(15deg);
}

.navbar-cta {
  display: none;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--amarillo-claridad), var(--naranja-impulso));
  color: #1A1A2E;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-small);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

@media (min-width: 768px) {
  .navbar-cta {
    display: inline-flex;
  }
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-hero);
  overflow: visible;
  padding: clamp(9rem, 12vw, 10rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 6vw, 5rem);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 13, 173, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 215, 28, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Circular decorative elements like in the references */
.hero-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-circles .circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(139, 63, 207, 0.15);
}

.hero-circles .circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -5%;
  animation: float 8s ease-in-out infinite;
}

.hero-circles .circle:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: -3%;
  border-color: rgba(249, 215, 28, 0.12);
  animation: float 10s ease-in-out infinite reverse;
}

.hero-circles .circle:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 35%;
  right: 20%;
  border-color: rgba(255, 107, 0, 0.1);
  animation: float 12s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.hero-text {
  color: var(--text-on-dark);
}



.hero-title {
  font-size: var(--fs-hero);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: var(--space-sm);
  animation: fadeInUp 0.7s ease both 0.15s;
}

.hero-title .highlight {
  display: inline;
  background: linear-gradient(135deg, var(--amarillo-claridad), var(--naranja-impulso));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(240, 232, 255, 0.8);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  max-width: 500px;
  animation: fadeInUp 0.7s ease both 0.3s;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  animation: fadeInUp 0.7s ease both 0.45s;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInRight 0.8s ease both 0.3s;
}

.hero-visual img {
  max-height: 420px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(106, 13, 173, 0.3));
  animation: floatMascot 4s ease-in-out infinite;
}

/* Glow ring behind mascot */
.mascot-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 13, 173, 0.2) 0%, transparent 70%);
  filter: blur(30px);
  z-index: -1;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-body);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amarillo-claridad), var(--naranja-impulso));
  color: #1A1A2E;
  box-shadow: 0 4px 20px rgba(249, 215, 28, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(249, 215, 28, 0.45);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-cta {
  background: linear-gradient(135deg, var(--amarillo-claridad), var(--naranja-impulso));
  color: #1A1A2E;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  padding: 1rem 2.5rem;
  box-shadow: 0 4px 25px rgba(249, 215, 28, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-cta:hover::after {
  transform: translateX(100%);
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px rgba(249, 215, 28, 0.5);
}

/* Pulse animation on CTA */
.btn-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ---------- PAIN / PROBLEM SECTION ---------- */
.pain-section {
  padding: var(--section-pad);
  background: var(--bg-secondary);
  transition: background-color var(--transition-slow);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pain-card {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  cursor: default;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--naranja-impulso);
}

.pain-card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.12), rgba(106, 13, 173, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.pain-card .icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--naranja-impulso);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
}

.pain-card p {
  color: var(--text-secondary);
  font-size: var(--fs-small);
}

/* ---------- BENEFITS SECTION ---------- */
.benefits-section {
  padding: var(--section-pad);
  background: var(--bg-primary);
  transition: background-color var(--transition-slow);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  position: relative;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-base);
  overflow: hidden;
  cursor: default;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purpura-sabiduria), var(--amarillo-claridad));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-sm);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--purpura-sabiduria), var(--purpura-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: var(--fs-small);
}

/* ---------- GUIDE / MASCOT SECTION ---------- */
.guide-section {
  padding: var(--section-pad);
  background: var(--bg-hero);
  overflow: hidden;
  position: relative;
}

.guide-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .guide-content {
    grid-template-columns: 1fr 1fr;
  }
}

.guide-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.guide-image img {
  max-height: 400px;
  width: auto;
  filter: drop-shadow(0 15px 35px rgba(106, 13, 173, 0.4));
  animation: floatMascot 5s ease-in-out infinite;
}

.guide-text {
  color: var(--text-on-dark);
}

.guide-text h2 {
  font-size: var(--fs-h1);
  color: #fff;
  margin-bottom: var(--space-sm);
}

.guide-text p {
  color: rgba(240, 232, 255, 0.75);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.guide-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.guide-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.guide-list-item .check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--amarillo-claridad), var(--naranja-impulso));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.guide-list-item .check svg {
  width: 14px;
  height: 14px;
  stroke: #1A1A2E;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guide-list-item span {
  color: rgba(240, 232, 255, 0.9);
  font-size: var(--fs-body);
}

/* ---------- CTA + FORM SECTION ---------- */
.cta-section {
  padding: var(--section-pad);
  background: var(--bg-secondary);
  transition: background-color var(--transition-slow);
}

.cta-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .cta-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.cta-text h2 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-sm);
}

.cta-text h2 .highlight {
  display: inline;
  background: linear-gradient(135deg, var(--amarillo-claridad), var(--naranja-impulso));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-text p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.cta-text .urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  color: var(--naranja-impulso);
  font-size: var(--fs-small);
  font-weight: 600;
}

.cta-mascot {
  display: flex;
  justify-content: center;
}

.cta-mascot img {
  max-height: 280px;
  width: auto;
  filter: drop-shadow(0 10px 25px rgba(106, 13, 173, 0.2));
}

/* Form container */
.form-container {
  max-width: 550px;
  margin: var(--space-lg) auto 0;
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-slow);
}

.form-container h3 {
  font-size: var(--fs-h2);
  text-align: center;
  margin-bottom: var(--space-xs);
}

.form-container .form-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: var(--fs-small);
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  transition: all var(--transition-base);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purpura-sabiduria);
  box-shadow: 0 0 0 4px rgba(106, 13, 173, 0.1);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group .error-msg {
  color: var(--naranja-impulso);
  font-size: 0.78rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.has-error input {
  border-color: var(--naranja-impulso);
}

.form-group.has-error .error-msg {
  display: block;
}

.form-submit {
  width: 100%;
  margin-top: var(--space-sm);
}

.form-privacy {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: var(--space-sm);
}

.form-privacy svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-lg);
}

.form-success.active {
  display: block;
  animation: fadeInUp 0.5s ease both;
}

.form-success .success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amarillo-claridad), var(--naranja-impulso));
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success .success-icon svg {
  width: 36px;
  height: 36px;
  stroke: #1A1A2E;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success h3 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-xs);
}

.form-success p {
  color: var(--text-secondary);
}

/* ---------- FOOTER ---------- */
.footer {
  padding: var(--space-xl) clamp(1rem, 4vw, 2rem) var(--space-md);
  background: var(--bg-hero);
  color: var(--text-on-dark);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.footer-brand {
  text-align: center;
}

.footer-brand .navbar-brand {
  font-size: 1.5rem;
  color: #fff;
}

.footer-tagline {
  color: rgba(240, 232, 255, 0.6);
  font-size: var(--fs-small);
  margin-top: 0.3rem;
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  cursor: pointer;
}

.footer-social-link:hover {
  background: var(--purpura-sabiduria);
  border-color: var(--purpura-sabiduria);
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: rgba(240, 232, 255, 0.8);
}

.footer-bottom {
  width: 100%;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(240, 232, 255, 0.4);
  font-size: 0.78rem;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes floatMascot {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(1deg);
  }

  75% {
    transform: translateY(5px) rotate(-1deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 25px rgba(249, 215, 28, 0.35);
  }

  50% {
    box-shadow: 0 4px 40px rgba(249, 215, 28, 0.55);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- RESPONSIVE FINE-TUNING ---------- */
@media (max-width: 480px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: 80px;
  }

  .hero {
    padding-top: 13rem;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-visual img {
    max-height: 280px;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: var(--fs-small);
  }

  .btn-cta {
    padding: 0.85rem 2rem;
    width: 100%;
    justify-content: center;
  }

  .form-container {
    padding: var(--space-md);
  }

  .guide-image img {
    max-height: 260px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .hero {
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--bg-tertiary);
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--naranja-impulso);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-text {
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.6;
}

/* ========== NEW UI ELEMENTS ========== */
.adn-cta-wrapper {
  margin-top: 1.5rem;
}

.btn-text {
  color: var(--naranja-impulso);
  font-weight: 600;
  transition: var(--transition-base);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-text:hover {
  color: var(--naranja-hover);
  transform: translateX(5px);
  display: inline-block;
}

.risk-reversal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(106, 13, 173, 0.1);
  color: var(--purpura-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(139, 63, 207, 0.2);
}

/* ========== SHIMMER ANIMATION ========== */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-150%) rotate(45deg);
  }

  100% {
    transform: translateX(150%) rotate(45deg);
  }
}

@media (max-width: 768px) {
  .trust-content {
    justify-content: center;
    text-align: center;
  }
}

/* Floating Mascot Badge in Hero */
.hero-mascot-badge {
  margin-bottom: 0.5rem;
  display: inline-block;
}

.floating-badge-mascot {
  width: 120px;
  height: auto;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 5px 15px rgba(255, 107, 0, 0.3));
}

/* Hero Main Mascot Styling */
.hero-main-mascot {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
  animation: float-main 6s ease-in-out infinite;
  z-index: 2;
  position: relative;
}

@keyframes float-main {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@media (max-width: 992px) {
  .hero-main-mascot {
    max-width: 350px;
    margin-top: 2rem;
  }
}