/* ==========================================================
   APEX MARKETING AGENCY — PREMIUM GLOBAL CSS v2
   10x Upgrade: richer typography, micro-animations, polish
========================================================== */

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

:root {
  --bg: #FAFAF8;
  --bg-2: #F5F2EE;
  --bg-3: #EDE8E0;
  --gold: #C9A96E;
  --gold-light: #D4BA8A;
  --gold-dark: #B8935A;
  --gold-glow: rgba(201, 169, 110, 0.15);
  --ink:        #0D0D0D;
  --ink-2:      #171717;
  --ink-3:      #252525;
  --ink-border: rgba(255,255,255,0.1);
  --ink-text:   rgba(247,244,239,0.85);
  --forest: #2C3E35;
  --forest-deep: #1A2A22;
  --text: #1C1C1C;
  --text-2: #6B6B6B;
  --text-3: #999999;
  --border: #E8E3DC;
  --border-light: #F0EDE8;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.12);
  --shadow-gold: 0 10px 40px rgba(201, 169, 110, 0.25);

  --font-hero:    'Cormorant Garamond', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;
  --font-label:   'Inter', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  opacity: 0;
  animation: bodyFadeIn 0.4s 0.1s ease forwards;
}

@keyframes bodyFadeIn { to { opacity: 1; } }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }

::selection { background: var(--gold-glow); color: var(--forest); }

/* ── TYPOGRAPHY ────────────────────────────────────────── */
h1, .hero-heading {
  font-family: var(--font-hero);
  font-weight: 600;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h2, .section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; }
h4 { font-family: var(--font-body); font-weight: 600; line-height: 1.3; }

p { color: var(--text-2); line-height: 1.7; }

.overline {
  font-family: var(--font-label);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.7rem;
  color: var(--gold);
  display: inline-block;
}

.sub-text {
  font-size: 1.125rem;
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
}

/* ── LAYOUT ────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-wide { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

section { position: relative; }

.py-section { padding: 120px 0; }
.py-section-sm { padding: 80px 0; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-60 { margin-top: 60px; }
.mt-80 { margin-top: 80px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

.bg-light { background-color: var(--bg); }
.bg-cream { background-color: var(--bg-2); }
.bg-warm { background-color: var(--bg-3); }
.bg-forest { background-color: var(--forest); }
.bg-forest-deep { background-color: var(--forest-deep); }
.bg-white { background-color: var(--white); }
.bg-ink  { background-color: var(--ink); }
.bg-ink-2 { background-color: var(--ink-2); }

/* ── DARK SECTION TOKENS ───────────────────────────────── */
.bg-ink .overline { color: var(--gold); opacity: 0.9; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #F7F4EF; }
.bg-ink p, .bg-ink .sub-text { color: rgba(247,244,239,0.6); }
.bg-ink .marquee-inner span { color: var(--gold-light); letter-spacing: 3px; }
.bg-ink .nav-logo { color: #F7F4EF; }
.bg-ink .nav-link { color: rgba(247,244,239,0.65); }
.bg-ink .nav-link:hover { color: #F7F4EF; }
.bg-ink .scroll-indicator svg { stroke: rgba(247,244,239,0.3); }

/* ── GRID SYSTEM ───────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 6px;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover::before { left: 100%; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.btn-ghost {
  background: none;
  color: var(--gold);
  border: none;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

.btn-white {
  background: white;
  color: var(--forest);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ── BADGES ────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.badge-solid {
  background: var(--gold);
  color: white;
  border: none;
}

.badge-sm {
  padding: 4px 12px;
  font-size: 0.6rem;
}

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  border: 1px solid var(--border-light);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-elevated {
  box-shadow: var(--shadow-md);
  border: none;
}

.card-gold-border { border-left: 3px solid var(--gold); }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.card-icon-gold { background: var(--gold-glow); }
.card-icon-sage { background: rgba(139, 174, 154, 0.15); }
.card-icon-forest { background: rgba(44, 62, 53, 0.1); }

/* ── NAVIGATION ────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 0;
  z-index: 1000;
  transition: all 0.4s var(--ease-out);
  background: transparent;
  /* Default: over dark hero — use light colours */
}
.navbar .nav-logo { color: #F7F4EF; }
.navbar .nav-link { color: rgba(247,244,239,0.65); }
.navbar .nav-link:hover { color: #F7F4EF; }
.navbar .menu-toggle span { background-color: #F7F4EF; }

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}
.navbar.scrolled .nav-logo { color: var(--text); }
.navbar.scrolled .nav-link { color: var(--text-2); }
.navbar.scrolled .nav-link:hover { color: var(--text); }
.navbar.scrolled .menu-toggle span { background-color: var(--text); }

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

.nav-logo {
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--text);
  letter-spacing: 0.03em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-2);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold); }

.nav-cta { padding: 10px 24px; font-size: 0.7rem; }

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: all; }
.mobile-menu-overlay a {
  font-family: var(--font-hero);
  font-size: 2rem;
  color: var(--text);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--text);
  transition: 0.3s;
  position: absolute;
  left: 0;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

/* ── CUSTOM CURSOR (FIXED - no lag) ────────────────────── */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(201, 169, 110, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  will-change: transform;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}
.cursor-dot.hovering {
  width: 12px;
  height: 12px;
  background: var(--gold);
}
.cursor-ring.hovering {
  width: 50px;
  height: 50px;
  border-color: var(--gold);
}

/* Keep native cursor everywhere as fallback */
body, a, button, input, select, textarea { cursor: auto; }

/* Only hide cursor when our custom cursor is active (class added by JS)*/
body.custom-cursor-active { cursor: none; }
body.custom-cursor-active a,
body.custom-cursor-active button,
body.custom-cursor-active input { cursor: none; }

/* ── GSAP ANIMATION CLASSES ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(50px); }
.reveal-left { opacity: 0; transform: translateX(-50px); }
.reveal-right { opacity: 0; transform: translateX(50px); }
.reveal-scale { opacity: 0; transform: scale(0.95); }

/* ── HEADING UNDERLINE DRAW ────────────────────────────── */
.heading-draw { position: relative; display: inline-block; }
.heading-draw::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transition: width 1s var(--ease-out);
}
.heading-draw.active::after { width: 100%; }

/* ── DECORATIVE ELEMENTS ───────────────────────────────── */
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 50%, transparent 100%);
}

/* Subtle noise texture overlay */
.noise-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── FLOATING CTA ──────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  padding: 14px 24px;
  box-shadow: var(--shadow-lg);
  animation: floatPulse 3s ease-in-out infinite;
}
@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ── TRUST MARQUEE ─────────────────────────────────────── */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
}
.marquee-inner {
  display: inline-flex;
  animation: marqueeScroll 40s linear infinite;
}
.marquee-inner span {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  color: var(--text-3);
  text-transform: uppercase;
  padding: 0 24px;
}
.marquee-inner span::before {
  content: '·';
  margin-right: 24px;
  color: var(--gold);
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--ease-out);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testimonial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
}
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-3);
}

/* ── PORTFOLIO / TEMPLATE GALLERY ──────────────────────── */
.template-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--ease-out);
  background: white;
}
.template-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.template-preview {
  height: 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── CSS MINI SITE MOCKUP ───────────────────────────────── */
/* Browser chrome wrapper */
.mockup-browser {
  width: 88%;
  height: 88%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
  position: relative;
}

.mockup-chrome {
  height: 18px;
  min-height: 18px;
  background: #E8E3DC;
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
  flex-shrink: 0;
}
.mockup-chrome-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.mockup-chrome-dot:nth-child(1) { background: #FF5F57; }
.mockup-chrome-dot:nth-child(2) { background: #FFBD2E; }
.mockup-chrome-dot:nth-child(3) { background: #28C840; }
.mockup-chrome-bar {
  flex: 1;
  height: 8px;
  background: rgba(0,0,0,0.08);
  border-radius: 4px;
  margin: 0 6px;
}

.mockup-site {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Mini nav inside mockup */
.mockup-nav {
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  flex-shrink: 0;
}
.mockup-logo {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  opacity: 0.7;
}
.mockup-nav-links {
  display: flex;
  gap: 5px;
}
.mockup-nav-link {
  width: 16px;
  height: 3px;
  border-radius: 2px;
  opacity: 0.3;
}
.mockup-nav-cta {
  width: 22px;
  height: 7px;
  border-radius: 3px;
}

/* Mini hero inside mockup */
.mockup-hero {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10px;
  gap: 4px;
  position: relative;
  overflow: hidden;
}
.mockup-hero-tag {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  opacity: 0.5;
}
.mockup-hero-h1 {
  width: 80%;
  height: 5px;
  border-radius: 2px;
}
.mockup-hero-h1-2 {
  width: 60%;
  height: 5px;
  border-radius: 2px;
}
.mockup-hero-sub {
  width: 70%;
  height: 3px;
  border-radius: 2px;
  opacity: 0.4;
  margin-top: 2px;
}
.mockup-hero-sub-2 {
  width: 55%;
  height: 3px;
  border-radius: 2px;
  opacity: 0.3;
}
.mockup-hero-btn {
  width: 32px;
  height: 8px;
  border-radius: 3px;
  margin-top: 4px;
}

/* Mini content section inside mockup */
.mockup-section {
  flex: 1;
  display: flex;
  gap: 5px;
  padding: 6px 10px;
  align-items: flex-start;
}
.mockup-card-mini {
  flex: 1;
  height: 100%;
  border-radius: 4px;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mockup-card-line {
  height: 3px;
  border-radius: 2px;
  opacity: 0.5;
}
.mockup-card-line.short { width: 50%; }
.mockup-card-line.medium { width: 70%; }
.mockup-card-line.long { width: 90%; }

/* ── IVORY CLINIC (light warm blush) ──────────────────── */
.mockup-ivory .mockup-chrome { background: #F5EFE8; }
.mockup-ivory .mockup-site { background: #FDFAF7; }
.mockup-ivory .mockup-nav { background: #FDFAF7; }
.mockup-ivory .mockup-logo { background: #2C3E35; }
.mockup-ivory .mockup-nav-link { background: #1C1C1C; }
.mockup-ivory .mockup-nav-cta { background: #C9A96E; }
.mockup-ivory .mockup-hero { background: linear-gradient(135deg, #1A2A22 0%, #2C3E35 100%); }
.mockup-ivory .mockup-hero-tag { background: #C9A96E; }
.mockup-ivory .mockup-hero-h1 { background: #F7F4EF; }
.mockup-ivory .mockup-hero-h1-2 { background: #F7F4EF; }
.mockup-ivory .mockup-hero-sub { background: #F7F4EF; }
.mockup-ivory .mockup-hero-sub-2 { background: #F7F4EF; }
.mockup-ivory .mockup-hero-btn { background: #C9A96E; }
.mockup-ivory .mockup-section { background: #FDFAF7; }
.mockup-ivory .mockup-card-mini { background: #F5EFE8; }
.mockup-ivory .mockup-card-line { background: #2C3E35; }

/* ── PEARL MEDSPA (blush / rose) ───────────────────────── */
.mockup-pearl .mockup-chrome { background: #F2E8EC; }
.mockup-pearl .mockup-site { background: #FFF8FA; }
.mockup-pearl .mockup-nav { background: #FFF8FA; }
.mockup-pearl .mockup-logo { background: #1C1C1C; }
.mockup-pearl .mockup-nav-link { background: #1C1C1C; }
.mockup-pearl .mockup-nav-cta { background: #C4788A; }
.mockup-pearl .mockup-hero { background: linear-gradient(135deg, #0D0D0D 0%, #1a0a10 100%); }
.mockup-pearl .mockup-hero-tag { background: #D4A0AC; }
.mockup-pearl .mockup-hero-h1 { background: #F7F4EF; }
.mockup-pearl .mockup-hero-h1-2 { background: rgba(247,244,239,0.7); }
.mockup-pearl .mockup-hero-sub { background: rgba(247,244,239,0.5); }
.mockup-pearl .mockup-hero-sub-2 { background: rgba(247,244,239,0.35); }
.mockup-pearl .mockup-hero-btn { background: #C4788A; }
.mockup-pearl .mockup-section { background: #FFF8FA; }
.mockup-pearl .mockup-card-mini { background: #F9EDF0; }
.mockup-pearl .mockup-card-line { background: #C4788A; }

/* ── STEEL TRADES (dark industrial) ───────────────────── */
.mockup-steel .mockup-chrome { background: #2A2A2A; }
.mockup-steel .mockup-site { background: #1C1C1C; }
.mockup-steel .mockup-nav { background: #1C1C1C; }
.mockup-steel .mockup-logo { background: #F5A623; }
.mockup-steel .mockup-nav-link { background: rgba(255,255,255,0.4); }
.mockup-steel .mockup-nav-cta { background: #F5A623; }
.mockup-steel .mockup-hero { background: linear-gradient(135deg, #111 0%, #2A2A2A 100%); }
.mockup-steel .mockup-hero-tag { background: #F5A623; }
.mockup-steel .mockup-hero-h1 { background: #FFFFFF; }
.mockup-steel .mockup-hero-h1-2 { background: rgba(255,255,255,0.8); }
.mockup-steel .mockup-hero-sub { background: rgba(255,255,255,0.45); }
.mockup-steel .mockup-hero-sub-2 { background: rgba(255,255,255,0.3); }
.mockup-steel .mockup-hero-btn { background: #F5A623; }
.mockup-steel .mockup-section { background: #252525; }
.mockup-steel .mockup-card-mini { background: #1C1C1C; border: 1px solid rgba(255,255,255,0.08); }
.mockup-steel .mockup-card-line { background: rgba(245,166,35,0.6); }

/* ── FOUNDING PRICING BANNER ────────────────────────────── */
.founding-banner {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 100%);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 12px;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.founding-banner-text {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(247,244,239,0.85);
}
.founding-banner-text strong { color: var(--gold); }
.founding-banner-spots {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(201,169,110,0.6);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ── 7-DAY MILESTONE TRACKER ────────────────────────────── */
.milestone-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.milestone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 160px;
  position: relative;
  z-index: 1;
}

.milestone-connector {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,169,110,0.2) 100%);
  align-self: flex-start;
  margin-top: 22px;
  opacity: 0.4;
}
.milestone-connector.active { opacity: 1; background: var(--gold); }

.milestone-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-hero);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-3);
  margin-bottom: 14px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.milestone-item:hover .milestone-dot {
  border-color: var(--gold);
  box-shadow: 0 0 0 6px var(--gold-glow);
  color: var(--gold);
}
.milestone-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}
.milestone-day {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.milestone-title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  text-align: center;
}
.milestone-desc {
  font-size: 0.75rem;
  color: var(--text-3);
  text-align: center;
  line-height: 1.5;
  max-width: 120px;
}

@media (max-width: 768px) {
  .milestone-track { flex-direction: column; align-items: center; gap: 24px; }
  .milestone-connector { width: 1px; height: 24px; margin: 0; background: linear-gradient(180deg, var(--gold) 0%, rgba(201,169,110,0.2) 100%); }
  .founding-banner { flex-direction: column; text-align: center; }
}

.template-card-body {
  padding: 20px 24px;
}
.template-niche {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.template-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.template-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.template-tag {
  background: var(--bg-2);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  color: var(--text-2);
  font-family: var(--font-label);
}

/* Hover overlay for template cards */
.template-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.template-card:hover .template-overlay { opacity: 1; }

/* ── FILTER BAR ────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-pill {
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--text-2);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

/* ── COMPARISON TABLE ──────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: white;
}
.compare-table th,
.compare-table td {
  padding: 20px 28px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}
.compare-table thead th {
  background: var(--bg-2);
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 500;
}
.compare-table .col-apex {
  color: var(--gold-dark);
  font-weight: 600;
}
.compare-table tbody tr:last-child td { border-bottom: none; }

/* ── ACCORDION / FAQ ───────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}
.faq-question {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-top: 16px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.8;
}

/* ── STATS COUNTER ─────────────────────────────────────── */
.stat-block { text-align: center; }
.stat-value {
  font-family: var(--font-hero);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(201, 169, 110, 0.3);
  align-self: center;
}

/* ── PRICING CARDS ─────────────────────────────────────── */
.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 48px 40px;
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pricing-popular {
  border: 2px solid var(--gold);
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.pricing-popular:hover {
  transform: translateY(-20px);
  box-shadow: var(--shadow-xl);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}
.pricing-amount {
  font-family: var(--font-hero);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}
.pricing-amount .currency { font-size: 1.5rem; vertical-align: top; }
.pricing-period {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-top: 4px;
}
.pricing-features {
  margin: 32px 0;
}
.pricing-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-light);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-check { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

/* ── FORMS ─────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 8px;
  display: block;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: white;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ────────────────────────────────────────────── */
.footer { background: var(--forest-deep); color: white; padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { opacity: 0.5; font-size: 0.85rem; line-height: 1.7; color: white; max-width: 280px; margin-top: 16px; }
.footer-col h4 {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; flex-direction: column; gap: 6px; }
  
  h1, .hero-heading { font-size: 2.8rem; }
  h2, .section-heading { font-size: 2rem; }

  .container { padding: 0 20px; }
  .py-section { padding: 80px 0; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  h1, .hero-heading { font-size: 2.2rem; }
}

/* ── UTILITY ANIMATIONS (for JS) ───────────────────────── */
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   CINEMATIC HERO v3 — Velorah / MotionSites inspired
   Liquid glass + Aurora animated background
   ════════════════════════════════════════════════════════ */

/* ── LIQUID GLASS (from Velorah prompt, adapted) ────────── */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0)    40%,
    rgba(255,255,255,0)    60%,
    rgba(255,255,255,0.15) 80%,
    rgba(255,255,255,0.45) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Liquid glass ghost button */
.btn-liquid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  color: rgba(247,244,239,0.85);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
}
.btn-liquid:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,169,110,0.4);
  color: #F7F4EF;
  transform: scale(1.03);
}

/* ── AURORA ANIMATED BACKGROUND ─────────────────────────── */
.hero-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.aurora-blob-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,169,110,0.18) 0%, transparent 65%);
  top: -200px;
  left: -120px;
  animation: auroraFloat1 14s ease-in-out infinite;
}

.aurora-blob-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(44,62,53,0.35) 0%, transparent 65%);
  top: 80px;
  right: -80px;
  animation: auroraFloat2 18s ease-in-out infinite;
}

.aurora-blob-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 65%);
  bottom: -80px;
  left: 38%;
  animation: auroraFloat3 11s ease-in-out infinite;
}

.aurora-blob-4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(180,120,60,0.1) 0%, transparent 65%);
  top: 40%;
  left: 55%;
  animation: auroraFloat1 20s ease-in-out infinite reverse;
}

@keyframes auroraFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(80px, 60px) scale(1.12); }
  66%       { transform: translate(-40px, 30px) scale(0.94); }
}
@keyframes auroraFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-70px, 90px) scale(1.06); }
  66%       { transform: translate(50px, -40px) scale(1.1); }
}
@keyframes auroraFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(60px, -50px) scale(1.18); }
}

/* ── FADE-RISE ENTRANCE ANIMATIONS ─────────────────────── */
@keyframes fadeRise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-rise   { animation: fadeRise 0.9s var(--ease-out) both; }
.animate-fade-rise-1 { animation: fadeRise 0.9s var(--ease-out) 0.10s both; }
.animate-fade-rise-2 { animation: fadeRise 0.9s var(--ease-out) 0.25s both; }
.animate-fade-rise-3 { animation: fadeRise 0.9s var(--ease-out) 0.40s both; }
.animate-fade-rise-4 { animation: fadeRise 0.9s var(--ease-out) 0.58s both; }
.animate-fade-rise-5 { animation: fadeRise 0.9s var(--ease-out) 0.75s both; }

/* ── CINEMATIC HERO LAYOUT (centered, full-width) ─────── */
.hero-cinematic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 0 100px;
  min-height: 100vh;
}

.hero-cinematic .container {
  position: relative;
  z-index: 2;
}

.hero-cinematic h1 {
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: #F7F4EF;
  max-width: 900px;
  margin: 0 auto;
}

.hero-cinematic h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-cinematic .sub-text {
  color: rgba(247,244,239,0.58);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cinematic .overline {
  letter-spacing: 3px;
  font-size: 0.65rem;
}

.hero-cinematic .hero-ctas {
  justify-content: center;
  margin-top: 36px;
}

/* ── HERO VALUE CARD (Hormozi glass card) ───────────────── */
.hero-value-card {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  margin-top: 52px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.2);
  background: rgba(13,13,13,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  max-width: 560px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  text-align: left;
}

.hvc-header {
  padding: 14px 24px;
  background: rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hvc-header-label {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.hvc-header-tag {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(201,169,110,0.6);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 3px 10px;
  border-radius: 4px;
}

.hvc-rows {
  padding: 4px 0;
}

.hvc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hvc-row:last-child { border-bottom: none; }

.hvc-row-name {
  font-size: 0.82rem;
  color: rgba(247,244,239,0.75);
  font-family: var(--font-body);
}

.hvc-row-price {
  font-size: 0.78rem;
  color: rgba(247,244,239,0.35);
  text-decoration: line-through;
  font-family: var(--font-label);
  letter-spacing: 0.5px;
}

.hvc-row.hvc-highlight {
  background: rgba(201,169,110,0.07);
}

.hvc-row.hvc-highlight .hvc-row-name {
  color: #F7F4EF;
  font-weight: 500;
}

.hvc-row.hvc-highlight .hvc-row-price {
  color: rgba(201,169,110,0.5);
}

.hvc-footer {
  padding: 14px 24px;
  background: rgba(201,169,110,0.06);
  border-top: 1px solid rgba(201,169,110,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hvc-total-label {
  font-size: 0.78rem;
  color: rgba(247,244,239,0.5);
  font-family: var(--font-label);
  letter-spacing: 0.5px;
}

.hvc-total-label s {
  color: rgba(247,244,239,0.3);
}

.hvc-price {
  font-family: var(--font-hero);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.hvc-price-label {
  font-size: 0.6rem;
  font-family: var(--font-label);
  letter-spacing: 1px;
  color: rgba(247,244,239,0.4);
  text-transform: uppercase;
  margin-top: 2px;
  text-align: right;
}

/* ── SERVICES VALUE STACK (Hormozi itemised) ────────────── */
.value-stack {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.vs-header {
  padding: 10px 16px;
  background: var(--bg-2);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  border-bottom: 1px solid var(--border-light);
}

.vs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.82rem;
}

.vs-row:last-child { border-bottom: none; }
.vs-row-name { color: var(--text-2); }
.vs-row-val  { color: var(--text-3); text-decoration: line-through; font-family: var(--font-label); font-size: 0.75rem; }

.vs-total {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--gold-glow), rgba(201,169,110,0.06));
  border-top: 1px solid rgba(201,169,110,0.2);
  font-size: 0.82rem;
}
.vs-total-label { color: var(--text-2); font-weight: 500; }
.vs-total-price { color: var(--gold-dark); font-weight: 600; font-family: var(--font-hero); font-size: 1.1rem; }

/* ── MOBILE ADJUSTMENTS FOR CINEMATIC HERO ──────────────── */
@media (max-width: 768px) {
  .hero-cinematic {
    padding: 130px 0 80px;
    min-height: auto;
  }
  .hero-value-card {
    max-width: 100%;
    margin-top: 40px;
  }
  .hvc-header, .hvc-footer { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ══════════════════════════════════════════════════════════
   DESIGN REFINEMENTS v3 — Shadcn-Inspired Detail Pass
   ════════════════════════════════════════════════════════ */

/* ── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── PLACEHOLDER ───────────────────────────────────────── */
::placeholder { color: var(--text-3); opacity: 1; }

/* ── FOCUS VISIBLE (keyboard nav, a11y) ────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── BUTTON ACTIVE STATE ───────────────────────────────── */
.btn:active { transform: translateY(1px) scale(0.99); }

/* ── GRADIENT TEXT ─────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── GLASS CARD ────────────────────────────────────────── */
.glass-card {
  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);
  border-radius: 20px;
}
.glass-card-dark {
  background: rgba(13, 13, 13, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
}

/* ── CARD TOP-BORDER GOLD ACCENT (on hover) ────────────── */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}
.card:hover::before { opacity: 1; }

/* ── TESTIMONIAL QUOTE DECORATION ──────────────────────── */
.testimonial-card {
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-hero);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── DIVIDER ORNAMENT ──────────────────────────────────── */
.divider-ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  width: fit-content;
}
.divider-ornament::before,
.divider-ornament::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider-ornament::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.divider-ornament-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── SECTION NUMBER (editorial 01 / 02 style) ──────────── */
.section-num {
  font-family: var(--font-hero);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: 0.7;
  display: block;
  margin-bottom: 12px;
}

/* ── PRICING CARD — POPULAR TOP GRADIENT BORDER ─────────  */
.pricing-popular::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 24px 24px 0 0;
}

/* ── MOBILE MENU BACKDROP ──────────────────────────────── */
.mobile-menu-overlay {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(250, 250, 248, 0.96);
}

/* ── FORM INPUT REFINEMENT ─────────────────────────────── */
.form-input,
.form-select,
.form-textarea {
  letter-spacing: 0.01em;
}
.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: var(--text-3);
}

/* ── LINK HOVER UNDERLINE UTILITY ──────────────────────── */
.link-gold {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-glow);
  transition: border-color 0.2s;
}
.link-gold:hover { border-color: var(--gold); }

/* ── BADGE REFINEMENTS ──────────────────────────────────── */
.badge-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  display: inline-block;
}

/* ── PREFERS REDUCED MOTION (a11y) ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── MINI WEBSITE MOCKUPS (inside template cards) ──────── */
.mini-site {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-size: 0;
  position: relative;
}
.mini-nav {
  height: 10%;
  display: flex;
  align-items: center;
  padding: 0 10%;
  gap: 8%;
}
.mini-nav-logo {
  width: 18%;
  height: 3px;
  border-radius: 1px;
}
.mini-nav-links {
  display: flex;
  gap: 5%;
  flex: 1;
  justify-content: flex-end;
}
.mini-nav-link {
  width: 14%;
  height: 2px;
  border-radius: 1px;
  opacity: 0.5;
}
.mini-hero {
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
  gap: 6px;
}
.mini-hero-line {
  height: 4px;
  border-radius: 2px;
  opacity: 0.9;
}
.mini-hero-sub {
  height: 2px;
  border-radius: 1px;
  opacity: 0.4;
  margin-top: 4px;
}
.mini-hero-btn {
  width: 28%;
  height: 8px;
  border-radius: 4px;
  margin-top: 8px;
}
.mini-content {
  flex: 1;
  display: flex;
  gap: 5%;
  padding: 6% 10%;
}
.mini-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mini-block {
  border-radius: 3px;
  flex: 1;
  opacity: 0.15;
}
.mini-block-text {
  height: 2px;
  border-radius: 1px;
  opacity: 0.3;
}
.mini-footer {
  height: 8%;
  opacity: 0.2;
}

/* ── HERO CANVAS TILE (global, all dark-hero pages) ── */
#hero-tiles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
