/* ===================================
   ROBERT DOUGLAS CONSULTING
   Ultra-modern luxury dark design
   Manrope + Playfair Display
   =================================== */

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

:root {
  --bg: #0A0A0A;
  --bg-elevated: #111111;
  --bg-subtle: #141414;
  --accent: #C4A265;
  --accent-hover: #D4B87A;
  --accent-dim: rgba(196,162,101,0.12);
  --text: #F0EDE8;
  --text-secondary: #7A7672;
  --border: rgba(255,255,255,0.05);
  --border-gold: rgba(196,162,101,0.15);
  --glow: rgba(196,162,101,0.06);
  --glow-strong: rgba(196,162,101,0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --radius: 6px;
  --radius-sm: 3px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

h1, h2, h3, h4 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
}

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}


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


/* ---- Custom Cursor ---- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  will-change: transform;
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.cursor-dot.cursor-dot-hover {
  width: 12px;
  height: 12px;
  background: var(--accent-hover);
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196,162,101,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  will-change: transform;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-ring.cursor-hover {
  width: 54px;
  height: 54px;
  border-color: rgba(196,162,101,0.65);
}


/* ---- Utility ---- */
.section-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 400;
}


/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: none;
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--accent);
  color: #0A0A0A;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196,162,101,0.3);
}

.btn-cta {
  position: relative;
  overflow: hidden;
  padding: 18px 44px;
  font-size: 0.88rem;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}

.btn-cta:hover::after {
  animation: shimmer 0.65s ease forwards;
}

@keyframes shimmer {
  to { left: 100%; }
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.12);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.72rem;
}


/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1), transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ======================================
   HEADER
   ====================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border-gold);
  padding: 14px 0;
}

.header-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-hover), transparent);
  z-index: 1001;
  transition: width 0.08s linear;
  box-shadow: 0 0 8px rgba(196,162,101,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-badge {
  width: 38px;
  height: 38px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #0A0A0A;
  border-radius: 4px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.header-phone:hover { color: var(--accent); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 8px;
  width: 36px;
  height: 36px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: none;
  line-height: 1;
}

.mobile-link {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

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


/* ======================================
   HERO
   ====================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding: 160px 0 120px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Subtle grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(196,162,101,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,162,101,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.6) 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.6) 0%, transparent 75%);
}

.hero-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,162,101,0.07) 0%, rgba(196,162,101,0.02) 40%, transparent 70%);
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: orbPulse 9s ease-in-out infinite;
  z-index: 1;
}

.hero-orb-2 {
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(196,162,101,0.03) 0%, rgba(196,162,101,0.01) 50%, transparent 70%);
  top: 60%;
  left: 70%;
  animation: orbPulse 14s ease-in-out infinite reverse;
}

@keyframes orbPulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

/* Staggered entrance */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-anim {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-anim-1 { animation-delay: 0.15s; }
.hero-anim-2 { animation-delay: 0.35s; }
.hero-anim-3 { animation-delay: 0.65s; }
.hero-anim-4 { animation-delay: 0.9s; }
.hero-anim-5 { animation-delay: 1.2s; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 14px;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  background: rgba(196,162,101,0.04);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-eyebrow span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-headline {
  font-size: clamp(3.8rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 28px;
  color: var(--text);
}

.hero-headline-accent {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  font-size: clamp(3.2rem, 7vw, 6rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: 4px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero credential strip */
.hero-creds {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border-gold);
}

.hero-cred-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-cred-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-cred-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero-cred-divider {
  width: 1px;
  height: 36px;
  background: var(--border-gold);
  flex-shrink: 0;
}

/* Two-column hero layout */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  max-width: 100%;
}

.hero-content {
  max-width: 580px;
}

/* ---- Chart Panel ---- */
.hero-chart-wrap {
  position: relative;
}

.hero-chart {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero-chart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,162,101,0.5), transparent);
}

.chart-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.chart-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chart-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(196,162,101,0.1);
  border: 1px solid rgba(196,162,101,0.25);
  border-radius: 20px;
  padding: 3px 9px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.chart-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.chart-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.chart-delta {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.chart-canvas-wrap {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.chart-canvas-wrap canvas {
  display: block;
  width: 100%;
  height: auto;
}

.chart-axis-x {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 2px;
}

.chart-axis-x span {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  opacity: 0.5;
  text-transform: uppercase;
}

.chart-axis-x span:last-child {
  color: var(--accent);
  opacity: 0.8;
}

.chart-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(196,162,101,0.1);
}

.chart-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
}

.chart-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.chart-stat-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.chart-stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(196,162,101,0.15);
}


/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: heroFadeUp 1s ease 1.5s both;
}

.hero-scroll span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--accent) 0%, transparent 100%);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}


/* ======================================
   MARQUEE STRIP
   ====================================== */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  background: var(--bg-elevated);
  padding: 0;
}

.marquee-track {
  display: flex;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 40s linear infinite;
  white-space: nowrap;
  padding: 18px 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0 40px;
  transition: color 0.3s ease;
}

.marquee-sep {
  color: var(--accent);
  font-size: 0.5rem;
  opacity: 0.6;
  flex-shrink: 0;
}


/* ======================================
   TRUST BAR
   ====================================== */
#trust {
  padding: 80px 0 72px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

#trust::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: trustScan 4s linear infinite;
  opacity: 0.3;
}

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

.trust-label-row {
  margin-bottom: 48px;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.trust-sep {
  width: 1px;
  height: 60px;
  background: var(--border-gold);
  flex-shrink: 0;
}

.trust-item {
  text-align: center;
  flex: 1;
  padding: 0 20px;
}

.trust-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1;
}

.trust-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}


/* ======================================
   SERVICES
   ====================================== */
#services {
  padding: 120px 0;
  background: var(--bg-subtle);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.services-header {
  margin-bottom: 72px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
}

.service-card {
  position: relative;
  background: var(--bg-subtle);
  overflow: hidden;
  transition: background var(--transition);
}

.service-card:hover {
  background: var(--bg-elevated);
}

.service-card-inner {
  padding: 40px 36px 36px;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Ghost number behind card */
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  opacity: 0.7;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 4px;
  margin-bottom: 20px;
  color: var(--accent);
  position: relative;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(196,162,101,0.2);
  box-shadow: 0 0 24px rgba(196,162,101,0.15);
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-list li {
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

/* Glow effect on hover */
.service-card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: radial-gradient(circle at 50% 0%, rgba(196,162,101,0.08) 0%, transparent 60%);
  z-index: 1;
}

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

/* Bottom gold border reveal on hover */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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


/* ======================================
   ABOUT
   ====================================== */
#about {
  padding: 130px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.about-bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(14rem, 25vw, 24rem);
  font-weight: 700;
  color: rgba(196,162,101,0.025);
  pointer-events: none;
  line-height: 1;
  user-select: none;
  letter-spacing: -0.05em;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-content {
  max-width: 560px;
}

.about-title {
  margin-bottom: 28px;
}

.about-body {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-signature {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-sig-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

.about-sig-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.about-sig-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.about-sig-text span {
  font-size: 0.68rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* About visual panel */
.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  border: 1px solid var(--border-gold);
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.about-card:hover {
  border-color: rgba(196,162,101,0.4);
  transform: translateY(-3px);
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(196,162,101,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.about-card-1 {
  grid-column: 1;
  grid-row: 1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
}

.about-card-2 {
  grid-column: 2;
  grid-row: 1 / 3;
  padding: 32px 24px;
  display: flex;
  align-items: center;
}

.about-card-3 {
  grid-column: 1;
  grid-row: 2;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
}

.about-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.about-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.5;
}

.about-card-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.about-grid-lines {
  display: none;
}


/* ======================================
   PROCESS
   ====================================== */
#process {
  padding: 130px 0;
  background: var(--bg-subtle);
  position: relative;
}

#process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.process-header {
  margin-bottom: 80px;
}

/* Horizontal steps layout on desktop */
.process-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line between steps */
.process-steps-row::before {
  content: '';
  position: absolute;
  top: 14px;
  left: calc(50% / 4);
  right: calc(50% / 4);
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(196,162,101,0.2) 100%);
  z-index: 0;
}

.process-step {
  position: relative;
  padding: 0 28px;
  padding-top: 0;
}

/* Giant background step number */
.step-num-bg {
  position: absolute;
  top: -24px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  font-weight: 700;
  color: rgba(196,162,101,0.05);
  pointer-events: none;
  line-height: 1;
  user-select: none;
  letter-spacing: -0.05em;
  z-index: 0;
}

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

/* Step circle at top */
.step-circle-wrap {
  margin-bottom: 24px;
  position: relative;
  width: 28px;
  height: 28px;
}

.step-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: 2px solid rgba(196,162,101,0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.step-circle.step-circle-visible {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 16px rgba(196,162,101,0.4);
}

.step-circle.step-circle-visible::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: stepRipple 0.9s ease-out forwards;
}

@keyframes stepRipple {
  0% { opacity: 0.6; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(2.2); }
}

.step-content {
  padding-top: 8px;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: block;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
}


/* ======================================
   TESTIMONIALS
   ====================================== */
#testimonials {
  padding: 130px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Giant decorative quote */
.testimonials-bg-quote {
  position: absolute;
  top: 20px;
  left: -20px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(14rem, 22vw, 22rem);
  line-height: 1;
  color: rgba(196,162,101,0.04);
  pointer-events: none;
  user-select: none;
  font-weight: 700;
}

.testimonials-header {
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.testimonials-carousel {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-track {
  position: relative;
  min-height: 260px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.75;
  letter-spacing: -0.01em;
  border: none;
  padding: 0;
  margin: 0;
}

.testimonial-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
  margin: 32px auto;
}

.author-name {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.author-role {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid var(--text-secondary);
  background: transparent;
  cursor: none;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(196,162,101,0.4);
  transform: scale(1.4);
}

.carousel-dot:hover {
  border-color: var(--accent);
}


/* ======================================
   CTA
   ====================================== */
#cta {
  padding: 140px 0;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196,162,101,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(196,162,101,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(196,162,101,0.05) 0%, transparent 50%);
  animation: meshMorph 12s ease-in-out infinite alternate;
}

@keyframes meshMorph {
  0% { background:
    radial-gradient(ellipse at 20% 50%, rgba(196,162,101,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(196,162,101,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(196,162,101,0.05) 0%, transparent 50%); }
  50% { background:
    radial-gradient(ellipse at 50% 30%, rgba(196,162,101,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(196,162,101,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(196,162,101,0.05) 0%, transparent 50%); }
  100% { background:
    radial-gradient(ellipse at 70% 60%, rgba(196,162,101,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 20%, rgba(196,162,101,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(196,162,101,0.06) 0%, transparent 50%); }
}

/* Animated gold border */
.cta-border-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid transparent;
  background: linear-gradient(var(--bg-elevated), var(--bg-elevated)) padding-box,
              linear-gradient(135deg, rgba(196,162,101,0.1) 0%, rgba(196,162,101,0.4) 50%, rgba(196,162,101,0.1) 100%) border-box;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-label {
  margin-bottom: 24px;
}

.cta-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.1;
}

.cta-headline em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.cta-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.02em;
}


/* ======================================
   FOOTER
   ====================================== */
#footer {
  padding: 72px 0 36px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 0.8fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 260px;
  font-weight: 400;
}

.footer-col-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  font-weight: 400;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.footer-contact-item a {
  color: var(--text-secondary);
  transition: color var(--transition);
}

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

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  font-size: 0.78rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  font-weight: 400;
}

.social-link:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
}

.footer-copy {
  font-size: 0.68rem;
  color: var(--text-secondary);
  opacity: 0.5;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.68rem;
  color: var(--text-secondary);
  opacity: 0.5;
  transition: opacity var(--transition);
}

.footer-legal a:hover { opacity: 1; }


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

  .process-steps-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .process-steps-row::before {
    display: none;
  }

  .process-step:nth-child(odd) {
    border-right: 1px solid var(--border-gold);
  }
  .process-step:nth-child(-n+2) {
    border-bottom: 1px solid var(--border-gold);
    padding-bottom: 48px;
    margin-bottom: 0;
  }
  .process-step:nth-child(n+3) {
    padding-top: 48px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-bg-text {
    right: -60px;
    font-size: 16rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }

  .nav-links { display: none; }
  .header-phone { display: none; }
  .header-right .btn { display: none; }
  .hamburger { display: flex; }

  #hero {
    padding: 130px 0 100px;
    min-height: 100svh;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-headline {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .hero-headline-accent {
    font-size: clamp(2.6rem, 9vw, 4.2rem);
  }

  .hero-creds {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-cred-divider {
    display: none;
  }

  .hero-scroll { display: none; }

  .trust-grid {
    flex-wrap: wrap;
    gap: 40px 0;
  }

  .trust-sep {
    display: none;
  }

  .trust-item {
    flex: 0 0 50%;
    padding: 0;
  }

  .trust-item:last-child {
    flex: 0 0 100%;
  }

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

  .process-steps-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-step:nth-child(odd) {
    border-right: none;
  }

  .process-step:nth-child(-n+2) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .process-step:nth-child(n+3) {
    padding-top: 0;
  }

  .step-num-bg {
    font-size: 5rem;
  }

  .about-visual {
    grid-template-columns: 1fr 1fr;
  }

  .about-card-2 {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .about-card-3 {
    grid-row: 3;
    grid-column: 1;
  }

  .testimonials-track {
    min-height: 320px;
  }

  .testimonial-quote {
    font-size: 1.05rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-headline {
    font-size: 2.2rem;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  body {
    cursor: auto;
  }

  a, button, .btn {
    cursor: auto;
  }

  .about-bg-text {
    font-size: 10rem;
    opacity: 0.8;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-creds {
    margin-top: 40px;
    padding-top: 24px;
  }

  .hero-cred-num {
    font-size: 1.4rem;
  }

  .trust-number {
    font-size: 2.4rem;
  }

  .testimonials-track {
    min-height: 380px;
  }

  .about-visual {
    grid-template-columns: 1fr;
  }

  .about-card-2 {
    grid-column: 1;
    grid-row: 2;
  }

  .about-card-3 {
    grid-row: 3;
    grid-column: 1;
  }

  .services-grid {
    border: none;
    gap: 1px;
    background: transparent;
  }

  .service-card-inner {
    padding: 28px 24px;
  }
}
