/* ============================================
   GOLDENDATE V4 – Ultra Modern Premium Redesign
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* === VARIABLES === */
:root {
  /* Gold Modern Palette */
  --gold: #D4A745;
  --gold-light: #F0D078;
  --gold-soft: #FAEDC5;
  --gold-dark: #B8902E;

  /* Olive Green Accent */
  --olive: #8B9A6B;
  --olive-light: #A8B88A;
  --olive-dark: #6A7A4E;

  /* Neutrals */
  --bg: #FAF8F5;
  --bg-warm: #F5F1EB;
  --white: #FFFFFF;
  --cream: #FDF9F3;
  --gray-50: #F7F5F2;
  --gray-100: #EDE9E3;
  --gray-200: #DDD7CC;
  --gray-300: #C4BEB4;
  --gray-400: #9D978D;
  --gray-500: #7A746B;
  --gray-600: #5C5650;
  --gray-700: #3D3833;
  --gray-800: #2A2520;
  --gray-900: #1A1714;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(26, 23, 20, 0.04);
  --shadow-sm: 0 2px 8px rgba(26, 23, 20, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 23, 20, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 23, 20, 0.1);
  --shadow-xl: 0 24px 64px rgba(26, 23, 20, 0.14);
  --shadow-gold: 0 8px 32px rgba(212, 167, 69, 0.25);

  /* Borders */
  --border: rgba(0,0,0,0.06);
  --border-strong: rgba(0,0,0,0.1);

  /* Radius */
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 48px;
  --r-full: 9999px;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.2s var(--ease);
  --t-normal: 0.4s var(--ease);
  --t-slow: 0.6s var(--ease);

  /* Layout */
  --header-h: 72px;
  --max-w: 1200px;
}

/* === DARK THEME OVERRIDES === */
[data-theme="dark"] {
  --bg: #0D0D0F;
  --bg-warm: #141418;
  --bg-cream: #18181C;
  --white: #1A1A1E;
  --cream: #1F1F24;
  --gray-50: #141418;
  --gray-100: #1C1C22;
  --gray-200: #2C2C34;
  --gray-300: #42424C;
  --gray-400: #71717A;
  --gray-500: #A1A1AA;
  --gray-600: #D4D4D8;
  --gray-700: #E4E4E7;
  --gray-800: #F4F4F5;
  --gray-900: #FAFAFA;

  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.15);

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.7);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.8);

  --glass: rgba(26,26,30,0.8);
}

/* === THEME TRANSITION === */
body {
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; border: none; outline: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--gray-900); }
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; }
p { color: var(--gray-600); font-size: 1.05rem; line-height: 1.7; }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* === GLASS === */
.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
}

/* ================================================
   HEADER
   ================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h); z-index: 1000;
  transition: var(--t-normal);
  background: transparent;
}
.header.scrolled {
  background: rgba(250,248,245,0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
[data-theme="dark"] .header.scrolled {
  background: rgba(13,13,15,0.85) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.header.scrolled .logo, .header.scrolled .nav-link { color: var(--gray-800); }
[data-theme="dark"] .header.scrolled .logo, [data-theme="dark"] .header.scrolled .nav-link { color: white; }
.header.scrolled .nav-link:hover { background: rgba(0,0,0,0.05); }
[data-theme="dark"] .header.scrolled .nav-link:hover { background: rgba(255,255,255,0.08); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  color: white; display: flex; align-items: center; gap: 6px;
}
.logo span { color: var(--gold); font-style: italic; }
.logo-ring {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: white; margin-right: 6px;
  box-shadow: var(--shadow-gold);
}
/* Desktop Nav */
.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.7);
  padding: 8px 16px; border-radius: var(--r-full); background: none;
  cursor: pointer; transition: var(--t-fast); display: inline-flex; align-items: center; gap: 4px;
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-chevron { font-size: 0.7rem; transition: transform 0.2s ease; }
.nav-cta {
  background: var(--gold) !important; color: #0d0d0f !important;
  padding: 10px 24px !important; font-weight: 700 !important;
  box-shadow: 0 0 20px rgba(212,167,69,0.3); border-radius: var(--r-full);
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold) !important;
}

/* Mega Trigger */
.mega-trigger { position: relative; }

/* Mega Panel */
.mega-panel {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--gray-900); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl); padding: 32px 36px;
  opacity: 0; pointer-events: none; transition: all 0.3s var(--ease);
  min-width: 520px; z-index: 1001;
}
.mega-panel.open {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.mega-inner { display: flex; gap: 40px; }
.mega-col { flex: 1; min-width: 150px; }
.mega-col-title {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mega-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--r-sm); cursor: pointer;
  font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.7);
  transition: var(--t-fast); margin-bottom: 2px;
}
.mega-item:hover { background: rgba(255,255,255,0.06); color: var(--gold-light); transform: translateX(4px); }
.mega-icon { font-size: 1.1rem; width: 24px; text-align: center; flex-shrink: 0; }

/* Mega Overlay */
.mega-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.05); z-index: 1000;
  pointer-events: none; opacity: 0; transition: var(--t-fast);
}
.mega-overlay.active { pointer-events: all; opacity: 1; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; }
.hamburger span { width: 22px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: var(--t-fast); }

/* ================================================
   MOBILE FULLSCREEN MENU
   ================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--white);
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  padding: 16px 20px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-close {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  font-size: 1.1rem; cursor: pointer; color: var(--gray-600);
  display: flex; align-items: center; justify-content: center;
  transition: var(--t-fast);
}
.mobile-menu-close:hover { background: var(--gray-100); }
.mobile-menu-body {
  flex: 1; overflow-y: auto; padding: 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu-link {
  display: block; padding: 14px 16px; font-size: 1.05rem;
  font-weight: 500; color: var(--gray-700); border-radius: var(--r-sm);
  cursor: pointer; transition: var(--t-fast);
}
.mobile-menu-link:hover { background: var(--bg); color: var(--gold); }
.mobile-menu-cta {
  display: block; text-align: center; padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; font-weight: 700; font-size: 1.05rem;
  border-radius: var(--r-full); margin-top: 16px;
  box-shadow: var(--shadow-gold); cursor: pointer; transition: var(--t-fast);
}
.mobile-menu-cta:hover { transform: scale(1.02); }

/* Mobile Accordion */
.mobile-accordion { border-radius: var(--r-sm); }
.mobile-accordion-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 16px; background: none; border: none;
  font-size: 1.05rem; font-weight: 500; color: var(--gray-700);
  cursor: pointer; border-radius: var(--r-sm); transition: var(--t-fast);
}
.mobile-accordion-btn:hover { background: var(--bg); }
.mobile-accordion-btn.active { color: var(--gold); }
.mobile-accordion-btn.active .nav-chevron { transform: rotate(180deg); }
.mobile-accordion-body {
  max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease);
  padding-left: 16px;
}
.mobile-accordion-body.open { max-height: 300px; }
.mobile-accordion-body a {
  display: block; padding: 10px 16px; font-size: 0.95rem;
  color: var(--gray-600); cursor: pointer; border-radius: var(--r-sm);
  transition: var(--t-fast);
}
.mobile-accordion-body a:hover { background: var(--bg); color: var(--gold); }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 14px 32px; border-radius: var(--r-full); border: none;
  cursor: pointer; transition: var(--t-fast); position: relative;
  overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: var(--t-fast);
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,167,69,0.35); }
.btn-secondary {
  background: var(--white); color: var(--gray-800);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-strong);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--gray-900); color: white; box-shadow: var(--shadow-md); }
.btn-dark:hover { background: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline-white { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(8px); }
.btn-outline-white:hover { background: rgba(255,255,255,0.25); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Theme Toggle Button */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--t-fast);
  margin: 0 8px;
}
.theme-toggle:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.05);
  color: var(--gold);
}
[data-theme="dark"] .theme-toggle {
  background: rgba(255,255,255,0.05);
  color: var(--gold-light);
}

.header.scrolled .theme-toggle {
  background: rgba(255,255,255,0.05);
}

/* ================================================
   CARDS
   ================================================ */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px;
  box-shadow: var(--shadow-xs); transition: var(--t-normal);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* ================================================
   BADGES
   ================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 700; padding: 6px 14px;
  border-radius: var(--r-full); text-transform: uppercase; letter-spacing: 0.08em;
}
.badge-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white; box-shadow: var(--shadow-gold); }
.badge-green { background: rgba(139,154,107,0.12); color: var(--olive-dark); }
.badge-glass { background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.6); color: var(--gray-800); box-shadow: var(--shadow-sm); }

/* ================================================
   FORMS
   ================================================ */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-size: 0.88rem; font-weight: 600; color: var(--gray-700); }
.form-control {
  width: 100%; padding: 14px 18px; border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm); background: var(--white); color: var(--gray-800);
  font-size: 0.95rem; transition: var(--t-fast); outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,167,69,0.12); }
.form-control::placeholder { color: var(--gray-400); }
.form-check { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.form-check input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.form-check-label { font-size: 0.9rem; color: var(--gray-600); line-height: 1.5; }
.form-hint { font-size: 0.82rem; color: var(--gray-400); margin-top: 4px; }
.form-error { font-size: 0.8rem; color: #D64545; }

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-label {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-title { margin-bottom: 20px; }
.section-desc { font-size: 1.15rem; max-width: 580px; color: var(--gray-500); margin-bottom: 40px; }

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 48px);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  background:
    radial-gradient(ellipse at 70% 10%, rgba(212,167,69,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 90%, rgba(139,154,107,0.06) 0%, transparent 40%),
    var(--bg);
}
.hero .container { position: relative; z-index: 10; display: flex; align-items: center; gap: 48px; }
.hero-content { flex: 1; max-width: 55%; }
.hero-title { margin-bottom: 20px; }
.hero-subtitle { font-size: 1.2rem; color: var(--gray-500); margin-bottom: 36px; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-image { flex: 1; position: relative; }
.hero-image img {
  width: 100%; border-radius: var(--r-2xl); box-shadow: var(--shadow-xl);
  object-fit: cover; aspect-ratio: 4/5;
  transition: transform 0.8s var(--ease);
}
.hero-image:hover img { transform: scale(1.02); }
.hero-badge-float {
  position: absolute; bottom: 32px; left: -32px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  padding: 16px 20px; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ================================================
   SOCIAL PROOF
   ================================================ */
.social-proof { background: var(--white); padding: 64px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-box { text-align: center; }
.stat-box .num { font-family: var(--font-display); font-size: 2.8rem; color: var(--gray-900); line-height: 1; margin-bottom: 6px; font-weight: 700; }
.stat-box .label { font-size: 0.92rem; color: var(--gray-400); font-weight: 500; }
.users-avatars { display: flex; align-items: center; justify-content: center; margin-top: 32px; }
.users-avatars img { width: 48px; height: 48px; border-radius: 50%; border: 3px solid var(--white); box-shadow: var(--shadow-sm); margin-left: -14px; transition: var(--t-fast); }
.users-avatars img:hover { transform: translateY(-8px) scale(1.1); z-index: 10; }
.users-avatars img:first-child { margin-left: 0; }

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 36px 32px; position: relative;
  transition: var(--t-normal); display: flex; flex-direction: column; height: 100%;
}
.how-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(212,167,69,0.2); }
.how-icon-wrap {
  width: 64px; height: 64px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--gold-soft), var(--bg-warm));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 24px;
}
.how-title { font-size: 1.4rem; margin-bottom: 12px; }
.how-desc { font-size: 0.98rem; color: var(--gray-500); line-height: 1.65; }
.how-num { position: absolute; top: 28px; right: 28px; font-family: var(--font-display); font-size: 3.5rem; color: rgba(212,167,69,0.08); line-height: 0.8; font-weight: 700; }

/* ================================================
   FREE TRIAL BANNER
   ================================================ */
.free-trial-section { background: var(--bg); padding: 100px 0; }
.trial-banner {
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
  border-radius: var(--r-2xl); overflow: hidden; position: relative;
  display: flex; align-items: center; padding: 56px 64px;
  box-shadow: var(--shadow-xl);
}
.trial-banner::before {
  content: ''; position: absolute; top: -40%; right: -15%; width: 50%; height: 180%;
  background: radial-gradient(circle, rgba(212,167,69,0.15) 0%, transparent 60%); pointer-events: none;
}
.trial-content { flex: 1; position: relative; z-index: 10; }
.trial-content h2 { color: white; font-size: 2.6rem; margin-bottom: 16px; }
.trial-content p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 440px; margin-bottom: 32px; }
.trial-image { flex: 0.7; display: flex; justify-content: flex-end; position: relative; z-index: 10; }
.trial-glass-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12); padding: 28px;
  border-radius: var(--r-lg); width: 280px; color: white;
  transform: rotate(3deg); transition: var(--t-normal);
}
.trial-glass-card:hover { transform: rotate(0deg) scale(1.02); }

/* ================================================
   PRICING
   ================================================ */
.pricing-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 44px 36px; position: relative;
  transition: var(--t-normal); display: flex; flex-direction: column;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.pricing-card.featured {
  background: var(--gray-900); color: white; border: none;
  box-shadow: var(--shadow-xl);
}
.pricing-card.featured .pricing-name { color: var(--gold-light); }
.pricing-card.featured .pricing-price { color: white; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.85); }
.pricing-best {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white;
  padding: 6px 20px; border-radius: var(--r-full); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap; box-shadow: var(--shadow-gold);
}
.pricing-name { font-size: 1rem; font-weight: 700; color: var(--gray-500); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.pricing-price { font-family: var(--font-display); font-size: 3.5rem; color: var(--gray-900); line-height: 1; margin-bottom: 4px; font-weight: 700; }
.pricing-price span { font-size: 1.2rem; vertical-align: super; font-family: var(--font-body); }
.pricing-period { font-size: 0.9rem; color: var(--gray-400); margin-bottom: 32px; }
.pricing-economy { font-size: 0.88rem; color: var(--olive); font-weight: 600; margin-bottom: 24px; background: rgba(139,154,107,0.1); padding: 8px 16px; border-radius: var(--r-full); display: inline-block; }
.pricing-features { margin-bottom: 36px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.pricing-feature { display: flex; align-items: center; gap: 12px; font-size: 0.98rem; color: var(--gray-600); }
.pricing-feature::before {
  content: '✓'; width: 24px; height: 24px; border-radius: 50%;
  background: var(--olive-light); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; flex-shrink: 0;
}

/* ================================================
   PROFILE CARDS
   ================================================ */
.profile-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  transition: var(--t-normal); cursor: pointer;
}
.profile-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.profile-photo-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.profile-photo-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.profile-card:hover .profile-photo-wrap img { transform: scale(1.05); }
.profile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,23,19,0.75) 0%, transparent 50%); opacity: 0; transition: var(--t-normal); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; }
.profile-card:hover .profile-overlay { opacity: 1; }
.profile-overlay-btns { display: flex; gap: 8px; width: 100%; }
.profile-online { position: absolute; top: 12px; right: 12px; width: 12px; height: 12px; background: #22C55E; border: 2px solid white; border-radius: 50%; box-shadow: 0 0 8px rgba(34,197,94,0.4); }
.profile-info { padding: 20px; }
.profile-name { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 4px; color: var(--gray-900); }
.profile-meta { font-size: 0.88rem; color: var(--gray-400); margin-bottom: 12px; }
.profile-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.profile-tag { background: var(--bg); color: var(--gray-600); padding: 4px 12px; border-radius: var(--r-full); font-size: 0.78rem; border: 1px solid var(--border); font-weight: 500; }
.compat-bar { height: 4px; background: var(--gray-100); border-radius: 2px; margin-top: 12px; overflow: hidden; }
.compat-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--olive), var(--gold)); }

/* ================================================
   DASHBOARD LAYOUT (full-width, no sidebar)
   ================================================ */
.dashboard-full { min-height: 100vh; padding-top: var(--header-h); background: var(--bg); }
.dash-main { padding: 40px; max-width: var(--max-w); margin: 0 auto; overflow-y: auto; }
.dash-greeting { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 4px; }
.dash-subtitle { color: var(--gray-400); font-size: 0.98rem; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.dash-stat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-xs); transition: var(--t-fast); }
.dash-stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.dash-stat-icon { font-size: 1.6rem; margin-bottom: 12px; }
.dash-stat-num { font-family: var(--font-display); font-size: 2rem; color: var(--gray-900); line-height: 1; margin-bottom: 4px; font-weight: 700; }
.dash-stat-label { font-size: 0.85rem; color: var(--gray-400); }

/* ================================================
   MESSAGING
   ================================================ */
.messaging-layout { display: grid; grid-template-columns: 340px 1fr; height: calc(100vh - var(--header-h)); background: var(--white); margin-top: var(--header-h); }
.msg-sidebar { border-right: 1px solid var(--border); display: flex; flex-direction: column; background: var(--bg); }
.msg-sidebar-header { padding: 20px; border-bottom: 1px solid var(--border); }
.msg-sidebar-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 12px; }
.msg-search { position: relative; }
.msg-search input { padding-left: 36px; }
.msg-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gray-400); font-size: 0.9rem; }
.msg-list { flex: 1; overflow-y: auto; }
.msg-item { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; gap: 14px; align-items: center; cursor: pointer; transition: var(--t-fast); }
.msg-item:hover { background: var(--white); }
.msg-item.active { background: var(--white); border-left: 3px solid var(--gold); }
.msg-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.msg-online-dot { position: relative; }
.msg-online-dot::after { content: ''; position: absolute; bottom: 2px; right: 2px; width: 10px; height: 10px; background: #22C55E; border: 2px solid var(--white); border-radius: 50%; }
.msg-info { flex: 1; min-width: 0; }
.msg-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.msg-preview { font-size: 0.85rem; color: var(--gray-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.msg-meta { text-align: right; flex-shrink: 0; }
.msg-time { font-size: 0.75rem; color: var(--gray-400); }
.msg-unread { background: var(--gold); color: white; border-radius: var(--r-full); font-size: 0.72rem; padding: 2px 7px; margin-top: 6px; display: inline-block; font-weight: 700; }
.chat-area { display: flex; flex-direction: column; background: var(--white); }
.chat-header { padding: 16px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.chat-name { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 2px; }
.chat-status { font-size: 0.82rem; color: #22C55E; font-weight: 500; }
.chat-messages { flex: 1; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.bubble-wrap { display: flex; align-items: flex-end; gap: 12px; }
.bubble-wrap.me { flex-direction: row-reverse; }
.bubble { max-width: 60%; padding: 14px 18px; border-radius: var(--r-md); font-size: 0.95rem; line-height: 1.6; }
.bubble-other { background: var(--bg); color: var(--gray-800); border-bottom-left-radius: 4px; border: 1px solid var(--border); }
.bubble-me { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white; border-bottom-right-radius: 4px; box-shadow: var(--shadow-gold); }
.bubble-time { font-size: 0.75rem; color: var(--gray-400); margin-top: 6px; }
.chat-input-area { padding: 20px 24px; border-top: 1px solid var(--border); }
.chat-input-wrap { background: var(--bg); border: 1.5px solid var(--gray-200); border-radius: var(--r-full); padding: 8px 8px 8px 20px; display: flex; align-items: flex-end; gap: 12px; transition: var(--t-fast); }
.chat-input-wrap:focus-within { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,167,69,0.08); }
.chat-input { flex: 1; border: none; background: transparent; resize: none; outline: none; font-size: 0.95rem; color: var(--gray-800); max-height: 120px; line-height: 1.5; padding: 6px 0; }
.chat-send-btn { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border: none; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--t-fast); box-shadow: var(--shadow-gold); font-size: 1rem; }
.chat-send-btn:hover { transform: scale(1.08); }

/* ================================================
   AUTH PAGES
   ================================================ */
.auth-page { min-height: 100vh; padding: 100px 24px 48px; display: flex; align-items: center; justify-content: center; background: var(--bg); }
.auth-card { background: var(--white); border-radius: var(--r-xl); padding: 48px; max-width: 500px; width: 100%; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.auth-title { font-family: var(--font-display); font-size: 2rem; margin-bottom: 6px; }
.auth-subtitle { color: var(--gray-400); font-size: 0.98rem; margin-bottom: 32px; }
.auth-switch { text-align: center; font-size: 0.92rem; color: var(--gray-500); margin-top: 24px; }
.auth-switch a { color: var(--gold); font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }

/* ================================================
   CHATBOT
   ================================================ */
.chatbot-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
.chatbot-toggle { width: 56px; height: 56px; border-radius: 50%; background: var(--gray-900); color: white; border: none; font-size: 1.5rem; box-shadow: var(--shadow-lg); cursor: pointer; transition: var(--t-fast); position: relative; }
.chatbot-toggle:hover { transform: scale(1.08); background: var(--gold); }
.chatbot-toggle-pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(26,23,19,0.15); animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.2); opacity: 0; } }
.chatbot-window { position: absolute; bottom: 72px; right: 0; width: 340px; background: var(--white); border-radius: var(--r-xl); box-shadow: var(--shadow-xl); overflow: hidden; transform: scale(0.9) translateY(16px); opacity: 0; pointer-events: none; transition: all 0.4s var(--ease); transform-origin: bottom right; border: 1px solid var(--border); }
.chatbot-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chatbot-header { background: var(--gray-900); padding: 16px 20px; color: white; display: flex; align-items: center; justify-content: space-between; }
.chatbot-header-info h4 { color: white; font-family: var(--font-body); font-size: 0.95rem; }
.chatbot-header-info span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.chatbot-close { background: none; border: none; color: white; font-size: 1.2rem; cursor: pointer; opacity: 0.7; }
.chatbot-close:hover { opacity: 1; }
.chatbot-messages { height: 320px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 14px; background: var(--bg); }
.bot-msg, .user-msg { display: flex; gap: 10px; align-items: flex-start; }
.user-msg { flex-direction: row-reverse; }
.bot-bubble { background: var(--white); border: 1px solid var(--border); border-radius: 14px; border-bottom-left-radius: 4px; padding: 10px 14px; font-size: 0.9rem; max-width: 85%; color: var(--gray-700); box-shadow: var(--shadow-xs); }
.user-bubble { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white; border-radius: 14px; border-bottom-right-radius: 4px; padding: 10px 14px; font-size: 0.9rem; max-width: 85%; box-shadow: var(--shadow-gold); }
.chatbot-options { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.chatbot-option { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 8px 12px; font-size: 0.85rem; cursor: pointer; text-align: left; color: var(--gray-600); transition: var(--t-fast); }
.chatbot-option:hover { border-color: var(--gold); color: var(--gold); background: var(--white); }
.chatbot-input-area { padding: 12px; border-top: 1px solid var(--border); display: flex; gap: 10px; background: var(--white); }
.chatbot-input { flex: 1; border: 1.5px solid var(--gray-200); border-radius: var(--r-full); padding: 10px 14px; font-size: 0.88rem; outline: none; background: var(--bg); transition: var(--t-fast); color: var(--gray-800); }
.chatbot-input:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(212,167,69,0.08); }
.chatbot-send { width: 40px; height: 40px; border-radius: 50%; background: var(--gray-900); border: none; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--t-fast); }
.chatbot-send:hover { background: var(--gold); transform: scale(1.05); }

/* ================================================
   ANIMATIONS
   ================================================ */
.fade-in { animation: fadeIn 0.6s var(--ease) forwards; }
.slide-up { animation: slideUp 0.6s var(--ease) forwards; }
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero .container { flex-direction: column; text-align: center; gap: 32px; }
  .hero-content { max-width: 100%; order: 2; }
  .hero-image { max-width: 80%; order: 1; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-badge-float { display: none; }
  .trial-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .trial-image { display: none; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .messaging-layout { grid-template-columns: 260px 1fr; }
  .mega-panel { min-width: 420px; }
}
@media (max-width: 768px) {
  .header { padding: 0 12px; background: rgba(250,248,245,0.9); backdrop-filter: blur(20px); }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .messaging-layout { grid-template-columns: 1fr; }
  .msg-sidebar { height: 36vh; }
  .auth-card { padding: 32px 20px; border-radius: var(--r-lg); }
  .pricing-card { padding: 32px 24px; }
  .hero-title { font-size: clamp(2.2rem, 5vw, 2.8rem); }
  .chatbot-window { width: 300px; right: 12px; bottom: 76px; }
  .chatbot-widget { right: 12px; bottom: 12px; }
  .dash-main { padding: 24px 16px; }
  .container { padding: 0 16px; }
}

/* ================================================
   UTILITIES
   ================================================ */
.hidden { display: none !important; }
.page { display: none; }
.page.active { display: block; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--gray-900); color: rgba(255,255,255,0.6); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { color: white; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.92rem; }
.footer-col h5 { color: white; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.5); transition: var(--t-fast); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; font-size: 0.85rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-legal a:hover { color: var(--gold); }
.adult-warning { display: inline-flex; align-items: center; gap: 6px; background: rgba(212,167,69,0.1); border: 1px solid rgba(212,167,69,0.2); border-radius: var(--r-full); padding: 5px 14px; font-size: 0.8rem; font-weight: 600; color: var(--gold-light); }

/* ================================================
   LEGAL
   ================================================ */
.legal-content { max-width: 720px; margin: 0 auto; background: var(--white); padding: 40px; border-radius: var(--r-xl); box-shadow: var(--shadow-xs); border: 1px solid var(--border); }
.legal-content h2 { margin: 40px 0 16px; font-size: 1.6rem; }
.legal-content h3 { margin: 24px 0 12px; font-size: 1.2rem; }
.legal-content p, .legal-content li { margin-bottom: 12px; line-height: 1.7; font-size: 0.98rem; color: var(--gray-600); }
.legal-content ul { padding-left: 20px; margin-bottom: 20px; }

/* AGE GATE */
.age-gate { position: fixed; inset: 0; z-index: 99999; background: rgba(250,248,245,0.92); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center; }
.age-gate-card { max-width: 460px; width: 100%; margin: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 48px; text-align: center; box-shadow: var(--shadow-xl); }
.age-gate-icon { font-size: 3.5rem; margin-bottom: 20px; }
.age-gate-title { font-size: 2rem; margin-bottom: 12px; }
.age-gate-text { color: var(--gray-500); margin-bottom: 32px; font-size: 1rem; }
.age-gate-actions { display: flex; flex-direction: column; gap: 12px; }

/* TOASTS & ALERTS */
.notif-dot { width: 8px; height: 8px; background: #EF4444; border-radius: 50%; display: inline-block; box-shadow: 0 0 0 2px var(--white); }
.alert-msg { padding: 14px 18px; border-radius: var(--r-sm); font-size: 0.9rem; margin: 12px 0; display: flex; align-items: flex-start; gap: 10px; font-weight: 500; }
.alert-error { background: rgba(214,69,69,0.06); border: 1px solid rgba(214,69,69,0.15); color: #D64545; }
.alert-success { background: rgba(139,154,107,0.06); border: 1px solid rgba(139,154,107,0.15); color: var(--olive-dark); }
.alert-info { background: rgba(212,167,69,0.06); border: 1px solid rgba(212,167,69,0.15); color: var(--gold-dark); }
.toast-container { position: fixed; top: calc(var(--header-h) + 16px); right: 24px; z-index: 99999; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--gray-900); color: white; border-radius: var(--r-lg); padding: 14px 20px; box-shadow: var(--shadow-xl); display: flex; align-items: center; gap: 12px; min-width: 280px; font-weight: 500; font-size: 0.9rem; animation: slideIn 0.4s var(--ease); }
.toast.fade-out { animation: slideOut 0.3s ease forwards; }
@keyframes slideIn { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOut { to { transform: translateX(120%); opacity: 0; } }

/* SEARCH & SETTINGS */
.search-filters { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px; box-shadow: var(--shadow-xs); }
.filter-label { font-size: 0.82rem; font-weight: 700; color: var(--gray-700); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.filter-group { margin-bottom: 20px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip { padding: 7px 14px; border-radius: var(--r-full); border: 1px solid var(--gray-200); font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: var(--t-fast); color: var(--gray-500); background: var(--white); }
.filter-chip:hover, .filter-chip.active { border-color: var(--gold); color: var(--gold); background: rgba(212,167,69,0.05); }
.range-slider { width: 100%; accent-color: var(--gold); height: 4px; }
.settings-section { margin-bottom: 32px; }
.settings-title { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 6px; }
.settings-desc { font-size: 0.92rem; color: var(--gray-400); margin-bottom: 20px; }
.settings-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--border); }
.toggle { position: relative; width: 48px; height: 26px; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; cursor: pointer; inset: 0; background: var(--gray-200); border-radius: var(--r-full); transition: var(--t-fast); }
.toggle-slider::before { content: ''; position: absolute; left: 3px; top: 3px; width: 20px; height: 20px; background: white; border-radius: 50%; transition: var(--t-fast); box-shadow: var(--shadow-sm); }
.toggle input:checked + .toggle-slider { background: var(--gold); }
.toggle input:checked + .toggle-slider::before { transform: translateX(22px); }

/* ================================================
   FUTURISTIC HOMEPAGE – HERO
   ================================================ */
.hero-future {
  position: relative; min-height: 100vh;
  background: linear-gradient(160deg, #0d0d0f 0%, #141418 40%, #1a1710 100%);
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Animated glowing orbs */
.orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: 0.55;
}
.orb-1 {
  width: 600px; height: 600px; top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(212,167,69,0.35), transparent 70%);
  animation: orbFloat1 12s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px; bottom: -100px; left: 10%;
  background: radial-gradient(circle, rgba(139,154,107,0.25), transparent 70%);
  animation: orbFloat2 15s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px; top: 40%; left: 40%;
  background: radial-gradient(circle, rgba(212,167,69,0.12), transparent 70%);
  animation: orbFloat3 20s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(-40px,40px) scale(1.08);} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(30px,-30px) scale(1.05);} }
@keyframes orbFloat3 { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(20px,20px);} 66%{transform:translate(-20px,10px);} }

/* Grid lines bg */
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
  background-image:
    linear-gradient(to right, #fff 1px, transparent 1px),
    linear-gradient(to bottom, #fff 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Hero layout */
.hero-future-inner { display: flex; align-items: center; gap: 64px; padding: 80px 0 60px; }
.hero-future-content { flex: 1; max-width: 52%; }
.hero-future-visual { flex: 1; position: relative; }

/* Hero badge */
.hero-future-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212,167,69,0.08); border: 1px solid rgba(212,167,69,0.25);
  border-radius: var(--r-full); padding: 8px 18px;
  font-size: 0.82rem; font-weight: 600; color: var(--gold-light);
  letter-spacing: 0.06em; margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,167,69,0.25);
  animation: pulse 2s ease-in-out infinite;
}

/* Hero title */
.hero-future-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.08; letter-spacing: -0.03em;
  color: rgba(255,255,255,0.96);
  margin-bottom: 24px;
}
.hero-future-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #e8b84b 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-future-thin { color: rgba(255,255,255,0.38); font-style: italic; font-weight: 400; }

.hero-future-desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.55); line-height: 1.75;
  max-width: 460px; margin-bottom: 36px;
}

/* Action buttons */
.hero-future-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-future-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0d0f; font-weight: 700; font-size: 0.95rem;
  padding: 14px 32px; border-radius: var(--r-full); border: none;
  cursor: pointer; transition: var(--t-fast);
  box-shadow: 0 0 40px rgba(212,167,69,0.3), var(--shadow-gold);
  letter-spacing: 0.02em;
}
.btn-future-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(212,167,69,0.4), var(--shadow-gold); }
.btn-future-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12); font-weight: 500; font-size: 0.94rem;
  padding: 14px 28px; border-radius: var(--r-full); cursor: pointer;
  transition: var(--t-fast); backdrop-filter: blur(8px);
}
.btn-future-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: white; transform: translateY(-1px); }

/* Trust row */
.hero-future-trust { display: flex; align-items: center; gap: 16px; }
.trust-avatars { display: flex; }
.trust-avatars img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.15); margin-left: -10px; object-fit: cover; }
.trust-avatars img:first-child { margin-left: 0; }
.trust-text { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.trust-text strong { color: rgba(255,255,255,0.85); font-weight: 700; }

/* Hero visual / image */
.hero-future-card-wrap { position: relative; }
.hero-future-img-card {
  border-radius: var(--r-2xl); overflow: hidden; position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
}
.hero-future-img-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.img-card-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(14,12,9,0.5) 0%, transparent 50%);
}

/* Floating stat cards */
.hero-float-card {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.07); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-lg);
  padding: 14px 18px; box-shadow: var(--shadow-xl);
  color: white;
}
.hero-float-card--tl { top: 24px; left: -48px; animation: floatY 6s ease-in-out infinite; }
.hero-float-card--br { bottom: 40px; right: -32px; animation: floatY 8s ease-in-out infinite 1s; }
@keyframes floatY { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
.float-card-icon { font-size: 1.4rem; flex-shrink: 0; }
.float-card-num { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; line-height: 1; }
.float-card-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* Hero fade bottom */
.hero-future-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar-section { background: var(--bg); padding: 0 0 10px; }
.stats-bar {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0; background: var(--white); border-radius: var(--r-xl);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden;
}
.stats-bar-item { flex: 1; min-width: 160px; padding: 28px 24px; text-align: center; }
.stats-bar-sep { width: 1px; align-self: stretch; background: var(--border); flex-shrink: 0; }
.stats-bar-num { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gray-900); line-height: 1; margin-bottom: 4px; }
.stats-bar-label { display: block; font-size: 0.82rem; color: var(--gray-400); font-weight: 500; }

/* ================================================
   STEPS
   ================================================ */
.steps-section { background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; position: relative; }
.step-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 40px 32px; position: relative; overflow: hidden;
  transition: var(--t-normal); display: flex; flex-direction: column;
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(212,167,69,0.2); }
.step-number {
  font-family: var(--font-display); font-size: 5rem; font-weight: 700;
  color: rgba(212,167,69,0.07); line-height: 1;
  position: absolute; top: 20px; right: 24px; pointer-events: none;
  user-select: none;
}
.step-icon-wrap { position: relative; width: 68px; height: 68px; margin-bottom: 24px; }
.step-icon-glow {
  position: absolute; inset: 0; border-radius: var(--r-md); opacity: 0.6;
  background: rgba(212,167,69,0.15); transition: var(--t-normal);
}
.step-card:hover .step-icon-glow { opacity: 1; transform: scale(1.1); }
.step-icon-emoji { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.step-title { font-size: 1.35rem; margin-bottom: 10px; }
.step-desc { font-size: 0.97rem; color: var(--gray-500); line-height: 1.65; flex: 1; }
.step-arrow { font-size: 1.5rem; color: var(--gold); margin-top: 20px; transition: var(--t-fast); }
.step-card:hover .step-arrow { transform: translateX(6px); }

/* ================================================
   FEATURES
   ================================================ */
.features-section { padding: 80px 0; background: var(--gray-900); }
.features-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: stretch; }

.feature-big-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-2xl); padding: 56px 48px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 32px;
  transition: var(--t-normal);
}
.feature-big-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(212,167,69,0.2); }
.feature-big-orb {
  position: absolute; top: -80px; right: -80px; width: 300px; height: 300px;
  border-radius: 50%; background: radial-gradient(circle, rgba(212,167,69,0.15), transparent 70%);
  pointer-events: none;
}
.feature-big-content { flex: 1; position: relative; z-index: 2; }
.feature-tag {
  display: inline-block; background: rgba(212,167,69,0.12); color: var(--gold-light);
  border: 1px solid rgba(212,167,69,0.25); padding: 5px 14px; border-radius: var(--r-full);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 20px;
}
.feature-big-content h3 { color: white; font-size: 1.9rem; margin-bottom: 14px; line-height: 1.2; }
.feature-big-content p { color: rgba(255,255,255,0.5); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
.feature-big-visual { flex-shrink: 0; }
.verify-badge-big {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 0.75rem;
  box-shadow: 0 0 40px rgba(212,167,69,0.4);
  animation: floatY 5s ease-in-out infinite;
}

.feature-small-col { display: flex; flex-direction: column; gap: 20px; }
.feature-small-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl); padding: 28px;
  transition: var(--t-normal); flex: 1;
}
.feature-small-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(212,167,69,0.2); transform: translateX(4px); }
.feature-small-icon { font-size: 1.5rem; margin-bottom: 12px; }
.feature-small-card h4 { color: white; font-size: 1.05rem; margin-bottom: 8px; }
.feature-small-card p { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.6; }

/* ================================================
   FUTURISTIC PRICING
   ================================================ */
.pricing-future-section { background: var(--bg-warm); }
.pricing-future-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.pricing-future-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 40px 32px;
  display: flex; flex-direction: column; position: relative;
  transition: var(--t-normal);
}
.pricing-future-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-future-card--featured {
  background: var(--gray-900); border-color: transparent;
  box-shadow: var(--shadow-xl), 0 0 50px rgba(212,167,69,0.15);
}
.pf-glow {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 40px; border-radius: 50%;
  background: var(--gold); filter: blur(24px); opacity: 0.4; pointer-events: none;
}
.pf-badge-top {
  position: absolute; top: 0; left: 50%; transform: translate(-50%,-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em;
  padding: 5px 20px; border-radius: var(--r-full); white-space: nowrap;
  box-shadow: var(--shadow-gold); text-transform: uppercase;
}
.pf-header { margin-bottom: 28px; }
.pf-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 12px; }
.pf-price-wrap { display: flex; align-items: flex-start; gap: 4px; line-height: 1; margin-bottom: 6px; }
.pf-price { font-family: var(--font-display); font-size: 3.2rem; font-weight: 700; color: var(--gray-900); }
.pricing-future-card--featured .pf-price { color: white; }
.pf-currency { font-size: 1.2rem; font-weight: 700; padding-top: 8px; color: var(--gray-400); }
.pricing-future-card--featured .pf-currency { color: rgba(255,255,255,0.5); }
.pf-period { font-size: 0.88rem; color: var(--gray-400); }
.pf-economy { display: inline-block; background: rgba(139,154,107,0.1); color: var(--olive); font-size: 0.85rem; font-weight: 600; padding: 6px 14px; border-radius: var(--r-full); margin-bottom: 20px; }
.pf-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; flex: 1; padding: 0; }
.pf-features li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--gray-600); }
.pricing-future-card--featured .pf-features li { color: rgba(255,255,255,0.75); }
.pf-check { width: 22px; height: 22px; border-radius: 50%; background: var(--olive-light); color: white; display: inline-flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; flex-shrink: 0; }
.pf-check--gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); box-shadow: 0 0 12px rgba(212,167,69,0.3); }
.pf-btn { width: 100%; padding: 14px; border-radius: var(--r-full); font-weight: 700; font-size: 0.95rem; cursor: pointer; border: none; transition: var(--t-fast); }
.pf-btn--ghost { background: var(--bg); border: 1.5px solid var(--border-strong); color: var(--gray-700); }
.pf-btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.pf-btn--dark { background: var(--gray-900); color: white; }
.pf-btn--dark:hover { background: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.pf-btn--gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--gray-900); box-shadow: var(--shadow-gold); }
.pf-btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,167,69,0.4); }

/* ================================================
   FUTURISTIC RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .hero-future-inner { gap: 40px; }
  .hero-float-card--tl { left: -16px; }
  .hero-float-card--br { right: -12px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-big-card { flex-direction: column; padding: 40px; }
  .feature-big-visual { display: flex; justify-content: center; }
}
@media (max-width: 768px) {
  .hero-future-inner { flex-direction: column; padding: 48px 0 40px; gap: 40px; }
  .hero-future-content { max-width: 100%; text-align: center; order: 2; }
  .hero-future-desc { margin-left: auto; margin-right: auto; }
  .hero-future-actions { justify-content: center; }
  .hero-future-trust { justify-content: center; }
  .hero-future-visual { order: 1; width: 100%; max-width: 380px; margin: 0 auto; }
  .hero-float-card--tl { left: -8px; top: 12px; }
  .hero-float-card--br { right: -8px; bottom: 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .stats-bar { flex-direction: column; border-radius: var(--r-lg); }
  .stats-bar-sep { width: 100%; height: 1px; align-self: auto; }
  .pricing-future-grid { grid-template-columns: repeat(2, 1fr); }
  .features-section { padding: 60px 0; }
}

