﻿/* ============================================================
   TARJETA CL21 â€“ LANDING PAGE STYLES
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  --clr-black: #0A0A0B;
  --clr-dark: #111116;
  --clr-dark-2: #1A1A22;
  --clr-dark-3: #22222E;

  --clr-yellow: #FFD700;
  --clr-yellow-light: #FFE44D;
  --clr-red: #D32F2F;
  --clr-blue: #1565C0;
  --clr-blue-light: #1976D2;
  --clr-blue-glow: rgba(21, 101, 192, 0.35);

  --clr-white: #FFFFFF;
  --clr-white-80: rgba(255, 255, 255, 0.80);
  --clr-white-60: rgba(255, 255, 255, 0.60);
  --clr-white-20: rgba(255, 255, 255, 0.20);
  --clr-white-10: rgba(255, 255, 255, 0.10);
  --clr-white-05: rgba(255, 255, 255, 0.05);

  --grad-gold: linear-gradient(135deg, #FFD700, #FF8C00);
  --grad-blue: linear-gradient(135deg, #1565C0, #0D47A1);
  --grad-dark: linear-gradient(160deg, #0A0A0B 0%, #111116 50%, #1A1A22 100%);
  --grad-card: linear-gradient(135deg, #131313 0%, #1E1E1E 100%);
  --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));

  --shadow-gold: 0 8px 32px rgba(255, 215, 0, 0.30);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.7);

  --rad-sm: 8px;
  --rad-md: 16px;
  --rad-lg: 24px;
  --rad-xl: 32px;
  --rad-pill: 999px;

  --ff-display: 'Outfit', sans-serif;
  --ff-body: 'Inter', sans-serif;

  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--ff-body);
  background: var(--clr-black);
  color: var(--clr-white);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}


a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--clr-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-yellow);
  border-radius: 3px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--rad-pill);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--clr-black);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid var(--clr-white-20);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--clr-yellow);
  color: var(--clr-yellow);
  background: rgba(255, 215, 0, 0.05);
}

.btn-primary {
  background: var(--clr-yellow);
  color: var(--clr-black);
  font-size: 0.88rem;
  padding: 11px 22px;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(255, 215, 0, 0.5);
}

.btn-white {
  background: var(--clr-white);
  color: var(--clr-black);
}

.btn-white:hover {
  background: #e8e8e8;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #20c05e;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 11, 0.90);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Ensure left alignment in desktop */
}

.nav-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 42px;
  /* Original desktop size */
  width: auto;
  filter: brightness(0) invert(1);
  /* Ensure visibility on dark background if needed */
}

.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-white);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--ff-display);
  font-weight: 500;
  color: var(--clr-white-80);
  padding: 8px 14px;
  border-radius: var(--rad-pill);
  font-size: 0.92rem;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--clr-white);
  background: var(--clr-white-10);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(21, 101, 192, 0.18);
  top: -200px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 215, 0, 0.10);
  bottom: -100px;
  left: -100px;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(211, 47, 47, 0.10);
  top: 200px;
  left: 40%;
}

.hero-stripes {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stripe {
  flex: 1;
}

.stripe-red {
  background: var(--clr-red);
}

.stripe-yellow {
  background: var(--clr-yellow);
}

.stripe-blue {
  background: var(--clr-blue);
}

.hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--rad-pill);
  background: var(--clr-white-10);
  border: 1px solid var(--clr-white-20);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clr-white-80);
  backdrop-filter: blur(8px);
  margin-bottom: 20px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.8);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.8);
  }

  50% {
    box-shadow: 0 0 16px rgba(76, 175, 80, 1);
  }
}

.hero-title {
  margin-bottom: 22px;
}

.title-pre {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--clr-white-60);
  margin-bottom: 6px;
}

.title-main {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--clr-white);
}

.title-main em {
  font-style: normal;
  color: var(--clr-yellow);
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--clr-white-60);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-subtitle strong {
  color: var(--clr-white-80);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--clr-yellow);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--clr-white-60);
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-white-20);
}

/* --- Credit Card 3D --- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-scene {
  perspective: 1000px;
  width: 380px;
  height: 240px;
}

.card-3d {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.8));
}

.card-front {
  width: 100%;
  height: 100%;
  background: var(--grad-card);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Card background texture */
.card-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 1;
}

.card-number-big {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 9rem;
  font-weight: 900;
  color: var(--clr-yellow);
  line-height: 1;
  letter-spacing: -5px;
  user-select: none;
  opacity: 0.95;
}

.card-brand {
  position: absolute;
  top: 18px;
  right: 28px;
  text-align: right;
}

.card-brand-cl {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--clr-white);
  letter-spacing: -1px;
  line-height: 1;
}

.card-brand-sub {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--clr-white-60);
  letter-spacing: 2px;
}

.card-slogan {
  position: absolute;
  top: 80px;
  right: 18px;
  font-family: var(--ff-display);
  font-size: 0.42rem;
  color: var(--clr-white-60);
  max-width: 130px;
  text-align: right;
}

.card-code {
  position: absolute;
  bottom: 52px;
  right: 18px;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 1px;
}

.card-valid {
  position: absolute;
  bottom: 38px;
  right: 18px;
  font-family: var(--ff-display);
  font-size: 0.5rem;
  color: var(--clr-white-60);
  letter-spacing: 0.5px;
}

.card-holder {
  position: absolute;
  bottom: 18px;
  right: 18px;
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--clr-white-80);
  letter-spacing: 1px;
}

.card-chip {
  position: absolute;
  left: 130px;
  top: 24px;
  width: 42px;
  height: 32px;
  background: linear-gradient(135deg, #C9A84C, #FFD700, #C9A84C);
  border-radius: 6px;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.chip-inner {
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.card-stripes-side {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  display: flex;
  flex-direction: column;
}

.cs-red {
  flex: 1;
  background: var(--clr-red);
}

.cs-yellow {
  flex: 1;
  background: var(--clr-yellow);
}

.cs-blue {
  flex: 1;
  background: var(--clr-blue);
}

.card-url {
  position: absolute;
  bottom: 8px;
  left: 14px;
  font-size: 0.5rem;
  color: var(--clr-white-40, rgba(255, 255, 255, 0.4));
}

/* Floating badges around card */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(20, 20, 25, 0.85);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--rad-md);
  backdrop-filter: blur(12px);
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-white);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.float-badge-1 {
  top: -20px;
  left: -30px;
}

.float-badge-2 {
  bottom: 40px;
  left: -50px;
}

.float-badge-3 {
  bottom: -20px;
  right: -20px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--clr-white-20);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--clr-yellow);
  border-radius: 2px;
  animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* ============================================================
   BRAND STRIP
   ============================================================ */
.brand-strip {
  background: var(--clr-yellow);
  padding: 16px 24px;
  overflow: hidden;
}

.brand-strip-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-black);
  flex-wrap: wrap;
}

.casa21-logo-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-black);
  color: var(--clr-yellow);
  padding: 6px 14px;
  border-radius: var(--rad-pill);
  font-size: 0.82rem;
}

.casa21-logo-inline strong {
  font-family: var(--ff-display);
  font-size: 1rem;
}

.casa-sub {
  font-size: 0.65rem;
  color: rgba(255, 215, 0, 0.7);
}

.strip-separator {
  width: 1px;
  height: 24px;
  background: rgba(0, 0, 0, 0.2);
}

.strip-slogan {
  font-style: italic;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 215, 0, 0.12);
  color: var(--clr-yellow);
  border-radius: var(--rad-pill);
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--clr-white);
}

.section-title span {
  color: var(--clr-yellow);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--clr-white-60);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header.light .section-title {
  color: var(--clr-white);
}

.section-header.light .section-subtitle {
  color: var(--clr-white-60);
}

.section-header.light .section-tag {
  background: rgba(255, 215, 0, 0.15);
  color: var(--clr-yellow);
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  padding: 100px 0;
  background: var(--clr-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--grad-glass);
  border: 1px solid var(--clr-white-10);
  border-radius: var(--rad-xl);
  padding: 36px 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--clr-white-05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.25);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card-large {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
}

.benefit-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--rad-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.icon-blue {
  background: rgba(21, 101, 192, 0.20);
  color: #42A5F5;
}

.icon-gold {
  background: rgba(255, 215, 0, 0.15);
  color: var(--clr-yellow);
}

.icon-red {
  background: rgba(211, 47, 47, 0.15);
  color: #EF5350;
}

.benefit-card h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--clr-white);
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--clr-white-60);
  line-height: 1.65;
}

.benefit-card p strong {
  color: var(--clr-white-80);
}

.benefit-highlight {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 14px;
  background: rgba(76, 175, 80, 0.15);
  color: #66BB6A;
  border-radius: var(--rad-pill);
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 700;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  position: relative;
  padding: 100px 0;
  background: var(--clr-dark-2);
  overflow: hidden;
}

.hiw-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hiw-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(21, 101, 192, 0.12);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  right: -100px;
}

.steps-container {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.step-number {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--clr-white-10);
  line-height: 1;
  margin-bottom: -10px;
  position: relative;
  z-index: 0;
}

.step-content {
  background: var(--clr-dark-3);
  border: 1px solid var(--clr-white-10);
  border-radius: var(--rad-xl);
  padding: 28px 20px;
  width: 100%;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  z-index: 1;
}

.step-content:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--rad-md);
  background: rgba(255, 215, 0, 0.12);
  color: var(--clr-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-content h3 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--clr-white);
}

.step-content p {
  font-size: 0.85rem;
  color: var(--clr-white-60);
  line-height: 1.6;
}

.step-connector {
  flex: 0 0 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.1));
  margin-top: 30px;
}

/* ============================================================
   TIERS TEASER
   ============================================================ */
.tiers-teaser {
  padding: 100px 0;
  background: var(--clr-dark);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tier-card {
  position: relative;
  border-radius: var(--rad-xl);
  padding: 40px 28px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 280px;
}

.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.tier-classic {
  background: var(--grad-card);
  border-color: rgba(255, 255, 255, 0.12);
}

.tier-gold {
  background: linear-gradient(135deg, #1a1500, #2a2000);
  border-color: rgba(255, 215, 0, 0.3);
}

.tier-platinum {
  background: linear-gradient(135deg, #0d0d1a, #141428);
  border-color: rgba(100, 100, 255, 0.3);
}

.tier-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(60px);
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.tier-classic .tier-glow {
  background: rgba(255, 255, 255, 0.04);
}

.tier-gold .tier-glow {
  background: rgba(255, 215, 0, 0.12);
}

.tier-platinum .tier-glow {
  background: rgba(100, 100, 255, 0.15);
}

.tier-number-bg {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-family: var(--ff-display);
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

.tier-gold .tier-number-bg {
  color: var(--clr-yellow);
  opacity: 0.15;
}

.tier-platinum .tier-number-bg {
  color: #8888FF;
  opacity: 0.1;
}

.tier-chip {
  width: 36px;
  height: 26px;
  background: linear-gradient(135deg, #b8860b, #FFD700);
  border-radius: 5px;
  margin-bottom: 14px;
}

.tier-gold .tier-chip {
  background: linear-gradient(135deg, #FFD700, #FFA500);
}

.tier-platinum .tier-chip {
  background: linear-gradient(135deg, #8888FF, #B0B0FF);
}

.tier-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: 12px;
}

.tier-badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: var(--rad-pill);
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.current-badge {
  background: rgba(76, 175, 80, 0.2);
  color: #66BB6A;
}

.soon-badge {
  background: rgba(255, 215, 0, 0.12);
  color: var(--clr-yellow);
}

.tier-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tier-perks li {
  font-size: 0.85rem;
  color: var(--clr-white-60);
}

.tier-perks li strong {
  color: var(--clr-white);
}

/* ============================================================
   REQUIREMENTS
   ============================================================ */
.requirements {
  position: relative;
  padding: 100px 0;
  background: var(--clr-dark-2);
  overflow: hidden;
}

.req-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.req-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 215, 0, 0.06);
  border-radius: 50%;
  filter: blur(80px);
  bottom: -100px;
  right: -100px;
}

.req-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.req-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.req-card-display {
  width: 280px;
  height: 180px;
  position: relative;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.8));
}

.req-card-inner {
  width: 100%;
  height: 100%;
  background: var(--grad-card);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.req-card-num {
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 7rem;
  font-weight: 900;
  color: var(--clr-yellow);
  line-height: 1;
  letter-spacing: -4px;
  opacity: 0.9;
}

.req-card-brand {
  position: absolute;
  top: 14px;
  right: 20px;
  text-align: right;
}

.req-card-brand span {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1;
}

.req-card-brand small {
  font-family: var(--ff-display);
  font-size: 0.45rem;
  letter-spacing: 2px;
  color: var(--clr-white-60);
}

.req-card-stripe {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  display: flex;
  flex-direction: column;
}

.rs-r {
  flex: 1;
  background: var(--clr-red);
}

.rs-y {
  flex: 1;
  background: var(--clr-yellow);
}

.rs-b {
  flex: 1;
  background: var(--clr-blue);
}

.req-floating-check {
  position: absolute;
  width: 36px;
  height: 36px;
  background: var(--clr-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.req-fc-1 {
  top: -10px;
  right: 20px;
  animation: bounce-float 3s ease-in-out infinite;
}

.req-fc-2 {
  bottom: 10px;
  left: -10px;
  animation: bounce-float 3s ease-in-out 1s infinite;
}

.req-fc-3 {
  top: 60px;
  left: -20px;
  animation: bounce-float 3s ease-in-out 2s infinite;
}

@keyframes bounce-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.req-title {
  text-align: left;
}

.req-content>.section-tag,
.req-content>.section-title,
.req-content>.section-subtitle {
  text-align: left;
  margin-left: 0;
}

.req-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0 36px;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--clr-white-05);
  border: 1px solid var(--clr-white-10);
  border-radius: var(--rad-md);
  transition: border-color var(--transition);
}

.req-item:hover {
  border-color: rgba(255, 215, 0, 0.3);
}

.req-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--rad-sm);
  background: rgba(255, 215, 0, 0.12);
  color: var(--clr-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.req-item>div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.req-item strong {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-white);
}

.req-item span {
  font-size: 0.85rem;
  color: var(--clr-white-60);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #060810, #0A0F1E, #060810);
}

.cta-orb-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(21, 101, 192, 0.2);
  border-radius: 50%;
  filter: blur(100px);
  top: -200px;
  left: -100px;
}

.cta-orb-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  bottom: -100px;
  right: -100px;
}

.cta-stripes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  display: flex;
}

.cta-s-red {
  flex: 1;
  background: var(--clr-red);
}

.cta-s-yellow {
  flex: 1;
  background: var(--clr-yellow);
}

.cta-s-blue {
  flex: 1;
  background: var(--clr-blue);
}

.cta-container {
  position: relative;
}

.cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(255, 215, 0, 0.3));
}

.cta-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-content h2 span {
  color: var(--clr-yellow);
}

.cta-content>p {
  font-size: 1rem;
  color: var(--clr-white-60);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-content>p strong {
  color: var(--clr-white-80);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-address {
  font-size: 0.85rem;
  color: var(--clr-white-40, rgba(255, 255, 255, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-black);
  border-top: 1px solid var(--clr-white-10);
  padding: 60px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 240px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  position: relative;
  width: fit-content;
  margin-bottom: 16px;
}

.footer-logo .logo-cl {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--clr-white);
  letter-spacing: -2px;
}

.footer-logo .logo-21 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--clr-yellow);
  letter-spacing: -2px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--clr-white-60);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-parent {
  font-size: 0.78rem;
  color: var(--clr-white-40, rgba(255, 255, 255, 0.4));
}

.footer-parent strong {
  color: var(--clr-white-60);
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-white-80);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--clr-white-60);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--clr-yellow);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid var(--clr-white-10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--clr-white-40, rgba(255, 255, 255, 0.4));
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-in {
  opacity: 0;
  transform: translateX(60px);
  animation: slideIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-float {
  animation: floatAnim 4s ease-in-out infinite;
}

.delay-float-1 {
  animation-delay: 1.3s;
}

.delay-float-2 {
  animation-delay: 2.6s;
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */


/* ============================================================
   LOGO LARGE (NAVBAR)
   ============================================================ */
.logo-badge-large .logo-cl,
.logo-badge-large .logo-21 {
  font-size: 2.2rem;
}

.logo-badge-large .logo-tag {
  font-size: 0.52rem;
  padding: 2px 7px;
}

/* ============================================================
   CASA 21 BRAND STRIP SVG UPDATE
   ============================================================ */
.casa21-logo-inline {
  gap: 10px;
  padding: 6px 16px;
}

.casa21-text {
  display: flex;
  flex-direction: column;
}

.casa21-text strong {
  font-family: var(--ff-display);
  font-size: 1rem;
  line-height: 1;
}

.casa21-svg-icon {
  flex-shrink: 0;
  border-radius: 6px;
}

/* ============================================================
   BENEFITS METRICS BAR
   ============================================================ */
.benefits-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--clr-dark-3);
  border: 1px solid var(--clr-white-10);
  border-radius: var(--rad-xl);
  padding: 24px 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.bm-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  flex: 1;
  min-width: 150px;
}

.bm-emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.bm-item div {
  display: flex;
  flex-direction: column;
}

.bm-item strong {
  font-family: var(--ff-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--clr-white);
}

.bm-item span {
  font-size: 0.75rem;
  color: var(--clr-white-60);
}

.bm-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-white-10);
  flex-shrink: 0;
}

/* ============================================================
   BENEFIT CARD INNER GLOW & CHIP
   ============================================================ */
.benefit-card {
  position: relative;
  overflow: hidden;
}

.benefit-card-inner-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(50px);
  top: -60px;
  right: -60px;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity var(--transition);
}

.benefit-card:hover .benefit-card-inner-glow {
  opacity: 1;
}

.glow-blue {
  background: rgba(21, 101, 192, 0.3);
}

.glow-gold {
  background: rgba(255, 215, 0, 0.25);
}

.glow-red {
  background: rgba(211, 47, 47, 0.25);
}

.benefit-featured {
  grid-column: span 2;
}

.benefit-chip {
  display: inline-block;
  margin-top: 16px;
  padding: 5px 14px;
  background: rgba(255, 215, 0, 0.12);
  color: var(--clr-yellow);
  border-radius: var(--rad-pill);
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.benefit-chip-red {
  background: rgba(211, 47, 47, 0.15);
  color: #EF5350;
  border-color: rgba(211, 47, 47, 0.2);
}

.benefit-cta-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.02));
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-cta-content {
  text-align: center;
}

.benefit-cta-content h3 {
  margin-bottom: 10px;
}

.benefit-cta-content p {
  margin-bottom: 20px;
  color: var(--clr-white-60);
  font-size: 0.9rem;
}

/* ============================================================
   STEP CARDS GRID (NEW DESIGN)
   ============================================================ */
.steps-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.step-card {
  position: relative;
  background: var(--clr-dark-3);
  border: 1px solid var(--clr-white-10);
  border-radius: var(--rad-xl);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  border-color: rgba(255, 215, 0, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.step-card-final {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.02));
  border-color: rgba(255, 215, 0, 0.25);
}

.step-card-number {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 215, 0, 0.15);
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 16px;
}

.step-card-icon {
  font-size: 2.2rem;
}

.step-card-body h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
}

.step-card-body p {
  font-size: 0.85rem;
  color: var(--clr-white-60);
  line-height: 1.65;
}

.step-card-body p strong {
  color: var(--clr-white-80);
}

.step-card-arrow {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 28px;
  height: 28px;
  background: var(--clr-yellow);
  color: var(--clr-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow: var(--shadow-gold);
}

/* HIW CTA BAR */
.hiw-orb-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 215, 0, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  bottom: -50px;
  left: -80px;
}

.hiw-cta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 32px;
  background: var(--clr-dark-3);
  border: 1px solid var(--clr-white-10);
  border-radius: var(--rad-xl);
  margin-top: 8px;
}

.hiw-cta-bar>span {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--clr-white-80);
}

/* ============================================================
   REQUIREMENTS TABS LAYOUT (NEW)
   ============================================================ */
.req-tabs-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

.req-tab-card {
  border-radius: var(--rad-xl);
  padding: 36px 32px;
  border: 1px solid;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.req-tab-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.req-tab-dependiente {
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.12), rgba(21, 101, 192, 0.04));
  border-color: rgba(21, 101, 192, 0.3);
}

.req-tab-independiente {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.10), rgba(255, 215, 0, 0.02));
  border-color: rgba(255, 215, 0, 0.25);
}

/* inner glow for req cards */
.req-tab-dependiente::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(21, 101, 192, 0.2);
  border-radius: 50%;
  filter: blur(50px);
  top: -60px;
  right: -60px;
  pointer-events: none;
}

.req-tab-independiente::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  filter: blur(50px);
  top: -60px;
  right: -60px;
  pointer-events: none;
}

.req-tab-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.req-tab-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--rad-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.req-icon-dep {
  background: rgba(21, 101, 192, 0.2);
}

.req-icon-ind {
  background: rgba(255, 215, 0, 0.15);
}

.req-tab-header>div h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.req-tab-header>div span {
  font-size: 0.82rem;
  color: var(--clr-white-60);
}

.req-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.req-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--clr-white-80);
  padding: 10px 14px;
  background: var(--clr-white-05);
  border-radius: var(--rad-sm);
  border: 1px solid var(--clr-white-10);
  transition: border-color var(--transition);
}

.req-checklist li:hover {
  border-color: rgba(255, 215, 0, 0.2);
}

.rc-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.2);
  color: #66BB6A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* AVISO */
.req-aviso {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(255, 160, 0, 0.08);
  border: 1px solid rgba(255, 160, 0, 0.25);
  border-radius: var(--rad-md);
  margin-bottom: 40px;
}

.req-aviso-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.req-aviso strong {
  font-family: var(--ff-display);
  font-weight: 700;
  color: #FFA726;
  display: block;
  margin-bottom: 4px;
}

.req-aviso span {
  font-size: 0.88rem;
  color: var(--clr-white-60);
}

/* REQ CTA */
.req-orb-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(21, 101, 192, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  top: -100px;
  left: -60px;
}

.req-cta-center {
  text-align: center;
}

.req-cta-center p {
  font-size: 1rem;
  color: var(--clr-white-60);
  margin-bottom: 20px;
}

.req-cta-center p strong {
  color: var(--clr-white-80);
}

/* stat-icon override â€“ don't animate emojis like numbers */
.stat-icon {
  font-size: 1.8rem !important;
}

/* ============================================================
   LOGO IMAGE IN NAVBAR
   ============================================================ */
.nav-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 52px;
  /* Significantly larger as requested */
  width: auto;
  object-fit: contain;
  /* The logo is black on white, invert to show white on dark navbar */
  filter: invert(1) brightness(1.2);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--clr-white);
  letter-spacing: -1px;
  line-height: 1;
}

.nav-logo:hover .nav-logo-img {
  opacity: 1;
  transform: scale(1.05);
}

/* When navbar has scrolled (dark bg), keep white */
.navbar.scrolled .nav-logo-img {
  filter: invert(1) brightness(1.2);
}

/* ============================================================
   HERO TAGLINE (SLOGAN)
   ============================================================ */
.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.tagline-word {
  color: var(--clr-white);
}

.tagline-accent {
  color: var(--clr-yellow);
  position: relative;
}

.tagline-accent::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-red), var(--clr-yellow), var(--clr-blue));
  border-radius: 2px;
}

.delay-15 {
  animation-delay: 0.35s;
}

/* Override hero-subtitle to be lighter under the tagline */
.hero-subtitle {
  font-size: 0.92rem;
  color: var(--clr-white-60);
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--clr-white-80);
}

.hero-subtitle em {
  color: var(--clr-yellow);
  font-style: normal;
}

/* ============================================================
   ONLINE STORE BENEFIT CARD (FEATURED)
   ============================================================ */
.benefit-online-store {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.15), rgba(10, 20, 50, 0.4));
  border: 1px solid rgba(21, 101, 192, 0.35);
}

.benefit-online-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.benefit-online-badge {
  background: rgba(21, 101, 192, 0.25);
  color: #64B5F6;
  border: 1px solid rgba(21, 101, 192, 0.4);
  border-radius: var(--rad-pill);
  padding: 4px 12px;
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.benefit-online-desc {
  font-size: 0.95rem;
  color: var(--clr-white-60);
  line-height: 1.7;
  margin-bottom: 24px;
}

.benefit-online-desc strong {
  color: var(--clr-white-80);
}

.benefit-link {
  color: #64B5F6;
  text-decoration: underline;
}

.benefit-link:hover {
  color: var(--clr-yellow);
}

.benefit-online-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--rad-md);
  border: 1px solid var(--clr-white-10);
}

.bos-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-white);
}

.bos-step>span:first-child {
  font-size: 1.4rem;
}

.bos-arrow {
  color: var(--clr-yellow);
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}

.btn-blue-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid rgba(21, 101, 192, 0.6);
  color: #64B5F6;
  border-radius: var(--rad-pill);
  font-family: var(--ff-display);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.btn-blue-outline:hover {
  background: rgba(21, 101, 192, 0.25);
  border-color: #42A5F5;
  color: #fff;
}

/* ============================================================
   TIER TAGLINE
   ============================================================ */
.tier-tagline {
  font-size: 0.82rem;
  color: var(--clr-white-60);
  line-height: 1.5;
  margin-bottom: 16px;
  font-style: italic;
}

/* ============================================================
   REQ AVISO CENTERED VARIANT
   ============================================================ */
.req-aviso-centered {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.req-aviso-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.req-aviso-text {
  flex: 1;
}

/* ============================================================
   PREMIUM FOOTER REDESIGN
   ============================================================ */
.footer {
  background: #060608;
  border-top: 1px solid var(--clr-white-10);
}

/* Top bar */
.footer-top-bar {
  padding: 64px 32px;
  border-bottom: 1px solid var(--clr-white-10);
}

.footer-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-logo-img {
  height: 48px;
  /* Larger as requested */
  width: auto;
  object-fit: contain;
  filter: invert(1) brightness(1);
}

.footer-logo-text {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--clr-white);
  letter-spacing: -1px;
  line-height: 1;
}

.footer-top-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
  flex: 0 0 240px;
}

.footer-slogan {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.4;
}

.footer-meaning {
  font-size: 0.82rem;
  color: var(--clr-yellow);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 48px;
  flex: 1;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-white-40);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li {
  list-style: none;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--clr-white-60);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--clr-yellow);
}

.footer-parent {
  font-size: 0.82rem;
  color: var(--clr-white-40);
  margin-top: 4px;
}

.footer-parent strong {
  color: var(--clr-white-60);
}

/* Bottom bar */
.footer-bottom {
  padding: 32px 32px;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid var(--clr-white-05);
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-bottom-main {
  font-size: 0.85rem;
  color: var(--clr-white-40);
  letter-spacing: 0.5px;
}

.footer-bottom-verse {
  padding-top: 10px;
  border-top: 1px solid var(--clr-white-05);
  width: 100%;
}

/* Bible verse */
.footer-bible {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--clr-yellow);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Bolivian stripe flag */
.footer-stripe-flag {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: 3px;
  overflow: hidden;
  width: 18px;
  height: 14px;
  flex-shrink: 0;
}

.fs-red {
  flex: 1;
  background: #D32F2F;
}

.fs-yellow {
  flex: 1;
  background: #FFD700;
}

.fs-green {
  flex: 1;
  background: #2E7D32;
}



/* ============================================================
   RESPONSIVE DESIGN (Consolidated)
   ============================================================ */

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-featured,
  .benefit-online-store {
    grid-column: span 2;
  }

  .tiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .req-tabs-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 11, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--clr-white-10);
  }

  .nav-links.open {
    display: flex;
  }

  .btn-nav {
    display: none;
    /* Mobile fix: hide from navbar to avoid overflow */
  }

  .hamburger {
    display: flex;
  }

  .hero {
    overflow-x: hidden !important;
    width: 100% !important;
    box-sizing: border-box;
    position: relative;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: calc(var(--nav-h) + 40px) 20px 60px;
    /* Fixed mobile padding */
    width: 100%;
    box-sizing: border-box;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    width: 100%;
    margin-top: 20px;
  }

  .card-scene {
    width: 100% !important;
    max-width: 90% !important;
    /* Safe margin */
    height: auto !important;
    aspect-ratio: 380 / 240;
    margin: 0 auto !important;
  }

  .card-3d {
    width: 100% !important;
    height: 100% !important;
  }

  .title-main {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .hero-tagline {
    font-size: 1.15rem;
    justify-content: center;
  }

  .hero-stats {
    display: flex !important;
    flex-direction: column !important;
    /* Force stack on all mobiles */
    align-items: center !important;
    gap: 20px;
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden;
  }

  .stat {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--clr-white-10);
  }

  .stat:last-child {
    border-bottom: none;
  }

  .stat-divider {
    display: none;
  }

  .stat-num {
    font-size: 1.25rem;
    /* Reduced ~20% */
    text-align: center;
  }

  .stat-label {
    font-size: 0.6rem;
    /* Reduced ~20% */
    text-align: center;
    white-space: normal;
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
  }

  /* brand strip stacking earlier */
  .brand-strip-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
    text-align: center;
    padding: 15px 0;
    width: 100%;
  }

  .strip-separator {
    display: none;
  }

  .float-badge {
    display: none;
    /* Hide decorative badges starting from 768px to avoid horizontal overflow */
  }

  .hero-badge {
    position: static;
    display: inline-flex;
    margin: 0 auto 20px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .benefits-grid,
  .tiers-grid,
  .steps-cards-grid {
    grid-template-columns: 1fr;
  }

  .benefit-featured,
  .benefit-online-store {
    grid-column: span 1;
  }

  .benefit-online-steps {
    flex-direction: column;
    gap: 15px;
  }

  .bos-arrow {
    transform: rotate(90deg);
  }

  .benefits-metrics {
    flex-direction: column;
    padding: 24px 16px;
    gap: 16px;
  }

  .bm-item {
    padding: 0;
    width: 100%;
    justify-content: center;
  }

  .bm-divider {
    width: 60px;
    height: 1px;
    background: var(--clr-white-10);
  }

  .hiw-cta-bar {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px 16px;
  }

  .footer-top-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .req-aviso {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .req-aviso-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-inner {
    gap: 15px;
  }

  .hero-stripes {
    display: none !important;
    /* Definitive fix: hide stripes on mobile */
  }
}

@media (max-width: 480px) {
  .nav-logo-text {
    font-size: 1.25rem;
  }

  .nav-logo-img {
    height: 32px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .benefit-card,
  .step-card,
  .req-tab-card {
    padding: 28px 16px;
  }

  .req-tab-header {
    flex-direction: column;
    text-align: center;
  }
}