/* ==========================================================================
   SugarDaddy Australia - Master Stylesheet
   Theme: Obsidian Luxury & Champagne Gold
   Target: sugardaddy-australia.com
   ========================================================================== */

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

:root {
  /* Color Palette */
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #161622;
  --bg-card-hover: #1c1c2c;
  --bg-glass: rgba(22, 22, 34, 0.75);
  --bg-glass-strong: rgba(14, 14, 22, 0.92);
  
  /* Gold Accents */
  --gold-300: #f3e098;
  --gold-400: #e5c158;
  --gold-500: #d4af37;
  --gold-600: #b89628;
  --gold-700: #8c721b;
  --gold-gradient: linear-gradient(135deg, #f7e7a9 0%, #d4af37 50%, #a8831b 100%);
  --gold-gradient-hover: linear-gradient(135deg, #fff2be 0%, #e5c158 50%, #c49d28 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 100%);
  
  /* Status & Accent Colors */
  --emerald-500: #10b981;
  --emerald-bg: rgba(16, 185, 129, 0.15);
  --rose-500: #f43f5e;
  --amber-500: #f59e0b;
  --blue-500: #3b82f6;
  
  /* Typography */
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #848b98;
  --text-gold: #e5c158;

  /* Borders & Shadows */
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-gold-subtle: rgba(212, 175, 55, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  
  --glow-gold: 0 0 25px rgba(212, 175, 55, 0.22);
  --glow-gold-lg: 0 10px 40px rgba(212, 175, 55, 0.3);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-elevated: 0 20px 40px -15px rgba(0, 0, 0, 0.8);
  
  /* Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --container-max: 1240px;
  --nav-height: 80px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #171524 0%, var(--bg-primary) 70%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

.font-serif {
  font-family: var(--font-serif);
}

.text-gold {
  color: var(--gold-400);
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

.text-secondary {
  color: var(--text-secondary);
}

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

.container-narrow {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0b0b0d;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-outline-gold {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border-gold);
  color: var(--gold-300);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-400);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-300);
  border: 1px solid var(--border-gold-subtle);
}

.badge-verified {
  background: var(--emerald-bg);
  color: var(--emerald-500);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-diamond {
  background: linear-gradient(135deg, rgba(147, 197, 253, 0.15) 0%, rgba(219, 234, 254, 0.05) 100%);
  color: #93c5fd;
  border: 1px solid rgba(147, 197, 253, 0.3);
}

/* Navigation Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--border-gold-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: clamp(1.05rem, 3.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0b0d;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: var(--glow-gold);
}

.brand-logo .logo-text span {
  color: var(--gold-400);
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-300);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

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

/* Quick Join Card in Hero */
.hero-card-widget {
  background: var(--bg-glass);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-elevated), var(--glow-gold);
  position: relative;
}

.hero-card-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--gold-gradient);
}

.widget-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.widget-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.widget-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.quick-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.role-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

.role-btn {
  padding: 0.65rem 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.role-btn.active {
  background: var(--gold-gradient);
  color: #0d0d11;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.form-select, .form-input {
  background: rgba(10, 10, 15, 0.7);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition);
  width: 100%;
}

.form-select:focus, .form-input:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-select option {
  background: var(--bg-secondary);
  color: #ffffff;
}

.form-footer-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

/* Stats Counter Bar */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.2rem 0;
}

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

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-tag {
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Section Padding */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alt {
  background: var(--bg-secondary);
}

/* Profile Cards Grid */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.8rem;
}

.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.profile-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card), var(--glow-gold);
}

.profile-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 125%; /* 4:5 Aspect Ratio */
  overflow: hidden;
  background: #1e1e2d;
}

.profile-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-card:hover .profile-img {
  transform: scale(1.06);
}

.profile-badge-top {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.profile-status-online {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-500);
  box-shadow: 0 0 8px var(--emerald-500);
}

.profile-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.2) 50%, transparent 100%);
  pointer-events: none;
}

.profile-body {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.8rem;
}

.profile-header-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.profile-name {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.profile-city {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.profile-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--text-secondary);
}

.profile-bio-snippet {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.profile-footer {
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lifestyle-budget {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-300);
}

/* How It Works Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--border-gold-subtle);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-family: var(--font-serif);
  font-weight: 800;
  color: rgba(212, 175, 55, 0.12);
  line-height: 1;
}

.step-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

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

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

/* Australian Cities Hub Grid */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.8rem;
}

.city-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
}

.city-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card), var(--glow-gold);
}

.city-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 1;
}

.city-card:hover .city-bg-img {
  transform: scale(1.08);
}

.city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.4) 60%, rgba(10, 10, 15, 0.1) 100%);
  z-index: 2;
}

.city-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.city-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.city-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.city-count {
  font-size: 0.82rem;
  color: var(--gold-300);
  background: rgba(212, 175, 55, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold-subtle);
}

.city-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Discretion & Safety Banner */
.safety-highlight-box {
  background: linear-gradient(135deg, rgba(22, 22, 34, 0.9) 0%, rgba(14, 14, 22, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-elevated), var(--glow-gold);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.safety-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.safety-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.safety-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}

.safety-feature-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.safety-feature-text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Membership Pricing Cards */
.pricing-switcher-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.switch-toggle {
  position: relative;
  width: 58px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.switch-toggle.active {
  background: var(--gold-500);
}

.switch-toggle-circle {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  transition: var(--transition);
}

.switch-toggle.active .switch-toggle-circle {
  left: 31px;
  background: #0d0d11;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #1d1b2a 0%, #151422 100%);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-elevated), var(--glow-gold-lg);
  transform: scale(1.04);
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #0b0b0d;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-header {
  margin-bottom: 2rem;
  text-align: center;
}

.pricing-tier-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 1rem;
}

.pricing-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-400);
}

.pricing-amount {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.pricing-feature-item svg {
  color: var(--emerald-500);
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-feature-item.disabled {
  color: var(--text-muted);
  opacity: 0.5;
}

.pricing-feature-item.disabled svg {
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-gold-subtle);
  background: #1a1a28;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.4rem 1.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-300);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.6rem;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  transition: max-height 0.4s ease-in-out;
  padding-bottom: 1.4rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* Call to Action Banner */
.cta-section {
  position: relative;
  padding: 6rem 0;
}

.cta-card {
  background: linear-gradient(180deg, rgba(18, 17, 29, 0.85) 0%, rgba(10, 10, 15, 0.95) 100%),
              url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1920&q=85') center/cover no-repeat;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 4.5rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-elevated), var(--glow-gold-lg);
  position: relative;
  overflow: hidden;
}

.cta-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 2.2rem;
}

/* HD Elegant Couple Banner Component */
.luxury-banner-section {
  padding: 3.5rem 0 2rem;
  position: relative;
}

.luxury-couple-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  min-height: 460px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-elevated), var(--glow-gold);
}

.luxury-couple-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.88) contrast(1.08);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-couple-card:hover .luxury-couple-img {
  transform: scale(1.03);
}

.luxury-couple-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 10, 15, 0.96) 0%, rgba(10, 10, 15, 0.8) 45%, rgba(10, 10, 15, 0.3) 100%);
  z-index: 1;
}

.luxury-couple-content {
  position: relative;
  z-index: 2;
  padding: 4rem 3.5rem;
  max-width: 680px;
}

.luxury-couple-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.luxury-couple-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.luxury-couple-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .luxury-couple-card {
    min-height: 500px;
  }
  .luxury-couple-overlay {
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.45) 0%, rgba(10, 10, 15, 0.88) 50%, #0a0a0f 100%);
  }
  .luxury-couple-content {
    padding: 2.5rem 1.5rem;
    align-self: flex-end;
  }
}

/* Footer */
.site-footer {
  background: #07070b;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
  margin-top: auto;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 1.4rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--gold-300);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.5;
}

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-elevated), var(--glow-gold-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-backdrop.active .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* Multi-step join modal */
.join-step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.join-step-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.step-bubble {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.step-bubble.active {
  background: var(--gold-500);
  border-color: var(--gold-300);
  color: #0b0b0d;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.step-bubble.completed {
  background: var(--emerald-500);
  border-color: var(--emerald-500);
  color: #ffffff;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-elevated), var(--glow-gold);
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffffff;
  font-size: 0.92rem;
}

.toast.show {
  transform: translateX(0);
}

.toast-icon-wrap {
  color: var(--gold-400);
  display: flex;
}

/* Filter Search Bar & Catalog Page */
.browse-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  padding: 3rem 0 6rem;
}

.filter-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  height: fit-content;
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.filter-block-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.filter-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.filter-chip {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.filter-chip.active, .filter-chip:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-400);
  color: #ffffff;
}

/* Breadcrumbs (SEO/AEO standard) */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--text-secondary);
}

.breadcrumbs a:hover {
  color: var(--gold-300);
}

.breadcrumbs-separator {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* SEO Direct Answer Box (AEO) */
.aeo-answer-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 26, 38, 0.7) 100%);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
}

.aeo-answer-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-300);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.aeo-answer-content {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .safety-highlight-box {
    grid-template-columns: 1fr;
    padding: 2.2rem;
    gap: 2rem;
  }

  .browse-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: static;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-gold-subtle);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-elevated);
  }

  .nav-links.mobile-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: block;
  }

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

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

  .hero-section {
    padding: 3.5rem 0 4.5rem;
  }

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