/* ═══════════════════════════════════════════════════════════
   AMIABLE GROUP — Global Design System v2
   Palette: Black / White / Gold. Clean. No warm tones.
   ═══════════════════════════════════════════════════════════ */

/* ── Custom Properties ─────────────────────────────────── */
:root {
  /* ── Primary palette */
  --obsidian:      #0a0a0a;
  --ink:           #0a0a0a;
  --cream:         #ffffff;
  --warm-white:    #ffffff;
  --gold:          #c4973a;
  --gold-light:    #d4a843;
  --muted:         #6b6b6b;
  --border:        #e8e8e8;

  /* ── Legacy aliases (used in existing HTML inline styles) */
  --color-obsidian:      #0a0a0a;
  --color-void:          #0a0a0a;
  --color-surface:       #111111;
  --color-surface-2:     #1a1a1a;
  --color-surface-3:     #222222;
  --color-border:        rgba(255,255,255,0.1);
  --color-border-hover:  rgba(255,255,255,0.2);
  --color-electric:      #c4973a;
  --color-gold:          #c4973a;
  --color-gold-muted:    rgba(196,151,58,0.12);
  --color-gold-border:   rgba(196,151,58,0.35);
  --color-text-primary:  #ffffff;
  --color-text-secondary:rgba(255,255,255,0.65);
  --color-text-muted:    rgba(255,255,255,0.4);
  --color-text-accent:   #c4973a;

  /* ── Gradients */
  --gradient-brand:   linear-gradient(135deg, #c4973a 0%, #d4a843 100%);
  --gradient-surface: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
  --gradient-hero:    radial-gradient(ellipse at 30% 50%, rgba(196,151,58,0.07) 0%, transparent 60%),
                      radial-gradient(ellipse at 80% 20%, rgba(196,151,58,0.04) 0%, transparent 50%);

  /* ── Typography */
  --font-sans:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  /* ── Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ── Border Radius — sharp corporate style */
  --radius-sm:  2px;
  --radius-md:  2px;
  --radius-lg:  4px;
  --radius-xl:  8px;
  --radius-full: 9999px;  /* pills only for section labels */

  /* ── Shadows */
  --shadow-glow:  0 0 40px rgba(196,151,58,0.12);
  --shadow-card:  0 2px 16px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.1);

  /* ── Transitions */
  --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Layout */
  --max-width: 1280px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: #ffffff;
  color: #0a0a0a;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #333333; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Selection */
::selection { background: rgba(196,151,58,0.25); color: #0a0a0a; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0a0a0a;
}

h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.25;
  color: #0a0a0a;
}

h1 { font-size: clamp(2.75rem, 6vw, 5rem); }
h2 { font-size: clamp(2.25rem, 4vw, 3.75rem); }
h3 { font-size: clamp(1.625rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  color: #6b6b6b;
  line-height: 1.75;
  font-family: var(--font-sans);
}

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

strong { color: inherit; font-weight: 700; }

em { font-style: italic; }

code, pre { font-family: var(--font-mono); font-size: 0.875em; }

code {
  background: #f4f4f4;
  border: 1px solid #e8e8e8;
  padding: 0.1em 0.4em;
  border-radius: var(--radius-sm);
  color: #c4973a;
}

/* ── Layout Utilities ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section { padding: var(--space-32) 0; }
.section--sm { padding: var(--space-20) 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }

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

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Backgrounds ────────────────────────────────── */
.section--obsidian, .section--dark {
  background: #0a0a0a;
  color: #ffffff;
}
.section--obsidian h1,
.section--obsidian h2,
.section--obsidian h3,
.section--obsidian h4,
.section--obsidian h5,
.section--obsidian h6,
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 { color: #ffffff; }
.section--obsidian p,
.section--dark p  { color: rgba(255,255,255,0.7); }

.section--ink {
  background: #0a0a0a;
  color: #ffffff;
}
.section--ink h1,
.section--ink h2,
.section--ink h3,
.section--ink h4,
.section--ink h5,
.section--ink h6 { color: #ffffff; }
.section--ink p  { color: rgba(255,255,255,0.7); }

.section--cream {
  background: #ffffff;
  color: #0a0a0a;
}
.section--cream h1,
.section--cream h2,
.section--cream h3,
.section--cream h4,
.section--cream h5,
.section--cream h6 { color: #0a0a0a; }
.section--cream p      { color: #6b6b6b; }
.section--cream strong { color: #0a0a0a; }
.section--cream a      { color: var(--gold); }

.section--warm {
  background: #ffffff;
  color: #0a0a0a;
}
.section--warm h1,
.section--warm h2,
.section--warm h3,
.section--warm h4,
.section--warm h5,
.section--warm h6 { color: #0a0a0a; }
.section--warm p      { color: #6b6b6b; }
.section--warm strong { color: #0a0a0a; }
.section--warm a      { color: var(--gold); }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
  display: flex;
  align-items: center;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 0;
  padding: 0 var(--space-6);
}

.nav__links--left {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
  justify-content: flex-start;
}

.nav__logo--center {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  height: 40px;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  justify-content: flex-end;
}

.nav__links--right {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.125rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav__logo-mark {
  width: 34px;
  height: 34px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.nav__link:hover,
.nav__link.active { color: #ffffff; }

.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Nav-specific button overrides */
.nav .btn--secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  border-radius: 0;
}
.nav .btn--secondary:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  transform: none;
}

.nav .btn--primary {
  background: #c4973a;
  color: #0a0a0a;
  border: none;
  border-radius: 0;
  font-weight: 700;
}
.nav .btn--primary:hover {
  background: #d4a843;
  color: #0a0a0a;
  transform: none;
  box-shadow: none;
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
  background: none;
  border: none;
}

.nav__mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #ffffff;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav.open .nav__mobile-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.open .nav__mobile-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__mobile-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-6);
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  position: relative;
}

/* Primary — black background, white text; hover to gold */
.btn--primary {
  background: #0a0a0a;
  color: #ffffff;
  border: 1px solid #0a0a0a;
  border-radius: 0;
}
.btn--primary:hover {
  background: #c4973a;
  color: #0a0a0a;
  border-color: #c4973a;
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }

/* Secondary — transparent, context-border */
.btn--secondary {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
}
.btn--secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Gold — flagship CTA */
.btn--gold {
  background: #c4973a;
  color: #0a0a0a;
  border: 1px solid #c4973a;
  font-weight: 700;
  border-radius: 0;
}
.btn--gold:hover {
  background: #d4a843;
  border-color: #d4a843;
  color: #0a0a0a;
  transform: translateY(-1px);
}

/* Ghost on dark background */
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.75rem 1.25rem;
  border-radius: 0;
}
.btn--ghost:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}

/* Ghost on light background */
.btn--ghost-dark {
  background: transparent;
  color: #0a0a0a;
  border: 1px solid #0a0a0a;
  padding: 0.75rem 1.25rem;
  border-radius: 0;
}
.btn--ghost-dark:hover {
  border-color: #c4973a;
  color: #c4973a;
}

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.0625rem; }

/* Light-section button overrides — secondary on white */
.section--cream .btn--secondary,
.section--warm .btn--secondary {
  background: transparent;
  color: #0a0a0a;
  border: 1px solid #e8e8e8;
}
.section--cream .btn--secondary:hover,
.section--warm .btn--secondary:hover {
  border-color: #c4973a;
  color: #c4973a;
  background: transparent;
}

/* ── Section Labels ─────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.3rem 1rem;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

/* No dot pseudo-element */
.section-label::before { display: none; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: var(--space-8);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(196,151,58,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.card--featured {
  border-color: rgba(196,151,58,0.4);
  background: linear-gradient(135deg, rgba(196,151,58,0.06) 0%, rgba(196,151,58,0.02) 100%);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: var(--space-5);
}

.card__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.25rem 0.75rem;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

/* ── Hero Section ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hero__bg {
  display: none;
}

.hero__grid {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  padding: 0.4rem 1.25rem;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.hero__title {
  margin-bottom: var(--space-6);
  color: #0a0a0a;
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: #6b6b6b;
  max-width: 600px;
  margin-bottom: var(--space-10);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-16);
}

.hero__stats {
  display: flex;
  gap: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid #e8e8e8;
}

.hero__stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.875rem;
  color: #6b6b6b;
  margin-top: var(--space-1);
}

/* ── Scroll Indicator ───────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.35);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-indicator__arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(255,255,255,0.35);
  border-bottom: 1.5px solid rgba(255,255,255,0.35);
  transform: rotate(45deg);
  animation: bounce-arrow 1.5s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(4px); opacity: 0.5; }
}

/* ── Noise Texture ──────────────────────────────────────── */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ── Features / Services Grid ───────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: var(--space-8);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-card:hover {
  border-color: rgba(196,151,58,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.feature-card:hover::after { transform: scaleX(1); }

/* ── Process Steps ──────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
  position: relative;
}

.process-step { text-align: center; padding: var(--space-8); position: relative; }

.process-step__number {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--obsidian);
  margin: 0 auto var(--space-5);
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonial-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: var(--space-8);
  position: relative;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
  border-color: #c4973a;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  font-size: 5rem;
  line-height: 1;
  font-family: var(--font-display);
  color: #c4973a;
  opacity: 0.2;
}

.testimonial-card__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #0a0a0a;
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(196,151,58,0.15);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.875rem;
  margin-bottom: var(--space-2);
}

/* ── Pricing Cards ──────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  align-items: start;
}

.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: var(--space-10);
  position: relative;
  transition: all var(--transition-base);
}

.pricing-card--popular {
  border-color: var(--gold);
  border-width: 2px;
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--gold);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--obsidian);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card__price { margin: var(--space-6) 0; }

.pricing-card__amount {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #ffffff;
}

.pricing-card__period {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  margin-left: var(--space-1);
}

.pricing-card__features {
  list-style: none;
  margin: var(--space-8) 0;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
}

.pricing-card__features li:last-child { border-bottom: none; }

.pricing-card__check {
  width: 18px;
  height: 18px;
  background: rgba(196,151,58,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--color-border); }

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: var(--space-6) 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  transition: color var(--transition-fast);
  font-family: var(--font-sans);
}

.faq-item__question:hover { color: var(--gold); }

.faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
  color: var(--gold);
}

.faq-item.open .faq-item__icon {
  background: var(--gold);
  color: var(--obsidian);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.open .faq-item__answer {
  max-height: 400px;
  padding-bottom: var(--space-6);
}

.faq-item__answer p { color: rgba(255,255,255,0.65); line-height: 1.75; }

/* ── Forms ──────────────────────────────────────────────── */
.form-group { margin-bottom: var(--space-5); }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  padding: 0.8125rem 1rem;
  font-size: 0.9375rem;
  color: #ffffff;
  font-family: var(--font-sans);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(196,151,58,0.15);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a7268' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.form-error {
  color: #f87171;
  font-size: 0.8125rem;
  margin-top: var(--space-1);
  display: none;
}

.form-success {
  background: rgba(20,184,166,0.08);
  border: 1px solid rgba(20,184,166,0.25);
  border-radius: 2px;
  padding: var(--space-5);
  color: #5eead4;
  font-weight: 500;
  display: none;
}

/* ── Badges ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.badge--electric {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.badge--teal {
  background: rgba(20,184,166,0.1);
  color: #5eead4;
  border: 1px solid rgba(20,184,166,0.25);
}
.badge--amber {
  background: rgba(245,158,11,0.1);
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,0.25);
}

/* ── Trust Bar ──────────────────────────────────────────── */
.trust-bar {
  padding: var(--space-12) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: #111111;
}

.trust-bar__label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-bottom: var(--space-8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

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

.trust-bar__logo {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: -0.02em;
  transition: color var(--transition-fast);
}
.trust-bar__logo:hover { color: rgba(255,255,255,0.65); }

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: #0a0a0a;
  border: 1px solid rgba(196,151,58,0.2);
  border-radius: 4px;
  padding: var(--space-16) var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-20) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer__brand p {
  margin-top: var(--space-4);
  font-size: 0.9375rem;
  max-width: 300px;
  color: rgba(255,255,255,0.5);
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}
.footer__links a:hover { color: #ffffff; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-8);
  padding-bottom: 70px;
  margin-bottom: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social a {
  padding: 0.4rem 0.9rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}
.footer__social a:hover {
  border-color: #c4973a;
  color: #c4973a;
}

/* ── Toast Notifications ────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: #111111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  box-shadow: var(--shadow-card);
  min-width: 300px;
  max-width: 420px;
  animation: toast-in var(--transition-spring) forwards;
}

.toast--success { border-color: rgba(20,184,166,0.35); }
.toast--error   { border-color: rgba(248,113,113,0.35); }
.toast--info    { border-color: rgba(196,151,58,0.35); }

.toast__icon    { font-size: 1.25rem; flex-shrink: 0; }
.toast__message { font-size: 0.9rem; color: #ffffff; }
.toast__close   { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; font-size: 1rem; }

@keyframes toast-in {
  from { opacity: 0; transform: translateX(80px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Page Header (inner pages) ──────────────────────────── */
.page-header {
  padding: calc(var(--nav-height) + var(--space-20)) 0 var(--space-16);
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196,151,58,0.08) 0%, transparent 60%);
}

.page-header__content { position: relative; z-index: 1; }

/* ── Stats Counter ──────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
}

.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: var(--space-8);
  text-align: center;
}

.stat-card__value {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-card__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  margin-top: var(--space-2);
}

/* ── Progress Bar ───────────────────────────────────────── */
.progress {
  background: var(--color-surface-2);
  border-radius: 2px;
  height: 4px;
  overflow: hidden;
}

.progress__bar {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}

/* ── Tag Cloud ──────────────────────────────────────────── */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.tag {
  padding: 0.25rem 0.875rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tag:hover, .tag.active {
  background: rgba(196,151,58,0.12);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Dividers ───────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0;
}

.divider--gradient {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none;
  margin: var(--space-16) 0;
}

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

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .container { padding: 0 var(--space-5); }
  .section { padding: var(--space-20) 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__links--left, .nav__right { display: none; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__logo--center { font-size: 1rem; }
  .nav__mobile-toggle { display: flex; justify-self: end; }
  .nav.open .nav__mobile { display: flex; }
  .nav__mobile { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__bottom { flex-direction: column; gap: var(--space-4); text-align: center; }
  .hero__stats { flex-wrap: wrap; gap: var(--space-8); }
  .form-row { grid-template-columns: 1fr; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .cta-banner { padding: var(--space-10) var(--space-6); }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .btn--lg { width: 100%; text-align: center; }
}

/* ── Utility Classes ────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.mt-auto { margin-top: auto; }
.mb-0    { margin-bottom: 0; }
.opacity-50 { opacity: 0.5; }

.highlight {
  position: relative;
  display: inline-block;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -2px; right: -2px;
  height: 6px;
  background: rgba(196,151,58,0.25);
  border-radius: 1px;
  z-index: -1;
}

/* ── Loading States ─────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #111111 25%, #1a1a1a 50%, #111111 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 2px;
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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