/* ═══════════════════════════════════════════════════════════════
   SugarDaddy Singapore — Main Stylesheet
   sugar-daddy-singapore.com
   Design: Quiet Luxury / Private Members' Club Aesthetic
   ═══════════════════════════════════════════════════════════════ */

/* ─── 1. CSS CUSTOM PROPERTIES ───────────────────────────────── */
:root {
  --clr-bg: #121212;
  --clr-bg-2: #1A1714;
  --clr-bg-3: #221E1B;
  --clr-surface: #1F1B1A;
  --clr-surface-2: #2A2522;
  --clr-glass-bg: rgba(255, 255, 255, 0.04);
  --clr-glass-border: rgba(212, 175, 55, 0.15);
  --clr-gold: #D4AF37;
  --clr-gold-light: #E8C84A;
  --clr-gold-dark: #B8960F;
  --clr-rose-gold: #C9956C;
  --clr-text: #F0EDE9;
  --clr-text-muted: #9E9891;
  --clr-text-dim: #6B6560;
  --clr-white: #FFFFFF;
  --clr-border: rgba(255, 255, 255, 0.08);
  --clr-border-gold: rgba(212, 175, 55, 0.25);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.12);
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --header-h: 72px;
}

/* ─── 2. RESET & BASE ─────────────────────────────────────────── */
*,
*::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-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-text);
  background: var(--clr-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

body.nav-open {
  overflow: hidden
}

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

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

a:hover {
  color: var(--clr-gold-light)
}

ul,
ol {
  list-style: none
}

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

input,
select,
textarea {
  font-family: inherit
}

:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm)
}

::selection {
  background: rgba(212, 175, 55, 0.3);
  color: var(--clr-text)
}

/* ─── 3. UTILITIES ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad)
}

.section {
  padding-block: var(--space-2xl)
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-sm)
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-xl)
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--clr-text);
  margin-bottom: 1rem
}

.section-title em {
  font-style: italic;
  color: var(--clr-gold)
}

.section-sub {
  font-size: 1rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  margin-inline: auto
}

.section-cta {
  text-align: center;
  margin-top: var(--space-xl)
}

.hidden {
  display: none !important
}

.dark-section {
  background-color: var(--clr-bg-2)
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--clr-gold);
  text-transform: uppercase;
  transition: gap var(--transition-fast), color var(--transition-fast)
}

.read-more:hover {
  gap: 0.7em;
  color: var(--clr-gold-light)
}

/* ─── 4. GLASS CARD ──────────────────────────────────────────── */
.glass-card {
  background: var(--clr-glass-bg);
  border: 1px solid var(--clr-glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base)
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: var(--shadow-gold)
}

/* ─── 5. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.7em 1.6em;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--transition-fast)
}

.btn:hover svg {
  transform: translateX(3px)
}

.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: #0a0a0a;
  border-color: var(--clr-gold);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25)
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: #0a0a0a;
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.4);
  transform: translateY(-1px)
}

.btn-outline-gold {
  background: transparent;
  color: var(--clr-gold);
  border-color: var(--clr-gold)
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--clr-gold-light);
  border-color: var(--clr-gold-light)
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--clr-text);
  border-color: rgba(255, 255, 255, 0.15)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-text);
  border-color: rgba(255, 255, 255, 0.3)
}

.btn-lg {
  padding: 0.9em 2.2em;
  font-size: 0.85rem
}

.btn-full {
  width: 100%;
  justify-content: center
}

/* ─── 6. HEADER ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition-base), box-shadow var(--transition-base)
}

.site-header.scrolled {
  background: rgba(18, 18, 18, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5)
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-lg)
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  flex-shrink: 0
}

.logo-mark {
  color: var(--clr-gold);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform var(--transition-base)
}

.logo:hover .logo-mark {
  transform: rotate(90deg)
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-text);
  letter-spacing: 0.02em
}

.logo-text em {
  font-style: italic;
  color: var(--clr-gold)
}

.main-nav {
  flex: 1
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0
}

.main-nav a {
  display: block;
  padding: 0.4em 0.85em;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.85em;
  right: 0.85em;
  height: 1px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--clr-text)
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1)
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  margin-left: auto
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--clr-text);
  transition: all var(--transition-base);
  transform-origin: center
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 18, 18, 0.98);
  backdrop-filter: blur(20px);
  padding: var(--space-lg) var(--container-pad) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-slow) cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  height: 500px;
  border-bottom: 1px solid #fff;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.mobile-nav.open {
  transform: translateX(0)
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--clr-border)
}

.mobile-nav li a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--clr-text-muted);
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--transition-fast), padding-left var(--transition-fast)
}

.mobile-nav li a:hover {
  color: var(--clr-gold);
  padding-left: 0.75rem
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto
}

/* ─── 7. HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 10, 9, 0.92) 0%, rgba(12, 10, 9, 0.75) 50%, rgba(12, 10, 9, 0.6) 100%)
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-block: var(--space-3xl) var(--space-2xl)
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.45em 1.1em;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-md)
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--clr-gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {

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

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

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--clr-text);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em
}

.hero-headline em {
  font-style: italic;
  color: var(--clr-gold)
}

.hero-subhead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--clr-text-muted);
  max-width: 560px;
  margin-bottom: var(--space-lg);
  line-height: 1.8
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-xl)
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap
}

.stat {
  text-align: left
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--clr-text);
  line-height: 1
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  margin-top: 0.3em
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--clr-border)
}

.scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  z-index: 1;
  animation: float 3s ease-in-out infinite
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  animation: scroll-line 2s ease-in-out infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(6px)
  }
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

/* ─── 8. TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: var(--clr-surface);
  border-block: 1px solid var(--clr-border);
  padding-block: 1.25rem
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--clr-text-muted)
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--clr-gold);
  flex-shrink: 0
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--clr-border)
}

/* ─── 9. PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  overflow: hidden
}

.page-hero.inner-page-hero {
  min-height: 42vh
}

.page-hero.short-hero {
  min-height: 34vh
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-xl) var(--space-2xl);
  max-width: 740px
}

.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--clr-text);
  margin-bottom: 1rem
}

.page-hero-content h1 em {
  font-style: italic;
  color: var(--clr-gold)
}

.page-hero-content p {
  font-size: 1rem;
  color: var(--clr-text-muted);
  max-width: 520px;
  margin-bottom: var(--space-md);
  line-height: 1.8
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  margin-bottom: var(--space-sm)
}

.breadcrumb a {
  color: var(--clr-text-dim);
  transition: color var(--transition-fast)
}

.breadcrumb a:hover {
  color: var(--clr-gold)
}

.breadcrumb span:last-child {
  color: var(--clr-gold)
}

/* ─── 10. STEPS ──────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md)
}

.step-card {
  padding: var(--space-lg);
  position: relative
}

.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(212, 175, 55, 0.2);
  line-height: 1;
  margin-bottom: var(--space-sm)
}

.step-icon {
  width: 48px;
  height: 48px;
  color: var(--clr-gold);
  margin-bottom: var(--space-sm)
}

.step-icon svg {
  width: 100%;
  height: 100%
}

.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 0.75rem
}

.step-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7
}

/* ─── 11. FOR WHO ─────────────────────────────────────────────── */
.for-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md)
}

.for-who-card {
  overflow: hidden;
  position: relative
}

.for-who-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden
}

.for-who-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow)
}

.for-who-card:hover .for-who-img-wrap img {
  transform: scale(1.04)
}

.for-who-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(18, 18, 18, 0.9))
}

.for-who-body {
  padding: var(--space-lg)
}

.role-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  border: 1px solid var(--clr-border-gold);
  padding: 0.3em 0.8em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm)
}

.for-who-body h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 0.75rem
}

.for-who-body p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.7
}

.for-who-perks {
  margin-bottom: var(--space-md)
}

.for-who-perks li {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  padding: 0.4em 0;
  border-bottom: 1px solid var(--clr-border)
}

.for-who-perks li:last-child {
  border-bottom: none
}

/* ─── 12. AI CURATED ─────────────────────────────────────────── */
.ai-curated-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center
}

.ai-curated-text .section-title {
  text-align: left
}

.ai-curated-text p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.8
}

.ai-feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg)
}

.ai-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm)
}

.ai-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md)
}

.ai-feature-list li div strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 0.2em
}

.ai-feature-list li div span {
  font-size: 0.85rem;
  color: var(--clr-text-muted)
}

.match-card {
  padding: var(--space-md)
}

.match-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md)
}

.match-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #4ADE80
}

.match-badge.pulse {
  animation: pulse-text 2s ease-in-out infinite
}

@keyframes pulse-text {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.6
  }
}

.match-count {
  font-size: 0.7rem;
  color: var(--clr-text-dim)
}

.match-profiles {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md)
}

.match-profile {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border)
}

.profile-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--clr-surface-2);
  border: 1.5px solid var(--clr-border-gold)
}

.profile-info strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.2
}

.profile-info span {
  font-size: 0.7rem;
  color: var(--clr-text-dim)
}

.compatibility-bar {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-gold-dark), var(--clr-gold));
  border-radius: var(--radius-full)
}

.compat-num {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--clr-gold);
  min-width: 30px;
  text-align: right
}

/* ─── 13. PRICING ────────────────────────────────────────────── */
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: 4px;
  width: fit-content;
  margin-inline: auto
}

.pricing-tab {
  padding: 0.55em 2em;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  background: transparent;
  border: none;
  cursor: pointer
}

.pricing-tab.active {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: #0a0a0a;
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.3)
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 900px;
  margin-inline: auto
}

.pricing-grid.standalone {
  max-width: 900px
}

.price-card {
  padding: var(--space-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base)
}

.price-card:hover {
  transform: translateY(-4px)
}

.price-card.featured {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.1)
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: #0a0a0a;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3em 1em;
  border-radius: var(--radius-full);
  white-space: nowrap
}

.price-plan-name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-dim)
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--clr-text);
  line-height: 1
}

.currency {
  font-size: 1.4rem;
  vertical-align: super;
  color: var(--clr-gold)
}

.price-period {
  font-size: 1.2rem;
  color: var(--clr-text-muted)
}

.price-per {
  font-size: 0.8rem;
  color: var(--clr-text-dim)
}

.price-total {
  font-size: 0.78rem;
  color: var(--clr-gold);
  font-weight: 500
}

.price-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-block: var(--space-sm);
  border-block: 1px solid var(--clr-border)
}

.price-features li {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  padding-left: 1.2em;
  position: relative
}

.price-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--clr-gold);
  font-size: 0.55rem;
  top: 0.35em
}

.pricing-note {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 0.85rem;
  color: var(--clr-text-muted)
}

/* ─── 14. TESTIMONIALS ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md)
}

.testimonial-card {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm)
}

.stars {
  color: var(--clr-gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.7;
  flex: 1
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--clr-border)
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-rose-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #0a0a0a;
  font-weight: 600;
  flex-shrink: 0
}

.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.2
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--clr-text-dim)
}

/* ─── 15. BLOG CARDS ─────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md)
}

.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.blog-img-wrap {
  height: 200px;
  overflow: hidden
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow)
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.05)
}

.blog-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1
}

.blog-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold)
}

.blog-body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.35
}

.blog-body h3 a {
  color: var(--clr-text);
  transition: color var(--transition-fast)
}

.blog-body h3 a:hover {
  color: var(--clr-gold)
}

.blog-body p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  flex: 1
}

/* ─── 16. FINAL CTA ──────────────────────────────────────────── */
.final-cta-inner {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem);
  max-width: 700px;
  margin-inline: auto;
  position: relative;
  overflow: hidden
}

.final-cta-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none
}

.final-cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--clr-text);
  margin-bottom: 1rem;
  line-height: 1.2
}

.final-cta-inner p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  line-height: 1.8
}

.cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-sm)
}

.cta-disclaimer {
  font-size: 0.72rem;
  color: var(--clr-text-dim);
  margin-top: var(--space-sm) !important
}

.cta-disclaimer a {
  color: var(--clr-text-dim);
  text-decoration: underline;
  text-underline-offset: 2px
}

/* ─── 17. FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-2xl)
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--clr-border)
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
  max-width: 300px
}

.footer-social {
  display: flex;
  gap: 0.75rem
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  color: var(--clr-text-muted);
  transition: all var(--transition-base)
}

.social-link:hover {
  border-color: var(--clr-border-gold);
  color: var(--clr-gold);
  background: rgba(212, 175, 55, 0.06)
}

.footer-links-group h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  margin-bottom: var(--space-md)
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem
}

.footer-links-group a {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-fast)
}

.footer-links-group a:hover {
  color: var(--clr-gold);
  padding-left: 0.3em
}

.footer-bottom {
  padding-block: var(--space-md)
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--clr-text-dim)
}

.footer-legal {
  max-width: 700px;
  line-height: 1.6
}

.footer-legal a {
  color: var(--clr-text-dim);
  text-decoration: underline;
  text-underline-offset: 2px
}

/* ─── 18. STICKY CTA ─────────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem var(--container-pad) calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(18, 18, 18, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--clr-border);
  z-index: 900
}

/* ─── 19. CONTENT TWO-COL ────────────────────────────────────── */
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center
}

.content-two-col.reverse {
  direction: rtl
}

.content-two-col.reverse>* {
  direction: ltr
}

.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  height: 400px
}

.img-frame.tall {
  height: 520px
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow)
}

.img-frame:hover img {
  transform: scale(1.03)
}

.img-frame::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-top: 1.5px solid var(--clr-gold);
  border-left: 1.5px solid var(--clr-gold);
  pointer-events: none
}

.img-frame::before {
  content: '';
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-bottom: 1.5px solid var(--clr-gold);
  border-right: 1.5px solid var(--clr-gold);
  pointer-events: none;
  z-index: 1
}

.content-text-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm)
}

.content-text-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--clr-text);
  line-height: 1.2
}

.content-text-col h2 em {
  font-style: italic;
  color: var(--clr-gold)
}

.content-text-col p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.8
}

.content-text-col strong {
  color: var(--clr-text)
}

/* ─── 20. BENEFITS ───────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md)
}

.benefit-card {
  padding: var(--space-md)
}

.benefit-icon {
  font-size: 2rem;
  color: var(--clr-gold);
  margin-bottom: var(--space-sm);
  height: 48px;
  display: flex;
  align-items: center
}

.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 0.5rem
}

.benefit-card p {
  font-size: 0.87rem;
  color: var(--clr-text-muted);
  line-height: 1.7
}

.benefit-card p a {
  color: var(--clr-gold)
}

/* ─── 21. NUMBERED STEPS ─────────────────────────────────────── */
.numbered-steps {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0
}

.num-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  padding-block: var(--space-lg);
  border-bottom: 1px solid var(--clr-border)
}

.num-step:last-child {
  border-bottom: none
}

.num-step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(212, 175, 55, 0.2);
  line-height: 1;
  text-align: right;
  padding-top: 0.1em
}

.num-step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 0.5rem
}

.num-step-content p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.8
}

/* ─── 22. GALLERY ────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm)
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  aspect-ratio: 3/4;
  cursor: pointer
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow)
}

.gallery-item:hover img {
  transform: scale(1.07)
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.9), transparent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  transform: translateY(4px);
  transition: transform var(--transition-base)
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0)
}

/* ─── 23. FAQ ─────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm)
}

.faq-item {
  overflow: hidden
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--clr-text);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  border: none
}

.faq-q::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--clr-gold);
  font-weight: 300;
  transition: transform var(--transition-base)
}

.faq-q[aria-expanded="true"] {
  color: var(--clr-gold)
}

.faq-q[aria-expanded="true"]::after {
  transform: rotate(45deg)
}

.faq-a {
  padding: 0 var(--space-md) var(--space-md);
  border-top: 1px solid var(--clr-border)
}

.faq-a p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  padding-top: var(--space-sm)
}

.faq-a p a {
  color: var(--clr-gold)
}

/* ─── 24. PERSONA GRID ───────────────────────────────────────── */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md)
}

.persona-card {
  padding: var(--space-md);
  text-align: center
}

.persona-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  display: block
}

.persona-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 0.5rem
}

.persona-card p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.7
}

/* ─── 25. SAFETY HIGHLIGHT ───────────────────────────────────── */
.safety-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xl);
  align-items: start;
  padding: var(--space-xl)
}

.safety-icon-large {
  color: var(--clr-gold);
  flex-shrink: 0
}

.safety-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 1rem
}

.safety-text p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md)
}

.safety-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md)
}

.safety-checklist li {
  font-size: 0.87rem;
  color: var(--clr-text-muted)
}

/* ─── 26. VALUES & NUMBERS ───────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md)
}

.value-card {
  padding: var(--space-md)
}

.value-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(212, 175, 55, 0.25);
  line-height: 1;
  margin-bottom: 0.5rem
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 0.5rem
}

.value-card p {
  font-size: 0.87rem;
  color: var(--clr-text-muted);
  line-height: 1.7
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md)
}

.number-card {
  padding: var(--space-md);
  text-align: center
}

.big-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 0.5rem
}

.number-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 0.5rem
}

.number-card p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.6
}

/* ─── 27. ABOUT DIFF LIST ────────────────────────────────────── */
.about-diff-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-block: var(--space-sm)
}

.about-diff-list li {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start
}

.diff-icon {
  color: var(--clr-gold);
  font-size: 0.7rem;
  padding-top: 0.2em;
  flex-shrink: 0
}

.about-diff-list li div strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 0.25em
}

.about-diff-list li div p {
  font-size: 0.85rem;
  color: var(--clr-text-muted)
}

/* ─── 28. TEAM ───────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md)
}

.team-card {
  padding: var(--space-md);
  text-align: center
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--clr-border-gold);
  margin-inline: auto;
  margin-bottom: var(--space-sm);
  background: var(--clr-surface-2)
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.team-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 0.25rem
}

.team-role {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.75rem
}

.team-card p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.7
}

/* ─── 29. COMPLIANCE ─────────────────────────────────────────── */
.compliance-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: start;
  padding: var(--space-xl)
}

.compliance-icon {
  font-size: 3rem;
  flex-shrink: 0
}

.compliance-text h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: var(--space-sm)
}

.compliance-text p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-sm)
}

.compliance-text strong {
  color: var(--clr-text)
}

.compliance-text a {
  color: var(--clr-gold)
}

/* ─── 30. CONTACT ────────────────────────────────────────────── */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md)
}

.channel-card {
  padding: var(--space-md);
  text-align: center
}

.channel-icon {
  color: var(--clr-gold);
  margin-bottom: var(--space-sm);
  display: flex;
  justify-content: center
}

.channel-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 0.5rem
}

.channel-card p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm)
}

.contact-link {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-gold);
  word-break: break-all
}

.contact-link.small {
  font-size: 0.78rem
}

.channel-note {
  display: block;
  font-size: 0.7rem;
  color: var(--clr-text-dim);
  margin-top: 0.4em
}

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-2xl);
  align-items: start
}

.contact-form-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 1rem
}

.contact-form-text>p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg)
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-lg)
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--clr-text-muted)
}

.contact-info-item svg {
  color: var(--clr-gold);
  flex-shrink: 0
}

.contact-faq-links {
  padding: var(--space-md);
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--clr-border-gold);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--clr-text-muted)
}

.contact-faq-links a {
  color: var(--clr-gold)
}

.contact-form-container {
  padding: var(--space-xl)
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md)
}

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

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted)
}

.form-group label span {
  color: var(--clr-gold)
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8em 1em;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  color: var(--clr-text);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
  appearance: none
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B6560' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 16px;
  padding-right: 2.5em;
  background-color: rgba(255, 255, 255, 0.04);
  cursor: pointer
}

.form-group select option {
  background: var(--clr-bg-3);
  color: var(--clr-text)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clr-text-dim)
}

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

.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  padding: 0;
  margin-top: 0.1em;
  accent-color: var(--clr-gold);
  cursor: pointer
}

.form-check label {
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.6;
  font-weight: 400;
  color: var(--clr-text-muted)
}

.form-check label a {
  color: var(--clr-gold)
}

.form-success-msg,
.form-error-msg {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  line-height: 1.6
}

.form-success-msg {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: #4ADE80;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem
}

.success-icon {
  color: #4ADE80;
  flex-shrink: 0
}

.form-error-msg {
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.25);
  color: #F87171
}

.form-error-msg a {
  color: #F87171;
  text-decoration: underline
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md)
}

.dept-card {
  padding: var(--space-md)
}

.dept-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: block
}

.dept-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 0.5rem
}

.dept-card p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem
}

.dept-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4ADE80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  padding: 0.2em 0.7em;
  border-radius: var(--radius-full);
  margin-top: 0.5rem
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md)
}

.quick-link-card {
  padding: var(--space-md);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all var(--transition-base)
}

.quick-link-card:hover {
  transform: translateY(-3px)
}

.quick-icon {
  font-size: 2rem;
  display: block
}

.quick-link-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--clr-text);
  transition: color var(--transition-fast)
}

.quick-link-card:hover h3 {
  color: var(--clr-gold)
}

.quick-link-card p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.6
}

/* ─── 31. APP PAGE ───────────────────────────────────────────── */
.app-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center
}

.app-phone-wrap {
  display: flex;
  justify-content: center;
  gap: var(--space-sm)
}

.app-phone {
  width: 380px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 32px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden
}

.app-phone img {
  border-radius: 24px;
  width: 100%
}

.app-phone.floated {
  transform: translateY(30px);
  margin-top: -30px
}

.app-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: var(--space-md)
}

.app-badge-btn {
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.65em 1.2em;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base)
}

.app-badge-btn:hover {
  border-color: var(--clr-border-gold);
  background: rgba(212, 175, 55, 0.06)
}

.app-badge-btn .badge-icon {
  font-size: 1.5rem;
  line-height: 1
}

.app-badge-btn .badge-txt small {
  display: block;
  font-size: 0.62rem;
  color: var(--clr-text-dim);
  letter-spacing: 0.04em
}

.app-badge-btn .badge-txt strong {
  display: block;
  font-size: 0.88rem;
  color: var(--clr-text);
  font-weight: 600
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-block: var(--space-md)
}

.feature-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--space-sm);
  align-items: start
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.2rem;
  flex-shrink: 0
}

.feature-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 0.2em
}

.feature-item p {
  font-size: 0.83rem;
  color: var(--clr-text-muted);
  line-height: 1.6
}

/* ─── 32. SAFETY PAGE ────────────────────────────────────────── */
.safety-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md)
}

.pillar-card {
  padding: var(--space-lg);
  text-align: center
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(212, 175, 55, 0.2);
  line-height: 1;
  margin-bottom: var(--space-sm)
}

.pillar-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 0.5rem
}

.pillar-card p {
  font-size: 0.87rem;
  color: var(--clr-text-muted);
  line-height: 1.7
}

.safety-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md)
}

.tip-card {
  padding: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start
}

.tip-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--clr-gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem
}

.tip-content h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 0.4rem
}

.tip-content p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.7
}

/* ─── 33. BLOG ARTICLE ───────────────────────────────────────── */
.blog-article {
  max-width: 800px;
  margin-inline: auto;
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: var(--space-2xl)
}

.blog-article:last-child {
  border-bottom: none;
  margin-bottom: 0
}

.article-header {
  margin-bottom: var(--space-lg)
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
  flex-wrap: wrap
}

.article-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  border: 1px solid var(--clr-border-gold);
  padding: 0.25em 0.7em;
  border-radius: var(--radius-full)
}

.article-date,
.article-read {
  font-size: 0.75rem;
  color: var(--clr-text-dim)
}

.article-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--clr-text);
  line-height: 1.2;
  margin-bottom: 0.75rem
}

.article-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  margin-bottom: var(--space-lg)
}

.article-body {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.9
}

.article-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-block: var(--space-lg) var(--space-sm)
}

.article-body p {
  margin-bottom: var(--space-sm)
}

.article-body strong {
  color: var(--clr-text)
}

.article-body a {
  color: var(--clr-gold);
  text-decoration: underline;
  text-underline-offset: 2px
}

.article-body ul,
.article-body ol {
  list-style: none;
  margin-block: var(--space-sm);
  padding-left: var(--space-sm)
}

.article-body li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5rem
}

.article-body li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--clr-gold);
  font-size: 0.55rem;
  top: 0.45em
}

.article-body blockquote {
  border-left: 2px solid var(--clr-gold);
  padding-left: var(--space-md);
  margin-block: var(--space-md);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--clr-text)
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--clr-border)
}

.article-tag {
  font-size: 0.7rem;
  color: var(--clr-text-dim);
  border: 1px solid var(--clr-border);
  padding: 0.25em 0.75em;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast)
}

.article-tag:hover {
  border-color: var(--clr-border-gold);
  color: var(--clr-gold)
}

/* ─── 34. LEGAL ──────────────────────────────────────────────── */
.legal-page {
  max-width: 780px;
  margin-inline: auto;
  padding-block: var(--space-2xl)
}

.legal-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--clr-text);
  margin-bottom: 0.5rem
}

.legal-page .last-updated {
  font-size: 0.8rem;
  color: var(--clr-text-dim);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--clr-border)
}

.legal-page h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-block: var(--space-lg) var(--space-sm)
}

.legal-page p,
.legal-page li {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-sm)
}

.legal-page ul,
.legal-page ol {
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm)
}

.legal-page ul li {
  list-style: none;
  position: relative;
  padding-left: 1.2em
}

.legal-page ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--clr-gold)
}

.legal-page ol {
  list-style: decimal;
  color: var(--clr-text-muted)
}

.legal-page a {
  color: var(--clr-gold)
}

/* ─── 35. ANIMATIONS ─────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0)
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s
}

[data-reveal-delay="2"] {
  transition-delay: 0.2s
}

[data-reveal-delay="3"] {
  transition-delay: 0.3s
}

[data-reveal-delay="4"] {
  transition-delay: 0.4s
}

[data-reveal-delay="5"] {
  transition-delay: 0.5s
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.btn-loading::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4em
}

/* ─── 36. RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:1100px) {

  .main-nav,
  .header-actions {
    display: none
  }

  .hamburger {
    display: flex
  }

  .sticky-cta {
    display: block
  }

  body {
    padding-bottom: 72px
  }

  .steps-grid,
  .for-who-grid,
  .ai-curated-inner {
    grid-template-columns: 1fr
  }

  .ai-curated-inner {
    gap: var(--space-xl)
  }

  .content-two-col {
    grid-template-columns: 1fr;
    gap: var(--space-xl)
  }

  .content-two-col.reverse {
    direction: ltr
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg)
  }

  .numbers-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .channels-grid,
  .dept-grid,
  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

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

  .gallery-item {
    aspect-ratio: 4/3
  }

  .testimonials-grid,
  .blog-grid,
  .benefits-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .safety-inner,
  .compliance-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md)
  }

  .contact-form-wrap {
    grid-template-columns: 1fr
  }

  .safety-pillars-grid,
  .safety-tips-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:768px) {
  :root {
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem
  }

  .section {
    padding-block: var(--space-xl)
  }

  .app-showcase {
    display: block;
  }

  .app-phone {
    width: 280px
  }

  .hero-content {
    padding-block: var(--space-xl) var(--space-xl)
  }

  .hero-headline {
    font-size: clamp(2.2rem, 9vw, 3.5rem)
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center
  }

  .hero-stats {
    gap: var(--space-md)
  }

  .stat-num {
    font-size: 1.5rem
  }

  .for-who-grid {
    grid-template-columns: 1fr
  }

  .for-who-img-wrap {
    height: 220px
  }

  .testimonials-grid,
  .blog-grid,
  .benefits-grid,
  .values-grid,
  .numbers-grid,
  .team-grid,
  .channels-grid,
  .dept-grid,
  .quick-links-grid,
  .persona-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr
  }

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

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

  .cta-btns {
    flex-direction: column;
    align-items: center
  }

  .pricing-grid {
    max-width: 100%;
    grid-template-columns: 1fr
  }

  .trust-inner {
    flex-direction: column;
    gap: var(--space-sm)
  }

  .trust-divider {
    width: 60px;
    height: 1px
  }

  .scroll-hint {
    display: none
  }

  .img-frame {
    height: 280px
  }

  .img-frame.tall {
    height: 320px
  }

  .app-phone-wrap {
    flex-direction: column;
    align-items: center
  }

  .app-phone.floated {
    transform: none;
    margin-top: 0
  }
}

@media(max-width:480px) {
  .hero-badge {
    font-size: 0.6rem
  }

  .hero-headline {
    font-size: clamp(1.9rem, 10vw, 2.6rem)
  }

  .section-title {
    font-size: clamp(1.7rem, 8vw, 2.2rem)
  }

  .page-hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem)
  }

  .pricing-toggle-wrap {
    flex-direction: column;
    width: 100%;
    max-width: 280px
  }

  .gallery-grid {
    grid-template-columns: 1fr
  }

  .hero-stats {
    flex-direction: column;
    align-items: center
  }

  .stat-divider {
    width: 40px;
    height: 1px
  }
}