:root {
  /* ========== TYPOGRAPHY ========== */
  --font-family:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Font Sizes (rem based on 16px) */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-lg: 1.125rem; /* 18px */
  --text-xl: 1.25rem; /* 20px */
  --text-2xl: 1.5rem; /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem; /* 36px */
  --text-5xl: 3rem; /* 48px */

  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;

  /* ========== PRIMARY - Professional Blue (Trust & Technology) ========== */
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;

  /* ========== ACCENT - Warm Amber/Gold (Bali Tropical Vibes) ========== */
  --accent-50: #fffbeb;
  --accent-100: #fef3c7;
  --accent-200: #fde68a;
  --accent-300: #fcd34d;
  --accent-400: #fbbf24;
  --accent-500: #f59e0b;
  --accent-600: #d97706;
  --accent-700: #b45309;
  --accent-800: #92400e;
  --accent-900: #78350f;

  /* ========== SUCCESS - Emerald Green ========== */
  --success-50: #ecfdf5;
  --success-100: #d1fae5;
  --success-200: #a7f3d0;
  --success-400: #34d399;
  --success-500: #10b981;
  --success-600: #059669;
  --success-700: #047857;

  /* ========== DANGER - Red ========== */
  --danger-500: #ef4444;
  --danger-600: #dc2626;

  /* ========== NEUTRAL - Modern Gray Scale ========== */
  --neutral-50: #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-300: #d1d5db;
  --neutral-400: #9ca3af;
  --neutral-500: #6b7280;
  --neutral-600: #4b5563;
  --neutral-700: #374151;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  /* ========== SEMANTIC TEXT COLORS ========== */
  --text-primary: var(--neutral-800);
  --text-secondary: var(--neutral-600);
  --text-muted: var(--neutral-500);
  --text-light: var(--neutral-400);
  --text-inverse: #ffffff;

  /* ========== SEMANTIC BACKGROUNDS ========== */
  --bg-primary: #ffffff;
  --bg-secondary: var(--neutral-50);
  --bg-tertiary: var(--neutral-100);
  --bg-dark: var(--neutral-900);

  /* ========== BORDERS ========== */
  --border-light: var(--neutral-200);
  --border-medium: var(--neutral-300);

  /* ========== SHADOWS ========== */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* ========== LEGACY COLORS (for backward compatibility) ========== */
  --yellow-1: #fffdf5;
  --yellow-2: #fff9e5;
  --yellow-3: #fff3cc;
  --yellow-4: #ffedb3;
  --yellow-5: #ffe180;
  --yellow-6: #ffcf33;
  --yellow-7: var(--accent-400);
  --yellow-8: var(--accent-500);
  --yellow-9: var(--accent-600);
  --yellow-10: #664e00;

  --color-white-10: white;
  --color-white-9: rgba(255, 255, 255, 0.9);
  --color-white-8: rgba(255, 255, 255, 0.8);
  --color-white-7: rgba(255, 255, 255, 0.7);
  --color-white-6: rgba(255, 255, 255, 0.6);
  --color-white-5: rgba(255, 255, 255, 0.5);
  --color-white-4: rgba(255, 255, 255, 0.4);
  --color-white-3: rgba(255, 255, 255, 0.3);
  --color-white-2: rgba(255, 255, 255, 0.2);
  --color-white-1: rgba(255, 255, 255, 0.1);

  --color-black-10: var(--neutral-900);
  --color-black-9: rgba(0, 0, 0, 0.9);
  --color-black-8: rgba(0, 0, 0, 0.8);
  --color-black-7: rgba(0, 0, 0, 0.7);
  --color-black-6: rgba(0, 0, 0, 0.6);
  --color-black-5: rgba(0, 0, 0, 0.5);
  --color-black-4: rgba(0, 0, 0, 0.4);
  --color-black-3: rgba(0, 0, 0, 0.3);
  --color-black-2: rgba(0, 0, 0, 0.2);
  --color-black-1: rgba(0, 0, 0, 0.1);

  --color-black-footer: var(--neutral-800);
}
/* 1. UNIVERSAL RESET */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Form highlight animation */
.form-highlight {
  animation: formPulse 0.6s ease-out;
}

@keyframes formPulse {
  0% {
    transform: scale(1);
    box-shadow: var(--shadow-md);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: var(--shadow-md);
  }
}

/* Form scroll offset */
#form {
  scroll-margin-top: 80px;
  transition: all 0.3s ease;
}

/* 2. HTML ROOT */
html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* 3. BODY GLOBAL */
body {
  font-family: var(--font-family);
  line-height: var(--leading-relaxed);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  color: var(--text-primary);
  min-height: 100vh;
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 4. ELEMENT RESET (ul, a, img, button, dll) */
/* h1 {
  font-size: 2.986rem;
}
h2 {
  font-size: 2.488rem;
}
h3 {
  font-size: 2.074rem;
}
h4 {
  font-size: 1.728rem;
}
h5 {
  font-size: 1.44rem;
}
h6 {
  font-size: 1.2rem;
} */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2;
}
p {
  font-size: 0.9rem;
  margin-bottom: 0.875rem;
}
.psmall {
  font-size: 0.875rem;
  line-height: 2;
}

ul {
  list-style: none;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
}
/* 4. HEADING RESET */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
}
section {
  margin-bottom: 1rem;
}

header {
  width: 100vw;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}
/* ========== Nav =============== */
nav {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--color-black-10);
  transition: all 0.3s ease;
  padding: 15px 0;
}
nav.navbarShrink {
  padding: 8px 0;
  background-color: rgba(17, 24, 39, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

nav.navbarShrink .logo h1 {
  font-size: 1.3rem;
}

.logo h1 {
  transition: font-size 0.3s ease;
}

.navbar-box {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  align-items: center;
  color: var(--color-white-10);
  position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: var(--color-white-10);
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: var(--color-white-10);
}
/* ========== Nav End ============ */
/* ========== Navbar Box ========== */
.menu {
  display: flex;
}
.menu li {
  position: relative;
  margin: 0 0 0 1.6rem;
  cursor: pointer;
}

.menu li::after {
  content: "";
  position: absolute;
  background-color: var(--primary-500);
  height: 0.1875rem;
  width: 0;
  left: 0;
  top: 1.5rem;
  transition: all 0.3s linear;
}
.menu li:hover::after {
  width: 100%;
}
.hamburger {
  display: flex;
}
/* ========== Navbar Box End ========== */
/* ========== HERO ========== */

.hero {
  width: 100%;
  height: 100vh;
  background-image:
    linear-gradient(var(--color-black-3), var(--color-white-3)),
    url(/assets/img/hero-esim.webp);
  background-repeat: no-repeat;
  background-size: cover;
  transition: margin-top 0.3s ease;
}

.hero-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  height: 100vh;
  gap: 1rem;
}

.hero-content h1 {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: var(--leading-tight);
}

.hero-content p {
  font-size: var(--text-lg);
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hero Responsive */
@media (max-width: 992px) {
  .hero-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 80px 0 40px;
  }

  .hero-box {
    height: auto;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}
/* ========== HERO End ========== */
/* ========== FORM ========== */
.formBox {
  min-height: 100vh;
  align-content: center;
  padding: 40px 0;
}
.formBox h2 {
  color: var(--text-primary);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  position: relative;
  margin-bottom: 1.5rem;
}
.formBox h2::after {
  content: "";
  position: absolute;
  width: 25%;
  left: 0;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  height: 0.25rem;
  top: 2.25rem;
  border-radius: 2px;
}
.my-form {
  display: flex;
  flex-direction: column;
}

/* Form Grid Layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  margin-bottom: 0.5rem;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-primary);
}

.form-field input,
.form-field select {
  padding: 0.875rem 1rem;
  font-family: var(--font-family);
  font-size: var(--text-base);
  border-radius: 0.625rem;
  border: 1px solid var(--border-light);
  background: var(--bg-primary);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px var(--primary-100);
}

.form-field input::placeholder {
  color: var(--text-light);
}

/* 2 columns for screens >= 769px */
@media (min-width: 769px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* 1 column for screens <= 768px */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.my-form label {
  margin-top: 0.75rem;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-primary);
}
.my-form input,
select {
  padding: 0.875rem 1rem;
  font-family: var(--font-family);
  font-size: var(--text-base);
  border-radius: 0.625rem;
  border: 1px solid var(--border-light);
  background: var(--bg-primary);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.my-form input:focus,
.my-form select:focus {
  outline: none;
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px var(--primary-100);
}

.my-form input::placeholder {
  color: var(--text-light);
}

/* ========== FORM BUTTONS - Professional Styling ========== */
.my-form button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  margin: 1.5rem 0 0.5rem 0;
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  line-height: var(--leading-tight);
  color: white;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.35);
  text-transform: none;
  letter-spacing: 0.01em;
}

.my-form button:hover,
.submit-button:hover {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.45);
}

.my-form button:active,
.submit-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px 0 rgba(37, 99, 235, 0.35);
}

.my-form button:focus-visible,
.submit-button:focus-visible {
  outline: 2px solid var(--primary-400);
  outline-offset: 2px;
}

.my-form button:disabled,
.submit-button:disabled {
  background: var(--neutral-300);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
/* ========== FORM ========== */
/* =========== product ==================================== */
.filter-tabs {
  display: flex;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.filter-btn {
  padding: 0.625rem 1.25rem;
  border: 2px solid var(--primary-600);
  background: white;
  color: var(--primary-600);
  cursor: pointer;
  border-radius: 0.375rem;
  font-family: var(--font-family);
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  transition: all 0.3s ease;
}
.filter-btn:hover {
  background: var(--primary-50);
}
.filter-btn.active {
  background: var(--primary-600);
  color: white;
}
/* .products-box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
} */

.products-box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
  gap: 1.25rem;
  padding: 1.25rem;
}

.product-card {
  border: 1px solid var(--border-light);
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: var(--bg-primary);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: var(--shadow-lg);
}

.badge,
.product-type {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.3125rem;
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  margin-bottom: 0.625rem;
}

.product-card h3 {
  margin: 0.625rem 0;
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
}

.price {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--success-600);
  margin: 0.625rem 0;
}

.submit {
  display: block;
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 0.5rem;
  margin-top: 0.9375rem;
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.submit:hover {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Animation untuk highlight form */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: var(--shadow-md);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: var(--shadow-md);
  }
}

/* Animation untuk flash input */
@keyframes flash {
  0%,
  100% {
    background: var(--primary-50);
    border-color: var(--primary-500);
  }
  50% {
    background: var(--accent-100);
    border-color: var(--accent-400);
  }
}

/* Styling untuk package select */
#package {
  font-size: var(--text-sm);
  color: var(--text-primary);
}

#package option {
  padding: 0.625rem;
}

#package optgroup {
  font-weight: var(--font-bold);
  color: var(--primary-600);
  background: var(--neutral-50);
}

/* Label small text */
label small {
  font-weight: var(--font-normal);
  font-size: var(--text-xs);
  display: block;
  margin-top: 0.1875rem;
}

/* Input display dengan style khusus */
.input-display {
  background: var(--primary-50) !important;
  border: 2px solid var(--primary-500) !important;
  font-weight: var(--font-semibold);
  color: var(--primary-700) !important;
  cursor: not-allowed;
  font-size: var(--text-base);
}

/* Media Queries */
@media screen and (min-width: 992px) {
  .hamburger {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .hamburger {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: inline-block;
  }
  .menu {
    position: absolute;
    top: 100%;
    flex-direction: column;
    width: 60%;
    height: 50vh;
    background-color: var(--color-black-10);
    right: -150%;
    transition: all 0.3s ease;
  }
  .menu.active {
    right: -10%;
  }
  .menu li {
    top: 10px;
    margin: 20px 30px;
  }

  /* Form Section Responsive */
  .formBox {
    min-height: auto;
    padding: 2.5rem 0.9375rem;
  }

  .formBox h2 {
    font-size: var(--text-2xl);
  }

  .formBox h2::after {
    top: 1.75rem;
  }

  /* About Section Responsive */
  .about-content {
    padding: 2.5rem 0.9375rem;
  }

  .about-content h1 {
    font-size: var(--text-2xl);
  }

  .about-content p {
    font-size: var(--text-base);
  }

  /* Product Section Responsive */
  .products {
    padding: 2.5rem 0.9375rem;
  }

  .products h1 {
    font-size: var(--text-2xl);
  }

  .products-box {
    padding: 0.625rem 0;
  }

  .filter-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .filter-btn {
    flex: 1;
    min-width: calc(50% - 0.5rem);
    font-size: var(--text-sm);
    padding: 0.5rem 0.75rem;
  }

  /* Container padding on mobile */
  .container {
    padding: 0 0.9375rem;
  }
}

@media screen and (max-width: 576px) {
  /* Smaller screens */
  .formBox h2 {
    font-size: var(--text-xl);
  }

  .products h1,
  .about-content h1 {
    font-size: var(--text-2xl);
  }

  .product-card {
    padding: 0.9375rem;
  }

  .price {
    font-size: var(--text-xl);
  }

  .buy-btn {
    padding: 0.625rem 0.9375rem;
    font-size: var(--text-sm);
  }
}

/* ========== HERO CTA BUTTONS ========== */
.hero-cta {
  display: flex;
  gap: 0.9375rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 0.875rem 2rem;
  border-radius: 3rem;
  font-family: var(--font-family);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--text-primary);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 1.875rem;
  margin-top: 1.875rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--accent-400);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  display: block;
  margin-bottom: 0.625rem;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  margin: 0 auto;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ========== HOW IT WORKS SECTION ========== */
.how-it-works {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--neutral-50) 0%,
    var(--neutral-100) 100%
  );
}

.how-it-works h2 {
  text-align: center;
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: 0.625rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: var(--text-lg);
  margin-bottom: 3rem;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: var(--bg-primary);
  padding: 2.5rem 1.875rem;
  border-radius: 1.25rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-0.625rem);
  box-shadow: var(--shadow-xl);
}

.step-icon {
  font-size: var(--text-5xl);
  margin-bottom: 0.9375rem;
}

.step-number {
  position: absolute;
  top: -0.9375rem;
  right: -0.9375rem;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  font-size: var(--text-lg);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.step-card h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: 0.9375rem;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.faq-section h2 {
  text-align: center;
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: 0.625rem;
}

.faq-container {
  max-width: 50rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 0.75rem;
  margin-bottom: 0.9375rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-400);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--neutral-50);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--neutral-100);
}

.faq-icon {
  font-size: var(--text-2xl);
  font-weight: var(--font-light);
  color: var(--primary-500);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 18.75rem;
  padding: 1.25rem 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ========== FLOATING WHATSAPP BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ========== SCROLL TO TOP BUTTON ========== */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--neutral-800);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-600);
  transform: translateY(-5px);
}

/* ========== RESPONSIVE FOR NEW COMPONENTS ========== */
@media (max-width: 992px) {
  .steps-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.25rem;
  }

  .step-card {
    padding: 1.875rem 1.5rem;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-cta {
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: var(--text-sm);
  }

  .stat-number {
    font-size: var(--text-2xl);
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .how-it-works {
    padding: 3.75rem 0;
  }

  .how-it-works h2,
  .faq-section h2 {
    font-size: var(--text-2xl);
  }

  .section-subtitle {
    font-size: var(--text-base);
    margin-bottom: 1.875rem;
  }

  .faq-section {
    padding: 3.75rem 0;
  }

  .faq-container {
    padding: 0 0.9375rem;
  }

  .faq-question {
    padding: 0.9375rem 1.25rem;
    font-size: var(--text-base);
  }

  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 3.4375rem;
    height: 3.4375rem;
  }

  .scroll-top {
    bottom: 5.3rem;
    right: 1.25rem;
    width: 2.8125rem;
    height: 2.8125rem;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 15.625rem;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.9375rem;
  }

  .step-icon {
    font-size: var(--text-4xl);
  }

  .step-number {
    width: 2.1875rem;
    height: 2.1875rem;
    font-size: var(--text-base);
    top: -0.625rem;
    right: -0.625rem;
  }
}

/* ========== FOOTER STYLES ========== */
.site-footer {
  background: linear-gradient(
    180deg,
    var(--neutral-800) 0%,
    var(--neutral-900) 100%
  );
  color: var(--neutral-400);
  padding: 3rem 1.25rem 1.875rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 10;
}

.footer-content {
  text-align: center;
}

.footer-location {
  margin-bottom: 1.5rem;
}

.location-badge {
  background: var(--neutral-700);
  padding: 0.625rem 1.25rem;
  border-radius: 1.5rem;
  font-size: var(--text-sm);
  display: inline-block;
  border: 1px solid var(--neutral-600);
}

.footer-social {
  margin-bottom: 1.5rem;
}

.footer-label {
  margin: 0 0 0.9375rem 0;
  font-size: var(--text-sm);
  color: var(--neutral-400);
}

.footer-label-small {
  margin: 0 0 0.9375rem 0;
  font-size: var(--text-xs);
  color: var(--neutral-500);
}

.social-icons {
  display: flex;
  gap: 0.9375rem;
  justify-content: center;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--neutral-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-0.1875rem);
}

.social-instagram:hover {
  background: #e4405f;
}

.social-facebook:hover {
  background: #1877f2;
}

.social-twitter:hover,
.social-tiktok:hover {
  background: #000;
}

.footer-tagline {
  margin: 0 0 0.625rem 0;
  font-size: var(--text-sm);
}

.footer-payment {
  margin: 1.5rem 0;
}

.payment-icons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.payment-icon {
  background: white;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  height: 2.1875rem;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.footer-copyright {
  margin: 0 0 1.25rem 0;
  font-size: var(--text-sm);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.9375rem;
}

.footer-links a {
  color: var(--neutral-400);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-400);
}

.footer-contact {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--neutral-500);
}

.footer-contact a {
  color: var(--neutral-400);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--accent-400);
}

/* Footer Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 2.5rem 0.9375rem 1.5rem;
  }

  .location-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.9375rem;
  }

  .social-icon {
    width: 2.375rem;
    height: 2.375rem;
  }

  .footer-links {
    gap: 0.9375rem;
  }

  .footer-links a {
    font-size: var(--text-sm);
  }
}

/* ========== PROMO BANNER ========== */
.promo-banner {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  text-align: center;
  animation: slideDown 0.5s ease;
  overflow: hidden;
}

/* Marquee Running Text */
.marquee-wrapper {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.35rem 0;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 4rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-content span {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

/* Main promo content */
.promo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.35rem 1rem;
  flex-wrap: nowrap;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(4px);
}

.countdown-label {
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  opacity: 0.9;
}

.countdown-units {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 28px;
}

.countdown-value {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  font-family: "Inter", monospace;
  line-height: 1;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.35rem;
  border-radius: 0.25rem;
}

.countdown-text {
  font-size: 0.6rem;
  font-weight: var(--font-medium);
  opacity: 0.8;
  margin-top: 0.1rem;
}

.countdown-separator {
  font-weight: var(--font-bold);
  opacity: 0.7;
  margin: 0 0.1rem;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.countdown-timer .expired {
  font-weight: var(--font-bold);
  background: var(--accent-400);
  color: var(--neutral-900);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.promo-text {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}

.promo-code {
  background: var(--accent-400);
  color: var(--neutral-900);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-weight: var(--font-bold);
  font-family: monospace;
  letter-spacing: 0.05em;
}

.promo-close {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.promo-close:hover {
  opacity: 1;
}

/* Adjust nav position when promo banner is visible */
body.banner-visible nav {
  top: 48px;
}

body.banner-visible .hero {
  margin-top: 48px;
}

@media (max-width: 768px) {
  .marquee-content {
    gap: 2rem;
  }

  .marquee-content span {
    font-size: 0.65rem;
  }

  .promo-content {
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0.35rem 0.5rem;
  }

  .promo-text {
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .promo-code {
    padding: 0.125rem 0.5rem;
    font-size: var(--text-xs);
  }

  .countdown-timer {
    padding: 0.25rem 0.5rem;
    gap: 0.35rem;
  }

  .countdown-label {
    display: none;
  }

  .countdown-value {
    font-size: var(--text-sm);
    padding: 0.2rem 0.25rem;
    min-width: 22px;
  }

  .countdown-text {
    font-size: 0.5rem;
  }

  body.banner-visible nav {
    top: 55px;
  }

  body.banner-visible .hero {
    margin-top: 55px;
  }
}

/* ========== TRUST BADGES & PARTNERS ========== */
.trust-section {
  padding: 3rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-primary);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
}

.trust-text span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.partners-section {
  text-align: center;
}

.partners-title {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-logo {
  opacity: 0.7;
  transition: opacity 0.3s;
  filter: grayscale(50%);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.partner-logo img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

@media (max-width: 992px) {
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .trust-badges {
    grid-template-columns: 1fr;
  }

  .trust-item {
    padding: 0.875rem;
  }

  .partners-logos {
    gap: 2rem;
  }

  .partner-logo img {
    height: 2rem;
  }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.testimonials-section h2 {
  text-align: center;
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--bg-secondary);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

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

.testimonial-rating {
  margin-bottom: 1rem;
}

.testimonial-rating span {
  color: var(--accent-400);
  font-size: var(--text-lg);
}

.testimonial-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
}

.author-info span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  border-radius: 1rem;
  border: 1px solid var(--primary-200);
}

.stat-icon {
  font-size: var(--text-2xl);
}

.stat-value {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--primary-700);
}

.stat-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonials-section h2 {
    font-size: var(--text-2xl);
  }

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

  .testimonials-stats {
    gap: 1rem;
  }

  .stat-badge {
    padding: 1rem 1.5rem;
    flex: 1;
    min-width: 6rem;
  }

  .stat-value {
    font-size: var(--text-xl);
  }
}

/* Review Form Styles */
.review-form-container {
  margin-top: 4rem;
  padding: 2.5rem;
  background: white;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--neutral-200);
}

.review-form-container h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.review-form-subtitle {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-bottom: 2rem;
  text-align: center;
}

.rating-input {
  margin-bottom: 1.5rem;
  text-align: center;
}

.rating-input label {
  display: block;
  font-weight: var(--font-semibold);
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-size: var(--text-sm);
}

.star-rating-input {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.star-input {
  font-size: 2.5rem;
  color: var(--neutral-300);
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.star-input:hover,
.star-input.hovered {
  color: #fbbf24;
  transform: scale(1.1);
}

.star-input.selected {
  color: #fbbf24;
}

.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-form .form-group {
  margin-bottom: 1rem;
}

.review-form .form-group label {
  display: block;
  font-weight: var(--font-semibold);
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-size: var(--text-sm);
}

.review-form .form-group input,
.review-form .form-group textarea,
.review-form .form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--neutral-300);
  border-radius: 0.75rem;
  font-size: var(--text-base);
  font-family: inherit;
  transition: all 0.2s ease;
  background: var(--neutral-50);
}

.review-form .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.review-form .form-group input:focus,
.review-form .form-group textarea:focus,
.review-form .form-group select:focus {
  outline: none;
  border-color: var(--primary-500);
  background: white;
  box-shadow: 0 0 0 3px var(--primary-100);
}

.review-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit-review {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-submit-review:hover {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-submit-review:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.review-success {
  text-align: center;
  padding: 2rem;
}

.review-success .success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--success-500), var(--success-600));
  color: white;
  border-radius: 50%;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.review-success h4 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.review-success p {
  color: var(--text-muted);
}

@media (max-width: 576px) {
  .review-form-container {
    margin-top: 2rem;
    padding: 1.5rem;
  }

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

  .star-input {
    font-size: 2rem;
  }
}
