/* ============================================================
   COMPANY PLANNING PARTNERS — CSS
   Luxury private equity / strategic consultancy aesthetic
============================================================ */

/* ------------------------------------------------------------
   CUSTOM PROPERTIES
------------------------------------------------------------ */
:root {
  --navy-900: #0D1322;
  --navy-800: #111826;
  --navy-700: #1B2440;
  --navy-600: #243058;
  --navy-500: #2d3d6e;
  --gold-300: #E8D5A0;
  --gold-400: #D4B870;
  --gold-500: #C9A655;
  --gold-600: #A8883A;
  --white: #FFFFFF;
  --off-white: #F9F7F3;
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-muted-dark: rgba(17, 24, 38, 0.55);

  --nav-height: 80px;
  --section-padding: clamp(5rem, 8vw, 8rem);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-gold: 0 0 0 1px rgba(201, 166, 85, 0.4), 0 8px 32px rgba(201, 166, 85, 0.1);

  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ------------------------------------------------------------
   RESET & BASE
------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  color: var(--navy-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Text selection */
::selection {
  background: rgba(201, 166, 85, 0.25);
  color: var(--navy-800);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy-900);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-600);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-500);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* ------------------------------------------------------------
   TYPOGRAPHY SCALE
------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
}

/* ------------------------------------------------------------
   UTILITY CLASSES
------------------------------------------------------------ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1rem;
}

.section-label--light {
  color: var(--gold-400);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--navy-800);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-heading em {
  font-style: italic;
  color: var(--gold-500);
  display: block;
}

.section-heading--light {
  color: var(--white);
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
}

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

/* Tags */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  background: rgba(201, 166, 85, 0.1);
  color: var(--gold-600);
  border: 1px solid rgba(201, 166, 85, 0.2);
}

/* ------------------------------------------------------------
   BUTTONS
------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-lg {
  font-size: 0.9375rem;
  padding: 0.875rem 1.875rem;
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 0.5625rem 1.25rem;
}

.btn-full {
  width: 100%;
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: 0 2px 8px rgba(201, 166, 85, 0.3);
}

.btn-gold:hover {
  background: var(--gold-400);
  box-shadow: 0 4px 20px rgba(201, 166, 85, 0.45);
  transform: translateY(-1px);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-ghost-light {
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(201, 166, 85, 0.4);
  background: transparent;
}

.btn-ghost-light:hover {
  border-color: var(--gold-400);
  background: rgba(201, 166, 85, 0.08);
  color: var(--white);
}

/* Button loading state */
.btn-loading {
  display: none;
}

.btn.is-loading .btn-text {
  visibility: hidden;
}

.btn.is-loading .btn-loading {
  display: flex;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
}

.spinner {
  animation: spin 0.8s linear infinite;
}

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

/* ------------------------------------------------------------
   SCROLL ANIMATIONS
------------------------------------------------------------ */
.animate-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.animate-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* ------------------------------------------------------------
   NAVIGATION
------------------------------------------------------------ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition-med), backdrop-filter var(--transition-med), box-shadow var(--transition-med);
}

.site-nav.is-scrolled {
  background: rgba(17, 24, 38, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201, 166, 85, 0.12), 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 60px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  transform-origin: center;
}

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

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(17, 24, 38, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201, 166, 85, 0.15);
  padding: 1.25rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform var(--transition-med), opacity var(--transition-med);
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-link {
  display: block;
  padding: 0.875rem 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--transition-fast);
}

.mobile-link:hover {
  color: var(--gold-400);
}

.mobile-cta {
  margin-top: 1.25rem;
  width: 100%;
  justify-content: center;
}

/* ------------------------------------------------------------
   HERO
------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--navy-700);
  overflow: hidden;
}

/* Animated background elements */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 166, 85, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 166, 85, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  will-change: transform;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-500), transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbDrift1 25s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--navy-500), transparent 70%);
  bottom: -150px;
  left: 10%;
  animation: orbDrift2 32s ease-in-out infinite;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--gold-400), transparent 70%);
  top: 40%;
  left: -100px;
  animation: orbDrift3 28s ease-in-out infinite;
  opacity: 0.1;
}

@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 60px) scale(1.05); }
  66% { transform: translate(30px, -30px) scale(0.97); }
}

@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60px, -80px); }
}

@keyframes orbDrift3 {
  0%, 100% { transform: translate(0, 0); }
  40% { transform: translate(40px, -60px); }
  80% { transform: translate(-20px, 40px); }
}

/* Hero layout */
.hero-container {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  padding-top: calc(var(--nav-height) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(4rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Hero content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(201, 166, 85, 0.1);
  border: 1px solid rgba(201, 166, 85, 0.25);
  border-radius: 100px;
  padding: 0.375rem 0.875rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

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

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

.hero-heading {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
}

.hero-heading-italic {
  font-style: italic;
  color: var(--gold-400);
  display: block;
  font-weight: 300;
}

.hero-sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.hero-sub strong {
  color: var(--gold-300);
  font-weight: 500;
}

.hero-qualifier {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(201, 166, 85, 0.3);
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.hero-qualifier strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.hero-disclaimer {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}

/* Hero stat cards */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 166, 85, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  will-change: transform;
  opacity: 0;
  width: 100%;
}

.stat-card-1 {
  animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards, float1 6s ease-in-out 1.5s infinite;
}

.stat-card-2 {
  animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.65s forwards, float2 7s ease-in-out 2s infinite;
}

.stat-card-3 {
  animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards, float3 8s ease-in-out 2.5s infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.stat-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.375rem;
  font-weight: 500;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-card-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.stat-card-context {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  z-index: 1;
}

.hero-scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201, 166, 85, 0.6), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* Hero animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ------------------------------------------------------------
   METRICS BAR
------------------------------------------------------------ */
.metrics-bar {
  background: var(--navy-900);
  border-top: 1px solid rgba(201, 166, 85, 0.1);
  border-bottom: 1px solid rgba(201, 166, 85, 0.1);
  padding: 3rem 0;
}

.metrics-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.metric {
  text-align: center;
  flex: 1;
}

.metric-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.125rem;
}

.metric-prefix {
  font-size: 0.75em;
  opacity: 0.8;
}

.metric-fraction {
  font-size: inherit;
}

.metric-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.metric-divider {
  width: 1px;
  height: 48px;
  background: rgba(201, 166, 85, 0.15);
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   SERVICES
------------------------------------------------------------ */
.services {
  background: var(--off-white);
  padding: var(--section-padding) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: border-color var(--transition-med);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.service-card:hover::before {
  border-color: rgba(201, 166, 85, 0.35);
}

.service-card--featured {
  background: var(--navy-700);
  border-color: rgba(201, 166, 85, 0.2);
}

.service-card--featured .service-card-icon {
  color: var(--gold-500);
  background: rgba(201, 166, 85, 0.1);
}

.service-card--featured .service-card-title {
  color: var(--white);
}

.service-card--featured .service-card-text {
  color: rgba(255, 255, 255, 0.65);
}

.service-card--featured .tag {
  background: rgba(201, 166, 85, 0.12);
  color: var(--gold-400);
  border-color: rgba(201, 166, 85, 0.25);
}

.service-card--featured:hover::before {
  border-color: rgba(201, 166, 85, 0.5);
}

.service-card-featured-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  border: 1px solid rgba(201, 166, 85, 0.35);
  border-radius: 100px;
  padding: 0.2rem 0.625rem;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(27, 36, 64, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  margin-bottom: 1.375rem;
  transition: background var(--transition-fast);
}

.service-card:hover .service-card-icon {
  background: rgba(201, 166, 85, 0.1);
  color: var(--gold-600);
}

.service-card--featured:hover .service-card-icon {
  background: rgba(201, 166, 85, 0.18);
}

.service-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: 0.875rem;
  line-height: 1.2;
}

.service-card-text {
  font-size: 0.9375rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

/* ------------------------------------------------------------
   PROCESS
------------------------------------------------------------ */
.process {
  background: var(--navy-800);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 166, 85, 0.3), transparent);
}

.process::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 166, 85, 0.3), transparent);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line between steps */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 2.75rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: linear-gradient(90deg,
    rgba(201, 166, 85, 0.4) 0%,
    rgba(201, 166, 85, 0.15) 100%
  );
  z-index: 0;
}

.process-step {
  padding: 0 1.75rem;
  padding-top: 0;
  position: relative;
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  padding-right: 0;
}

.process-step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.process-step-number::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-500);
  opacity: 0.5;
}

.process-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3125rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.875rem;
  line-height: 1.25;
}

.process-step-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

/* ------------------------------------------------------------
   RESULTS
------------------------------------------------------------ */
.results {
  background: var(--white);
  padding: var(--section-padding) 0;
}

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

.result-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  display: flex;
  flex-direction: column;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.result-card--featured {
  background: var(--navy-700);
  border-color: rgba(201, 166, 85, 0.2);
}

.result-card--featured .result-card-sector {
  color: var(--gold-400);
}

.result-card--featured .result-card-value {
  color: var(--gold-300);
}

.result-card--featured .result-card-metric {
  color: rgba(255, 255, 255, 0.6);
}

.result-card--featured .result-card-text {
  color: rgba(255, 255, 255, 0.6);
}

.result-card--featured .tag {
  background: rgba(201, 166, 85, 0.12);
  color: var(--gold-400);
  border-color: rgba(201, 166, 85, 0.25);
}

.result-card-sector {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1rem;
}

.result-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.75rem;
  font-weight: 400;
  color: var(--navy-700);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.result-card-metric {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted-dark);
  margin-bottom: 1.25rem;
}

.result-card-text {
  font-size: 0.9375rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.result-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

/* Proof points */
.proof-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
  align-items: flex-start;
}

.proof-point {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--navy-800);
}

.proof-icon {
  color: var(--gold-500);
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   QUALIFY CTA
------------------------------------------------------------ */
.qualify {
  background: var(--navy-700);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.qualify-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.qualify-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.qualify-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-500), transparent 70%);
  top: -200px;
  right: 10%;
  animation: orbDrift1 20s ease-in-out infinite;
}

.qualify-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--navy-500), transparent 70%);
  bottom: -150px;
  left: 5%;
  animation: orbDrift2 28s ease-in-out infinite;
}

.qualify-container {
  position: relative;
  z-index: 1;
}

.qualify-content {
  max-width: 640px;
  margin: 0 auto;
}

.qualify-sub {
  margin-bottom: 2.5rem;
}

.qualify-criteria {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.qualify-criterion {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.qualify-criterion svg {
  color: var(--gold-500);
  flex-shrink: 0;
}

.qualify-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ------------------------------------------------------------
   FOOTER
------------------------------------------------------------ */
.site-footer {
  background: var(--navy-900);
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(201, 166, 85, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-company-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 280px;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

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

.footer-contact-item a:hover {
  color: var(--gold-400);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-disclaimer {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.7;
  max-width: 900px;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ------------------------------------------------------------
   MODALS
------------------------------------------------------------ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(7, 10, 18, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-med), visibility var(--transition-med);
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 166, 85, 0.1);
  transform: translateY(24px) scale(0.97);
  transition: transform var(--transition-med);
  scrollbar-width: thin;
}

.modal-overlay.is-open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.45);
  transition: background var(--transition-fast), color var(--transition-fast);
  z-index: 1;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--navy-800);
}

.modal-content {
  padding: 2.5rem;
}

.modal-header {
  margin-bottom: 2rem;
}

.modal-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  background: rgba(201, 166, 85, 0.1);
  border: 1px solid rgba(201, 166, 85, 0.25);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.875rem;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.modal-sub {
  font-size: 0.9375rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
}

/* Forms */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

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

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

.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: 0.01em;
}

.form-optional {
  font-weight: 400;
  color: var(--text-muted-dark);
}

.form-input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 166, 85, 0.15);
}

.form-input::placeholder {
  color: rgba(17, 24, 38, 0.3);
}

.form-select-wrap {
  position: relative;
}

.form-select {
  cursor: pointer;
  padding-right: 2.5rem;
}

.form-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(17, 24, 38, 0.45);
  pointer-events: none;
}

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

.form-group--checkbox {
  flex-direction: row;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
}

.form-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox-custom {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  margin-top: 1px;
}

.form-checkbox:checked + .form-checkbox-custom {
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.form-checkbox:checked + .form-checkbox-custom::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border-left: 1.5px solid var(--navy-900);
  border-bottom: 1.5px solid var(--navy-900);
  transform: rotate(-45deg) translateY(-1px);
}

.form-checkbox:focus-visible + .form-checkbox-custom {
  box-shadow: 0 0 0 3px rgba(201, 166, 85, 0.25);
}

/* Modal success state */
.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2.5rem;
}

.modal-success[aria-hidden="false"] {
  display: flex;
}

.modal-success-icon {
  color: var(--gold-500);
  margin-bottom: 1.5rem;
}

.modal-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy-800);
  margin-bottom: 0.75rem;
}

.modal-success-text {
  font-size: 1rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  max-width: 360px;
}

/* ------------------------------------------------------------
   RESPONSIVE: TABLET (≤1024px)
------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: calc(var(--nav-height) + 3rem);
  }

  .hero-stats {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .stat-card-2 {
    margin-left: 0;
  }

  .stat-card {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
  }

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

  .process-timeline::before {
    display: none;
  }

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

  .result-card:last-child {
    grid-column: span 1;
  }
}

/* ------------------------------------------------------------
   RESPONSIVE: MOBILE (≤768px)
------------------------------------------------------------ */
@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-scroll {
    display: none;
  }

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

  .stat-card {
    max-width: none;
  }

  .stat-card-1,
  .stat-card-2,
  .stat-card-3 {
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .metrics-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }

  .metric-divider {
    display: none;
  }

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

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

  .process-step {
    padding: 0;
    border-left: 2px solid rgba(201, 166, 85, 0.2);
    padding-left: 1.5rem;
  }

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

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .qualify-ctas {
    flex-direction: column;
    align-items: stretch;
  }

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

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

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

  /* Mobile modal: bottom sheet style */
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .modal {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 92vh;
    transform: translateY(100%);
  }

  .modal-overlay.is-open .modal {
    transform: translateY(0);
  }
}

/* ------------------------------------------------------------
   RESPONSIVE: SMALL MOBILE (≤480px)
------------------------------------------------------------ */
@media (max-width: 480px) {
  .metrics-container {
    grid-template-columns: 1fr 1fr;
  }

  .modal-content {
    padding: 1.75rem 1.25rem;
  }

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

  .nav-logo-name {
    font-size: 0.875rem;
  }
}
