/* ============================================
   ONLINE ASESORÍA — Main Styles & Animations
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800;900&display=swap');

:root {
  --navy:      #0F2D52;
  --navy-800:  #1a3d6b;
  --blue:      #2563EB;
  --blue-light:#3B82F6;
  --teal:      #0D9488;
  --teal-light:#14B8A6;
  --white:     #FFFFFF;
  --gray-50:   #F8FAFC;
  --gray-100:  #F1F5F9;
  --gray-200:  #E2E8F0;
  --gray-400:  #94A3B8;
  --gray-500:  #64748B;
  --gray-700:  #334155;
  --gray-900:  #0F172A;
  --gradient:  linear-gradient(135deg, var(--navy) 0%, #1a3d6b 50%, #0e4d8f 100%);
  --gradient-teal: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  --shadow-sm: 0 1px 3px rgba(15,45,82,0.08), 0 1px 2px rgba(15,45,82,0.06);
  --shadow-md: 0 4px 16px rgba(15,45,82,0.10), 0 2px 8px rgba(15,45,82,0.06);
  --shadow-lg: 0 20px 48px rgba(15,45,82,0.14), 0 8px 20px rgba(15,45,82,0.08);
  --shadow-xl: 0 32px 64px rgba(15,45,82,0.18);
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(13,148,136,0.08);
  border: 1px solid rgba(13,148,136,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}

.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}
.btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 20px rgba(37,99,235,0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 400ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 400ms cubic-bezier(0.4, 0, 0.2, 1),
              backdrop-filter 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(15,45,82,0.08), 0 4px 24px rgba(15,45,82,0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  transition: color var(--transition);
  line-height: 1;
}

.logo-text span { color: var(--teal-light); }

.navbar.scrolled .logo-text { color: var(--navy); }
.navbar.scrolled .logo-text span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.1); }

.navbar.scrolled .nav-links a { color: var(--gray-700); }
.navbar.scrolled .nav-links a.active { color: var(--blue); background: rgba(37,99,235,0.06); }
.navbar.scrolled .nav-links a:hover { color: var(--blue); background: rgba(37,99,235,0.06); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-cta {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span { background: var(--navy); }

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.mobile-nav.open { opacity: 1; pointer-events: all; }

.mobile-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all var(--transition);
}

.mobile-nav a:hover { background: rgba(255,255,255,0.1); color: var(--teal-light); }

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

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(13,148,136,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #FFFFFF 0%, #67E8F9 55%, #4ADE80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(103,232,249,0.4));
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 400px;
}

.hero-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card-title span {
  width: 32px; height: 32px;
  background: var(--gradient-teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-service-list { display: flex; flex-direction: column; gap: 10px; }

.hero-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
}

.hero-service-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
}

.hero-service-item svg { flex-shrink: 0; }

.hero-floating {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-1 {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.hero-floating-2 {
  bottom: -16px;
  left: -24px;
  animation-delay: 1.5s;
}

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

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 28px 0;
  background: white;
  border-bottom: 1px solid var(--gray-200);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 500;
}

.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
}

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

.service-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all var(--transition);
  overflow: hidden;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-teal);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(37,99,235,0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.icon-blue { background: rgba(37,99,235,0.08); color: var(--blue); }
.icon-teal { background: rgba(13,148,136,0.08); color: var(--teal); }
.icon-navy { background: rgba(15,45,82,0.08); color: var(--navy); }

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}

.service-features li svg { color: var(--teal); flex-shrink: 0; }

.service-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--transition);
}

.service-card:hover .service-link { gap: 10px; }

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--navy);
  margin-bottom: 16px;
}

.why-content p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 40px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13,148,136,0.25);
}

.why-feature-icon svg { color: var(--white); }

.why-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-feature-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Why visual */
.why-visual {
  position: relative;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.why-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.why-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.why-card-badge {
  font-size: 12px;
  font-weight: 600;
  color: #16a34a;
  background: #dcfce7;
  padding: 4px 10px;
  border-radius: 100px;
}

.why-check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--gray-50);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  border: 1px solid var(--gray-100);
}

.why-check-item .check-icon {
  width: 22px; height: 22px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-check-item .check-icon svg { color: white; }

.why-card-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-500);
}

.why-card-footer strong { color: var(--navy); font-weight: 700; }

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 100px 0;
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 64px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  z-index: 0;
}

.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.process-step-num {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-400);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all 400ms ease;
}

.process-step.active .process-step-num,
.process-step:hover .process-step-num {
  background: var(--gradient-teal);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(13,148,136,0.12);
}

.process-step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 100px 0;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 18px;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
}

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

.pricing-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-xl);
  overflow: visible;
}

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

.pricing-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 22px 9px 16px;
  border-radius: 100px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(13,148,136,0.4);
}

.pricing-badge svg { flex-shrink: 0; }

.pricing-plan {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-plan { color: var(--teal-light); }

.pricing-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-name { color: var(--white); }

.pricing-desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.65); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-card.featured .pricing-price { border-bottom-color: rgba(255,255,255,0.15); }

.pricing-currency { font-size: 22px; font-weight: 700; color: var(--navy); }
.pricing-card.featured .pricing-currency { color: var(--white); }

.pricing-amount { font-size: 48px; font-weight: 900; color: var(--navy); line-height: 1; }
.pricing-card.featured .pricing-amount { color: var(--white); }

.pricing-period { font-size: 14px; color: var(--gray-500); }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.55); }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }

.pricing-features li svg { flex-shrink: 0; color: var(--teal); }
.pricing-card.featured .pricing-features li svg { color: var(--teal-light); }

.btn-pricing-featured {
  background: var(--gradient-teal);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13,148,136,0.35);
  width: 100%;
  justify-content: center;
}

.btn-pricing-featured:hover {
  box-shadow: 0 6px 20px rgba(13,148,136,0.45);
  transform: translateY(-1px);
}

.btn-pricing-default {
  width: 100%;
  justify-content: center;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #FBBF24;
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.avatar-blue { background: var(--blue); }
.avatar-teal { background: var(--teal); }
.avatar-navy { background: var(--navy); }
.avatar-green { background: #16a34a; }
.avatar-purple { background: #7c3aed; }
.avatar-orange { background: #ea580c; }

.testimonial-name { font-size: 15px; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 13px; color: var(--gray-500); }

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 100px 0;
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(37,99,235,0.25); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}

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

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--gray-500);
}

.faq-item.open .faq-icon {
  background: rgba(37,99,235,0.1);
  color: var(--blue);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,0.25) 0%, transparent 70%);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact {
  padding: 130px 0;
  background: var(--white);
}

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

.contact-info h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(37,99,235,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.contact-item-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-item-value { font-size: 14px; color: var(--gray-500); }

/* Form */
.contact-form {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-cta-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0;
}

.contact-cta-icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: rgba(13,148,136,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light); margin-bottom: 24px;
}

.contact-cta-box h3 {
  font-size: 22px; font-weight: 800; color: white;
  margin-bottom: 12px; line-height: 1.3;
}

.contact-cta-box p {
  font-size: 14px; color: rgba(255,255,255,0.6);
  line-height: 1.65; margin-bottom: 28px;
}

.contact-cta-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-top: 18px; flex-wrap: wrap;
}

.contact-cta-trust span {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5);
}

.contact-cta-trust svg { color: var(--teal-light); flex-shrink: 0; }

.form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

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

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--gray-900);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 15px;
  justify-content: center;
  font-size: 16px;
  border-radius: 12px;
}

.form-privacy {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-400);
}

.form-privacy a { color: var(--blue); text-decoration: none; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}

.footer-logo-text span { color: var(--teal-light); }

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all var(--transition);
}

.footer-social a:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-text { font-size: 13px; }

.footer-bottom-links { display: flex; gap: 20px; }

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--white); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }

/* ============================================
   SERVICE PAGE HERO
   ============================================ */
.service-hero {
  padding: 160px 0 100px;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,0.2) 0%, transparent 70%);
}

.service-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.service-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #67e8f9, #5eead4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.service-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   INCLUDED SERVICES
   ============================================ */
.included {
  padding: 100px 0;
  background: var(--white);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.included-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.included-card:hover {
  border-color: rgba(13,148,136,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.included-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(13,148,136,0.08);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.included-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.included-card-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
  padding: 12px 0;
  position: relative;
  z-index: 1;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.38);
}

.breadcrumb-inner a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb-inner a:hover { color: rgba(255,255,255,0.7); }

.breadcrumb-inner span { color: rgba(255,255,255,0.65); }

/* Service hero trust badges */
.service-hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 7px 14px 7px 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
}

.service-hero-badge img { height: 20px; width: auto; }

.service-hero-badge-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0D9488, #2563EB);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 12px; }
  .hero-stat { flex: 1; min-width: 0; text-align: center; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 11px; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 16px; flex-wrap: wrap; }
  .trust-aeat { flex-basis: 100%; justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; justify-content: center; }
  .services { padding: 60px 0; }
  .why-us, .process, .pricing, .testimonials, .faq, .contact { padding: 60px 0; }
  .contact-form { padding: 24px; }
}

/* ============================================
   HERO CARD — RING + BENEFITS
   ============================================ */
.hero-ring-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-ring-svg {
  width: 180px;
  height: 180px;
  filter: drop-shadow(0 0 24px rgba(13,148,136,0.35));
}

.hero-aeat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 4px;
}

.hero-aeat-badge img {
  height: 22px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  background: white;
  padding: 2px 4px;
}

.hero-aeat-badge span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

.hero-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}

.hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: background var(--transition);
}

.hero-benefit-item:hover { background: rgba(255,255,255,0.1); }

.hero-benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================
   TRUST BAR — AEAT
   ============================================ */
.trust-aeat {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 8px 12px;
  background: rgba(37,99,235,0.05);
  border: 1.5px solid rgba(37,99,235,0.15);
  border-radius: 12px;
  flex-shrink: 0;
}

.trust-aeat-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.trust-aeat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.trust-aeat-text strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

.trust-aeat-text span {
  font-size: 10px;
  color: var(--gray-500);
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ============================================
   HERO SCREEN — SOFTWARE MOCKUP
   ============================================ */
.hero-screen-wrapper {
  position: relative;
  width: 100%;
  padding: 36px 0 48px;
}

.hero-screen-glow {
  position: absolute;
  inset: 50px 30px;
  background: radial-gradient(ellipse at 50% 40%, rgba(37,99,235,0.28) 0%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}

.hero-screen-card {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.28),
    0 0 0 1px rgba(0,0,0,0.07);
}

.hero-screen-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating trust badges */
.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 100px;
  padding: 7px 14px 7px 9px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.04);
  z-index: 2;
  white-space: nowrap;
  animation: heroBadgeFloat 3.2s ease-in-out infinite;
}

.hero-badge-top {
  top: -14px;
  left: -16px;
  animation-delay: 0s;
}

.hero-badge-bottom {
  bottom: -14px;
  right: -16px;
  animation-delay: 1.6s;
}

.hero-badge-img {
  height: 24px;
  width: auto;
  flex-shrink: 0;
}

.hero-badge-text strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.hero-badge-text span {
  display: block;
  font-size: 10px;
  color: var(--gray-500);
  line-height: 1.3;
}

.hero-badge-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0D9488, #2563EB);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

/* ============================================
   VERIFACTU SECTION
   ============================================ */
.verifactu {
  padding: 64px 0;
  background: var(--white);
}

.verifactu-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  background: white;
  border: 1.5px solid rgba(37,99,235,0.1);
  border-radius: 20px;
  padding: 48px 52px;
  box-shadow: 0 4px 32px rgba(37,99,235,0.06), 0 1px 4px rgba(0,0,0,0.04);
}

.verifactu-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.verifactu-logos img {
  object-fit: contain;
}

.verifactu-aeat-img { height: 44px; width: auto; }
.verifactu-logo-img { height: 52px; width: auto; max-width: 200px; }

.verifactu-sep {
  width: 40px;
  height: 1px;
  background: var(--gray-300);
}

.verifactu-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dcfce7;
  color: #15803d;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.verifactu-content h3 {
  font-size: clamp(22px, 3vw, 30px);
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 800;
}

.verifactu-content h3 em {
  font-style: normal;
  color: var(--blue);
}

.verifactu-content p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 560px;
}

.verifactu-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  list-style: none;
}

.verifactu-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
}

.verifactu-features li svg { color: var(--teal); flex-shrink: 0; }

@media (max-width: 768px) {
  .verifactu-inner { grid-template-columns: 1fr; gap: 32px; padding: 32px 28px; }
  .verifactu-logos { flex-direction: row; }
  .verifactu-sep { width: 1px; height: 40px; }
  .verifactu-features { grid-template-columns: 1fr; }
}

/* ============================================
   TARGET SECTIONS (AUTONOMOS / EMPRESAS)
   ============================================ */
.target-section { padding: 100px 0; background: var(--white); }
.target-section-alt { background: var(--white); }

.target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.target-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  background: rgba(13,148,136,0.09);
  color: var(--teal);
}

.target-section-alt .target-label {
  background: rgba(37,99,235,0.08);
  color: var(--blue);
}

.target-content h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 18px;
}

.target-content h2 em {
  font-style: normal;
  background: var(--gradient-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.target-content > p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}

.target-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 36px;
}

.target-feat {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

.target-feat svg { color: var(--teal); flex-shrink: 0; }

.target-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  background: var(--navy);
  padding: 13px 24px;
  border-radius: 14px;
  margin-bottom: 28px;
}

.target-price-from { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; }

.target-price-amount {
  font-size: 30px;
  font-weight: 900;
  color: var(--teal-light);
  line-height: 1;
}

.target-price-period { font-size: 12px; color: rgba(255,255,255,0.5); }

.target-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Target visual card */
.target-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15,45,82,0.12), 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(15,45,82,0.07);
  overflow: hidden;
}

.target-card-header {
  background: var(--navy);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.target-card-header-title { color: white; font-size: 14px; font-weight: 700; }

.target-card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(13,148,136,0.22);
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 100px;
}

.target-card-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
}

.target-card-body { padding: 8px 0; }

.target-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}

.target-card-row:last-child { border-bottom: none; }
.target-card-row:hover { background: var(--gray-50); }

.target-card-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 500;
}

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

.tci-teal { background: rgba(13,148,136,0.1); color: var(--teal); }
.tci-blue { background: rgba(37,99,235,0.1); color: var(--blue); }
.tci-navy { background: rgba(15,45,82,0.08); color: var(--navy); }
.tci-amber { background: rgba(245,158,11,0.1); color: #D97706; }
.tci-purple { background: rgba(139,92,246,0.1); color: #7C3AED; }

.target-pill {
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
}

.pill-green { background: rgba(13,148,136,0.1); color: #059669; }
.pill-blue  { background: rgba(37,99,235,0.1);  color: #2563EB; }
.pill-amber { background: rgba(245,158,11,0.1); color: #D97706; }
.pill-navy  { background: rgba(15,45,82,0.08); color: var(--navy); }

.target-card-footer {
  background: var(--gray-50);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gray-100);
}

.target-card-footer-item { font-size: 12px; color: var(--gray-500); }
.target-card-footer-item strong { color: var(--navy); }

/* Metric row for empresas card */
.target-metric {
  text-align: right;
}

.target-metric-val {
  font-size: 13px; font-weight: 700; color: var(--navy);
  display: block; line-height: 1.2;
}

.target-metric-sub {
  font-size: 10px; color: var(--gray-400);
}

.metric-up { color: #059669; }

@media (max-width: 1024px) {
  .target-grid { grid-template-columns: 1fr; gap: 48px; }
  .target-grid.reverse .target-visual-wrap { order: 2; }
  .target-grid.reverse .target-content { order: 1; }
  .target-content > p { max-width: 100%; }
}

@media (max-width: 768px) {
  .target-section, .target-section.target-section-alt { padding: 64px 0; }
  .target-features-grid { grid-template-columns: 1fr; }
  .target-card { display: none; }
}

/* ============================================
   MEGA MENU (Servicios dropdown)
   ============================================ */
.nav-has-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex !important; align-items: center; gap: 4px; cursor: pointer;
}

.nav-dropdown-chevron { transition: transform 0.22s ease; }

.nav-has-dropdown:hover .nav-dropdown-chevron,
.nav-has-dropdown.open .nav-dropdown-chevron { transform: rotate(180deg); }

.nav-mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 360px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(15,45,82,0.18), 0 4px 16px rgba(0,0,0,0.07);
  padding: 10px 10px 6px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 400;
  border: 1px solid rgba(15,45,82,0.07);
}

.nav-mega-menu::after {
  content: '';
  position: absolute;
  top: -14px; left: -10px; right: -10px;
  height: 16px;
}
.nav-mega-menu::before {
  content: '';
  position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: white;
  border-left: 1px solid rgba(15,45,82,0.07);
  border-top: 1px solid rgba(15,45,82,0.07);
}

.nav-has-dropdown:hover .nav-mega-menu,
.nav-has-dropdown.open .nav-mega-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-item {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; border-radius: 12px;
  text-decoration: none; color: inherit;
  transition: background 0.18s ease;
}

.mega-item:hover { background: var(--gray-50); }

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

.mega-item-title { font-size: 14px; font-weight: 700; color: var(--navy); display: block; margin-bottom: 2px; }
.mega-item-desc { font-size: 12px; color: var(--gray-500); line-height: 1.4; }

.mega-menu-footer {
  margin-top: 6px; padding: 10px 16px 8px;
  border-top: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
}

.mega-footer-link {
  font-size: 12px; font-weight: 700; color: var(--teal);
  text-decoration: none; display: flex; align-items: center; gap: 4px;
}
.mega-footer-link:hover { color: var(--navy); }
.mega-footer-note { font-size: 11px; color: var(--gray-400); }

/* ============================================
   CARD FLOAT BADGE (sobre target-visual-wrap)
   ============================================ */
.target-visual-wrap { position: relative; }

.card-float-badge {
  position: absolute;
  top: -20px; right: 20px; z-index: 10;
  background: var(--gradient-teal);
  color: white; font-size: 11.5px; font-weight: 800;
  padding: 8px 15px 8px 9px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 7px;
  box-shadow: 0 6px 22px rgba(13,148,136,0.45);
  white-space: nowrap;
  animation: heroBadgeFloat 3.5s ease-in-out infinite;
  letter-spacing: 0.01em;
  pointer-events: none;
}

.cfb-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ============================================
   CONTACT CTA BOX — fix double background
   ============================================ */
.contact-form-cta {
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

/* ============================================
   CALCULATOR RESULT — plan card redesign
   ============================================ */
.calc-result-plan {
  border: 2px solid var(--teal);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 8px 32px rgba(13,148,136,0.12);
}

.calc-result-plan-header {
  background: var(--navy);
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}

.calc-result-plan-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gradient-teal);
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: white;
  padding: 5px 14px; border-radius: 100px;
}

.calc-result-trust {
  display: flex; align-items: center; gap: 8px;
}

.calc-result-trust-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08); padding: 4px 10px; border-radius: 100px;
}

.calc-result-trust-badge img { height: 16px; width: auto; filter: brightness(10); }

.calc-result-plan-body { padding: 22px 24px 18px; background: white; }

.calc-result-price-row {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px;
}

.calc-result-price-big {
  font-size: 46px; font-weight: 900; color: var(--navy); line-height: 1;
}

.calc-result-price-currency { font-size: 24px; font-weight: 800; color: var(--navy); align-self: flex-start; padding-top: 6px; }

.calc-result-price-per { font-size: 14px; color: var(--gray-400); font-weight: 500; align-self: flex-end; padding-bottom: 4px; }

.calc-result-price-note { font-size: 12px; color: var(--gray-400); margin-bottom: 20px; }

.calc-result-checklist {
  display: grid; grid-template-columns: 1fr 1fr; gap: 9px 16px; margin-bottom: 18px;
}

.calc-result-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--navy);
}

.calc-result-check svg { color: var(--teal); flex-shrink: 0; }

.calc-result-vf-bar {
  display: flex; align-items: center; gap: 10px;
  background: rgba(13,148,136,0.07);
  border: 1px solid rgba(13,148,136,0.18);
  border-radius: 10px; padding: 10px 14px; margin-bottom: 20px;
}

.calc-result-vf-bar img { height: 20px; width: auto; }
.calc-result-vf-bar span { font-size: 12px; font-weight: 600; color: var(--navy); }

@media (max-width: 480px) {
  .calc-result-checklist { grid-template-columns: 1fr; }
  .calc-result-price-big { font-size: 38px; }
}

/* ============================================
   PRECIOS PAGE — SEO content section
   ============================================ */
.precios-intro {
  padding: 72px 0 0;
  background: white;
}

.precios-intro-inner {
  max-width: 820px; margin: 0 auto;
}

.precios-intro-inner h2 {
  font-size: clamp(22px, 2.8vw, 30px); font-weight: 800;
  color: var(--navy); margin-bottom: 14px; margin-top: 36px;
}

.precios-intro-inner h2:first-child { margin-top: 0; }

.precios-intro-inner p {
  font-size: 15.5px; color: var(--gray-500); line-height: 1.78; margin-bottom: 14px;
}

.precios-mini-table {
  width: 100%; border-collapse: collapse;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(15,45,82,0.06);
  margin: 28px 0;
}

.precios-mini-table th {
  background: var(--navy); color: white;
  padding: 12px 18px; text-align: left; font-size: 13px; font-weight: 600;
}

.precios-mini-table td {
  padding: 12px 18px; font-size: 14px; color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
}

.precios-mini-table tr:last-child td { border-bottom: none; }
.precios-mini-table tr:nth-child(even) td { background: var(--gray-50); }
.precios-mini-table td strong { color: var(--teal); font-weight: 700; }

.precios-detail-table {
  width: 100%; border-collapse: collapse;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(15,45,82,0.07);
  margin: 24px 0 8px;
}

.precios-detail-table thead tr { background: var(--navy); }

.precios-detail-table thead th {
  text-align: left; padding: 12px 16px;
  color: rgba(255,255,255,0.75); font-size: 12px; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase;
}

.precios-detail-table tbody tr { border-bottom: 1px solid var(--gray-100); }
.precios-detail-table tbody tr:nth-child(even) { background: var(--gray-50); }

.precios-detail-table td {
  padding: 11px 16px; font-size: 14px; color: var(--gray-700);
}

.precios-detail-table td:first-child { color: var(--navy); font-weight: 500; }

.precios-detail-table td.td-model {
  font-size: 12.5px; color: var(--gray-400); font-weight: 600;
  white-space: nowrap;
}

.precios-detail-table td.td-check {
  color: var(--teal); font-weight: 700;
  text-align: center; white-space: nowrap;
}

.precios-detail-table td.td-check-highlight {
  color: var(--teal); font-weight: 800;
  text-align: center; background: rgba(13,148,136,0.07);
}

.precios-detail-table td.td-price {
  color: var(--navy); font-weight: 700;
  white-space: nowrap;
}

.precios-note {
  font-size: 13px; color: var(--gray-500); line-height: 1.6;
  margin: 4px 0 32px;
  padding: 10px 16px;
  background: var(--gray-50);
  border-left: 3px solid var(--teal);
  border-radius: 0 6px 6px 0;
}

/* AUTO CARD — Calendario Fiscal (Autónomos)
   ============================================ */
.auto-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15,45,82,0.13), 0 4px 18px rgba(0,0,0,0.06);
  border: 1px solid rgba(15,45,82,0.07);
  overflow: hidden;
}

.auto-header {
  background: var(--navy);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auto-header-title {
  display: flex; align-items: center; gap: 9px;
  color: white; font-size: 14px; font-weight: 700;
}

.auto-app-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 10px rgba(20,184,166,0.75);
  display: inline-block;
}

.auto-badge-ok {
  font-size: 11px; font-weight: 700; letter-spacing: 0.01em;
  background: rgba(13,148,136,0.22);
  color: var(--teal-light);
  padding: 4px 12px; border-radius: 100px;
}

.auto-quarters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.auto-q {
  padding: 18px 12px 14px;
  border-right: 1px solid var(--gray-100);
  text-align: center;
}
.auto-q:last-child { border-right: none; }

.auto-q-num {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 12px;
  color: var(--gray-400);
}
.auto-q-done .auto-q-num { color: var(--teal); }
.auto-q-current .auto-q-num { color: var(--blue); }

.auto-q-circle {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.auto-q-done .auto-q-circle { background: rgba(13,148,136,0.12); }
.auto-q-current .auto-q-circle { background: rgba(37,99,235,0.12); }
.auto-q-pending .auto-q-circle { background: var(--gray-100); }

.auto-q-tags { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }

.auto-q-tag {
  font-size: 10px; font-weight: 700; padding: 3px 6px; border-radius: 5px;
}
.auto-q-done .auto-q-tag { background: rgba(13,148,136,0.1); color: var(--teal); }
.auto-q-current .auto-q-tag { background: rgba(37,99,235,0.1); color: var(--blue); }
.auto-q-pending .auto-q-tag { background: var(--gray-100); color: var(--gray-400); }

.auto-q-date {
  font-size: 9.5px; color: var(--gray-400); margin-bottom: 7px; line-height: 1.3;
}

.auto-q-amount { font-size: 13px; font-weight: 700; }
.auto-q-done .auto-q-amount { color: var(--navy); }
.auto-q-current .auto-q-amount { color: var(--blue); }
.auto-q-pending .auto-q-amount { color: var(--gray-300); }

.auto-saving {
  background: #F0FDF9;
  border-top: 1px solid rgba(13,148,136,0.15);
  padding: 13px 22px;
  display: flex; align-items: center; justify-content: space-between;
}

.auto-saving-label { font-size: 12px; color: var(--gray-500); }
.auto-saving-val { font-size: 15px; font-weight: 800; color: var(--teal); }

/* ============================================
   EMP CARD — Dashboard Empresas (Bar Chart)
   ============================================ */
.emp-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15,45,82,0.13), 0 4px 18px rgba(0,0,0,0.06);
  border: 1px solid rgba(15,45,82,0.07);
  overflow: hidden;
}

.emp-header {
  background: linear-gradient(135deg, #1a3d6b 0%, #0e4d8f 100%);
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
}

.emp-header-left { display: flex; flex-direction: column; gap: 2px; }
.emp-header-title { color: white; font-size: 14px; font-weight: 700; }
.emp-header-sub { color: rgba(255,255,255,0.5); font-size: 11px; }

.emp-trend-badge {
  display: flex; align-items: center; gap: 5px;
  background: rgba(13,148,136,0.22); padding: 5px 12px; border-radius: 100px;
  color: var(--teal-light); font-size: 12px; font-weight: 700;
}

.emp-chart-area { padding: 22px 22px 4px; }

.emp-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 90px;
}

.emp-bar-wrap {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end; gap: 6px;
  height: 100%;
}

.emp-bar-fill {
  width: 100%;
  border-radius: 5px 5px 0 0;
  background: rgba(37,99,235,0.15);
  min-height: 6px;
  transition: background 0.3s;
}

.emp-bar-fill.active {
  background: var(--gradient-teal);
  box-shadow: 0 4px 14px rgba(13,148,136,0.28);
}

.emp-bar-fill.highlight {
  background: var(--gradient);
}

.emp-bar-label {
  font-size: 9.5px; color: var(--gray-400); font-weight: 600; text-transform: uppercase;
}

.emp-metrics-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 0 0 0;
  border-top: 1px solid var(--gray-100);
  margin-top: 14px;
}

.emp-metric {
  text-align: center; padding: 14px 8px;
  border-right: 1px solid var(--gray-100);
}
.emp-metric:last-child { border-right: none; }

.emp-metric-val {
  display: block; font-size: 20px; font-weight: 800; color: var(--navy); line-height: 1.1;
}

.emp-metric-val.up { color: var(--teal); }

.emp-metric-label {
  font-size: 10px; color: var(--gray-400); font-weight: 500; margin-top: 2px;
}

.emp-status-row {
  background: var(--navy); padding: 12px 22px;
  display: flex; justify-content: space-between; align-items: center;
}

.emp-status-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: rgba(255,255,255,0.72); font-weight: 500;
}

.est-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.est-dot.green { background: #34D399; box-shadow: 0 0 6px rgba(52,211,153,0.6); }
.est-dot.blue  { background: #60A5FA; box-shadow: 0 0 6px rgba(96,165,250,0.6); }
.est-dot.amber { background: #FBBF24; box-shadow: 0 0 6px rgba(251,191,36,0.6); }

/* ============================================
   MODAL / POPUP FORM
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(9,20,38,0.65);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: white;
  border-radius: 24px;
  width: 100%;
  max-width: 540px;
  padding: 44px 40px 36px;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 40px 100px rgba(15,45,82,0.3), 0 8px 24px rgba(0,0,0,0.12);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-100); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); transition: all var(--transition);
  font-size: 20px; line-height: 1;
}
.modal-close:hover { background: var(--gray-200); color: var(--navy); }

.modal-header { margin-bottom: 28px; }

.modal-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--teal);
  background: rgba(13,148,136,0.08); padding: 5px 13px; border-radius: 100px;
  margin-bottom: 14px;
}

.modal-header h3 {
  font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 8px; line-height: 1.2;
}

.modal-header p {
  font-size: 14px; color: var(--gray-500); line-height: 1.6;
}

@media (max-width: 540px) {
  .modal-dialog { padding: 32px 22px 28px; border-radius: 18px; }
  .modal-header h3 { font-size: 20px; }
}

/* ============================================
   NO RRSS — "No tenemos redes sociales"
   ============================================ */
.no-rrss {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.no-rrss::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.no-rrss::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 10%;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.no-rrss-inner {
  max-width: 820px; margin: 0 auto;
  text-align: center; position: relative; z-index: 1;
}

.no-rrss-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 28px;
}

.no-rrss-eyebrow::before, .no-rrss-eyebrow::after {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: rgba(20,184,166,0.4);
}

.no-rrss-headline {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900; color: white;
  line-height: 1.1; margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.no-rrss-headline-2 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  background: var(--gradient-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1; margin-bottom: 36px;
  letter-spacing: -0.02em;
}

.no-rrss-desc {
  font-size: 17px; color: rgba(255,255,255,0.62);
  line-height: 1.75; max-width: 600px; margin: 0 auto 48px;
}

.no-rrss-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 48px;
  flex-wrap: wrap;
}

.no-rrss-stat {
  padding: 20px 44px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.no-rrss-stat:last-child { border-right: none; }

.no-rrss-stat-num {
  font-size: 36px; font-weight: 900; color: white;
  display: block; line-height: 1;
}

.no-rrss-stat-label {
  font-size: 12px; color: rgba(255,255,255,0.45);
  margin-top: 5px; font-weight: 500;
}

@media (max-width: 768px) {
  .no-rrss { padding: 72px 0; }
  .no-rrss-stat { padding: 16px 24px; }
  .no-rrss-stat-num { font-size: 28px; }
}

/* ============================================
   MEJOR DIGITAL — "La mejor gestoría online"
   ============================================ */
.mejor-digital {
  padding: 100px 0;
  background: var(--gray-50);
}

.mejor-digital-header {
  text-align: center; max-width: 680px; margin: 0 auto 64px;
}

.mejor-digital-header .section-label { justify-content: center; }

.mejor-digital-header h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800; color: var(--navy);
  line-height: 1.18; margin-bottom: 18px;
}

.mejor-digital-header h2 em {
  font-style: normal;
  background: var(--gradient-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mejor-digital-header p {
  font-size: 16px; color: var(--gray-500); line-height: 1.75;
}

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

.mejor-card {
  background: white;
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--gray-200);
  display: flex; gap: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.mejor-card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.mci-teal { background: rgba(13,148,136,0.1); color: var(--teal); }
.mci-blue { background: rgba(37,99,235,0.1); color: var(--blue); }
.mci-navy { background: rgba(15,45,82,0.08); color: var(--navy); }
.mci-amber { background: rgba(245,158,11,0.1); color: #D97706; }

.mejor-card-body h3 {
  font-size: 16px; font-weight: 700; color: var(--navy);
  margin-bottom: 8px; line-height: 1.3;
}

.mejor-card-body p {
  font-size: 14px; color: var(--gray-500); line-height: 1.65;
}

.mejor-bottom {
  text-align: center; margin-top: 56px;
}

.mejor-highlight {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy);
  color: white;
  padding: 16px 32px; border-radius: 16px;
  font-size: 15px; font-weight: 700;
  margin-bottom: 28px;
}

.mejor-highlight svg { color: var(--teal-light); }

@media (max-width: 768px) {
  .mejor-grid { grid-template-columns: 1fr; }
  .mejor-digital { padding: 64px 0; }
}

/* ============================================
   PRICING CALCULATOR
   ============================================ */
.calc-section {
  padding: 80px 0 100px;
  background: white;
}

.calc-header {
  text-align: center; max-width: 660px; margin: 0 auto 56px;
}

.calc-header h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.calc-header p { font-size: 16px; color: var(--gray-500); line-height: 1.7; }

.calc-box {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 40px rgba(15,45,82,0.08);
  overflow: hidden;
}

.calc-progress {
  height: 4px;
  background: var(--gray-100);
}
.calc-progress-fill {
  height: 100%;
  background: var(--gradient-teal);
  transition: width 0.4s ease;
  border-radius: 0 2px 2px 0;
}

.calc-step {
  padding: 40px 44px;
  display: none;
}
.calc-step.active { display: block; }

.calc-step-num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
}

.calc-step h3 {
  font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 28px;
}

.calc-options {
  display: grid; gap: 14px;
}

.calc-options.cols-2 { grid-template-columns: repeat(2, 1fr); }
.calc-options.cols-4 { grid-template-columns: repeat(4, 1fr); }

.calc-option {
  border: 2px solid var(--gray-200);
  border-radius: 14px; padding: 20px 18px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  background: white;
}

.calc-option:hover { border-color: var(--teal); background: rgba(13,148,136,0.04); }
.calc-option.selected { border-color: var(--teal); background: rgba(13,148,136,0.07); }

.calc-option-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--gray-100); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 12px; color: var(--gray-500);
  transition: all var(--transition);
}

.calc-option.selected .calc-option-icon { background: rgba(13,148,136,0.12); color: var(--teal); }

.calc-option-label { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.calc-option-sub { font-size: 12px; color: var(--gray-400); }

.calc-check-options { display: flex; flex-direction: column; gap: 12px; }

.calc-check {
  display: flex; align-items: center; gap: 14px;
  border: 2px solid var(--gray-200); border-radius: 14px;
  padding: 16px 20px; cursor: pointer;
  transition: all var(--transition); background: white;
}
.calc-check:hover { border-color: var(--teal); }
.calc-check.selected { border-color: var(--teal); background: rgba(13,148,136,0.05); }

.calc-check-box {
  width: 22px; height: 22px; border-radius: 6px;
  border: 2px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all var(--transition);
}
.calc-check.selected .calc-check-box { background: var(--teal); border-color: var(--teal); }
.calc-check.selected .calc-check-box svg { color: white; }
.calc-check-box svg { color: transparent; }

.calc-check-text { flex: 1; }
.calc-check-title { font-size: 14px; font-weight: 700; color: var(--navy); }
.calc-check-desc { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

.calc-result-box {
  background: var(--navy);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
}

.calc-result-label { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 600; margin-bottom: 8px; letter-spacing: 0.05em; text-transform: uppercase; }
.calc-result-price { font-size: 54px; font-weight: 900; color: white; line-height: 1; }
.calc-result-price span { font-size: 22px; color: rgba(255,255,255,0.55); font-weight: 500; }
.calc-result-note { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 8px; }
.calc-result-features { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.calc-result-feat {
  font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8);
  padding: 4px 12px; border-radius: 100px;
}

.calc-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 44px 32px;
  border-top: 1px solid var(--gray-100);
}

.calc-btn-back {
  font-size: 14px; font-weight: 600; color: var(--gray-500);
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  padding: 10px 0; transition: color var(--transition);
}
.calc-btn-back:hover { color: var(--navy); }

.calc-btn-next {
  background: var(--gradient-teal); color: white;
  border: none; border-radius: 12px; padding: 12px 28px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.calc-btn-next:hover { box-shadow: 0 8px 24px rgba(13,148,136,0.35); transform: translateY(-1px); }
.calc-btn-next:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }

@media (max-width: 640px) {
  .calc-step { padding: 28px 22px; }
  .calc-nav { padding: 20px 22px 26px; }
  .calc-options.cols-2 { grid-template-columns: 1fr; }
  .calc-options.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .calc-result-price { font-size: 42px; }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  padding: 140px 0 60px;
  background: var(--gradient);
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 12px;
}

.legal-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}

.legal-content {
  padding: 80px 0;
  background: var(--white);
}

.legal-content .container {
  max-width: 820px;
}

.legal-content h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 40px 0 12px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }

.legal-content p, .legal-content li {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.legal-content th {
  background: var(--gray-50);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--gray-200);
}

.legal-content td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

.legal-content h3 {
  font-size: 17px;
  color: var(--navy);
  font-weight: 600;
  margin: 24px 0 10px;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
}

.legal-update {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--gray-400);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* Services intro section (no grid) */
.services-intro { padding: 72px 0 0; background: white; }
.services-intro .section-header { margin-bottom: 0; }
