/* ============================================
   CORDOBA DOCUMENT SERVICES — Brand Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  --brand-navy: #060B14;
  --brand-navy-light: #101A2E;
  --brand-navy-dark: #03060B;
  --brand-gold-light: #FBE6AB;
  --brand-gold: #C5A059;
  --brand-gold-dark: #8C6F36;
  --text-slate-300: #cbd5e1;
  --text-slate-400: #94a3b8;
  --text-slate-500: #64748b;
  --text-slate-600: #475569;
  --text-slate-700: #334155;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--brand-navy);
  background: #f8fafc;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--brand-gold);
  color: var(--brand-navy-dark);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* --- Brand Color Utilities --- */
.bg-brand-navy { background-color: var(--brand-navy); }
.bg-brand-navy-light { background-color: var(--brand-navy-light); }
.bg-brand-navy-dark { background-color: var(--brand-navy-dark); }
.text-brand-navy { color: var(--brand-navy); }
.text-brand-gold { color: var(--brand-gold); }
.bg-brand-gold { background-color: var(--brand-gold); }

/* --- Gradients & Glows --- */
.brand-gradient-bg {
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold) 50%, var(--brand-gold-dark) 100%);
}

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

.glow-effect {
  box-shadow: 0 0 40px rgba(197, 160, 89, 0.15);
  transition: box-shadow 0.5s ease;
}
.glow-effect:hover {
  box-shadow: 0 0 60px rgba(197, 160, 89, 0.3);
}

/* --- Premium Button --- */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold) 40%, var(--brand-gold-dark) 100%);
  color: var(--brand-navy-dark);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.25);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.btn-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-light) 60%, var(--brand-gold) 100%);
  z-index: -1;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.btn-premium:hover::before { opacity: 1; }
.btn-premium:hover {
  box-shadow: 0 8px 30px rgba(197, 160, 89, 0.5);
  transform: translateY(-3px);
}
.btn-premium::after {
  content: '';
  position: absolute;
  top: -50%; left: -100%; width: 50%; height: 200%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: premiumShine 6s infinite;
  z-index: 2;
  pointer-events: none;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 17, 33, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(197, 160, 89, 0.15);
  color: #fff;
  font-weight: 700;
  transition: all 0.3s ease;
}
.btn-outline-light:hover {
  border-color: rgba(197, 160, 89, 0.5);
  background: rgba(10, 17, 33, 0.85);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-navy);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.btn-navy:hover {
  background: var(--brand-navy-light);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

/* --- Keyframes --- */
@keyframes premiumShine {
  0% { left: -100%; }
  15%, 100% { left: 200%; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}
@keyframes floatReverse {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(15px); }
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Animation Utilities --- */
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: floatReverse 7s ease-in-out infinite 1s; }
.animate-ken-burns { animation: kenBurns 30s ease-out infinite alternate; }
.animate-spin { animation: spin 1s linear infinite; }

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulseGlow 8s infinite alternate;
  z-index: 0;
  pointer-events: none;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
  opacity: 1;
  transform: translate(0) scale(1);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
.delay-600 { transition-delay: 600ms; }

/* --- Glassmorphism --- */
.glass-panel {
  background: rgba(10, 17, 33, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(197, 160, 89, 0.15);
}
.glass-panel-hover:hover {
  border-color: rgba(197, 160, 89, 0.5);
  background: rgba(10, 17, 33, 0.85);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* --- Image Hover --- */
.image-hover-zoom { overflow: hidden; }
.image-hover-zoom img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.image-hover-zoom:hover img { transform: scale(1.08); }

/* --- Scroll Progress Bar --- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--brand-gold-light), var(--brand-gold), var(--brand-gold-dark));
  z-index: 9999;
  transition: width 0.05s ease-out;
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.8);
}

/* --- Header --- */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  transition: all 0.5s ease;
  background: var(--brand-navy);
  padding: 20px 0;
  border-bottom: 1px solid rgba(16, 26, 46, 0.5);
}
.site-header.scrolled {
  background: rgba(3, 6, 11, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  padding: 12px 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
@media (min-width: 768px) {
  .header-inner { height: 80px; }
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}
.logo-link:hover .logo-icon {
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.5);
  transform: scale(1.05);
}
.logo-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .logo-icon { width: 56px; height: 56px; }
}
.logo-icon svg { width: 28px; height: 28px; color: var(--brand-navy-dark); }

.logo-text { display: flex; flex-direction: column; }
.logo-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}
@media (min-width: 768px) { .logo-title { font-size: 1.875rem; } }
.logo-subtitle {
  font-size: 10px;
  color: var(--brand-gold);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.9;
}
@media (min-width: 768px) { .logo-subtitle { font-size: 12px; } }

/* Desktop Nav */
.desktop-nav {
  display: none;
  gap: 48px;
  margin-left: 40px;
  flex: 1;
}
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.nav-link {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-slate-400);
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
}
.nav-link:hover { color: #fff; }
.nav-link.active { color: var(--brand-gold); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-gold);
  border-radius: 3px 3px 0 0;
  box-shadow: 0 0 15px rgba(197, 160, 89, 1);
}

/* Header Right */
.header-right {
  display: none;
  align-items: center;
  gap: 40px;
}
@media (min-width: 768px) { .header-right { display: flex; } }

.header-phone-block { display: flex; flex-direction: column; align-items: flex-end; }
.header-phone-label {
  font-size: 10px;
  color: var(--text-slate-500);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}
.header-phone-link {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}
.header-phone-link:hover { color: var(--brand-gold); }
.header-phone-link svg {
  width: 20px; height: 20px;
  color: var(--brand-gold);
  margin-right: 8px;
}

.header-cta {
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 0.8125rem;
}

/* Mobile Menu */
.mobile-toggle {
  display: flex;
  align-items: center;
  padding: 8px;
  color: var(--brand-gold);
  transition: color 0.3s ease;
}
.mobile-toggle:hover { color: #fff; }
.mobile-toggle svg { width: 36px; height: 36px; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--brand-navy);
  border-top: 1px solid var(--brand-navy-light);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.mobile-menu.open {
  max-height: 600px;
  opacity: 1;
}
.mobile-menu-inner { padding: 24px 24px 40px; }
.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px;
  border-radius: 16px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-slate-300);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}
.mobile-nav-link:hover {
  color: #fff;
  background: rgba(16, 26, 46, 0.3);
}
.mobile-nav-link.active {
  color: var(--brand-gold);
  background: rgba(16, 26, 46, 0.5);
  border: 1px solid rgba(197, 160, 89, 0.2);
}
.mobile-menu-footer {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(16, 26, 46, 0.5);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
  background: var(--brand-navy-light);
  color: #fff;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1.25rem;
  border: 1px solid var(--brand-navy-light);
  transition: border-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.mobile-phone-btn:hover { border-color: rgba(197, 160, 89, 0.3); }
.mobile-phone-btn svg {
  width: 24px; height: 24px;
  color: var(--brand-gold);
  margin-right: 16px;
}
.mobile-quote-btn {
  width: 100%;
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  font-size: 1.25rem;
}

/* --- Header Spacer --- */
.header-spacer {
  height: 96px;
  background: var(--brand-navy);
}
@media (min-width: 768px) {
  .header-spacer { height: 128px; }
}

/* --- Container --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* --- Hero Section (Home) --- */
.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 24px 0 128px;
  overflow: hidden;
  background: var(--brand-navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
  mix-blend-mode: luminosity;
}
.hero-overlay-lr {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--brand-navy-dark), rgba(6, 11, 20, 0.9), transparent);
}
.hero-overlay-tb {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--brand-navy-dark), transparent, rgba(3, 6, 11, 0.8));
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-top: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 7fr 5fr; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-gold);
  margin-bottom: 32px;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
  border-color: rgba(197, 160, 89, 0.4);
}
.hero-badge svg {
  width: 16px; height: 16px;
  margin-right: 8px;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #fff;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  color: var(--text-slate-300);
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.3;
  max-width: 640px;
  border-left: 4px solid var(--brand-gold);
  padding-left: 24px;
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-slate-400);
  margin-bottom: 48px;
  max-width: 640px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

.hero-cta-primary {
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 1.125rem;
}
.hero-cta-secondary {
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 1.125rem;
}
.hero-cta-secondary svg {
  width: 20px; height: 20px;
  margin-right: 12px;
  color: var(--brand-gold);
}

/* Hero Right - Floating Cards */
.hero-right {
  display: none;
  position: relative;
}
@media (min-width: 1024px) {
  .hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    height: 100%;
  }
}

.hero-float-card {
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 0;
  border-color: rgba(197, 160, 89, 0.3);
  transition: all 0.5s ease;
}
.hero-float-card:hover {
  border-color: rgba(197, 160, 89, 0.5);
}
.hero-float-card .card-inner {
  display: flex;
  align-items: flex-start;
}
.hero-float-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 20px;
}
.hero-float-icon svg {
  width: 28px; height: 28px;
  color: var(--brand-gold);
}
.hero-float-card h4 {
  color: #fff;
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.hero-float-card p {
  color: var(--text-slate-400);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* --- Stats Section --- */
.stats-bar {
  position: relative;
  z-index: 30;
  margin-top: -80px;
  margin-bottom: 80px;
}
@media (min-width: 768px) { .stats-bar { margin-top: -128px; } }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.stat-card {
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  border-top: 1px solid rgba(197, 160, 89, 0.4);
}
@media (min-width: 768px) { .stat-card { padding: 32px; } }
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
@media (min-width: 768px) { .stat-number { font-size: 3rem; } }
.stat-label {
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 9px;
  font-weight: 700;
  margin-top: 8px;
  opacity: 0.9;
}
@media (min-width: 768px) { .stat-label { font-size: 12px; } }

/* --- Section Styles --- */
.section-light { padding: 96px 0; background: #f8fafc; }
.section-dark {
  padding: 128px 0;
  background: var(--brand-navy);
  position: relative;
  overflow: hidden;
}
.section-white { padding: 96px 0; background: #fff; }

.section-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 80px;
}
.section-label {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.section-title-white { color: #fff; }
.section-title-navy { color: var(--brand-navy); }
.section-divider {
  width: 96px;
  height: 6px;
  border-radius: 9999px;
  margin: 0 auto 24px;
}
.section-desc {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-slate-600);
}
.section-desc-light { color: var(--text-slate-400); }

/* --- Service Preview Cards (Home) --- */
.service-preview-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .service-preview-card { flex-direction: row; }
  .service-preview-card.reversed { flex-direction: row-reverse; }
}
.service-preview-image {
  height: 320px;
  position: relative;
}
@media (min-width: 1024px) {
  .service-preview-image { width: 50%; height: auto; min-height: 400px; }
}
.service-preview-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-preview-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) { .service-preview-body { padding: 64px; } }
@media (min-width: 1024px) { .service-preview-body { width: 50%; } }
.service-preview-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(197, 160, 89, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--brand-gold);
}
.service-preview-icon svg { width: 28px; height: 28px; }
.service-preview-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.service-preview-desc {
  color: var(--text-slate-600);
  margin-bottom: 32px;
  font-size: 1.25rem;
  line-height: 1.7;
}
.service-preview-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand-navy);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.service-preview-link:hover { color: var(--brand-gold); }
.service-preview-link svg {
  width: 20px; height: 20px;
  margin-left: 12px;
  transition: transform 0.3s ease;
}
.service-preview-link:hover svg { transform: translateX(8px); }

/* --- Process Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
}
@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}
.process-step {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.process-number {
  width: 96px; height: 96px;
  background: var(--brand-navy);
  color: var(--brand-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 32px;
  border: 4px solid var(--brand-navy-light);
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  transition: all 0.5s ease;
  position: relative;
}
.process-step:hover .process-number {
  border-color: var(--brand-gold);
  box-shadow: 0 0 40px rgba(197, 160, 89, 0.3);
}
.process-step h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: -0.01em;
}
.process-step p {
  color: var(--text-slate-400);
  line-height: 1.7;
  font-size: 1.125rem;
  max-width: 384px;
}

/* Connector Line */
.process-connector {
  display: none;
  position: absolute;
  top: 48px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: var(--brand-navy-light);
  z-index: 0;
}
@media (min-width: 768px) { .process-connector { display: block; } }
.process-connector-inner {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* --- Testimonial Cards --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
  position: relative;
  transition: all 0.5s ease;
}
.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.testimonial-stars {
  display: flex;
  margin-bottom: 24px;
  color: var(--brand-gold);
}
.testimonial-stars svg { width: 20px; height: 20px; fill: var(--brand-gold); }
.testimonial-quote-icon {
  position: absolute;
  top: 32px; right: 32px;
  width: 64px; height: 64px;
  color: #f1f5f9;
  transition: color 0.5s ease;
}
.testimonial-card:hover .testimonial-quote-icon { color: rgba(197, 160, 89, 0.1); }
.testimonial-text {
  color: var(--text-slate-700);
  font-style: italic;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 500;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 24px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy-dark);
  font-weight: 800;
  font-size: 1.125rem;
  margin-right: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.testimonial-author {
  font-weight: 800;
  color: var(--brand-navy);
  font-size: 1.125rem;
}
.testimonial-label {
  font-size: 10px;
  color: var(--text-slate-400);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 4px;
}

/* --- Service Page Cards --- */
.service-full-card {
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 64px;
  transition: border-color 0.5s ease;
}
.service-full-card:hover { border-color: rgba(197, 160, 89, 0.4); }
@media (min-width: 1024px) {
  .service-full-card { flex-direction: row; }
  .service-full-card.reversed { flex-direction: row-reverse; }
}
.service-full-image {
  height: 320px;
  position: relative;
}
@media (min-width: 1024px) {
  .service-full-image { width: 41.67%; height: auto; min-height: 500px; }
}
.service-full-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-full-image .overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 20, 0.1);
  mix-blend-mode: multiply;
  transition: opacity 0.5s ease;
}
.service-full-image:hover .overlay { opacity: 0; }
.service-full-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) { .service-full-body { padding: 64px; } }
@media (min-width: 1024px) {
  .service-full-body { width: 58.33%; padding: 80px; }
}
.service-full-title {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.service-full-desc {
  color: var(--text-slate-600);
  margin-bottom: 40px;
  font-size: 1.25rem;
  line-height: 1.7;
}
.service-list-box {
  background: rgba(248, 250, 252, 0.8);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
}
@media (min-width: 768px) { .service-list-box { padding: 40px; } }
.service-list-heading {
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}
.service-list-heading svg {
  width: 20px; height: 20px;
  color: var(--brand-gold);
  margin-right: 12px;
}
.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .service-list { grid-template-columns: repeat(2, 1fr); gap: 16px 24px; }
}
.service-list li {
  display: flex;
  align-items: flex-start;
  color: var(--text-slate-700);
  font-weight: 500;
  font-size: 1.125rem;
}
.service-list li svg {
  width: 24px; height: 24px;
  color: var(--brand-gold);
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-full-cta {
  margin-top: 40px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 0.875rem;
  width: fit-content;
}

/* --- CTA Banner --- */
.cta-banner {
  border-radius: 48px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--brand-gold-light);
}
@media (min-width: 768px) { .cta-banner { padding: 96px; } }
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  opacity: 0.1;
  mix-blend-mode: multiply;
}
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 800;
  color: var(--brand-navy-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 10;
}
.cta-banner p {
  color: rgba(3, 6, 11, 0.8);
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  z-index: 10;
}
.cta-banner .btn-navy {
  padding: 20px 56px;
  border-radius: 12px;
  font-size: 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  z-index: 10;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--brand-navy);
  color: #fff;
  padding: 128px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  mix-blend-mode: luminosity;
}
.page-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #f8fafc, transparent);
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.page-hero p {
  font-size: 1.5rem;
  color: var(--text-slate-300);
  font-weight: 500;
  position: relative;
  z-index: 10;
  max-width: 768px;
  margin: 0 auto;
}

/* --- About Page --- */
.about-story-card {
  background: #fff;
  border-radius: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .about-story-card { flex-direction: row; }
}
.about-story-image {
  height: 400px;
  position: relative;
}
@media (min-width: 1024px) {
  .about-story-image { width: 50%; height: auto; min-height: 500px; }
}
.about-story-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-story-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) { .about-story-body { padding: 80px; } }
@media (min-width: 1024px) { .about-story-body { width: 50%; } }

.pillar-card {
  background: #fff;
  padding: 48px;
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid #f1f5f9;
  text-align: center;
  transition: all 0.5s ease;
}
.pillar-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-color: rgba(197, 160, 89, 0.3);
}
.pillar-icon {
  width: 80px; height: 80px;
  border-radius: 24px;
  background: rgba(6, 11, 20, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: var(--brand-gold);
  transition: all 0.5s ease;
}
.pillar-card:hover .pillar-icon {
  background: var(--brand-gold);
  color: var(--brand-navy-dark);
}
.pillar-icon svg { width: 40px; height: 40px; }
.pillar-card h3 {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.pillar-card p {
  color: var(--text-slate-600);
  font-size: 1.125rem;
  line-height: 1.7;
}

.disclosure-block {
  border-left: 6px solid var(--brand-gold);
  padding-left: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
  background: #fff;
  border-radius: 0 48px 48px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 5fr 7fr; }
}
.contact-info-stack { display: flex; flex-direction: column; gap: 32px; }

.contact-card {
  background: #fff;
  padding: 40px;
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid #f1f5f9;
  transition: transform 0.5s ease;
}
.contact-card:hover { transform: translateY(-8px); }
.contact-card-icon {
  width: 64px; height: 64px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  color: var(--brand-navy-dark);
}
.contact-card-icon svg { width: 32px; height: 32px; }
.contact-card-label {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--text-slate-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.contact-card a {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--brand-navy);
  display: block;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.contact-card a:hover { color: var(--brand-gold); }
.contact-card .detail {
  color: var(--text-slate-500);
  font-size: 1.125rem;
  font-weight: 500;
}
.contact-card .address {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.contact-image-panel {
  position: relative;
  height: 384px;
  min-height: 500px;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
@media (min-width: 1024px) { .contact-image-panel { height: 100%; } }
.contact-image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-image-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  padding: 32px;
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.2);
}
.contact-image-overlay h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.contact-image-overlay p {
  color: var(--text-slate-300);
  font-weight: 500;
}

/* --- Lead Form --- */
.form-wrapper {
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
@media (min-width: 640px) { .form-wrapper { padding: 48px; } }
.form-top-line {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 6px;
}
.form-header {
  text-align: center;
  margin-bottom: 40px;
}
.form-header h3 {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.form-header p {
  color: var(--text-slate-500);
  font-weight: 500;
  font-size: 1.125rem;
}
.form-error {
  background: #fef2f2;
  color: #b91c1c;
  padding: 16px;
  border-radius: 12px;
  font-size: 0.875rem;
  margin-bottom: 24px;
  border: 1px solid #fecaca;
  display: flex;
  align-items: flex-start;
}
.form-error svg {
  width: 20px; height: 20px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}
.form-error span { font-weight: 500; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  .form-row-2 { grid-template-columns: repeat(2, 1fr); }
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-slate-700);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(248, 250, 252, 0.5);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  color: var(--brand-navy);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: #fff;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(197, 160, 89, 0.3);
}
.form-group textarea { resize: none; }
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.consent-box {
  background: rgba(248, 250, 252, 0.8);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-bottom: 24px;
  transition: border-color 0.3s ease;
  cursor: pointer;
}
.consent-box:hover { border-color: rgba(197, 160, 89, 0.4); }
.consent-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}
.consent-checkbox-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}
.consent-checkbox-wrapper input {
  position: absolute;
  width: 20px; height: 20px;
  opacity: 0;
  cursor: pointer;
}
.consent-checkmark {
  width: 20px; height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.consent-checkbox-wrapper input:checked + .consent-checkmark {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
}
.consent-checkmark svg {
  width: 14px; height: 14px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.consent-checkbox-wrapper input:checked + .consent-checkmark svg { opacity: 1; }
.consent-text {
  margin-left: 16px;
  font-size: 12px;
  color: var(--text-slate-500);
  line-height: 1.6;
  font-weight: 500;
}
.consent-text a {
  color: var(--brand-gold);
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 20px 24px;
  border-radius: 12px;
  font-size: 1.125rem;
  margin-top: 8px;
}
.submit-btn:disabled {
  opacity: 0.7;
  transform: none !important;
}
.form-security {
  text-align: center;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-slate-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.form-security svg {
  width: 14px; height: 14px;
  margin-right: 6px;
  color: var(--brand-gold);
}

/* --- Thank You Page --- */
.thank-you-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  padding: 128px 16px;
  position: relative;
}
.thank-you-card {
  max-width: 768px;
  width: 100%;
  background: #fff;
  border-radius: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  padding: 64px;
  text-align: center;
  position: relative;
  z-index: 10;
  border: 1px solid #f1f5f9;
  animation: fadeInUp 0.8s ease;
}
.thank-you-icon {
  width: 128px; height: 128px;
  background: #f0fdf4;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  border: 8px solid #dcfce7;
}
.thank-you-icon svg { width: 64px; height: 64px; }
.thank-you-card h1 {
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.thank-you-card h2 {
  font-size: 1.5rem;
  color: var(--text-slate-600);
  margin-bottom: 48px;
  font-weight: 500;
}
.thank-you-body {
  background: rgba(248, 250, 252, 0.8);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  margin-bottom: 48px;
  text-align: left;
  color: var(--text-slate-600);
  line-height: 1.7;
  font-size: 1.125rem;
}
.thank-you-body .phone-line {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  margin-top: 12px;
}
.thank-you-body .phone-line svg {
  width: 24px; height: 24px;
  margin-right: 12px;
  color: var(--brand-gold);
}
.thank-you-body .phone-line a {
  color: var(--brand-gold);
  font-weight: 800;
  margin-left: 8px;
  transition: color 0.3s ease;
}

/* --- Legal Pages (Privacy, Terms) --- */
.legal-page {
  padding: 128px 16px;
  background: #fff;
  min-height: 100vh;
}
.legal-page-inner {
  max-width: 896px;
  margin: 0 auto;
}
.legal-page h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid #f1f5f9;
  letter-spacing: -0.02em;
}
.legal-content {
  color: var(--text-slate-600);
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 500;
}
.legal-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-top: 48px;
  margin-bottom: 16px;
}
.legal-content p { margin-bottom: 16px; }
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li {
  margin-bottom: 8px;
  padding-left: 8px;
}
.legal-content strong { color: var(--brand-navy); font-weight: 700; }

/* --- Footer --- */
.site-footer {
  background: var(--brand-navy-dark);
  color: var(--text-slate-400);
  padding: 80px 0;
  border-top: 4px solid var(--brand-gold);
  position: relative;
  z-index: 10;
  overflow: hidden;
}
@media (min-width: 1024px) { .site-footer { padding: 96px 0; } }

.footer-glow {
  position: absolute;
  top: -400px;
  right: -400px;
  width: 800px;
  height: 800px;
  background: rgba(197, 160, 89, 0.05);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  margin-bottom: 64px;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 4fr 3fr 2fr 2fr; gap: 48px; }
}

.footer-brand-block p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 384px;
  font-weight: 500;
}
.footer-phone-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-slate-500);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.footer-phone-link {
  color: var(--brand-gold);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}
.footer-phone-link:hover { color: #EFE0A1; }
.footer-phone-link svg {
  width: 24px; height: 24px;
  margin-right: 12px;
}

.footer-col h4 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8125rem;
}
.footer-col ul li { margin-bottom: 20px; }
.footer-col ul a,
.footer-col ul button {
  font-size: 1.125rem;
  font-weight: 500;
  transition: color 0.3s ease;
  color: var(--text-slate-400);
  cursor: pointer;
}
.footer-col ul a:hover,
.footer-col ul button:hover { color: var(--brand-gold); }
.footer-col .highlight-link {
  color: var(--brand-gold);
  font-weight: 800;
}
.footer-col .highlight-link:hover { color: #EFE0A1; }

.footer-disclaimer {
  padding: 32px;
  background: var(--brand-navy);
  border-radius: 24px;
  border: 1px solid var(--brand-navy-light);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-slate-500);
  position: relative;
  z-index: 10;
}
.footer-disclaimer strong {
  color: var(--text-slate-400);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
  margin-right: 8px;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(6, 11, 20, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  gap: 32px;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}
.footer-badges {
  display: flex;
  gap: 40px;
}
.footer-badge {
  display: flex;
  align-items: center;
  color: var(--text-slate-400);
}
.footer-badge svg {
  width: 20px; height: 20px;
  margin-right: 12px;
  color: rgba(197, 160, 89, 0.5);
}

/* --- Quote Page --- */
.quote-page-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 60vh;
}
.quote-page-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
}
.quote-page-icon svg { width: 32px; height: 32px; color: var(--brand-navy-dark); }

.quote-immediate-help {
  margin-top: 64px;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  transition: all 0.5s ease;
}
.quote-immediate-help:hover {
  border-color: rgba(197, 160, 89, 0.3);
  transform: translateY(-4px);
}
.quote-immediate-help p {
  color: var(--text-slate-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  margin-bottom: 12px;
}
.quote-immediate-help a {
  display: inline-flex;
  align-items: center;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--brand-navy);
  transition: color 0.3s ease;
}
.quote-immediate-help a:hover { color: var(--brand-gold); }
.quote-immediate-help a svg {
  width: 32px; height: 32px;
  margin-right: 16px;
  color: var(--brand-gold);
}

/* --- Utility --- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-16 { margin-top: 64px; }
.mb-0 { margin-bottom: 0; }
.max-w-5xl { max-width: 1024px; }
.max-w-4xl { max-width: 896px; }
.max-w-3xl { max-width: 768px; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.hidden { display: none; }

/* --- Pillar Grid --- */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Trust Expect List --- */
.trust-list li {
  margin-bottom: 16px;
  font-size: 1.125rem;
  color: var(--text-slate-600);
  line-height: 1.6;
}
.trust-list strong {
  color: var(--brand-navy);
  font-weight: 700;
}
