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

:root {
  --bg: #0C1222;
  --bg-elevated: #111827;
  --bg-subtle: #0F1729;
  --surface: #151D2E;
  --surface-hover: #1A2438;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --accent: #3B82F6;
  --accent-soft: rgba(59, 130, 246, 0.12);
  --gold: #D4A853;
  --gold-soft: rgba(212, 168, 83, 0.14);
  --success: #34D399;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 68px;
  --section-pad: clamp(4rem, 8vw, 6.5rem);
  --container: 1080px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--gold-soft);
  color: var(--text);
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--bg);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.section-inner.narrow {
  max-width: 680px;
}

/* ── Nav ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(12, 18, 34, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

.nav.scrolled {
  background: rgba(12, 18, 34, 0.94);
  border-color: var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
}

.logo-word span {
  color: var(--gold);
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

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

.nav-links a.active {
  background: rgba(255, 255, 255, 0.06);
}

.nav-links .nav-cta {
  margin-left: 0.5rem;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  padding: 0.5rem 1.125rem;
  border-radius: 100px;
}

.nav-links .nav-cta:hover {
  background: #E0B85E;
  color: var(--bg);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

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

body.menu-open { overflow: hidden; }

.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 99;
  padding: 0.9rem 1.25rem;
  border-radius: 100px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s;
}

.mobile-cta-bar.visible {
  transform: translateY(0);
  opacity: 1;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8125rem 1.625rem;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}

.btn-primary:hover {
  background: #E0B85E;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-light {
  background: #fff;
  color: var(--bg);
}

.btn-light:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-block { width: 100%; }

/* ── Hero ── */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 4rem) 0 var(--section-pad);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 80% -10%, rgba(59, 130, 246, 0.15), transparent),
    radial-gradient(ellipse 50% 40% at 10% 100%, rgba(212, 168, 83, 0.08), transparent);
}

.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.hero-detail {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.hero-stat-inline {
  color: var(--text);
  font-weight: 600;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.375rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.hero-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--success);
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-mock {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.mock-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--border);
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.mock-dot:nth-child(1) { background: #F87171; }
.mock-dot:nth-child(2) { background: #FBBF24; }
.mock-dot:nth-child(3) { background: #34D399; }

.mock-url {
  flex: 1;
  margin-left: 0.5rem;
  padding: 0.3rem 0.75rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.mock-content {
  padding: 1.25rem;
}

.mock-banner {
  height: 72px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(59, 130, 246, 0.15));
  margin-bottom: 1rem;
}

.mock-text {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 0.5rem;
}

.mock-text.long { width: 85%; }
.mock-text.short { width: 55%; margin-bottom: 1rem; }

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}

.mock-block {
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  list-style: none;
}

.hero-metrics li {
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.15rem;
}

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

/* ── Stats ── */
.stats {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-subtle) 0%, rgba(12, 18, 34, 0.6) 50%, var(--bg-subtle) 100%);
  padding: var(--section-pad) 0;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 0%, rgba(212, 168, 83, 0.06), transparent);
  pointer-events: none;
}

.stats .section-inner {
  position: relative;
  z-index: 1;
}

.stats .section-eyebrow {
  color: var(--gold);
}

.stats-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
}

.stats-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.stats-head p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  list-style: none;
}

.stat {
  position: relative;
  text-align: left;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.035) 0%, var(--surface) 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s, background 0.3s;
  overflow: hidden;
}

.stat::after {
  content: '';
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.stat:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.28);
  background: var(--surface-hover);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.stat:hover::after {
  opacity: 1;
}

.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.875rem;
}

.stat p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.stat p strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Sections ── */
section {
  padding: var(--section-pad) 0;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-head h2,
.contact-info h2,
.cta-banner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-head p {
  color: var(--text-secondary);
  margin-top: 0.875rem;
  font-size: 1rem;
}

/* ── Services ── */
.services {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-subtle) 45%, var(--bg) 100%);
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 40%, rgba(59, 130, 246, 0.06), transparent),
    radial-gradient(ellipse 60% 45% at 80% 60%, rgba(212, 168, 83, 0.07), transparent);
  pointer-events: none;
}

.services .section-inner {
  position: relative;
  z-index: 1;
}

.services .section-eyebrow {
  color: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: service;
}

.service-card {
  position: relative;
  padding: 2rem 1.75rem 1.875rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.035) 0%, var(--surface) 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s, background 0.3s;
  overflow: hidden;
  counter-increment: service;
}

.service-card::before {
  content: counter(service, decimal-leading-zero);
  position: absolute;
  top: 1.25rem;
  right: 1.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  opacity: 0.45;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.28);
  background: var(--surface-hover);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  background: var(--gold-soft);
  border: 1px solid rgba(212, 168, 83, 0.22);
  border-radius: 12px;
  color: var(--gold);
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.05);
  background: rgba(212, 168, 83, 0.18);
  border-color: rgba(212, 168, 83, 0.4);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

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

/* ── Process ── */
.process {
  position: relative;
  background: linear-gradient(180deg, var(--bg-subtle) 0%, rgba(12, 18, 34, 0.5) 50%, var(--bg-subtle) 100%);
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 100%, rgba(59, 130, 246, 0.05), transparent);
  pointer-events: none;
}

.process .section-inner {
  position: relative;
  z-index: 1;
}

.process .section-eyebrow {
  color: var(--gold);
}

.process-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
  position: relative;
}

@media (min-width: 961px) {
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 2.85rem;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(212, 168, 83, 0.15) 8%,
      rgba(212, 168, 83, 0.15) 92%,
      transparent
    );
    pointer-events: none;
  }
}

.process-step {
  position: relative;
  padding: 1.75rem 1.5rem 1.625rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.035) 0%, var(--surface) 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s, background 0.3s;
  overflow: hidden;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.28);
  background: var(--surface-hover);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.process-step:hover::after {
  opacity: 1;
}

.process-step:hover .step-index {
  background: rgba(212, 168, 83, 0.18);
  border-color: rgba(212, 168, 83, 0.4);
  transform: scale(1.05);
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-family: var(--serif);
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid rgba(212, 168, 83, 0.22);
  border-radius: 10px;
  margin-bottom: 1.125rem;
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}

.step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}

.step-body p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Pricing ── */
.pricing {
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 15% 30%, rgba(212, 168, 83, 0.05), transparent),
    radial-gradient(ellipse 55% 40% at 85% 70%, rgba(59, 130, 246, 0.05), transparent);
  pointer-events: none;
}

.pricing .section-inner {
  position: relative;
  z-index: 1;
}

.pricing .section-eyebrow {
  color: var(--gold);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  padding-top: 2.75rem;
  padding-bottom: 0.5rem;
  overflow: visible;
}

.price-card {
  position: relative;
  min-width: 0;
  height: 100%;
  padding: 1.625rem 1.375rem 1.375rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, var(--surface) 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s, background 0.3s;
  overflow: visible;
}

.price-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.price-card:hover::after,
.price-card.reveal.visible:hover::after {
  opacity: 1;
}

.price-card.tier-signature {
  border-color: rgba(255, 255, 255, 0.08);
}

.price-card.tier-luxury {
  border-color: rgba(212, 168, 83, 0.22);
  background: linear-gradient(165deg, rgba(212, 168, 83, 0.07) 0%, var(--surface) 50%);
}

.price-card.featured {
  border-color: rgba(212, 168, 83, 0.45);
  background: linear-gradient(165deg, rgba(212, 168, 83, 0.12) 0%, var(--surface) 45%);
  box-shadow:
    0 0 0 1px rgba(212, 168, 83, 0.15),
    0 20px 48px rgba(0, 0, 0, 0.28);
  transform: translateY(-24px);
  padding-top: 1.875rem;
  z-index: 1;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  border-color: rgba(212, 168, 83, 0.32);
  background: var(--surface-hover);
  z-index: 2;
}

.price-card.featured:hover,
.price-card.featured.reveal:hover,
.price-card.featured.reveal.visible:hover {
  transform: translateY(-32px);
  box-shadow:
    0 0 0 1px rgba(212, 168, 83, 0.35),
    0 24px 52px rgba(0, 0, 0, 0.32);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e0b85a 0%, var(--gold) 100%);
  color: var(--bg);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.35);
}

.price-header {
  margin-bottom: 1.125rem;
  padding-bottom: 1.125rem;
  border-bottom: 1px solid var(--border);
  min-width: 0;
}

.price-tier-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.price-tier-name {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-weight: 400;
  line-height: 1.1;
}

.price-tier-name-main {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.price-tier-name-sub {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.feature-count {
  flex-shrink: 0;
  margin-top: 0.4rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--success);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.22);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

.feature-count-premium {
  color: var(--gold);
  background: var(--gold-soft);
  border-color: rgba(212, 168, 83, 0.35);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.15rem;
}

.amount {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 2.375rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--gold);
}

.per {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.price-recurring {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-secondary);
  overflow-wrap: break-word;
  word-break: break-word;
}

.tier-luxury .price-recurring {
  color: rgba(212, 168, 83, 0.85);
}

.price-recurring-ads {
  color: var(--gold);
  margin-top: 0.25rem;
  line-height: 1.4;
}

.price-recurring-detail {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.price-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  min-height: 0;
}

.price-card .btn-block {
  margin-top: auto;
  flex-shrink: 0;
}

.price-features li {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  padding: 0.35rem 0 0.35rem 1.625rem;
  position: relative;
  line-height: 1.4;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 1.05rem;
  height: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5625rem;
  font-weight: 800;
  color: #052e1f;
  background: var(--success);
  border-radius: 50%;
  line-height: 1;
}

.tier-luxury .price-features li::before {
  color: var(--bg);
  background: var(--gold);
}

.price-features li.feature-section-label {
  padding-left: 0;
  margin-top: 0.5rem;
  margin-bottom: 0.15rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.price-features li.feature-section-label::before {
  content: none;
}

.price-features li.feature-section-label:first-child {
  margin-top: 0;
}

/* ── Testimonials ── */
.testimonials {
  position: relative;
  background: linear-gradient(180deg, var(--bg-subtle) 0%, rgba(12, 18, 34, 0.5) 50%, var(--bg-subtle) 100%);
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 45% at 50% 50%, rgba(212, 168, 83, 0.05), transparent);
  pointer-events: none;
}

.testimonials .section-inner {
  position: relative;
  z-index: 1;
}

.testimonials .section-eyebrow {
  color: var(--gold);
}

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

.testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: 2rem 1.75rem 1.875rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.035) 0%, var(--surface) 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s, background 0.3s;
  overflow: visible;
}

.testimonial::after {
  content: '';
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.28);
  background: var(--surface-hover);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.testimonial:hover::after {
  opacity: 1;
}

.testimonial blockquote {
  flex: 1;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.testimonial blockquote::before {
  content: '\201C';
  display: block;
  font-family: var(--serif);
  font-style: normal;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.45;
  margin-bottom: 0.625rem;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid rgba(212, 168, 83, 0.28);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.testimonial:hover .avatar {
  transform: scale(1.05);
  border-color: rgba(212, 168, 83, 0.45);
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
}

.testimonial figcaption > div span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ── FAQ ── */
.faq {
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 20% 50%, rgba(59, 130, 246, 0.04), transparent),
    radial-gradient(ellipse 50% 35% at 80% 60%, rgba(212, 168, 83, 0.05), transparent);
  pointer-events: none;
}

.faq .section-inner {
  position: relative;
  z-index: 1;
}

.faq .section-eyebrow {
  color: var(--gold);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-list details {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.035) 0%, var(--surface) 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, transform 0.3s var(--ease);
}

.faq-list details:hover {
  border-color: rgba(212, 168, 83, 0.22);
  background: var(--surface-hover);
}

.faq-list details[open] {
  border-color: rgba(212, 168, 83, 0.35);
  background: linear-gradient(165deg, rgba(212, 168, 83, 0.06) 0%, var(--surface) 50%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.faq-list summary {
  padding: 1.25rem 4rem 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  list-style: none;
  position: relative;
  transition: color 0.2s;
  color: var(--text);
}

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

.faq-list details[open] summary {
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: -0.875rem;
  border-radius: 50%;
  background-color: var(--gold-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath stroke='%23D4A853' stroke-width='1.75' stroke-linecap='round' d='M6 2.5v7M2.5 6h7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem;
  border: 1px solid rgba(212, 168, 83, 0.25);
  transition: transform 0.25s var(--ease), background-color 0.25s, border-color 0.25s;
}

.faq-list summary:hover::after {
  background-color: rgba(212, 168, 83, 0.18);
  border-color: rgba(212, 168, 83, 0.4);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
  background-color: rgba(212, 168, 83, 0.2);
  border-color: rgba(212, 168, 83, 0.45);
}

.faq-list details p {
  padding: 1.125rem 1.5rem 1.375rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── CTA ── */
.cta-banner {
  position: relative;
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(212, 168, 83, 0.1), transparent),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(59, 130, 246, 0.08), transparent),
    var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 168, 83, 0.04), transparent 55%);
  pointer-events: none;
}

.cta-banner .section-inner {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  letter-spacing: -0.03em;
  max-width: 520px;
  margin: 0 auto;
}

.cta-banner p {
  color: var(--text-secondary);
  margin: 1rem auto 1.875rem;
  max-width: 460px;
  font-size: 1.0625rem;
  line-height: 1.6;
}

/* ── Contact ── */
.contact {
  position: relative;
  background: linear-gradient(180deg, var(--bg-subtle) 0%, rgba(12, 18, 34, 0.4) 50%, var(--bg-subtle) 100%);
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 40% at 10% 80%, rgba(212, 168, 83, 0.06), transparent),
    radial-gradient(ellipse 40% 35% at 90% 20%, rgba(59, 130, 246, 0.05), transparent);
  pointer-events: none;
}

.contact .section-inner {
  position: relative;
  z-index: 1;
}

.contact .section-eyebrow {
  color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-info > p {
  color: var(--text-secondary);
  margin: 0.875rem 0 2rem;
  line-height: 1.65;
  max-width: 420px;
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.contact-point {
  padding: 1.125rem 1.25rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.035) 0%, var(--surface) 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid rgba(212, 168, 83, 0.45);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.contact-point:hover {
  border-color: rgba(212, 168, 83, 0.25);
  border-left-color: var(--gold);
  background: var(--surface-hover);
  transform: translateX(4px);
}

.contact-point dt {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 0.35rem;
}

.contact-point dd {
  margin: 0;
}

.contact-point a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.contact-point a:hover {
  color: var(--gold);
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.875rem 0.45rem 0.65rem;
  border-radius: 100px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.availability-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
}

.contact-form {
  padding: 2rem 2rem 1.75rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, var(--surface) 50%);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.form-field {
  margin-bottom: 0.875rem;
}

.form-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8125rem 0.9375rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
  background: rgba(12, 18, 34, 0.55);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(12, 18, 34, 0.7);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(212, 168, 83, 0.55);
  background: rgba(12, 18, 34, 0.75);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.5;
}

.form-success {
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: var(--success);
  border-radius: var(--radius);
  padding: 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  grid-column: 1 / -1;
}

/* ── Footer ── */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  max-width: 260px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.price-card.featured.reveal {
  transform: translateY(-12px);
}

.price-card.featured.reveal.visible {
  transform: translateY(-24px);
}

.price-card.reveal.visible:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 83, 0.32);
  background: var(--surface-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  z-index: 2;
}

.price-card.featured.reveal.visible:hover {
  transform: translateY(-32px);
  box-shadow:
    0 0 0 1px rgba(212, 168, 83, 0.35),
    0 24px 52px rgba(0, 0, 0, 0.32);
}

.service-card.reveal.visible:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.28);
  background: var(--surface-hover);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.service-card.reveal.visible:hover::after {
  opacity: 1;
}

.stat.reveal.visible:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.28);
  background: var(--surface-hover);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.stat.reveal.visible:hover::after {
  opacity: 1;
}

.process-step.reveal.visible:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.28);
  background: var(--surface-hover);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.process-step.reveal.visible:hover::after {
  opacity: 1;
}

.process-step.reveal.visible:hover .step-index {
  background: rgba(212, 168, 83, 0.18);
  border-color: rgba(212, 168, 83, 0.4);
  transform: scale(1.05);
}

.testimonial.reveal.visible:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.28);
  background: var(--surface-hover);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.testimonial.reveal.visible:hover::after {
  opacity: 1;
}

.testimonial.reveal.visible:hover .avatar {
  transform: scale(1.05);
  border-color: rgba(212, 168, 83, 0.45);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-aside {
    max-width: 440px;
  }

  .services-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    padding-top: 2.5rem;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

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

@media (max-width: 640px) {
  .mobile-cta-bar { display: block; }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0;
    background: rgba(12, 18, 34, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    display: block;
    font-size: 1rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius);
  }

  .nav-links .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 2.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .services-grid,
  .pricing-grid,
  .testimonial-grid,
  .process-timeline,
  .form-row,
  .stats-list {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    gap: 2rem;
    align-items: stretch;
    padding-top: 2.25rem;
  }

  .price-card.featured,
  .price-card.featured.reveal,
  .price-card.featured.reveal.visible {
    transform: none;
    padding-top: 1.75rem;
  }

  .price-card:hover,
  .price-card.reveal.visible:hover,
  .price-card.featured:hover,
  .price-card.featured.reveal:hover,
  .price-card.featured.reveal.visible:hover {
    transform: translateY(-6px);
  }

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

  .footer {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
    min-height: 48px;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .cta-banner .btn {
    width: 100%;
    max-width: 300px;
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
