/* =============================================
   EL JEFE DE LA CANCHA – Premium CSS v3
   MOBILE FIRST | LIQUID GLASS | FOREST GREEN
   Primary: #1a7a46 | Gold: #d4a52a | Dark: #050e08
   ============================================= */

:root {
  /* ── Brand Green (din logo) ── */
  --green:        #1a7a46;
  --green-dark:   #0d4828;
  --green-light:  #28c268;
  --green-mid:    #1fa355;
  --green-glow:   rgba(26, 122, 70, 0.35);

  /* ── Gold accent ── */
  --gold:         #d4a52a;
  --gold-light:   #f0c14b;
  --gold-dark:    #a07a18;

  /* ── Neutrals ── */
  --white:        #ffffff;
  --gray-100:     #f4f4f4;
  --gray-200:     #d4d4d4;
  --gray-500:     #888888;
  --gray-700:     #333333;

  /* ── Backgrounds (Stealth Black) ── */
  --bg-dark:      #000000;
  --bg-section:   #040404;
  --bg-card:      rgba(10, 10, 10, 0.7);

  /* ── Borders ── */
  --border:       rgba(255, 255, 255, 0.08);
  --border-gold:  rgba(212, 165, 42, 0.20);
  --border-glass: rgba(255, 255, 255, 0.05);

  /* ── Shadows ── */
  --shadow-green: 0 8px 32px rgba(26, 122, 70, 0.20);
  --shadow-gold:  0 8px 32px rgba(212, 165, 42, 0.15);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.60);

  /* ── Liquid Glass (Smoked) ── */
  --glass-bg:     rgba(15, 15, 15, 0.5);
  --glass-blur:   blur(32px) saturate(120%);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-inner:  linear-gradient(135deg,
                    rgba(255,255,255,0.13) 0%,
                    rgba(255,255,255,0.04) 30%,
                    transparent 60%,
                    rgba(255,255,255,0.02) 100%);

  /* ── Misc ── */
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ===================== LIQUID GLASS MIXIN ===================== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow:
    var(--shadow-glass),
    inset 0 1px 0 rgba(255,255,255,0.13),
    inset 0 -1px 0 rgba(0,0,0,0.18),
    inset 1px 0 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.glass::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--glass-inner);
  pointer-events: none;
  z-index: 0;
}

.glass > * { position: relative; z-index: 1; }

/* ===================== UTILITY ===================== */
.container { width:100%; padding:0 18px; margin:0 auto; }
@media (min-width:640px)  { .container { padding: 0 24px; } }
@media (min-width:1200px) { .container { max-width: 1200px; } }

.text-gold {
  background: linear-gradient(135deg, #d4a52a 0%, #ffd700 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold); /* fallback */
}
.text-green { color: var(--green-light); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}

/* Liquid glass shine on hover */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.btn:hover::before, .btn:active::before { opacity: 1; }
.btn > * { position: relative; z-index: 1; }
.btn > span { position: relative; z-index: 1; }

.btn-primary {
  background: var(--bg-section);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.btn-gold {
  background: var(--bg-section);
  border: 1px solid rgba(212,165,42,0.3);
  color: var(--gold);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.btn-outline {
  background: transparent;
  color: var(--gray-200);
  border: 1.5px solid var(--border);
  box-shadow: none;
}

.btn-large { padding: 18px 32px; font-size: 1.05rem; }
.btn-full  { width: 100%; }

@media (min-width: 480px) {
  .btn { width: auto; }
  .btn-full { width: 100%; }
  .btn-primary:hover {
    transform: translateY(-2px);
    border-color: var(--green-mid);
    color: var(--green-light);
    box-shadow: 0 10px 32px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.1);
  }
  .btn-gold:hover {
    transform: translateY(-2px);
    background: rgba(212,165,42,0.08);
    color: var(--gold-light);
    box-shadow: 0 10px 32px rgba(212,165,42,0.3);
  }
  .btn-outline:hover {
    background: rgba(255,255,255,0.05);
    color: var(--white);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 8px 24px rgba(255,255,255,0.1);
  }
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(5, 14, 8, 0.55);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.5),
    inset 0 -1px 0 rgba(26,122,70,0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}
@media (min-width:640px) { .nav-container { padding: 0 24px; } }

.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; z-index:1001; }

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mobile nav overlay — liquid glass */
.nav-links {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 14, 8, 0.75);
  backdrop-filter: blur(36px) saturate(180%);
  -webkit-backdrop-filter: blur(36px) saturate(180%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
  z-index: 1000;
}
.nav-links.open { display: flex; }
.nav-links li { width: 100%; text-align: center; }
.nav-links a {
  display: block;
  padding: 18px 24px;
  color: var(--gray-200);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-links a:active, .nav-links a:hover {
  color: var(--green-light);
  background: rgba(26,122,70,0.1);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex !important;
    position: static;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: row;
    gap: 36px;
    inset: auto;
    z-index: auto;
  }
  .nav-links li { width: auto; }
  .nav-links a {
    display: inline;
    padding: 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: none;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--green-light);
    transition: var(--transition);
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a:hover { background: none; color: var(--green-light); }
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
@media (min-width:768px) { .hamburger { display: none; } }

/* ===================== HERO ===================== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(26,122,70,0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 15%, rgba(212,165,42,0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 85%, rgba(26,122,70,0.10) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-dark) 0%, #030809 100%);
}

.hero-bg-overlay {
  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'%3E%3Cg fill='%231a7a46' fill-opacity='0.04'%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");
  pointer-events: none;
}

.hero-particles { position:absolute; inset:0; pointer-events:none; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 18px 60px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width:640px) { .hero-content { padding: 110px 24px 60px; } }

/* Liquid Glass hero card */
.hero-glass-wrap {
  background: rgba(255,255,255,0.028);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  padding: 40px 24px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.2),
    0 0 0 0.5px rgba(26,122,70,0.2);
  position: relative;
  overflow: hidden;
}

.hero-glass-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.1) 0%,
    rgba(255,255,255,0.02) 30%,
    transparent 60%);
  pointer-events: none;
}

@media (min-width:640px) { .hero-glass-wrap { padding: 52px 40px; } }
@media (min-width:900px) { .hero-glass-wrap { padding: 64px 56px; border-radius: 40px; } }

.hero-badge {
  display: inline-block;
  background: rgba(26,122,70,0.15);
  border: 1px solid rgba(26,122,70,0.4);
  color: var(--green-light);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeInDown 0.8s ease;
  backdrop-filter: blur(8px);
}
@media (min-width:480px) { .hero-badge { font-size: 0.8rem; padding: 8px 20px; } }

.hero-logo {
  width: 140px; height: 140px;
  object-fit: contain;
  margin: 0 auto 20px;
  animation: logoFloat 3s ease-in-out infinite, fadeIn 1s ease;
  filter:
    drop-shadow(0 0 24px rgba(212,165,42,0.55))
    drop-shadow(0 0 8px rgba(26,122,70,0.4));
}
@media (min-width:480px) { .hero-logo { width: 170px; height: 170px; } }
@media (min-width:768px) { .hero-logo { width: 210px; height: 210px; } }

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

.hero-title { font-family:'Bebas Neue',sans-serif; line-height:0.88; margin-bottom:18px; animation:fadeInUp 0.8s ease 0.2s both; }

.title-line-1 {
  display: block;
  font-size: clamp(4.5rem, 20vw, 10rem);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 6px;
}

.title-line-2 {
  display: block;
  font-size: clamp(1.4rem, 5vw, 3.5rem);
  color: rgba(255,255,255,0.88);
  letter-spacing: 4px;
}
@media (min-width:480px) { .title-line-1 { letter-spacing:8px; } .title-line-2 { letter-spacing:6px; } }

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--gray-200);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}
@media (min-width:480px) { .hero-subtitle { font-size: 1.05rem; margin-bottom: 32px; } }

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.6s both;
  padding: 0 8px;
}
@media (min-width:480px) {
  .hero-cta { flex-direction:row; justify-content:center; padding:0; gap:14px; }
  .hero-cta .btn { width:auto; min-width:200px; }
}

.hero-socials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  padding: 0 8px;
  margin-top: 64px;
  animation: fadeInUp 0.8s ease 0.8s both;
}
@media (min-width:480px) { .hero-socials { flex-direction:row; justify-content:center; flex-wrap:wrap; padding:0; gap:24px; margin-top: 80px; } }

.social-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-200);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  -webkit-tap-highlight-color: transparent;
}
.social-pill svg { width:22px; height:22px; flex-shrink:0; }
@media (min-width:480px) {
  .social-pill:hover {
    background: rgba(26,122,70,0.18);
    border-color: rgba(26,122,70,0.5);
    color: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,122,70,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
  }
}

.hero-scroll-indicator { position:absolute; bottom:24px; left:50%; transform:translateX(-50%); }
.scroll-arrow {
  width:20px; height:20px;
  border-right:2px solid var(--gold);
  border-bottom:2px solid var(--gold);
  transform:rotate(45deg);
  animation:scrollBounce 1.5s ease-in-out infinite;
  opacity:0.6;
}
@keyframes scrollBounce {
  0%, 100% { transform:rotate(45deg) translateY(0); opacity:0.6; }
  50%       { transform:rotate(45deg) translateY(6px); opacity:1; }
}

/* ===================== SECTION HEADER ===================== */
.section-header { text-align:center; margin-bottom:40px; }
@media (min-width:768px) { .section-header { margin-bottom:56px; } }

.section-tag {
  display: inline-block;
  background: rgba(26,122,70,0.1);
  border: 1px solid rgba(26,122,70,0.32);
  color: var(--green-light);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 8vw, 4rem);
  letter-spacing: 3px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--gray-500);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (min-width:480px) { .section-desc { font-size: 1.02rem; } }

/* ===================== DIVIDERS ===================== */
.section-divider      { height:1px; background:linear-gradient(90deg,transparent,rgba(26,122,70,0.25),transparent); }
.section-divider-gold { height:1px; background:linear-gradient(90deg,transparent,var(--border-gold),transparent); }

/* ===================== FEATURES ===================== */
.features { padding:72px 0; background: var(--bg-section); }
@media (min-width:768px) { .features { padding:100px 0; } }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width:640px) { .features-grid { gap:20px; } }
@media (min-width:900px) { .features-grid { grid-template-columns:repeat(4,1fr); gap:24px; } }

/* Liquid Glass card */
.feature-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow:
    var(--shadow-glass),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}

.feature-card::before {
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  background: var(--glass-inner);
  pointer-events:none;
  z-index:0;
}

.feature-card::after {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:2px;
  background: linear-gradient(90deg, transparent, var(--green-light), var(--gold), transparent);
  transform:scaleX(0);
  transition:var(--transition);
  z-index:2;
}

.feature-card > * { position:relative; z-index:1; }

@media (min-width:768px) {
  .feature-card:hover {
    transform:translateY(-6px);
    border-color:rgba(26,122,70,0.45);
    box-shadow:
      var(--shadow-green),
      inset 0 1px 0 rgba(255,255,255,0.18),
      inset 0 -1px 0 rgba(0,0,0,0.2);
  }
  .feature-card:hover::after { transform:scaleX(1); }
}

@media (min-width:640px) { .feature-card { padding:32px 24px; } }

.feature-icon { font-size:2.2rem; margin-bottom:14px; display:block; }
@media (min-width:480px) { .feature-icon { font-size:2.6rem; } }

.feature-card h3 {
  font-family:'Oswald',sans-serif;
  font-size:1rem; font-weight:600; letter-spacing:0.5px;
  color:var(--white); margin-bottom:8px;
}
@media (min-width:480px) { .feature-card h3 { font-size:1.2rem; } }

.feature-card p { color:var(--gray-500); font-size:0.82rem; line-height:1.6; display:none; }
@media (min-width:480px) { .feature-card p { display:block; font-size:0.9rem; } }

/* ===================== STATS ===================== */
.stats-section {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(26,122,70,0.06) 50%, var(--bg-dark) 100%);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content:''; position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:700px; height:400px;
  background:radial-gradient(ellipse, rgba(26,122,70,0.09) 0%, transparent 70%);
  pointer-events:none;
}

.stats-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
@media (min-width:640px) { .stats-grid { gap:20px; } }
@media (min-width:900px) { .stats-grid { grid-template-columns:repeat(4,1fr); gap:24px; } }

.stat-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 16px 22px;
  text-align: center;
  position: relative; overflow: hidden;
  transition: var(--transition);
  box-shadow:
    0 4px 20px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}

.stat-card::before {
  content:''; position:absolute;
  inset:0; border-radius:inherit;
  background:var(--glass-inner);
  pointer-events:none; z-index:0;
}

.stat-card::after {
  content:''; position:absolute;
  bottom:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, var(--green-dark), var(--green-light));
}

.stat-card > * { position:relative; z-index:1; }

@media (min-width:768px) {
  .stat-card:hover {
    transform:translateY(-4px);
    border-color:rgba(26,122,70,0.4);
    box-shadow:var(--shadow-green), inset 0 1px 0 rgba(255,255,255,0.18);
  }
}

.stat-number {
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(2.6rem,8vw,4rem);
  line-height:1;
  background:linear-gradient(135deg, var(--green-light), var(--white));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  margin-bottom:8px; letter-spacing:2px;
}

.stat-suffix { -webkit-text-fill-color:var(--gold); color:var(--gold); }
.stat-label  { font-size:0.75rem; color:var(--gray-500); text-transform:uppercase; letter-spacing:1px; font-weight:600; margin-bottom:10px; }
@media (min-width:480px) { .stat-label { font-size:0.82rem; } }
.stat-icon   { font-size:1.4rem; opacity:0.35; }

/* ===================== SIZE CALCULATOR ===================== */
.size-section { padding:72px 0; background:var(--bg-dark); }
@media (min-width:768px) { .size-section { padding:100px 0; } }

.size-calculator-wrapper { display:flex; flex-direction:column; gap:20px; }
@media (min-width:900px) { .size-calculator-wrapper { display:grid; grid-template-columns:1fr 1.5fr; gap:36px; align-items:start; } }

/* Liquid Glass panels */
.size-inputs, .size-result, .size-table-wrapper, .preorder-form, .info-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.18);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.size-inputs::before, .size-result::before,
.size-table-wrapper::before, .preorder-form::before, .info-card::before {
  content:''; position:absolute; inset:0;
  border-radius:inherit;
  background:var(--glass-inner);
  pointer-events:none; z-index:0;
}

.size-inputs > *, .size-result > *,
.size-table-wrapper > *, .preorder-form > *, .info-card > * { position:relative; z-index:1; }

.size-inputs { padding:24px 20px; }
@media (min-width:640px) { .size-inputs { padding:32px; } }

.input-group { margin-bottom:16px; }

/* Input hint */
.input-hint {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-700);
  margin-top: 5px;
  font-style: italic;
}

/* Table footnote */
.table-note {
  font-size: 0.72rem;
  color: var(--gray-700);
  font-style: italic;
  margin-top: 10px;
  padding: 0 4px;
  line-height: 1.5;
}

/* ===================== VERSION TABS ===================== */
.version-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}

.version-tab {
  padding: 11px 24px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid rgba(26,122,70,0.3);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--gray-500);
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.version-tab.active {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-color: var(--green-mid);
  color: var(--white);
  box-shadow: 0 4px 16px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}

.version-tab:hover:not(.active) {
  border-color: rgba(26,122,70,0.5);
  color: var(--green-light);
  background: rgba(26,122,70,0.1);
}

/* Version note callout */
.version-note {
  background: rgba(26,122,70,0.08);
  border: 1px solid rgba(26,122,70,0.2);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 0.88rem;
  color: var(--gray-200);
  line-height: 1.5;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.version-note strong {
  color: var(--green-light);
}

@media (min-width: 480px) {
  .version-note { font-size: 0.93rem; padding: 14px 20px; }
}


.input-group label, .form-group label {
  display:block;
  font-size:0.78rem; font-weight:700;
  color:var(--gray-200); letter-spacing:0.8px;
  margin-bottom:7px; text-transform:uppercase;
}

.input-group input, .input-group select,
.form-group input, .form-group select, .form-group textarea {
  width:100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-family:'Inter',sans-serif;
  font-size:1rem;
  transition:var(--transition);
  appearance:none; -webkit-appearance:none;
  backdrop-filter:blur(8px);
}

.input-group select, .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b8070'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 12px center;
  background-size:20px;
  background-color:rgba(255,255,255,0.04);
  padding-right:40px; cursor:pointer;
}

.input-group input:focus, .input-group select:focus,
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline:none;
  border-color: rgba(26,122,70,0.6);
  background: rgba(26,122,70,0.08);
  box-shadow: 0 0 0 3px rgba(26,122,70,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
}

.input-group input::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder { color:var(--gray-700); }

.size-result-panel { display:flex; flex-direction:column; gap:16px; }

.size-result {
  padding:28px 20px; min-height:140px;
  display:flex; align-items:center; justify-content:center;
  transition:var(--transition);
}

.size-result-placeholder { text-align:center; color:var(--gray-500); }
.size-icon { font-size:2.5rem; margin-bottom:10px; }
.size-result-placeholder p { font-size:0.9rem; line-height:1.5; }

.size-result-display { text-align:center; width:100%; }
.size-result-display .recommended-size {
  font-family:'Bebas Neue',sans-serif;
  font-size:5rem; line-height:1;
  background:linear-gradient(135deg, var(--green-light), var(--white));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  margin-bottom:6px;
}
@media (min-width:480px) { .size-result-display .recommended-size { font-size:6.5rem; } }

.size-result-display .size-label-text { color:var(--gray-200); font-size:0.95rem; margin-bottom:8px; }
.size-result-display .size-note { color:var(--gray-500); font-size:0.82rem; font-style:italic; }

.size-table-wrapper { padding:20px 16px; }
@media (min-width:480px) { .size-table-wrapper { padding:24px; } }

.size-table-wrapper h4 { font-family:'Oswald',sans-serif; font-size:0.9rem; letter-spacing:1px; text-transform:uppercase; color:var(--gold); margin-bottom:14px; }

.size-table-scroll { overflow-x:auto; -webkit-overflow-scrolling:touch; }
.size-table { width:100%; border-collapse:collapse; font-size:0.82rem; min-width:280px; }
@media (min-width:480px) { .size-table { font-size:0.9rem; } }

.size-table th { text-align:center; padding:9px 10px; color:var(--gray-500); font-weight:700; font-size:0.72rem; letter-spacing:1px; text-transform:uppercase; border-bottom:1px solid rgba(255,255,255,0.06); white-space:nowrap; }
.size-table td { text-align:center; padding:9px 10px; color:var(--gray-200); border-bottom:1px solid rgba(255,255,255,0.03); transition:var(--transition); white-space:nowrap; }
.size-table tr:hover td { background:rgba(26,122,70,0.07); }
.size-table tr.highlighted td { background:rgba(26,122,70,0.16); color:var(--white); }
.size-table tr.highlighted .size-label { color:var(--green-light); font-weight:700; }
.size-label { font-family:'Oswald',sans-serif; font-weight:700; font-size:0.95rem; color:var(--white); }

/* ===================== PREORDER ===================== */
.preorder-section { padding:72px 0; background:var(--bg-section); }
@media (min-width:768px) { .preorder-section { padding:100px 0; } }

.preorder-wrapper { display:flex; flex-direction:column; gap:20px; }
@media (min-width:900px) { .preorder-wrapper { display:grid; grid-template-columns:1.5fr 1fr; gap:40px; align-items:start; } }

.preorder-form { padding:24px 18px; }
@media (min-width:480px) { .preorder-form { padding:32px 28px; } }
@media (min-width:768px) { .preorder-form { padding:40px; } }

.form-row { display:grid; grid-template-columns:1fr; gap:0; }
@media (min-width:480px) { .form-row { grid-template-columns:1fr 1fr; gap:14px; } }

.form-group { margin-bottom:16px; }
.form-group textarea { resize:vertical; min-height:80px; line-height:1.5; }

/* Checkbox */
.checkbox-group { margin-top:4px; }
.checkbox-label { display:flex; align-items:flex-start; gap:12px; cursor:pointer; font-size:0.85rem; color:var(--gray-500); line-height:1.5; text-transform:none; font-weight:400; }
.checkbox-label input[type="checkbox"] { display:none; }
.checkbox-custom { flex-shrink:0; width:22px; height:22px; border:2px solid rgba(26,122,70,0.45); border-radius:6px; display:flex; align-items:center; justify-content:center; transition:var(--transition); margin-top:1px; background:rgba(255,255,255,0.04); }
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom { background:var(--green); border-color:var(--green); }
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after { content:'✓'; color:white; font-size:13px; font-weight:700; }

/* Success */
.preorder-success {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(26,122,70,0.35);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  text-align: center;
  box-shadow: var(--shadow-green), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
}
.preorder-success::before {
  content:''; position:absolute; inset:0;
  border-radius:inherit;
  background:var(--glass-inner);
  pointer-events:none;
}
.preorder-success > * { position:relative; z-index:1; }

.success-icon { font-size:3.5rem; margin-bottom:18px; }
.preorder-success h3 { font-family:'Bebas Neue',sans-serif; font-size:2.2rem; letter-spacing:2px; color:var(--gold); margin-bottom:12px; }
.preorder-success p { color:var(--gray-200); margin-bottom:24px; line-height:1.7; font-size:0.95rem; }

/* Info cards */
.preorder-info { display:flex; flex-direction:column; gap:12px; }
.info-card { padding:18px 20px; display:flex; gap:14px; align-items:flex-start; transition:var(--transition); }
@media (min-width:768px) {
  .info-card:hover { border-color:rgba(26,122,70,0.35); transform:translateX(4px); }
}
.info-icon { font-size:1.6rem; flex-shrink:0; }
.info-card strong { display:block; font-family:'Oswald',sans-serif; font-size:0.95rem; letter-spacing:0.5px; color:var(--white); margin-bottom:4px; }
.info-card p { font-size:0.83rem; color:var(--gray-500); line-height:1.5; }

/* Discount info card */
.info-card-discount { border-color:var(--border-gold) !important; background:rgba(212,165,42,0.06) !important; }
.info-card-discount strong { color:var(--gold-light) !important; }

/* ===================== DISCOUNT BANNER ===================== */
.discount-banner { margin-bottom:28px; border-radius:var(--radius-lg); overflow:hidden; position:relative; }

.discount-banner-inner {
  display:flex; align-items:center; gap:14px; padding:18px 20px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border:1px solid var(--border-gold);
  border-radius:var(--radius-lg);
  position:relative; overflow:hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 20px rgba(212,165,42,0.1);
}

.discount-banner-inner::before {
  content:''; position:absolute;
  top:0; left:-100%; width:60%; height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.07),transparent);
  animation:shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer { 0% { left:-100%; } 100% { left:200%; } }

.discount-fire { font-size:2rem; flex-shrink:0; animation:pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform:scale(1); } 50% { transform:scale(1.15); } }

.discount-text { flex:1; min-width:0; }
.discount-text strong { display:block; font-family:'Oswald',sans-serif; font-size:1rem; letter-spacing:0.5px; color:var(--gold-light); margin-bottom:3px; }
.discount-text span { font-size:0.82rem; color:var(--gray-200); line-height:1.4; }
@media (min-width:480px) { .discount-text strong { font-size:1.05rem; } .discount-text span { font-size:0.88rem; } }

.discount-badge {
  flex-shrink:0;
  background:linear-gradient(135deg, var(--gold), var(--gold-dark));
  color:var(--bg-dark);
  font-family:'Bebas Neue',sans-serif;
  font-size:0.7rem; letter-spacing:1px; line-height:1.2;
  text-align:center; padding:8px 12px;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(212,165,42,0.4);
}
@media (min-width:480px) { .discount-badge { font-size:0.78rem; padding:10px 16px; } }

/* ===================== FORM ERROR ===================== */
#formError {
  display:none;
  background:rgba(220,50,50,0.1);
  border:1px solid rgba(220,50,50,0.25);
  border-radius:var(--radius);
  color:#ff8080; padding:12px 16px;
  font-size:0.88rem; margin-bottom:16px;
  text-align:center; line-height:1.5;
}

/* Submit loading */
#submitBtn:disabled { opacity:0.7; cursor:not-allowed; transform:none !important; }

/* ===================== REVIEWS ===================== */
.reviews-section { padding:72px 0; background:var(--bg-section); }
@media (min-width:768px) { .reviews-section { padding:100px 0; } }

.reviews-grid { display:grid; grid-template-columns:1fr; gap:16px; }
@media (min-width:540px) { .reviews-grid { grid-template-columns:1fr 1fr; } }
@media (min-width:900px) { .reviews-grid { grid-template-columns:repeat(3,1fr); gap:20px; } }

/* Liquid Glass review card */
.review-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 12px;
  transition: var(--transition);
  position: relative; overflow: hidden;
  box-shadow:
    0 4px 20px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.11),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}

.review-card::before {
  content:''; position:absolute; inset:0;
  border-radius:inherit; background:var(--glass-inner);
  pointer-events:none; z-index:0;
}

.review-card > * { position:relative; z-index:1; }

/* Quote mark */
.review-card::after {
  content:'"';
  position:absolute; top:-8px; right:14px;
  font-family:'Bebas Neue',sans-serif; font-size:6rem;
  color:var(--green); opacity:0.08; line-height:1; pointer-events:none; z-index:0;
}

@media (min-width:768px) {
  .review-card:hover {
    transform:translateY(-4px);
    border-color:rgba(26,122,70,0.35);
    box-shadow:var(--shadow-green), inset 0 1px 0 rgba(255,255,255,0.16);
  }
}

.review-header { display:flex; align-items:center; gap:10px; }

.review-avatar {
  width:42px; height:42px; border-radius:50%;
  background:linear-gradient(135deg, var(--green-dark), var(--green-light));
  display:flex; align-items:center; justify-content:center;
  font-family:'Oswald',sans-serif; font-size:0.82rem; font-weight:700; color:var(--white);
  flex-shrink:0; border:2px solid rgba(26,122,70,0.4);
}

.review-meta { flex:1; min-width:0; }
.review-meta strong { display:block; font-size:0.93rem; color:var(--white); margin-bottom:2px; }
.review-meta span { font-size:0.76rem; color:var(--gray-500); }
.review-stars { color:var(--gold); font-size:0.82rem; letter-spacing:2px; flex-shrink:0; }
.review-text { font-size:0.86rem; color:var(--gray-200); line-height:1.65; font-style:italic; flex:1; }

.review-tag {
  display:inline-block;
  background:rgba(26,122,70,0.12);
  border:1px solid rgba(26,122,70,0.25);
  color:var(--green-light);
  font-size:0.7rem; padding:4px 10px; border-radius:50px;
  letter-spacing:0.5px; font-weight:600; align-self:flex-start;
}

.review-cta-card {
  background:linear-gradient(135deg,rgba(26,122,70,0.1) 0%,rgba(212,165,42,0.07) 100%) !important;
  border-color:rgba(26,122,70,0.3) !important;
  justify-content:center; align-items:center; text-align:center; min-height:200px;
}

.review-cta-content { text-align:center; width:100%; }
.review-cta-stars { font-size:1.3rem; color:var(--gold); letter-spacing:4px; margin-bottom:12px; }
.review-cta-content p { color:var(--gray-500); font-size:0.85rem; margin-bottom:5px; }
.review-cta-content strong { display:block; font-family:'Oswald',sans-serif; font-size:0.95rem; letter-spacing:0.5px; color:var(--white); }

/* ===================== CONTACT ===================== */
.contact-section { padding:72px 0; background:var(--bg-dark); }
@media (min-width:768px) { .contact-section { padding:100px 0; } }

.contact-grid { display:grid; grid-template-columns:1fr; gap:14px; }
@media (min-width:480px) { .contact-grid { grid-template-columns:1fr 1fr; } }
@media (min-width:900px) { .contact-grid { grid-template-columns:repeat(4,1fr); gap:18px; } }

/* Liquid Glass contact card */
.contact-card {
  display:flex; align-items:center; gap:14px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  text-decoration: none;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
  position: relative; overflow: hidden;
  box-shadow:
    0 4px 20px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.11),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}
.contact-card::before {
  content:''; position:absolute; inset:0;
  border-radius:inherit; background:var(--glass-inner);
  pointer-events:none; z-index:0;
}
.contact-card > * { position:relative; z-index:1; }

@media (min-width:768px) {
  .contact-card:hover {
    transform:translateY(-4px);
    border-color:rgba(26,122,70,0.4);
    box-shadow:var(--shadow-green), inset 0 1px 0 rgba(255,255,255,0.16);
  }
  .contact-card:hover .contact-arrow { color:var(--green-light); transform:translateX(4px); }
}
.contact-card:active { transform:scale(0.98); }

.contact-card-icon { width:48px; height:48px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-card-icon svg { width:24px; height:24px; }
.instagram-icon { background:linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:white; }
.vinted-icon    { background:#09b1ba; color:white; }
.email-icon     { background:linear-gradient(135deg, var(--green-dark), var(--green)); color:white; }
.whatsapp-icon  { background:#25D366; color:white; }

.contact-card-info { flex:1; min-width:0; }
.contact-card-info strong { display:block; font-family:'Oswald',sans-serif; font-size:1rem; letter-spacing:0.5px; color:var(--white); margin-bottom:3px; }
.contact-card-info span { font-size:0.78rem; color:var(--gray-500); display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.contact-arrow { color:var(--gray-700); font-size:1.1rem; transition:var(--transition); flex-shrink:0; }

/* ===================== FAQ ===================== */
.faq-section { padding:72px 0; background:var(--bg-dark); }
@media (min-width:768px) { .faq-section { padding:100px 0; } }

.faq-list { max-width:800px; margin:0 auto; display:flex; flex-direction:column; gap:10px; }

/* Liquid Glass FAQ item */
.faq-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
}

.faq-item::before {
  content:''; position:absolute; inset:0;
  border-radius:inherit; background:var(--glass-inner);
  pointer-events:none; z-index:0;
}

.faq-item.open {
  border-color: rgba(26,122,70,0.45);
  box-shadow: 0 4px 20px rgba(26,122,70,0.12), inset 0 1px 0 rgba(255,255,255,0.12);
}

.faq-question {
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  width:100%; padding:18px 18px;
  background:none; border:none; cursor:pointer;
  text-align:left; color:var(--white);
  font-family:'Inter',sans-serif; font-size:0.92rem; font-weight:600; line-height:1.4;
  transition:color 0.25s ease;
  -webkit-tap-highlight-color:transparent;
  position:relative; z-index:1;
}
@media (min-width:480px) { .faq-question { padding:20px 24px; font-size:1rem; } }
.faq-question:hover { color:var(--green-light); }
.faq-item.open .faq-question { color:var(--green-light); }

.faq-icon {
  flex-shrink:0; width:28px; height:28px; border-radius:50%;
  background:rgba(26,122,70,0.1); border:1px solid rgba(26,122,70,0.25);
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; font-weight:300; color:var(--green-light);
  transition:var(--transition); line-height:1;
}
.faq-item.open .faq-icon { transform:rotate(45deg); background:var(--green); border-color:var(--green); color:var(--white); }

.faq-answer {
  max-height:0; overflow:hidden; opacity:0;
  transition:max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  position:relative; z-index:1;
}
.faq-item.open .faq-answer { max-height:400px; opacity:1; }
.faq-answer p {
  padding:0 18px 18px; color:var(--gray-200); font-size:0.88rem; line-height:1.72;
  border-top:1px solid rgba(26,122,70,0.12); padding-top:14px; margin-top:0;
}
@media (min-width:480px) { .faq-answer p { padding:14px 24px 22px; font-size:0.93rem; } }

/* ===================== FOOTER ===================== */
.footer {
  background: rgba(3, 8, 5, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 24px;
}

.footer-top { display:grid; grid-template-columns:1fr; gap:32px; margin-bottom:32px; }
@media (min-width:640px) { .footer-top { grid-template-columns:1fr 1fr; } }
@media (min-width:900px) { .footer-top { grid-template-columns:2fr 1fr 1fr; gap:48px; } }

.footer-brand { display:flex; align-items:flex-start; gap:14px; }
@media (min-width:640px) { .footer-brand { grid-column:1/-1; } }
@media (min-width:900px) { .footer-brand { grid-column:auto; } }

.footer-logo { width:56px; height:56px; object-fit:contain; filter:drop-shadow(0 0 8px rgba(212,165,42,0.3)); flex-shrink:0; }
.footer-brand strong { display:block; font-family:'Bebas Neue',sans-serif; font-size:1.3rem; letter-spacing:2px; color:var(--gold); margin-bottom:6px; }
.footer-brand p { font-size:0.85rem; color:var(--gray-500); line-height:1.6; }

.footer-links-group h4 { font-family:'Oswald',sans-serif; font-size:0.85rem; letter-spacing:2px; text-transform:uppercase; color:var(--gray-200); margin-bottom:14px; }
.footer-links-group ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links-group a { color:var(--gray-500); text-decoration:none; font-size:0.88rem; transition:var(--transition); }
.footer-links-group a:hover { color:var(--green-light); }

.footer-bottom { border-top:1px solid rgba(255,255,255,0.05); padding-top:24px; text-align:center; }
.footer-bottom p { font-size:0.82rem; color:var(--gray-500); margin-bottom:6px; }
.footer-disclaimer { font-size:0.74rem !important; color:var(--gray-700) !important; font-style:italic; }

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position:fixed; bottom:20px; right:20px; z-index:9999;
  width:56px; height:56px; background:#25D366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,0.5);
  transition:var(--transition); text-decoration:none;
  -webkit-tap-highlight-color:transparent;
}
.whatsapp-float svg { width:28px; height:28px; fill:white; }
@media (min-width:768px) {
  .whatsapp-float { bottom:28px; right:28px; width:58px; height:58px; }
  .whatsapp-float:hover { transform:scale(1.1); box-shadow:0 8px 30px rgba(37,211,102,0.7); }
  .whatsapp-float:hover .whatsapp-tooltip { opacity:1; transform:translateX(-50%) translateY(0); }
}

.whatsapp-tooltip {
  position:absolute; bottom:66px; left:50%;
  transform:translateX(-50%) translateY(6px);
  background:rgba(5,14,8,0.95); backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.08);
  color:var(--white); padding:6px 12px; border-radius:8px;
  font-size:0.75rem; white-space:nowrap;
  opacity:0; transition:var(--transition); pointer-events:none;
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeIn    { from { opacity:0; }              to { opacity:1; } }
@keyframes fadeInDown{ from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp  { from { opacity:0; transform:translateY(24px);  } to { opacity:1; transform:translateY(0); } }

.reveal { opacity:0; transform:translateY(50px); transition:opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1), transform 1.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity:1; transform:translateY(0); }

.particle { position:absolute; border-radius:50%; opacity:0.12; animation:particleFloat linear infinite; }
@keyframes particleFloat {
  0%   { transform:translateY(100vh) rotate(0deg);   opacity:0; }
  10%  { opacity:0.12; }
  90%  { opacity:0.12; }
  100% { transform:translateY(-10vh) rotate(720deg); opacity:0; }
}

/* ===================== TOUCH & SAFE AREA ===================== */
@media (hover:none) {
  .feature-card:hover, .btn-primary:hover, .btn-outline:hover,
  .social-pill:hover, .review-card:hover, .contact-card:hover { transform:none; box-shadow:inherit; }
}

}

@supports (padding-bottom:env(safe-area-inset-bottom)) {
  .whatsapp-float { bottom:calc(20px + env(safe-area-inset-bottom)); }
  body { padding-bottom:env(safe-area-inset-bottom); }
}

/* ===================== COUNTDOWN BANNER ===================== */
.countdown-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0a1f10 50%, var(--green-dark) 100%);
  border-bottom: 1px solid rgba(26,122,70,0.4);
  position: relative;
  z-index: 1001;
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 16px;
  flex-wrap: wrap;
  position: relative;
}

.countdown-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-100);
  letter-spacing: 0.5px;
}
@media (min-width:480px) { .countdown-label { font-size: 0.85rem; } }

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 3px 8px;
  min-width: 38px;
  backdrop-filter: blur(8px);
}

.cd-block span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.cd-block small {
  font-size: 0.55rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cd-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.7;
  padding-bottom: 4px;
}

.countdown-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}
.countdown-close:hover { color: var(--white); }

/* Offset navbar when banner visible */
body.banner-visible .navbar { top: 42px; }
@media (min-width:480px) { body.banner-visible .navbar { top: 39px; } }

/* ===================== STOCK SECTION ===================== */
.stock-section {
  padding: 72px 0;
  background: var(--bg-dark);
}
@media (min-width:768px) { .stock-section { padding: 100px 0; } }

.stock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width:640px)  { .stock-grid { grid-template-columns: repeat(3,1fr); gap:16px; } }
@media (min-width:1024px) { .stock-grid { grid-template-columns: repeat(4,1fr); gap:20px; } }

/* Jersey Card — Liquid Glass */
.jersey-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.11);
  position: relative;
}

.jersey-card::before {
  content:''; position:absolute; inset:0;
  background:var(--glass-inner); border-radius:inherit;
  pointer-events:none; z-index:0;
}
.jersey-card > * { position:relative; z-index:1; }

@media (min-width:768px) {
  .jersey-card:hover {
    transform: translateY(-5px);
    border-color: rgba(26,122,70,0.4);
    box-shadow: var(--shadow-green), inset 0 1px 0 rgba(255,255,255,0.16);
  }
  .jersey-card:hover .jersey-cta { background: var(--green-mid); }
}

/* Jersey color visual */
.jersey-visual {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width:480px) { .jersey-visual { height: 110px; } }

.jersey-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.4) 100%);
}

.jersey-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  line-height: 1;
}
@media (min-width:480px) { .jersey-number { font-size: 4.5rem; } }

.jersey-info {
  padding: 12px 14px 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
@media (min-width:480px) { .jersey-info { padding: 14px 16px 10px; } }

.jersey-info strong {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
@media (min-width:480px) { .jersey-info strong { font-size: 1rem; } }

.jersey-info span {
  font-size: 0.7rem;
  color: var(--gray-500);
}
@media (min-width:480px) { .jersey-info span { font-size: 0.75rem; } }

.jersey-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 5px;
}

.jb {
  font-size: 0.62rem;
  padding: 2px 7px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.jb.home {
  background: rgba(26,122,70,0.18);
  border: 1px solid rgba(26,122,70,0.35);
  color: var(--green-light);
}
.jb.away {
  background: rgba(212,165,42,0.12);
  border: 1px solid rgba(212,165,42,0.3);
  color: var(--gold-light);
}

.jersey-cta {
  display: block;
  padding: 10px 14px;
  background: var(--green-dark);
  color: var(--white);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.25s ease;
  border-top: 1px solid rgba(255,255,255,0.05);
  -webkit-tap-highlight-color: transparent;
}
.jersey-cta:active { background: var(--green-mid); }

/* CTA jersey card */
.jersey-cta-card {
  background: linear-gradient(135deg, rgba(26,122,70,0.1), rgba(212,165,42,0.07)) !important;
  border-color: rgba(26,122,70,0.3) !important;
  justify-content: center; align-items: center;
  min-height: 220px;
  overflow: visible !important;
}
.jersey-cta-content {
  padding: 20px 16px;
  text-align: center;
  width: 100%;
}
.jersey-cta-content strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}
.jersey-cta-content p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ===================== PROCESS STEPS ===================== */
.process-section {
  padding: 72px 0;
  background: var(--bg-section);
}
@media (min-width:768px) { .process-section { padding: 88px 0; } }

.process-steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
@media (min-width:640px) {
  .process-steps { flex-direction: row; align-items: flex-start; justify-content: center; gap: 0; }
}

.process-step {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  flex: 1;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: var(--transition);
}

.process-step::before {
  content:''; position:absolute; inset:0;
  border-radius:inherit; background:var(--glass-inner);
  pointer-events:none;
}
.process-step > * { position: relative; z-index:1; }

@media (min-width:768px) {
  .process-step:hover { transform: translateY(-4px); border-color: rgba(26,122,70,0.4); }
}

.step-num {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--green-glow);
}

.step-icon {
  font-size: 2rem;
  margin: 10px 0 10px;
  display: block;
}

.process-step strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  font-size: 1.5rem;
  opacity: 0.5;
  padding: 8px 6px;
  flex-shrink: 0;
  transform: rotate(90deg);
}
@media (min-width:640px) { .process-arrow { transform: none; padding: 0 6px; } }

/* ===================== TRUST BADGES ===================== */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 0.78rem;
  color: var(--gray-200);
  font-weight: 500;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.trust-badge span { white-space: nowrap; }
@media (min-width:480px) { .trust-badge { font-size: 0.82rem; } }

/* ===================== EXIT POPUP ===================== */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.exit-popup.open {
  opacity: 1;
  pointer-events: all;
}

.exit-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.exit-popup-card {
  background: rgba(8, 22, 14, 0.92);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 40px 28px 32px;
  text-align: center;
  max-width: 380px;
  width: 100%;
  position: relative;
  z-index: 1;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.15),
    0 0 0 0.5px rgba(26,122,70,0.3);
  transform: scale(0.92) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.exit-popup.open .exit-popup-card {
  transform: scale(1) translateY(0);
}

.exit-popup-close {
  position: absolute;
  top: 14px; right: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--gray-500);
  font-size: 1.1rem;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.exit-popup-close:hover { color: var(--white); background: rgba(255,255,255,0.12); }

.exit-popup-icon { font-size: 2.8rem; margin-bottom: 14px; }

.exit-popup-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 10px;
}

.exit-popup-card p {
  font-size: 0.9rem;
  color: var(--gray-200);
  line-height: 1.65;
  margin-bottom: 22px;
}

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed;
  bottom: -100px;
  left: 0; right: 0;
  z-index: 9998;
  background: rgba(5, 14, 8, 0.92);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  transition: bottom 0.4s cubic-bezier(0.34,1.2,0.64,1);
}
.cookie-banner.show { bottom: 0; }

@media (min-width:640px) {
  .cookie-banner { padding: 16px 28px; flex-wrap: nowrap; }
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.cookie-icon { font-size: 1.3rem; flex-shrink: 0; }

.cookie-content p {
  font-size: 0.82rem;
  color: var(--gray-200);
  line-height: 1.5;
  margin: 0;
}

.cookie-link { color: var(--green-light); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: var(--white);
  box-shadow: 0 3px 12px var(--green-glow);
}
.cookie-accept:hover { box-shadow: 0 4px 16px rgba(26,122,70,0.5); }

.cookie-decline {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-500);
}
.cookie-decline:hover { color: var(--white); background: rgba(255,255,255,0.1); }

/* ===================== CUSTOM SCROLLBAR ===================== */
::-webkit-scrollbar {
  width: 8px;
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--green-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green-mid);
}

/* ===================== AMBIENT BLOBS ===================== */
.ambient-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.ambient-blobs::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.8) 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.8) 70%, transparent 100%);
  z-index: -1;
}
.blob {
  position: fixed;
  filter: blur(80px);
  opacity: 0.4;
  border-radius: 50%;
  animation: blobFloat 20s infinite ease-in-out alternate;
}
.blob-1 {
  width: 40vw; height: 40vw;
  background: var(--green-mid);
  top: -10vw; left: -10vw;
}
.blob-2 {
  width: 30vw; height: 30vw;
  background: rgba(212, 165, 42, 0.6);
  bottom: 20vh; right: -10vw;
  animation-delay: -10s;
  animation-duration: 25s;
}
@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5vw, 15vh) scale(1.1); }
}

.bg-mascot-img {
  position: fixed;
  bottom: -5%;
  right: -8%;
  width: 55vw;
  max-width: 600px;
  min-width: 300px;
  opacity: 0.13;
  pointer-events: none;
  filter: grayscale(60%) contrast(120%);
  animation: floatBgMascot 10s ease-in-out infinite alternate;
  z-index: -1;
  transform-origin: bottom right;
}
@media (min-width: 768px) {
  .bg-mascot-img {
    width: 35vw;
    opacity: 0.11;
  }
}
@keyframes floatBgMascot {
  0% { transform: translateY(0) rotate(-3deg); }
  100% { transform: translateY(-20px) rotate(1deg); }
}

/* ===================== PRELOADER ===================== */
#preloader {
  position: fixed;
  inset: 0;
  background: #030805;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  width: 120px;
  animation: pulseLogo 1.5s infinite alternate ease-in-out;
}
@keyframes pulseLogo {
  0% { transform: scale(1); opacity: 0.7; filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
  100% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 25px rgba(255,255,255,0.6)); }
}

/* ===================== MASCOT ===================== */
.mascot-container {
  display: flex;
  justify-content: center;
  margin-top: -60px;
  margin-bottom: 20px;
}
.mascot-img {
  width: 160px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8));
  animation: floatMascot 4s ease-in-out infinite alternate;
}
@keyframes floatMascot {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* ===================== FADE-UP ANIMATION ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== 1. SHIMMER ON CARDS ===================== */
.feature-card::after,
.jersey-card::after,
.stat-card::after,
.contact-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.08) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: background-position 0.6s ease;
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 768px) {
  .feature-card:hover::after,
  .jersey-card:hover::after,
  .stat-card:hover::after,
  .contact-card:hover::after {
    background-position: -200% 0;
  }
}

/* ===================== 2. CUSTOM CURSOR ===================== */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], select, input, textarea, label { cursor: none; }
}
#custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 0 12px var(--gold), 0 0 24px rgba(212,165,42,0.4);
  will-change: transform;
}
#custom-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(212,165,42,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999997;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}
#custom-cursor.hover {
  width: 20px; height: 20px;
  background: var(--green-light);
  box-shadow: 0 0 16px var(--green-light);
}
#custom-cursor-ring.hover {
  width: 52px; height: 52px;
  border-color: var(--green-light);
}

/* ===================== 4. GLITCH TITLE ===================== */
.title-line-1 {
  position: relative;
}
.title-line-1.glitch::before,
.title-line-1.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-line-1.glitch::before {
  animation: glitchBefore 0.4s steps(2) forwards;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
.title-line-1.glitch::after {
  animation: glitchAfter 0.4s steps(2) forwards;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}
@keyframes glitchBefore {
  0%   { transform: translate(-4px, -2px); }
  25%  { transform: translate(4px, 0); }
  50%  { transform: translate(-2px, 2px); }
  75%  { transform: translate(3px, -2px); }
  100% { transform: translate(0); }
}
@keyframes glitchAfter {
  0%   { transform: translate(4px, 2px); }
  25%  { transform: translate(-4px, 0); }
  50%  { transform: translate(2px, -2px); }
  75%  { transform: translate(-3px, 2px); }
  100% { transform: translate(0); }
}

/* ===================== 6. TILT 3D CARDS ===================== */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.1s ease, box-shadow 0.3s ease;
}

/* ===================== 8. WHATSAPP RIPPLE PULSE ===================== */
.whatsapp-float::before,
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: waPulse 2.5s ease-out infinite;
}
.whatsapp-float::after {
  animation-delay: 1.25s;
}
@keyframes waPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.7); }
}

/* ===================== 9. MASCOT REVEAL ===================== */
.mascot-img {
  opacity: 0;
  transform: translateY(40px) scale(0.88);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.mascot-img.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* Version Overlay */
.version-overlay-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 14, 8, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  text-align: center;
  padding: 20px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  border: 1px solid var(--border-gold);
}
.version-overlay-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ===================== GLOBAL CONTINUOUS ANIMATIONS ===================== */
@keyframes continuousFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes continuousPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 165, 42, 0.4); }
  50% { transform: scale(1.02); box-shadow: 0 0 15px 5px rgba(212, 165, 42, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 165, 42, 0); }
}

@keyframes continuousIconFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* 
 * NOTE: continuousFloat was removed from large glass cards (.feature-card, etc.) 
 * because animating transform simultaneously with backdrop-filter: blur() 
 * causes severe performance drops on many devices.
 * Icons and buttons still animate smoothly.
 */

/* Stagger delays */
.features-grid .feature-card:nth-child(2) { animation-delay: 1.5s; }
.features-grid .feature-card:nth-child(3) { animation-delay: 3s; }
.features-grid .feature-card:nth-child(4) { animation-delay: 4.5s; }

.process-steps .process-step:nth-child(3) { animation-delay: 1.5s; }
.process-steps .process-step:nth-child(5) { animation-delay: 3s; }
.process-steps .process-step:nth-child(7) { animation-delay: 4.5s; }

.reviews-grid .review-card:nth-child(2) { animation-delay: 1.5s; }
.reviews-grid .review-card:nth-child(3) { animation-delay: 3s; }
.reviews-grid .review-card:nth-child(4) { animation-delay: 4.5s; }
.reviews-grid .review-card:nth-child(5) { animation-delay: 1s; }
.reviews-grid .review-card:nth-child(6) { animation-delay: 2.5s; }

.contact-grid .contact-card:nth-child(2) { animation-delay: 1.5s; }
.contact-grid .contact-card:nth-child(3) { animation-delay: 3s; }
.contact-grid .contact-card:nth-child(4) { animation-delay: 4.5s; }

.stats-grid .stat-card:nth-child(2) { animation-delay: 1.5s; }
.stats-grid .stat-card:nth-child(3) { animation-delay: 3s; }
.stats-grid .stat-card:nth-child(4) { animation-delay: 4.5s; }

/* Buttons Pulse */
.btn-gold, .btn-primary {
  animation: continuousPulse 3s infinite;
}

/* Icons Float */
.feature-icon, .step-icon, .size-icon {
  animation: continuousIconFloat 4s ease-in-out infinite;
}
.features-grid .feature-card:nth-child(even) .feature-icon { animation-delay: 2s; }
.process-steps .process-step:nth-child(4n) .step-icon { animation-delay: 2s; }

/* ===================== POLL SECTION ===================== */
.poll-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.poll-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.poll-btn {
  width: 100%;
  font-size: 1.1rem;
  padding: 15px;
  transition: all 0.3s;
}
.poll-btn:hover {
  background: rgba(212, 165, 42, 0.2);
  border-color: var(--gold);
}
.poll-result-item {
  margin-bottom: 20px;
}
.poll-result-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 600;
}
.poll-bar-bg {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  height: 12px;
  overflow: hidden;
}
.poll-bar-fill {
  background: linear-gradient(90deg, var(--gold), #ffdf73);
  height: 100%;
  border-radius: 10px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
