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

/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  /* Colors */
  --mamey: #F26522;
  --mamey-light: #FF8C42;
  --mamey-dark: #d9541a;
  --blue: #1B4F8A;
  --blue-dark: #0d2d5e;
  --blue-light: #2463a8;
  --white: #FFFFFF;
  --dark: #1a1a2e;
  --gray-bg: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #adb5bd;
  --gray-700: #495057;
  --text: #1a1a2e;
  --text-light: #6c757d;
  --text-muted: #9ca3af;

  /* Gradients */
  --gradient-mamey: linear-gradient(135deg, #F26522, #FF8C42);
  --gradient-blue: linear-gradient(135deg, #1B4F8A, #0d2d5e);
  --gradient-hero: linear-gradient(135deg, #0d2d5e 0%, #1B4F8A 50%, #163f70 100%);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-size-base: 1rem;
  --line-height: 1.6;

  /* Spacing */
  --section-py: 5rem;
  --container-px: 1.5rem;
  --container-max: 1200px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.1);
  --shadow-mamey: 0 8px 32px rgba(242, 101, 34, 0.35);
  --shadow-blue: 0 8px 32px rgba(27, 79, 138, 0.4);

  /* Border radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;

  /* Z-index */
  --z-header: 100;
  --z-float: 200;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--text);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
}

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

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-padding {
  padding: var(--section-py) 0;
}

.text-mamey  { color: var(--mamey); }
.text-white  { color: var(--white); }

/* ============================================================
   TYPOGRAPHY
============================================================ */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mamey);
  background: rgba(242, 101, 34, 0.1);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-tag-light {
  color: var(--mamey-light);
  background: rgba(255, 140, 66, 0.15);
}

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

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-lg {
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
}

.btn-block {
  width: 100%;
  display: flex;
}

.btn-primary {
  background: var(--gradient-mamey);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-mamey);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(242, 101, 34, 0.45);
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) var(--delay, 0s),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) var(--delay, 0s);
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER / NAVIGATION
============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient-mamey);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.logo-footer .logo-text {
  background: var(--gradient-mamey);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.625rem;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--gradient-mamey);
  border-radius: var(--radius-full);
  transition: transform 0.25s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.nav-cta {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

/* Geometric background pattern */
.hero-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.geo-1 {
  width: 600px;
  height: 600px;
  background: var(--mamey);
  top: -200px;
  right: -100px;
  animation: geoFloat 8s ease-in-out infinite;
}

.geo-2 {
  width: 400px;
  height: 400px;
  background: var(--blue-light);
  bottom: -150px;
  left: -100px;
  opacity: 0.1;
  animation: geoFloat 10s ease-in-out infinite reverse;
}

.geo-3 {
  width: 200px;
  height: 200px;
  background: var(--mamey-light);
  top: 30%;
  left: 15%;
  opacity: 0.06;
  animation: geoFloat 12s ease-in-out infinite;
}

.geo-4 {
  width: 80px;
  height: 80px;
  background: var(--white);
  top: 20%;
  right: 30%;
  opacity: 0.05;
  border-radius: 12px;
  transform: rotate(45deg);
  animation: geoFloat 6s ease-in-out infinite;
}

.geo-5 {
  width: 120px;
  height: 120px;
  background: var(--mamey);
  bottom: 20%;
  right: 20%;
  opacity: 0.06;
  border-radius: 16px;
  transform: rotate(30deg);
  animation: geoFloat 9s ease-in-out infinite reverse;
}

/* Grid dots overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

@keyframes geoFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%       { transform: translate(15px, -20px) rotate(5deg); }
  66%       { transform: translate(-10px, 10px) rotate(-3deg); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mamey-light);
  background: rgba(242,101,34,0.15);
  border: 1px solid rgba(242,101,34,0.3);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Speed Card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.speed-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  max-width: 340px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.speed-ring {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 1.25rem;
}

.ring-svg {
  width: 100%;
  height: 100%;
  animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(242,101,34,0.4)); }
  50%       { filter: drop-shadow(0 0 20px rgba(242,101,34,0.7)); }
}

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

.speed-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}

.speed-unit {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mamey);
  letter-spacing: 0.05em;
}

.speed-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.speed-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 1.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

.dot-active {
  background: var(--mamey);
  width: 24px;
  border-radius: 4px;
}

.speed-metrics {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.metric {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(8px); }
}

/* ============================================================
   STATS BAR
============================================================ */
.stats-bar {
  background: var(--gradient-blue);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
  text-align: center;
}

.stat-item {
  padding: 0.5rem;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--mamey);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 900;
  color: var(--mamey);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ============================================================
   FEATURES
============================================================ */
.features {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242,101,34,0.2);
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--gradient-mamey);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-mamey);
  flex-shrink: 0;
}

.feature-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   PLANS
============================================================ */
.plans {
  background: var(--gray-bg);
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.plan-card-popular {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}

/* ---- Plan hero: horizontal destacado, fuera del grid ---- */
.plan-hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
  padding: 1.75rem 1.5rem 1.25rem 1.5rem;
  position: relative;
}

/* Accent strip on left edge */

.plan-hero .plan-badge {
  position: static;
  transform: none;
  left: auto;
  top: auto;
  display: inline-block;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.plan-hero-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  flex-shrink: 0;
  padding-right: 1.75rem;
  border-right: 1px solid var(--gray-200);
}

.plan-hero .plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.plan-hero .plan-name-price {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.75rem;
}

.plan-hero .plan-name {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0;
  white-space: nowrap;
}

.plan-hero .plan-price {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.1rem;
}

.plan-hero .price-amount {
  font-size: 1.4rem;
  line-height: 1;
}

.plan-hero .price-currency {
  font-size: 0.78rem;
}

.plan-hero .price-period {
  font-size: 0.75rem;
  color: var(--text-light);
}

.plan-hero-features.plan-features {
  display: flex;
  flex-direction: row !important;
  flex-wrap: nowrap;
  gap: 0 1.5rem;
  flex: 1;
  margin-bottom: 0;
  padding: 0 1.75rem;
  border-right: 1px solid var(--gray-200);
}

.plan-hero .plan-feature {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.plan-hero > .btn {
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: 1.75rem;
}

.plan-card-popular:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(27, 79, 138, 0.45);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-mamey);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--shadow-mamey);
}

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

.plan-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.1rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  padding-bottom: 0.4rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.04em;
}

.price-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  padding-bottom: 0.5rem;
}

.plan-features {
  flex: 1;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 450;
}

.plan-feature svg {
  flex-shrink: 0;
}

.plans-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 2rem;
}

.plans-note a {
  color: var(--mamey);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-it-works {
  background: var(--white);
}

.steps-container {
  position: relative;
}

.steps-line {
  display: none;
  position: absolute;
  top: 72px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gray-200), var(--mamey), var(--gray-200), transparent);
  z-index: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.step {
  text-align: center;
  padding: 0 1rem;
}

.step-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(242,101,34,0.12);
  line-height: 1;
  margin-bottom: -1rem;
  letter-spacing: -0.04em;
  transition: var(--transition);
}

.step:hover .step-number {
  color: rgba(242,101,34,0.25);
}

.step-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-mamey);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-mamey);
  transition: var(--transition);
}

.step:hover .step-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 16px 48px rgba(242,101,34,0.4);
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.625rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

/* ============================================================
   COVERAGE
============================================================ */
.coverage {
  background: var(--gradient-blue);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.coverage-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

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

.coverage-zone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  background: rgba(255,255,255,0.07);
  padding: 0.625rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition-fast);
}

.coverage-zone:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(242,101,34,0.4);
}

.coverage-zone-active {
  background: rgba(242,101,34,0.2);
  border-color: #F26522;
  color: #fff;
  font-weight: 600;
}

.coverage-zone-soon {
  opacity: 0.6;
  color: rgba(255,255,255,0.6);
}

.coverage-zone-soon:hover {
  opacity: 0.85;
}

.zone-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 4px;
  white-space: nowrap;
}

.coverage-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.coverage-input {
  flex: 1;
  min-width: 200px;
  padding: 0.8rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.9375rem;
  outline: none;
  transition: var(--transition-fast);
  backdrop-filter: blur(4px);
}

.coverage-input::placeholder {
  color: rgba(255,255,255,0.45);
}

.coverage-input:focus {
  border-color: var(--mamey);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 0 3px rgba(242,101,34,0.25);
}

.coverage-btn {
  flex-shrink: 0;
}

.coverage-result {
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  min-height: 1.5em;
  transition: var(--transition);
}

.coverage-result.success {
  color: #4ade80;
}

.coverage-result.error {
  color: #fca5a5;
}

/* Map placeholder */
.coverage-map-wrap {
  display: flex;
  justify-content: center;
}

.coverage-map {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  border: 2px dashed rgba(255,255,255,0.25);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

.coverage-map-iframe {
  border: none;
  background: transparent;
  padding: 0;
}

.coverage-map-iframe iframe {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
}

.map-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.45);
  z-index: 1;
  pointer-events: none;
}

.map-placeholder svg {
  margin: 0 auto 1rem;
}

.map-placeholder p {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.map-placeholder span {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.7;
}

/* Pulse animation on map */
.map-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pulse-dot {
  width: 14px;
  height: 14px;
  background: var(--mamey);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid rgba(242,101,34,0.4);
  border-radius: 50%;
  animation: pulseRing 2.5s ease-out infinite;
}

.pulse-ring-2 {
  animation-delay: 1.25s;
}

@keyframes pulseRing {
  0%   { transform: translate(-50%, -50%) scale(0.3); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* ============================================================
   TESTIMONIALS
============================================================ */

/* ============================================================
   SPEED TEST
============================================================ */
.speedtest {
  background: var(--dark);
}

.speedtest .section-tag {
  background: rgba(242, 101, 34, 0.15);
  color: var(--mamey);
}

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

.speedtest .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.speedtest-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.speedtest-gauge {
  position: relative;
  width: 220px;
  height: 220px;
}

.speedtest-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 12;
}

.ring-fill {
  fill: none;
  stroke: url(#speedGradient);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 565.49;
  stroke-dashoffset: 565.49;
}

.speedtest-display {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.speed-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
}

.speed-unit {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.speedtest-status {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.4em;
}

.speedtest-stats {
  display: flex;
  gap: 3rem;
}

.speed-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-icon {
  font-size: 1.1rem;
  color: var(--mamey);
  font-weight: 700;
}

.speed-stat .stat-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}

.speed-stat .stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.speedtest-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
}

.speedtest-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.testimonials {
  background: var(--gray-bg);
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition);
}

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

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-left: auto;
  flex-shrink: 0;
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--mamey);
  opacity: 0.2;
  position: absolute;
  top: 0.25rem;
  left: -0.25rem;
  font-family: Georgia, serif;
  line-height: 1;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}

.author-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
}

.author-location {
  font-size: 0.8375rem;
  color: var(--text-muted);
}

/* Slider dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot.dot-active {
  background: var(--mamey);
  width: 28px;
  border-radius: 5px;
}

.slider-dot:hover {
  background: var(--mamey-light);
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.8rem 1.125rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
  appearance: none;
}

.form-input::placeholder {
  color: var(--gray-500);
}

.form-input:focus {
  border-color: var(--mamey);
  box-shadow: 0 0 0 3px rgba(242,101,34,0.15);
}

.form-input:invalid:not(:placeholder-shown) {
  border-color: #f87171;
}

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

.contact-submit {
  margin-top: 0.5rem;
  font-size: 1rem;
}

.form-result {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.5em;
  border-radius: var(--radius-md);
  padding: 0;
  transition: var(--transition);
}

.form-result.success {
  color: #16a34a;
  background: #dcfce7;
  padding: 0.875rem 1.125rem;
}

.form-result.error {
  color: #dc2626;
  background: #fee2e2;
  padding: 0.875rem 1.125rem;
}

/* Contact info */
.contact-info-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.125rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(242,101,34,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-item-value {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
  font-weight: 500;
  transition: var(--transition-fast);
}

a.contact-item-value:hover {
  color: var(--mamey);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--gradient-blue);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-top: 0.875rem;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--mamey);
  border-color: var(--mamey);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--mamey-light);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-float);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.whatsapp-tooltip {
  background: var(--dark);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 8px 48px rgba(37, 211, 102, 0.65), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ============================================================
   SPIN ANIMATION
============================================================ */
.spin {
  animation: spin 1s linear infinite;
}

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

/* ============================================================
   RESPONSIVE — 768px+
============================================================ */
@media (min-width: 768px) {

  :root {
    --section-py: 6rem;
    --container-px: 2rem;
  }

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

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

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

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

  .steps-line {
    display: block;
  }

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

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

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 70px);
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .coverage-form {
    flex-wrap: nowrap;
  }

}

/* ============================================================
   RESPONSIVE — 1024px+
============================================================ */
@media (min-width: 1024px) {

  :root {
    --section-py: 7rem;
    --container-px: 2.5rem;
  }

  .nav-links {
    display: flex !important;
  }

  .hamburger {
    display: none !important;
  }

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

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

  .testimonials-slider {
    max-width: 720px;
    margin: 0 auto;
  }

}

/* ============================================================
   MOBILE NAV
============================================================ */
@media (max-width: 1023px) {

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 0.25rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: calc(var(--z-header) - 1);
    animation: menuSlideDown 0.25s ease;
  }

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

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

  .nav-link {
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
  }

  .nav-link:hover {
    background: rgba(242,101,34,0.06);
  }

  .nav-link::after {
    display: none;
  }

  /* Mobile nav CTA */
  .nav-links::after {
    content: '';
  }

  .nav-links li:last-child + * {
    margin-top: 0.75rem;
  }

}

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

  html {
    scroll-behavior: auto;
  }

  .animate-fade-up {
    opacity: 1;
    transform: none;
  }
}
