/* ==========================================================================
   Tailor Flow - Modern Product Landing Page Stylesheet
   Pure Vanilla CSS with Design Tokens, Glassmorphism & Micro-animations
   ========================================================================== */

:root {
  /* Color Palette */
  --primary: #b21876;
  --primary-hover: #961363;
  --primary-light: #fdf2f8;
  --primary-glow: rgba(178, 24, 118, 0.25);

  --accent: #10b981;
  --accent-hover: #059669;
  --accent-light: #ecfdf5;
  --accent-glow: rgba(16, 185, 129, 0.25);

  --warning: #f59e0b;
  --warning-light: #fffbeb;
  --danger: #ef4444;
  --danger-light: #fef2f2;

  --dark-bg: #0b0f19;
  --dark-surface: #111827;
  --dark-border: #1f2937;

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 30px rgba(178, 24, 118, 0.2);

  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-blur: blur(14px);

  /* Layout Transitions */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: light;
}

body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background-color: var(--slate-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-hover);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Typography Utility */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.25;
}

.text-gradient {
  background: linear-gradient(135deg, #750d4c 0%, #b21876 50%, #e11d48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Badge & Pills */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: rgba(178, 24, 118, 0.08);
  color: var(--primary);
  border: 1px solid rgba(178, 24, 118, 0.2);
}

.pill-badge.pill-accent {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent);
  border-color: rgba(16, 185, 129, 0.25);
}

.badge-new {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--primary);
  color: white;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

/* Section Common */
.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-header h2 {
  font-size: 2.35rem;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--slate-500);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #b21876 0%, #961363 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(178, 24, 118, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #961363 0%, #750d4c 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(178, 24, 118, 0.45);
}

.btn-accent {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.btn-outline {
  border: 1.5px solid var(--slate-300);
  color: var(--slate-700);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  transition: all var(--transition-normal);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #b45309 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
}

/* ==========================================================================
   Top Announcement Bar - Interactive Slide Carousel
   ========================================================================== */
.vip-top-banner {
  background: linear-gradient(90deg, #090d16 0%, #111827 35%, #064e3b 70%, #0f172a 100%);
  border-bottom: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  color: #f8fafc;
  font-size: 0.835rem;
  padding: 0.45rem 0;
  position: relative;
  z-index: 1001;
  overflow: hidden;
}

.banner-slider-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  min-height: 40px;
}

.banner-arrow-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #cbd5e1;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.banner-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.35);
}

.banner-slides-viewport {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 38px;
  display: flex;
  align-items: center;
}

.banner-slide {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
  opacity: 0;
  transform: translateY(6px);
}

.banner-slide.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  animation: slideInBanner 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInBanner {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-content-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.slide-icon-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.chip-emerald {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.45);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.25);
}

.chip-cyan {
  background: rgba(6, 182, 212, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(6, 182, 212, 0.45);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.25);
}

.chip-gold {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.45);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.25);
}

.slide-text {
  color: #e2e8f0;
  font-size: 0.835rem;
}

.slide-chip-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
}

.chip-cyan-pill {
  color: #bae6fd;
  background: rgba(6, 182, 212, 0.16);
  border-color: rgba(6, 182, 212, 0.35);
}

.chip-urgent {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.16);
  border-color: rgba(239, 68, 68, 0.35);
}

.pulse-dot-amber {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f87171;
  animation: pulseDot 1.6s infinite;
}

.pulse-dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  animation: pulseDot 1.6s infinite;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
}

.slide-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.slide-cta-pill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: btnShimmer 3.2s infinite;
}

@keyframes btnShimmer {
  0% { left: -120%; }
  35% { left: 140%; }
  100% { left: 140%; }
}

.slide-cta-pill:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.6);
  color: #ffffff;
}

.slide-cta-cyan {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.4);
}

.slide-cta-cyan:hover {
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.6);
}

.slide-cta-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.4);
}

.slide-cta-gold:hover {
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.6);
}

.banner-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.banner-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.banner-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.28);
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.banner-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.banner-dot.active {
  background: #34d399;
  width: 18px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.65);
}

/* ==========================================================================
   Navigation Bar (Sticky, Classy Glassmorphic with Mega-Dropdowns)
   ========================================================================== */
.site-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.72rem 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.03);
  transition: all var(--transition-normal);
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(203, 213, 225, 0.65);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.02);
  padding: 0.58rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo {
  height: 35px;
  width: auto;
  transition: transform var(--transition-fast);
}

.nav-brand:hover .nav-logo {
  transform: scale(1.02);
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: rgba(248, 250, 252, 0.95);
  color: #334155;
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(203, 213, 225, 0.85);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.brand-dot-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.85);
  animation: pulseGreen 2.2s infinite ease-in-out;
}

@keyframes pulseGreen {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.885rem;
  font-weight: 550;
  color: #475569;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.44rem 0.78rem;
  border-radius: 8px;
  border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: #0f172a;
  background: rgba(241, 245, 249, 0.85);
  border-color: rgba(226, 232, 240, 0.7);
}

.has-dropdown:hover .nav-link,
.has-dropdown.open .nav-link {
  color: var(--primary);
  background: rgba(241, 245, 249, 0.95);
  border-color: rgba(178, 24, 118, 0.15);
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.dropdown-chevron {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.18s;
  color: #94a3b8;
}

.has-dropdown:hover .dropdown-chevron,
.has-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Dropdown Menus */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 14px;
  box-shadow: 0 20px 45px -12px rgba(15, 23, 42, 0.13), 0 0 0 1px rgba(15, 23, 42, 0.03);
  padding: 0.65rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 14px;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu-lg {
  width: 530px;
}

.dropdown-menu-md {
  width: 360px;
}

.dropdown-menu-sm {
  width: 320px;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.62rem 0.78rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.dropdown-item:hover {
  background: #f8fafc;
  border-color: rgba(226, 232, 240, 0.8);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.vip-dropdown-highlight {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid rgba(245, 158, 11, 0.28);
}

.vip-dropdown-highlight:hover {
  background: #fef08a;
  border-color: rgba(245, 158, 11, 0.45);
}

.dropdown-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-item:hover .dropdown-icon-box {
  transform: scale(1.08);
}

.dropdown-icon-box.icon-purple {
  background: rgba(178, 24, 118, 0.1);
  color: var(--primary);
}

.dropdown-icon-box.icon-amber {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.dropdown-icon-box.icon-rose {
  background: rgba(225, 29, 72, 0.1);
  color: #e11d48;
}

.dropdown-icon-box.icon-blue {
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
}

.dropdown-icon-box.icon-slate {
  background: rgba(71, 85, 105, 0.1);
  color: #475569;
}

.dropdown-icon-box.icon-emerald {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.dropdown-icon-box.icon-gold {
  background: rgba(245, 158, 11, 0.2);
  color: #b45309;
}

.dropdown-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dropdown-title {
  font-size: 0.855rem;
  font-weight: 600;
  color: #0f172a;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: -0.01em;
}

.dropdown-desc {
  font-size: 0.74rem;
  color: #64748b;
  line-height: 1.35;
}

.badge-mini-gold {
  font-size: 0.62rem;
  font-weight: 800;
  background: rgba(245, 158, 11, 0.25);
  color: #b45309;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-pill);
}

.dropdown-footer {
  border-top: 1px solid #f1f5f9;
  margin-top: 0.45rem;
  padding-top: 0.5rem;
  background: #f8fafc;
  border-radius: 0 0 10px 10px;
}

.dropdown-footer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.dropdown-footer-link:hover {
  background: #f1f5f9;
}

.dropdown-footer-link svg {
  transition: transform 0.2s;
}

.dropdown-footer-link:hover svg {
  transform: translateX(3px);
}

.dropdown-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 0.35rem 0;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-signin-btn {
  font-size: 0.86rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  padding: 0.44rem 0.95rem;
  border-radius: 8px;
  border: 1px solid rgba(203, 213, 225, 0.75);
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.nav-signin-btn:hover {
  background: #f8fafc;
  color: #0f172a;
  border-color: #94a3b8;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.46rem 1.15rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.86rem;
  background: linear-gradient(135deg, var(--primary) 0%, #831843 100%);
  color: #ffffff;
  box-shadow: 0 3px 12px rgba(178, 24, 118, 0.28);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(178, 24, 118, 0.38);
  color: #ffffff;
}

.btn-nav-cta svg {
  transition: transform 0.2s;
}

.btn-nav-cta:hover svg {
  transform: translateX(2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-800);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5.5rem;
  background: radial-gradient(circle at 50% 15%, rgba(178, 24, 118, 0.07) 0%, rgba(248, 250, 252, 0) 65%);
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -100px;
  left: 10%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(178, 24, 118, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3.5rem auto;
}

.hero-content h1 {
  font-size: 3.25rem;
  letter-spacing: -0.02em;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--slate-600);
  max-width: 760px;
  margin: 0 auto 2.25rem auto;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.hero-guarantee-card {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(16, 185, 129, 0.12);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-guarantee-card:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), 0 0 28px rgba(16, 185, 129, 0.25);
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #34d399;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.5px;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-pill);
}

.guarantee-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.18);
}

.guarantee-items {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.guarantee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
}

.guarantee-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--slate-500);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-item svg {
  color: var(--accent);
}

/* ==========================================================================
   ERP Screenshot & Mockup Frames
   ========================================================================== */
.hero-showcase {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.18);
  overflow: hidden;
  transition: transform var(--transition-slow);
}

.hero-showcase:hover {
  transform: translateY(-4px);
}

.showcase-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--slate-200);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot-red {
  background: #ef4444;
}

.dot-yellow {
  background: #f59e0b;
}

.dot-green {
  background: #10b981;
}

.mockup-title {
  font-size: 0.8rem;
  color: var(--slate-500);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mockup-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-ring 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.mockup-img-frame {
  position: relative;
  background: #f1f5f9;
  overflow: hidden;
}

.mockup-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mockup-img-frame:hover .mockup-img {
  transform: scale(1.01);
}

/* Feature Screenshot Card in Explorer */
.screenshot-preview-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.screenshot-preview-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: #c7d2fe;
}

.card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--slate-200);
  font-size: 0.78rem;
  color: var(--slate-500);
}

/* ==========================================================================
   Metrics Strip (Stats Bar)
   ========================================================================== */
.stats-strip {
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: var(--slate-500);
  font-size: 0.925rem;
  font-weight: 500;
}

/* ==========================================================================
   Feature Highlights Grid
   ========================================================================== */
.features-section {
  background: var(--slate-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #c7d2fe;
  box-shadow: var(--shadow-xl);
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.icon-purple {
  background: #fdf2f8;
  color: #b21876;
}

.icon-green {
  background: #ecfdf5;
  color: #10b981;
}

.icon-amber {
  background: #fffbeb;
  color: #f59e0b;
}

.icon-blue {
  background: #eff6ff;
  color: #2563eb;
}

.icon-pink {
  background: #fdf2f8;
  color: #db2777;
}

.icon-slate {
  background: #f1f5f9;
  color: #475569;
}

.icon-rose {
  background: #fff1f2;
  color: #e11d48;
}

.icon-teal {
  background: #f0fdfa;
  color: #0d9488;
}

.icon-violet {
  background: #f5f3ff;
  color: #7c3aed;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--slate-600);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.feature-card ul {
  list-style: none;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
}

.feature-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--slate-700);
  margin-bottom: 0.5rem;
}

.feature-card li svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ==========================================================================
   Interactive Feature Explorer (Tabbed ERP Screenshots Component)
   ========================================================================== */
.explorer-section {
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.explorer-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.explorer-tab-btn {
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-600);
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  transition: all var(--transition-fast);
}

.explorer-tab-btn:hover {
  background: var(--slate-200);
  color: var(--slate-900);
}

.explorer-tab-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(178, 24, 118, 0.3);
}

.explorer-window {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  min-height: 480px;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-pane.active {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pane-text h3 {
  font-size: 1.85rem;
  margin-bottom: 1rem;
}

.pane-text p {
  color: var(--slate-600);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.pane-text ul {
  list-style: none;
  margin-bottom: 1.75rem;
}

.pane-text li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--slate-700);
  margin-bottom: 0.75rem;
}

.pane-text li svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
  background: var(--white);
  border-top: 1px solid var(--slate-200);
}

/* ==========================================================================
   VIP Founder's Pass Showcase
   ========================================================================== */
.vip-pass-container {
  margin-bottom: 3.5rem;
}

.vip-pass-card {
  position: relative;
  background: linear-gradient(135deg, #090d16 0%, #20081a 50%, #0f172a 100%);
  border: 2px solid rgba(245, 158, 11, 0.55);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.5rem;
  color: var(--white);
  box-shadow: 0 20px 50px -10px rgba(245, 158, 11, 0.22), 0 0 30px rgba(178, 24, 118, 0.15);
  overflow: hidden;
  transition: transform var(--transition-normal);
}

.vip-pass-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.75);
}

.vip-card-glow-mesh {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(178, 24, 118, 0.12) 50%, transparent 70%);
  pointer-events: none;
}

.vip-card-top-tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.vip-crown-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.45);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.vip-scarcity-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.45);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.live-dot-amber {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: pulseDot 1.6s infinite;
}

.vip-card-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2.75rem;
  align-items: center;
}

.vip-offer-title h3 {
  font-size: 1.95rem;
  font-family: var(--font-heading);
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.text-gold {
  color: #fbbf24;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.35);
}

.vip-subtext {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.vip-progress-box {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.35rem;
  margin-bottom: 1.75rem;
}

.vip-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.65rem;
}

.vip-claimed-text strong {
  color: #fbbf24;
}

.vip-urgent-text {
  color: #f87171;
  font-weight: 700;
}

.vip-track {
  height: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  overflow: hidden;
}

.vip-bar {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #10b981);
  border-radius: 5px;
  transition: width 0.6s ease;
}

.vip-perks-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
}

.vip-perk {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: #e2e8f0;
  line-height: 1.45;
}

.vip-perk svg {
  color: #fbbf24;
  flex-shrink: 0;
  margin-top: 2px;
}

.vip-pricing-column {
  display: flex;
  justify-content: center;
}

.vip-action-card {
  width: 100%;
  background: rgba(15, 23, 42, 0.85);
  border: 1.5px solid rgba(245, 158, 11, 0.45);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.vip-save-ribbon {
  display: inline-block;
  background: linear-gradient(90deg, #ef4444, #dc2626);
  color: #ffffff;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.3rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.vip-strike-price {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.vip-strike-price del {
  color: #f87171;
  font-weight: 600;
}

.vip-big-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.vip-currency-code {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fbbf24;
}

.vip-num {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 25px rgba(251, 191, 36, 0.25);
}

.vip-cadence {
  font-size: 0.825rem;
  color: #94a3b8;
  margin-bottom: 1.65rem;
}

.vip-btn-glow {
  display: block;
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
}

.vip-guarantee-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 1.15rem;
}

.vip-guarantee-note svg {
  color: #10b981;
}

/* ==========================================================================
   Pricing Controls Bar (Billing Cycle + Region Currency Auto-Detector)
   ========================================================================== */
.pricing-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: #f8fafc;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 1rem 2rem;
  margin-bottom: 3.5rem;
}

.pricing-controls-bar .billing-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
}

.toggle-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-600);
  cursor: pointer;
}

.toggle-label.active {
  color: var(--slate-900);
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--slate-300);
  transition: .3s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: var(--primary);
}

input:checked+.slider:before {
  transform: translateX(24px);
}

.discount-badge {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}

.region-currency-selector {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.currency-picker-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
}

.currency-picker-label svg {
  color: var(--primary);
}

.currency-select-wrapper {
  position: relative;
}

.currency-select {
  appearance: none;
  background: var(--white);
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-md);
  padding: 0.45rem 2.2rem 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-800);
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition-fast);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23475569' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.currency-select:hover,
.currency-select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(178, 24, 118, 0.12);
}

.auto-detected-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.725rem;
  font-weight: 700;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
}

.live-dot-green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin: 0 auto;
  gap: 2.25rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
}

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

.pricing-card.popular {
  border-color: var(--primary);
  background: linear-gradient(180deg, #ffffff 0%, #fdf2f8 100%);
  box-shadow: 0 10px 30px rgba(178, 24, 118, 0.15);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #b21876 0%, #750d4c 100%);
  color: var(--white);
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(178, 24, 118, 0.3);
}

.plan-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.plan-header p {
  color: var(--slate-500);
  font-size: 0.885rem;
  min-height: 42px;
}

.plan-price {
  margin: 1.75rem 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--slate-200);
}

.plan-price .currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-500);
  vertical-align: top;
}

.plan-price .amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--slate-900);
  font-family: var(--font-heading);
}

.plan-price .period {
  font-size: 0.9rem;
  color: var(--slate-500);
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.925rem;
  color: var(--slate-700);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.plan-features li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.plan-features li.disabled {
  color: var(--slate-400);
}

.plan-features li.disabled svg {
  color: var(--slate-300);
}

/* ==========================================================================
   Comparison Table Section
   ========================================================================= */
.table-section {
  background: var(--slate-50);
}

.pricing-table-wrap {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 1.1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--slate-200);
}

.pricing-table thead th {
  background: #f8fafc;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--slate-800);
}

.pricing-table thead th.text-center,
.pricing-table tbody td.text-center {
  text-align: center;
}

.pricing-table tbody tr:hover {
  background: #fbfcfe;
}

.category-row td {
  background: #f1f5f9;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--slate-600);
  padding: 0.65rem 1.5rem;
}

/* ==========================================================================
   How It Works (Steps)
   ========================================================================== */
.steps-section {
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 4px 14px rgba(178, 24, 118, 0.35);
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--slate-600);
  font-size: 0.95rem;
}

/* ==========================================================================
   FAQ Section (Native Accessible <details>)
   ========================================================================== */
.faq-section {
  background: var(--slate-50);
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item[open] {
  border-color: #c7d2fe;
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-800);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  transition: transform var(--transition-fast);
  color: var(--primary);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   Contact Us & Inquiries Section
   ========================================================================== */
.contact-section {
  background: var(--white);
  border-top: 1px solid var(--slate-200);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3rem;
  align-items: flex-start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #f8fafc;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition-normal);
}

.contact-info-card:hover {
  border-color: #c7d2fe;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-info-card h4 {
  font-size: 1.05rem;
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
  color: var(--slate-900);
}

.contact-info-card p {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-bottom: 0.35rem;
}

.contact-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.vip-highlight-card {
  background: linear-gradient(135deg, #090d16 0%, #1e1b4b 60%, #0f172a 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.45);
}

.icon-gold {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}

.contact-form-panel {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--slate-800);
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-control:focus {
  background: var(--white);
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3.5px rgba(178, 24, 118, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-feedback {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-feedback.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-feedback.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--slate-500);
  text-align: center;
  margin-top: 0.5rem;
}

/* Security Captcha Widget */
.captcha-group {
  margin-top: 0.25rem;
}

.captcha-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.captcha-display-box {
  display: inline-flex;
  align-items: center;
  background: var(--slate-100);
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-md);
  padding: 3px 6px;
  gap: 4px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.captcha-canvas {
  display: block;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
}

.captcha-refresh-btn {
  background: transparent;
  border: none;
  color: var(--slate-600);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.captcha-refresh-btn:hover {
  background: var(--white);
  color: var(--primary);
  transform: rotate(180deg);
}

.captcha-input {
  flex: 1;
  min-width: 170px;
  font-family: monospace, var(--font-body);
  letter-spacing: 2.5px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.captcha-hint {
  font-size: 0.76rem;
  color: var(--slate-500);
  margin-top: 0.15rem;
}

.spinner-icon {
  animation: spin 0.9s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4rem;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-section {
  padding: 5rem 0;
  background: var(--slate-50);
}

.cta-box {
  background: linear-gradient(135deg, #4a044e 0%, #701a75 50%, #b21876 100%);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  color: var(--white);
  box-shadow: 0 25px 50px -12px rgba(178, 24, 118, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.cta-box p {
  color: #e0e7ff;
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--dark-bg);
  color: var(--slate-400);
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid var(--dark-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.925rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: var(--slate-400);
  font-size: 0.885rem;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-border);
  font-size: 0.85rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.65rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .tab-pane.active {
    grid-template-columns: 1fr;
  }

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

  .vip-card-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-controls-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .pricing-controls-bar .billing-toggle-wrap {
    justify-content: center;
  }

  .region-currency-selector {
    justify-content: center;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .banner-slider-container {
    padding: 0.25rem 0;
    gap: 0.35rem;
  }

  .banner-slide {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
  }

  .slide-content-wrap {
    justify-content: center;
    text-align: center;
    gap: 0.4rem;
  }

  .banner-arrow-btn {
    width: 22px;
    height: 22px;
  }

  .hero-guarantee-card {
    border-radius: var(--radius-lg);
    padding: 0.6rem 0.9rem;
    gap: 0.6rem;
  }

  .guarantee-divider {
    display: none;
  }

  .guarantee-items {
    gap: 0.6rem;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid var(--slate-200);
    overflow-y: auto;
    display: none;
    z-index: 999;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--slate-100);
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    width: 100%;
    box-shadow: none;
    border: 1px solid var(--slate-200);
    background: var(--slate-50);
    margin-top: 0.35rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    display: none;
  }

  .has-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .nav-signin-btn,
  .nav-action-link {
    display: none;
  }

  .btn-nav-cta {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
  }

  .nav-toggle {
    display: flex;
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .vip-pass-card {
    padding: 1.75rem 1.25rem;
  }

  .vip-offer-title h3 {
    font-size: 1.45rem;
  }

  .vip-num {
    font-size: 2.85rem;
  }

  .vip-perks-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .vip-action-card {
    padding: 1.75rem 1.25rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

  .contact-form-panel {
    padding: 1.75rem 1.25rem;
  }

  .cta-box {
    padding: 3rem 1.5rem;
  }

  .cta-box h2 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   13. Legal Policies Hub & Document Pages (.policies-*)
   ========================================================================== */
.policies-banner {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
  color: var(--white);
  padding: 7rem 0 3.5rem;
  border-bottom: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}

.policies-banner-content {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.policies-banner h1 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  line-height: 1.2;
}

.policies-banner p {
  color: var(--slate-300);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.policies-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--slate-400);
}

.policies-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  color: var(--slate-200);
}

.policies-main {
  padding: 4rem 0;
  background: var(--slate-50);
}

.policies-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.policies-sidebar {
  position: sticky;
  top: 90px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.policies-sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-500);
  margin-bottom: 1rem;
  font-weight: 700;
}

.policies-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.policies-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-md);
  color: var(--slate-700);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.policies-nav-link:hover {
  background: var(--slate-100);
  color: var(--primary);
}

.policies-nav-link.active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}

.policies-sidebar-contact {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--slate-100);
  font-size: 0.84rem;
  color: var(--slate-600);
}

.policies-sidebar-contact a {
  color: var(--primary);
  font-weight: 600;
}

.policies-content-area {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.policy-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2.75rem 3rem;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 100px;
}

.policy-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.policy-card h2 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.policy-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-card p {
  color: var(--slate-700);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.15rem;
}

.policy-card ul,
.policy-card ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  color: var(--slate-700);
}

.policy-card li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.policy-callout {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
}

.policy-callout.callout-success {
  background: var(--accent-light);
  border-left-color: var(--accent);
}

.policy-callout.callout-warning {
  background: var(--warning-light);
  border-left-color: var(--warning);
}

.policy-callout h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.35rem;
}

.policy-callout p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--slate-800);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}

.policy-table th {
  background: var(--slate-100);
  color: var(--slate-800);
  font-weight: 700;
  text-align: left;
  padding: 0.85rem 1rem;
  border: 1px solid var(--slate-200);
}

.policy-table td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
}

.policy-table tr:nth-child(even) td {
  background: var(--slate-50);
}

.contact-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.contact-highlight-item {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.contact-highlight-item h4 {
  font-size: 0.95rem;
  color: var(--slate-900);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-highlight-item p {
  margin-bottom: 0;
  font-size: 0.92rem;
  color: var(--slate-600);
}

@media (max-width: 992px) {
  .policies-layout {
    grid-template-columns: 1fr;
  }

  .policies-sidebar {
    position: static;
    margin-bottom: 2rem;
  }

  .policy-card {
    padding: 2rem 1.5rem;
  }

  .contact-highlight-grid {
    grid-template-columns: 1fr;
  }
}

@media print {

  .site-nav,
  .policies-banner,
  .policies-sidebar,
  .site-footer,
  .btn,
  .vip-top-banner {
    display: none !important;
  }

  body,
  .policies-main {
    background: #fff !important;
    color: #000 !important;
  }

  .policies-layout {
    display: block !important;
  }

  .policy-card {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    page-break-after: always;
  }
}