/* ============================================
   REEFMONEYPERÚ — Casa de cambio
   Paleta: Amarillo vibrante + Negro
   ============================================ */

:root {
  --yellow: #FFE100;
  --yellow-bright: #FFEC3D;
  --yellow-dark: #E5CA00;
  --yellow-glow: rgba(255, 225, 0, 0.4);

  --black: #0A0A0A;
  --black-soft: #111111;
  --card: #161616;
  --card-2: #1C1C1C;
  --border: #262626;
  --border-light: #333333;

  --text: #FFFFFF;
  --text-mute: #9CA3AF;
  --text-soft: #6B7280;

  --green: #00D26A;
  --red: #FF5757;

  --grad-yellow: linear-gradient(135deg, #FFE100 0%, #FFC700 100%);
  --grad-dark: linear-gradient(180deg, #0A0A0A 0%, #161616 100%);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-yellow: 0 20px 60px -20px rgba(255, 225, 0, 0.45);
  --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);

  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--yellow); color: var(--black); }

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--t);
  white-space: nowrap;
  cursor: pointer;
}

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

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover { background: var(--card); border-color: var(--yellow); }

.btn-ghost-light {
  background: rgba(0, 0, 0, 0.18);
  color: var(--black);
  border: 1.5px solid rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}
.btn-ghost-light:hover { background: rgba(0, 0, 0, 0.28); }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ============================================
   TICKER
   ============================================ */

.ticker {
  background: var(--yellow);
  color: var(--black);
  font-weight: 600;
  font-size: 13px;
  overflow: hidden;
  border-bottom: 2px solid var(--black);
  position: relative;
  z-index: 100;
}
.ticker-track {
  display: inline-flex;
  gap: 60px;
  padding: 10px 0;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
}
.ticker-track span { padding-left: 60px; }
.ticker-track strong { font-weight: 800; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: var(--t);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  padding: 2px;
  box-shadow: 0 4px 12px var(--yellow-glow);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mute);
  border-radius: 999px;
  transition: var(--t);
}
.nav-menu a:hover { color: var(--text); background: var(--card); }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg.jpg') center 30% / cover no-repeat;
  opacity: 0.22;
  filter: grayscale(35%) contrast(105%);
  z-index: 0;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.75) 60%, var(--black) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 225, 0, 0.10), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(255, 225, 0, 0.07), transparent 55%);
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--yellow);
  top: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: var(--yellow);
  bottom: -200px;
  right: -150px;
  animation: float 12s ease-in-out infinite 2s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

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

.hero-content { max-width: 600px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mute);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 210, 106, 0.18);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}
.hero-title .highlight {
  position: relative;
  display: inline-block;
  color: var(--yellow);
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 14px;
  background: rgba(255, 225, 0, 0.18);
  border-radius: 4px;
  z-index: -1;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-mute);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12.5px;
  color: var(--text-mute);
  line-height: 1.3;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-pill {
  font-size: 12.5px;
  padding: 7px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-mute);
  font-weight: 500;
}

/* ============================================
   CALCULATOR
   ============================================ */

.calculator {
  background: linear-gradient(180deg, var(--card-2) 0%, var(--card) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255, 225, 0, 0.08);
}
.calculator::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(255, 225, 0, 0.3), transparent 40%);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.calc-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
  padding: 5px;
  background: var(--black);
  border-radius: 999px;
  border: 1px solid var(--border);
}
.calc-tab {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mute);
  border-radius: 999px;
  transition: var(--t);
}
.calc-tab.active {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 12px var(--yellow-glow);
}

.calc-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.calc-rates {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--black);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.calc-rates > div:not(.rate-divider) { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.rate-label { font-size: 11px; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.rate-value { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 700; color: var(--text); }
.rate-divider { flex: 0 0 1px; width: 1px; height: 28px; background: var(--border-light); align-self: center; }

.calc-row { margin-bottom: 12px; }
.calc-field {
  display: block;
  background: var(--black);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: var(--t);
}
.calc-field:focus-within { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255, 225, 0, 0.15); }
.calc-field > span {
  display: block;
  font-size: 12px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 6px;
}
.calc-input-wrap { display: flex; gap: 12px; align-items: center; }
.calc-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  width: 100%;
  text-align: right;
}
.calc-input-wrap input[readonly] { color: var(--text); }
.currency-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 8px;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  flex-shrink: 0;
}
.currency-pill select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
}
.currency-pill select option { background: var(--card); color: var(--text); }
.flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.flag svg { width: 100%; height: 100%; object-fit: cover; }

.calc-swap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -6px auto;
  width: 40px;
  height: 40px;
  background: var(--card);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  color: var(--yellow);
  position: relative;
  z-index: 2;
  transition: var(--t);
}
.calc-swap:hover { transform: rotate(180deg); border-color: var(--yellow); }

.calc-savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 18px;
  padding: 12px 16px;
  background: rgba(0, 210, 106, 0.08);
  border: 1px solid rgba(0, 210, 106, 0.25);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--green);
  text-align: center;
  font-weight: 500;
}
.calc-savings strong { color: var(--green); font-weight: 700; }

.calc-foot { margin-top: 14px; font-size: 11.5px; color: var(--text-soft); text-align: center; }

/* ============================================
   VOUCHER UPLOAD
   ============================================ */

.voucher-section {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.voucher-form {
  max-width: 560px;
  margin: 0 auto;
  padding: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.voucher-form .field { display: flex; flex-direction: column; gap: 6px; }

.field-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.voucher-form input[type="text"],
.voucher-form input[type="tel"],
.voucher-form input[type="number"],
.voucher-form select {
  background: var(--black);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: var(--t);
  width: 100%;
}
.voucher-form input:focus,
.voucher-form select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 225, 0, 0.15);
}

.field-hint { font-size: 11.5px; color: var(--text-soft); }

.input-currency {
  display: flex;
  gap: 8px;
}
.input-currency input { flex: 1; }
.input-currency select {
  flex: 0 0 90px;
  font-weight: 700;
  cursor: pointer;
}

/* Upload area */
.upload-area {
  border: 2px dashed var(--border-light);
  border-radius: 14px;
  background: var(--black);
  transition: var(--t);
  position: relative;
}
.upload-area:hover { border-color: var(--yellow); background: rgba(255, 225, 0, 0.03); }
.upload-area.has-file { border-style: solid; border-color: rgba(0, 210, 106, 0.45); background: rgba(0, 210, 106, 0.05); }

.upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 36px 20px;
  cursor: pointer;
  text-align: center;
}
.upload-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 225, 0, 0.08);
  border-radius: 50%;
  color: var(--yellow);
  margin-bottom: 4px;
}
.upload-title { font-weight: 600; color: var(--text); font-size: 15px; }
.upload-hint { font-size: 12.5px; color: var(--text-soft); }

.upload-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
}
.preview-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.preview-info { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.preview-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.preview-size { font-size: 12px; color: var(--text-mute); }
.preview-remove {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--card);
  color: var(--text-mute);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--t);
}
.preview-remove:hover { background: rgba(255, 87, 87, 0.15); color: var(--red); }

.voucher-submit { margin-top: 6px; }

.modal-wa { margin-bottom: 10px; }
.modal-wa svg { margin-right: 4px; }
.btn-modal-secondary {
  display: block;
  width: 100%;
  padding: 10px;
  background: transparent;
  color: var(--text-mute);
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--t);
}
.btn-modal-secondary:hover { color: var(--text); }

/* ============================================
   MODAL
   ============================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn 0.25s ease;
}
.modal[hidden] { display: none; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-content {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, var(--card-2) 0%, var(--card) 100%);
  border: 1px solid rgba(255, 225, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px 32px 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 225, 0, 0.08);
  text-align: center;
  animation: modalSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-mute);
  transition: var(--t);
}
.modal-close:hover { background: var(--card); color: var(--text); }
.modal-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  box-shadow: 0 8px 24px var(--yellow-glow);
}
.modal-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.modal-text {
  color: var(--text-mute);
  font-size: 14.5px;
  margin-bottom: 18px;
}
.modal-time {
  padding: 16px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 18px;
}
.modal-time-big {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.modal-time-sub {
  font-size: 12.5px;
  color: var(--text-mute);
}
.modal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  text-align: left;
}
.modal-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--text-mute);
  margin-bottom: 8px;
  line-height: 1.5;
}
.modal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalSlideUp {
  from { transform: translateY(30px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

/* Nav link CTA highlight */
.nav-link-cta {
  background: rgba(255, 225, 0, 0.08);
  color: var(--yellow) !important;
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--black-soft);
}
.trust-bar-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-soft);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.trust-bar-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trust-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  transition: var(--t);
}
.trust-item:hover { color: var(--yellow); }
.trust-item sup { font-size: 0.55em; }

/* ============================================
   SECTIONS COMMON
   ============================================ */

section { padding: 100px 0; }

.section-head { margin-bottom: 56px; max-width: 700px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-head p, .section-sub { color: var(--text-mute); font-size: 16px; }

/* ============================================
   WHY US
   ============================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  position: relative;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--t);
}
.why-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.why-card.highlight {
  background: linear-gradient(180deg, #1a1700 0%, var(--card) 100%);
  border-color: rgba(255, 225, 0, 0.3);
  box-shadow: 0 0 0 1px rgba(255, 225, 0, 0.15), 0 20px 60px -30px rgba(255, 225, 0, 0.3);
}
.why-card.highlight:hover { border-color: var(--yellow); }
.why-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  border-radius: 12px;
  font-size: 24px;
  margin-bottom: 18px;
}
.why-card.highlight .why-icon { background: var(--yellow); }
.why-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: var(--text-mute); font-size: 14.5px; line-height: 1.55; }
.card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 999px;
}

/* ============================================
   HOW
   ============================================ */

.how { background: var(--black-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-light), transparent);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
  transition: var(--t);
  flex-shrink: 0;
}
.step:hover .step-num { background: var(--yellow); color: var(--black); border-color: var(--yellow); transform: scale(1.05); }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-mute); font-size: 14.5px; max-width: 230px; }

/* ============================================
   BANKS
   ============================================ */

.banks-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
/* === Split layout: dos cards de velocidad === */
.banks-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.banks-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--t);
}
.banks-card-fast {
  background: linear-gradient(180deg, #1a1700 0%, var(--card) 100%);
  border-color: rgba(255, 225, 0, 0.3);
  box-shadow: 0 0 0 1px rgba(255, 225, 0, 0.12), 0 20px 60px -30px rgba(255, 225, 0, 0.25);
}
.banks-card-slow {
  background: linear-gradient(180deg, var(--card-2) 0%, var(--card) 100%);
}

.banks-card-pill {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px var(--yellow-glow);
}

.banks-card-head {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--border-light);
}
.banks-card-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.banks-card-time { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.banks-card-time.twin {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.banks-card-time.twin > div { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.time-divider {
  width: 1px;
  height: 44px;
  background: var(--border-light);
}

.time-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.banks-card-fast .time-big { color: var(--yellow); }
.time-sub {
  font-size: 12.5px;
  color: var(--text-mute);
  font-weight: 500;
}

.banks-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: stretch;
}

.banks-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 16px;
  padding: 12px 22px;
  background: transparent;
  color: var(--yellow);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--t);
}
.banks-toggle:hover { background: var(--card); border-color: var(--yellow); }
.banks-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.banks-toggle svg { transition: transform var(--t); }

.banks-extra {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.banks-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 24px;
}

.bank-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  background: #FFFFFF;
  border: 1px solid transparent;
  border-radius: 14px;
  transition: var(--t);
  min-height: 88px;
}
.bank-chip img {
  width: 100%;
  max-width: 96px;
  max-height: 36px;
  object-fit: contain;
  display: block;
}
.bank-chip span {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.02em;
}
.bank-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -10px rgba(255, 225, 0, 0.45);
  border-color: var(--yellow);
}
.banks-extra .bank-chip { min-height: 76px; padding: 12px 10px; }
.banks-extra .bank-chip img { max-height: 30px; }

/* ============================================
   COMPARE
   ============================================ */

.compare-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
  padding: 22px 28px;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }
.compare-header {
  background: var(--black);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.compare-row.best {
  background: linear-gradient(90deg, rgba(255, 225, 0, 0.05), transparent);
  border-left: 3px solid var(--yellow);
}
.compare-row strong { font-family: 'Space Grotesk', sans-serif; font-size: 20px; }
.compare-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  width: fit-content;
}
.diff-positive { color: var(--green); font-weight: 700; }
.diff-negative { color: var(--red); font-weight: 600; }
.compare-note { margin-top: 16px; font-size: 12.5px; color: var(--text-soft); text-align: center; }

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

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.test-card {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--t);
}
.test-card:hover { border-color: var(--border-light); transform: translateY(-4px); }
.stars { color: var(--yellow); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.test-card p {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 22px;
  color: var(--text);
  font-weight: 400;
}
.test-card footer { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.test-card footer strong { display: block; font-size: 14.5px; }
.test-card footer span { font-size: 12.5px; color: var(--text-soft); }

/* ============================================
   CTA FINAL
   ============================================ */

.cta-final {
  background: var(--grad-yellow);
  color: var(--black);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08), transparent);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}
.cta-inner { position: relative; text-align: center; }
.cta-final h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.cta-final p { font-size: 17px; margin-bottom: 30px; opacity: 0.78; font-weight: 500; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-final .btn-primary {
  background: var(--black);
  color: var(--yellow);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.cta-final .btn-primary:hover { background: #1a1a1a; }

/* ============================================
   FOOTER
   ============================================ */

.footer { background: var(--black-soft); padding: 70px 0 30px; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand p { color: var(--text-mute); font-size: 14.5px; margin-top: 16px; max-width: 280px; }
.footer-addr { list-style: none; font-size: 13.5px; line-height: 1.55; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.footer-addr li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-mute); }
.footer-addr li svg { flex-shrink: 0; margin-top: 3px; color: var(--yellow); }
.footer h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--text-mute); font-size: 14.5px; transition: var(--t); }
.footer ul a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-soft);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--t);
}
.footer-social a:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--t);
}
.wa-float:hover { transform: translateY(-2px); }
.wa-icon {
  position: relative;
  width: 64px;
  height: 64px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  animation: waPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
.wa-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: #FF3B30;
  color: white;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.wa-tooltip {
  display: flex;
  flex-direction: column;
  padding: 12px 18px;
  background: #FFFFFF;
  color: #1A1A1A;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.3;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  white-space: nowrap;
  animation: waSlide 0.6s ease 0.3s both;
}
.wa-tooltip strong { font-weight: 700; color: #0A0A0A; font-size: 14px; }
.wa-tooltip span { font-size: 12.5px; color: #555; }
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #FFFFFF;
}
@keyframes waSlide {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-content { max-width: 100%; }
  .why-grid, .test-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .banks-split { grid-template-columns: 1fr; }
  .time-big { font-size: 32px; }
}

@media (max-width: 640px) {
  section { padding: 70px 0; }
  .hero { padding: 50px 0 70px; }
  .nav-actions .btn-ghost { display: none; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; padding: 18px; }
  .why-grid, .test-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .compare-row { grid-template-columns: 1fr 1fr; font-size: 13px; padding: 16px; gap: 10px; }
  .compare-header { display: none; }
  .calculator { padding: 22px; }
  .trust-bar-logos { gap: 24px; }
  .trust-item { font-size: 16px; }
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .voucher-form { padding: 24px; }
  .voucher-grid { grid-template-columns: 1fr; }
  .banks-card { padding: 22px; }
  .banks-row { grid-template-columns: repeat(2, 1fr); }
  .banks-card-time.twin { gap: 16px; flex-direction: column; }
  .banks-card-time.twin .time-divider { display: none; }
  .time-big { font-size: 28px; }
  .wa-tooltip { display: none; }
  .wa-icon { width: 56px; height: 56px; }
}
