/* ============================================================
   FAXI – Modern Landing Page Styles
   ============================================================ */

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

:root {
  --orange:       #F59E0B;
  --orange-dark:  #D97706;
  --orange-light: #FEF3C7;
  --orange-glow:  rgba(245, 158, 11, 0.25);
  --black:        #0A0A0A;
  --dark:         #111827;
  --dark-2:       #1F2937;
  --gray:         #6B7280;
  --gray-light:   #E5E7EB;
  --white:        #FFFFFF;
  --bg-light:     #F8FAFC;
  --blue-gov:     #1D4ED8;
  --blue-gov-light: #EFF6FF;
  --green:        #10B981;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.14);
  --transition:   0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 4px 14px var(--orange-glow);
}
.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn--outline:hover {
  background: var(--orange);
  color: var(--black);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--orange);
  color: var(--black);
  padding: 10px 20px;
  font-size: 14px;
}
.btn--nav:hover { background: var(--orange-dark); }

.btn--nav-gov {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn--nav-gov:hover {
  background: var(--green);
  color: #fff;
}

.btn--lg { padding: 16px 32px; font-size: 16px; border-radius: 14px; }

/* ============================================================
   SECTION ELEMENTS
   ============================================================ */
.section-badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section-badge--light {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}

.nav.scrolled .nav__links a { color: var(--dark); }
.nav.scrolled .nav__logo .logo-text { color: var(--dark); }

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 22px;
}

.logo-icon { font-size: 24px; }
.logo-text { color: var(--white); transition: color var(--transition); }

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 16px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--orange); }

.nav__link--gov {
  background: var(--blue-gov-light);
  color: var(--blue-gov) !important;
  padding: 6px 14px;
  border-radius: 99px;
  font-weight: 600 !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

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

.nav.scrolled .nav__burger span { background: var(--dark); }

.nav__mobile {
  display: none;
  background: var(--white);
  padding: 20px 24px;
  border-top: 1px solid var(--gray-light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.nav__mobile ul { display: flex; flex-direction: column; gap: 4px; }
.nav__mobile a {
  display: block;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--dark);
  border-radius: 8px;
  transition: background var(--transition);
}
.nav__mobile a:hover { background: var(--bg-light); }
.nav__mobile .gov-link { color: var(--blue-gov); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1a2e 40%, #16213e 70%, #0f3460 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__bg-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: radial-gradient(ellipse at bottom left, rgba(245,158,11,0.08) 0%, transparent 60%);
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}

.stat { text-align: center; }
.stat__value { display: block; font-size: 28px; font-weight: 800; color: var(--orange); }
.stat__label { display: block; font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.stat__divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* PHONE MOCKUP */
.hero__mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 260px;
  height: 520px;
  background: var(--dark-2);
  border-radius: 36px;
  border: 6px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05), inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
}

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

.phone-mockup__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: var(--dark-2);
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-mockup__screen {
  padding: 40px 16px 16px;
  height: 100%;
}

.app-ui { display: flex; flex-direction: column; gap: 12px; height: 100%; }

.app-ui__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.app-ui__logo { font-size: 14px; font-weight: 700; color: var(--white); }

.app-ui__status {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
}

.app-ui__ride {
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.08));
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% { border-color: rgba(245,158,11,0.3); }
  50% { border-color: rgba(245,158,11,0.8); box-shadow: 0 0 12px rgba(245,158,11,0.2); }
}

.ride__icon { font-size: 22px; }
.ride__info { flex: 1; }
.ride__info strong { display: block; font-size: 12px; color: var(--white); }
.ride__info p { font-size: 11px; color: rgba(255,255,255,0.6); margin: 0; }
.ride__price { color: var(--orange) !important; font-weight: 600; }
.ride__accept {
  background: var(--orange);
  color: var(--black);
  border: none;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.app-ui__map {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

.app-ui__map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.map__pin {
  position: absolute;
  font-size: 20px;
  animation: ping 2s ease-in-out infinite;
}

.map__pin.driver { top: 30%; left: 35%; }
.map__pin.passenger { top: 55%; right: 25%; }

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

.app-ui__earnings {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.app-ui__earnings strong { color: var(--green); font-size: 15px; }

/* FLOATING BADGES */
.hero__float {
  position: absolute;
  background: var(--white);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 99px;
  box-shadow: var(--shadow-lg);
  animation: float-badge 3s ease-in-out infinite;
}

.hero__float--1 { left: -20px; top: 20%; animation-delay: 0s; }
.hero__float--2 { right: -20px; top: 45%; animation-delay: 1s; }
.hero__float--3 { left: 10px; bottom: 20%; animation-delay: 2s; }

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

.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

.hero__wave svg { display: block; width: 100%; }

/* ============================================================
   NOTICE
   ============================================================ */
.notice {
  padding: 40px 0;
  background: var(--bg-light);
}

.notice__card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--white);
  border-left: 4px solid var(--blue-gov);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
}

.notice__icon { font-size: 36px; flex-shrink: 0; }

.notice__text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.notice__text p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

/* Gov banner — dentro de notice, debajo de la card */
.gov-banner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, #07102a, #0f3460);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  margin-top: 16px;
  border: 1px solid rgba(29,78,216,0.4);
  box-shadow: 0 8px 32px rgba(7,16,42,0.25);
  flex-wrap: wrap;
}

.gov-banner__left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 260px;
}

.gov-banner__icon {
  font-size: 36px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gov-banner__text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.gov-banner__text p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}

.gov-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn--gov {
  background: var(--blue-gov);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 14px rgba(29,78,216,0.4);
  white-space: nowrap;
}
.btn--gov:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,78,216,0.5);
}

.gov-banner__note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 100px 0;
  background: var(--dark);  /* fondo oscuro para romper la monotonía blanca */
}

/* Textos del encabezado sobre fondo oscuro */
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p  { color: rgba(255,255,255,0.55); }
.how-it-works .section-badge {
  background: rgba(245,158,11,0.15);
  color: var(--orange);
}

/* HIW role tabs */
.hiw-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.hiw-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.hiw-tab:hover {
  border-color: rgba(245,158,11,0.4);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.hiw-tab.active {
  border-color: var(--orange);
  background: rgba(245,158,11,0.12);
  color: var(--white);
}

.hiw-tab__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

/* HIW panels */
.hiw-panel {
  transition: opacity 0.3s ease;
}
.hiw-panel--hidden { display: none; }

.hiw-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 99px;
  margin-bottom: 32px;
}

.hiw-panel__badge.passenger-badge {
  background: rgba(59,130,246,0.15);
  color: #93C5FD;
}

.hiw-panel__note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin-top: 0;
  margin-bottom: 48px;
}

.hiw-panel__note.passenger-note {
  border-left-color: #3B82F6;
}

.hiw-panel__note span { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.hiw-panel__note p { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.6; }

.steps {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.step {
  flex: 1;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  transition: transform var(--transition), background var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,158,11,0.4);
}

.step__number {
  font-size: 48px;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 12px;
}

.step__icon { font-size: 36px; margin-bottom: 16px; }

.step h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step p { font-size: 14px; color: rgba(255,255,255,0.55); }

.step__arrow {
  font-size: 28px;
  color: var(--orange);
  flex-shrink: 0;
  font-weight: 300;
  opacity: 0.6;
}

/* FLOW DIAGRAM */
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  flex-wrap: wrap;
  gap: 8px;
}

.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  min-width: 80px;
  text-align: center;
}

.flow-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.flow-item__icon.passenger { background: #EFF6FF; }
.flow-item__icon.app { background: var(--orange-light); }
.flow-item__icon.driver { background: #F0FDF4; }
.flow-item__icon.cash { background: #F0FDF4; }

.flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 60px;
}

.flow-arrow__line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--orange-light), var(--orange));
  position: relative;
}

.flow-arrow__line::after {
  content: '›';
  position: absolute;
  right: -6px;
  top: -10px;
  color: var(--orange);
  font-size: 20px;
}

.flow-arrow__label {
  font-size: 11px;
  color: var(--gray);
  white-space: nowrap;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  padding: 100px 0;
  background: var(--dark);
}

.benefits .section-header h2 { color: var(--white); }
.benefits .section-header p { color: rgba(255,255,255,0.5); }

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

.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.benefit-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-4px);
}

.benefit-card--featured {
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.05));
  border-color: rgba(245,158,11,0.3);
  grid-column: span 1;
}

.benefit-card__icon { font-size: 40px; margin-bottom: 20px; }

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

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

/* Encabezado de pricing: texto legible sobre fondo claro */
.pricing .section-header p strong { color: var(--dark); }

/* Bloque de dos roles */
.pricing-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.pricing-role {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 2px solid var(--gray-light);
  box-shadow: var(--shadow);
  position: relative;
}

.pricing-role--driver {
  border-color: var(--orange);
  background: linear-gradient(135deg, #FFFBEB, var(--white));
}

.pricing-role--passenger {
  border-color: var(--blue-gov);
  background: linear-gradient(135deg, var(--blue-gov-light), var(--white));
}

.pricing-role__icon {
  font-size: 36px;
  flex-shrink: 0;
}

.pricing-role__content { flex: 1; }

.pricing-role__content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.pricing-role__content p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.pricing-role__tag {
  position: absolute;
  top: -12px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 12px;
  border-radius: 99px;
  background: var(--orange);
  color: var(--black);
}

.pricing-role__tag.free {
  background: var(--blue-gov);
  color: var(--white);
}

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

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

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

.pricing-card--popular {
  border-color: var(--orange);
  box-shadow: 0 8px 32px var(--orange-glow);
  transform: scale(1.03);
}

.pricing-card--popular:hover { transform: scale(1.03) translateY(-4px); }

.pricing-card--free {
  border-color: var(--green);
  background: linear-gradient(135deg, #F0FDF4, var(--white));
}

.pricing-card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 99px;
  background: var(--dark-2);   /* fondo oscuro para contraste claro */
  color: var(--white);
  margin-bottom: 20px;
}

.pricing-card--popular .pricing-card__badge.popular {
  background: var(--orange);
  color: var(--black);
}

.pricing-card--free .pricing-card__badge.free {
  background: var(--green);
  color: var(--white);
}

.pricing-card__price { margin-bottom: 12px; }

.price__old {
  display: inline-block;
  font-size: 16px;
  color: var(--gray);
  text-decoration: line-through;
  margin-right: 4px;
}

.price__amount {
  display: block;
  font-size: 44px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
}

.price__unit {
  font-size: 14px;
  color: var(--gray);
}

.pricing-card__desc {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card__features li {
  font-size: 14px;
  color: var(--dark);
}

.pricing__note {
  text-align: center;
  margin-top: 40px;
  padding: 20px 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px dashed var(--gray-light);
}

.pricing__note p { font-size: 14px; color: var(--gray); }

/* ============================================================
   HERO — GIF background
   ============================================================ */
.hero__gif-bg {
  position: absolute;
  inset: 0;
  background-image: url('faxiAnim.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Modernize: desaturate + scale-up slightly so it feels editorial */
  filter: saturate(0.7) brightness(0.55);
  transform: scale(1.04);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  /* Deep navy-to-transparent so content on left stays readable */
  background: linear-gradient(
    105deg,
    rgba(10,18,40,0.92) 0%,
    rgba(10,18,40,0.75) 45%,
    rgba(10,18,40,0.25) 100%
  );
  z-index: 1;
}

/* Make sure hero children sit above gif+overlay */
.hero__inner  { position: relative; z-index: 2; }
.hero__wave   { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 3; }

/* ============================================================
   DOWNLOAD — redesigned with GIF background
   ============================================================ */
.download {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  /* fallback colour while gif loads */
  background: #07102a;
}

/* GIF reutilizado: misma animación, pero con tinte diferente */
.download__gif-bg {
  position: absolute;
  inset: 0;
  background-image: url('faxiAnim.gif');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  filter: saturate(0.5) brightness(0.35) hue-rotate(200deg);
  transform: scale(1.06) scaleX(-1); /* espejo para que no parezca igual al hero */
  z-index: 0;
}

.download__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    255deg,
    rgba(7,16,42,0.95) 0%,
    rgba(7,16,42,0.80) 50%,
    rgba(7,16,42,0.40) 100%
  );
  z-index: 1;
}

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

.download__content h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
}

.text-gradient-light {
  background: linear-gradient(135deg, var(--orange) 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Tabs */
.download__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.08);
  padding: 6px;
  border-radius: 12px;
  width: fit-content;
}

.tab-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.tab-btn.active {
  background: var(--orange);
  color: var(--black);
}

.download__panel { display: none; }
.download__panel.active { display: block; }

/* App row inside panel */
.dl-app-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 18px;
}

.dl-app-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.dl-app-meta { display: flex; flex-direction: column; gap: 2px; }
.dl-app-meta strong { font-size: 16px; font-weight: 700; color: var(--white); }
.dl-app-meta > span { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }

.dl-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dl-bullets li { font-size: 13px; color: rgba(255,255,255,0.75); }

/* Store buttons */
.store-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: var(--radius);
  padding: 13px 20px;
  color: var(--white);
  transition: all var(--transition);
  min-width: 155px;
  /* base — sobreescrito por cada variante */
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.18);
}

/* Apple — negro con borde plateado */
.store-btn--apple {
  background: #1c1c1e;
  border-color: rgba(255,255,255,0.25);
}
.store-btn--apple:hover {
  background: #2c2c2e;
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
}

/* Google Play — azul oscuro con borde verde Play */
.store-btn--google {
  background: #012060;
  border-color: #01875f;
}
.store-btn--google:hover {
  background: #01307a;
  border-color: #34a853;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(1,135,95,0.3);
}

.store-btn__icon { width: 24px; height: 24px; flex-shrink: 0; }
.store-btn__icon svg { width: 100%; height: 100%; }
.store-btn__text { display: flex; flex-direction: column; }
.store-btn__text span { font-size: 11px; opacity: 0.7; }
.store-btn__text strong { font-size: 15px; }

/* ── Right column: two stacked phones ───────────────────── */
.download__phones {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.dl-phone {
  position: absolute;
  width: 210px;
  border-radius: 28px;
  border: 5px solid rgba(255,255,255,0.12);
  background: #0d1b3e;
  box-shadow: 0 32px 72px rgba(0,0,0,0.6);
  overflow: hidden;
}

.dl-phone--back {
  bottom: 0;
  left: 0;
  height: 360px;
  transform: rotate(-6deg) translateY(20px);
  z-index: 1;
  opacity: 0.85;
}

.dl-phone--front {
  bottom: 0;
  right: 0;
  height: 400px;
  transform: rotate(4deg);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.dl-phone__screen {
  padding: 22px 16px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dl-phone__appicon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.dl-phone__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.dl-phone__label small { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 400; }

/* Back phone: map placeholder */
.dl-phone__map-anim {
  flex: 1;
  border-radius: 10px;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 18px 18px;
  background-color: rgba(255,255,255,0.03);
  position: relative;
  overflow: hidden;
}
.dl-phone__map-anim::after {
  content: '📍';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 24px;
  animation: ping 2s ease-in-out infinite;
}

.dl-phone__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
}

.dl-phone__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Front phone: incoming ride */
.dl-phone__incoming {
  background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(245,158,11,0.06));
  border: 1px solid rgba(245,158,11,0.35);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  animation: pulse-border 2s ease-in-out infinite;
}

.dl-incoming__pulse {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(245,158,11,0.6);
  animation: sonar 1.5s ease-out infinite;
}
@keyframes sonar {
  0%   { box-shadow: 0 0 0 0 rgba(245,158,11,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

.dl-phone__incoming span:not(.dl-incoming__pulse) { font-size: 11px; color: var(--orange); font-weight: 700; }
.dl-phone__incoming strong { font-size: 13px; color: var(--white); }
.dl-phone__incoming button {
  margin-top: 8px;
  background: var(--orange);
  color: var(--black);
  border: none;
  border-radius: 8px;
  padding: 7px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.dl-phone__earning {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  text-align: center;
  margin-top: auto;
}

/* Floating badges */
.dl-float {
  position: absolute;
  background: var(--white);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 99px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  white-space: nowrap;
  z-index: 3;
}
.dl-float--1 { top: 20px; left: -10px; animation: float-badge 3s ease-in-out infinite; }
.dl-float--2 { top: 70px; right: -10px; animation: float-badge 3s ease-in-out infinite 1.2s; }

/* ============================================================
   GOVERNMENT PORTAL
   ============================================================ */
.government { padding: 100px 0; background: var(--white); }

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

.government__content .section-badge {
  background: var(--blue-gov-light);
  color: var(--blue-gov);
}

.government__content h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.government__content > p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.8;
}

.government__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.government__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gov-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--blue-gov-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.government__list li div strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.government__list li div p { font-size: 14px; color: var(--gray); margin: 0; }

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

.government__cta .btn--primary {
  background: var(--blue-gov);
  box-shadow: 0 4px 14px rgba(29,78,216,0.25);
}

.government__cta .btn--primary:hover { background: #1e40af; }

.government__cta-note { font-size: 13px; color: var(--gray); }

/* GOV CARD */
.gov-card {
  width: 280px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-lg);
}

.gov-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.gov-card__icon { font-size: 20px; }

.gov-card__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
}

.gov-stat__label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.05em; }
.gov-stat__value { font-size: 15px; font-weight: 700; color: var(--white); }

.gov-card__badge {
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin-top: 8px;
}

/* ============================================================
   SUPPORT
   ============================================================ */
.support {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.support__text h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.support__text p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.7;
}

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

.support-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.support-card__icon { font-size: 32px; margin-bottom: 12px; display: block; }
.support-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.support-card p { font-size: 13px; color: var(--gray); }

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

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand .nav__logo .logo-text { color: var(--white); }

.footer__brand p {
  font-size: 14px;
  margin: 16px 0 20px;
  line-height: 1.7;
}

.footer__apps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__app-link {
  font-size: 13px;
  color: var(--orange);
  transition: opacity var(--transition);
}

.footer__app-link:hover { opacity: 0.7; }

.footer__links h4,
.footer__legal h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links ul,
.footer__legal ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a,
.footer__legal a {
  font-size: 14px;
  transition: color var(--transition);
}

.footer__links a:hover,
.footer__legal a:hover { color: var(--orange); }

.footer__disclaimer {
  margin-top: 20px;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border-left: 3px solid var(--blue-gov);
}

.footer__disclaimer p { font-size: 12px; line-height: 1.6; }

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ============================================================
   HERO BULLETS
   ============================================================ */
.hero__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.hero__bullets li span {
  font-size: 20px;
  flex-shrink: 0;
}

/* LOGO IMG — banner rectangular azul */
.logo-img {
  height: 32px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Download play banner */
.download__play-banner {
  width: 100%;
  border-radius: var(--radius);
  margin-top: 16px;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.download__play-banner:hover { opacity: 1; }

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

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
}

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

.faq__item {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq__item:has(.faq__question[aria-expanded="true"]) {
  border-color: var(--orange);
  box-shadow: 0 4px 20px var(--orange-glow);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  transition: background var(--transition);
}

.faq__question:hover { background: var(--bg-light); }

.faq__question[aria-expanded="true"] {
  color: var(--orange-dark);
  background: var(--orange-light);
}

.faq__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 24px;
}

.faq__answer.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq__answer p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  border-top: 1px solid var(--gray-light);
  padding-top: 16px;
}

/* ============================================================
   STICKER SECTION
   ============================================================ */
.sticker-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a2a5e 0%, #0f3460 60%, #1a1a2e 100%);
  overflow: hidden;
}

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

.sticker__content .section-badge {
  background: rgba(245,158,11,0.2);
  color: var(--orange);
}

.sticker__content h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.sticker__content > p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  line-height: 1.8;
}

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

.sticker__benefits li {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.sticker__img-wrap {
  position: relative;
  display: inline-block;
}

.sticker__img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 8px rgba(245,158,11,0.2), 0 0 0 16px rgba(245,158,11,0.08), 0 24px 64px rgba(0,0,0,0.5);
  animation: float 4s ease-in-out infinite;
}

.sticker__badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* ============================================================
   PRICING SCALE (nuevo)
   ============================================================ */
.pricing-scale {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
}

.pricing-scale__header {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.pricing-scale__rule {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  flex: 1;
  min-width: 200px;
}

.rule-icon { font-size: 22px; flex-shrink: 0; }

.pricing-scale__track {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}

.scale-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.scale-point__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid;
  position: relative;
  z-index: 2;
}

.scale-point--best .scale-point__dot {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 0 6px rgba(16,185,129,0.15);
}

.scale-point--base .scale-point__dot {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 0 6px rgba(245,158,11,0.15);
}

.scale-point__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.scale-price {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.scale-price.best { color: var(--green); }
.scale-price.base { color: var(--orange); }

.scale-desc { font-size: 12px; color: var(--gray); }

.scale-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  background: var(--bg-light);
  color: var(--dark);
}

.scale-line {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.scale-line__fill {
  height: 8px;
  width: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  position: relative;
}

.scale-line__fill::after {
  content: '▶';
  position: absolute;
  right: -8px;
  top: -6px;
  font-size: 18px;
  color: var(--orange);
}

.scale-line__label {
  font-size: 11px;
  color: var(--gray);
  text-align: center;
}

.pricing-scale__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
  flex-wrap: wrap;
}

.pricing-scale__cta p {
  font-size: 14px;
  color: var(--gray);
  flex: 1;
}

/* COMPARISON BARS */
.pricing__comparison {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
}

.comparison__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  margin-bottom: 20px;
}

.comparison__bars { display: flex; flex-direction: column; gap: 16px; }

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

.bar__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  width: 80px;
  flex-shrink: 0;
}

.bar__track {
  flex: 1;
  height: 36px;
  background: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
}

.bar__fill {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  transition: width 1s ease;
  color: var(--white);
}

.bar__fill--faxi {
  background: linear-gradient(90deg, var(--green), #059669);
}

.bar__fill--other {
  background: linear-gradient(90deg, #EF4444, #DC2626);
}

.bar__tag {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  flex-shrink: 0;
}

.bar__tag.best { background: #D1FAE5; color: #065F46; }
.bar__tag.worse { background: #FEE2E2; color: #991B1B; }

/* ============================================================
   APP PREVIEW (download section)
   ============================================================ */
.app-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 20px;
  width: fit-content;
}

.app-preview__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.app-preview__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-preview__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.app-preview__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* APP ICONS CARD (sidebar) */
.app-icons-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 16px;
}

.app-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
}

.app-icon-img {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform var(--transition);
}

.app-icon-img:hover { transform: scale(1.06); }

.app-icon-item span {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.app-icon-item small {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.app-icon-divider {
  width: 60%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 4px 0;
}

.download__search-hint {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.download__search-hint strong { color: var(--orange); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-card--popular { transform: none; }
  .government__inner { grid-template-columns: 1fr; }
  .gov-card { width: 100%; }
  .download__inner { grid-template-columns: 1fr; gap: 48px; }
  .download__phones { height: 340px; }
  .dl-phone--back { height: 280px; width: 175px; }
  .dl-phone--front { height: 320px; width: 185px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .pricing-scale { padding: 28px 24px; }
  .pricing-scale__header { flex-direction: column; gap: 16px; }
  .pricing-roles { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .gov-banner { flex-direction: column; gap: 20px; }
  .gov-banner__actions { width: 100%; align-items: flex-start; }
  .sticker__inner { grid-template-columns: 1fr; text-align: center; }
  .sticker__benefits { align-items: center; }
  .sticker__img { width: 240px; height: 240px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.open { display: block; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__mockup { display: none; }
  .hero__stats { justify-content: center; }
  .hero__cta { justify-content: center; }
  .hero__badge { justify-content: center; }
  .hero__bullets { align-items: center; text-align: left; max-width: 320px; margin: 0 auto 32px; }

  .pricing-scale__track {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .scale-line {
    width: 6px;
    height: 60px;
    padding: 0;
    transform: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .scale-line__fill {
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--green), var(--orange));
  }
  .scale-line__fill::after { display: none; }
  .scale-line__label { display: none; }
  .comparison__bar { flex-wrap: wrap; }
  .bar__name { width: 100%; }

  .hiw-tabs { flex-direction: column; }
  .hiw-tab { width: 100%; justify-content: center; }
  .steps { flex-direction: column; }
  .step__arrow { transform: rotate(90deg); }
  .flow-diagram { flex-wrap: wrap; justify-content: center; }
  .flow-arrow { display: none; }
  .benefits__grid { grid-template-columns: 1fr; }
  .support__inner { grid-template-columns: 1fr; }
  .support__cards { grid-template-columns: 1fr; }
  .notice__card { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .government__inner { grid-template-columns: 1fr; }

  .download__phones { display: none; }
  .download__inner { grid-template-columns: 1fr; }

  .hero { padding: 100px 0 80px; }
  section { padding: 64px 0 !important; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 32px; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .stat__divider { width: 60px; height: 1px; }
  .hero__cta { flex-direction: column; width: 100%; }
  .btn--lg { width: 100%; justify-content: center; }
  .store-buttons { flex-direction: column; }
  .store-btn { width: 100%; }
  .dl-app-row { flex-direction: column; }
}
