/* Neo Gen Title — Premium Design System */
:root {
  --primary: #FF6A00;
  --primary-light: #FF8C22;
  --navy: #061C3F;
  --deep-blue: #0D2A5E;
  --white: #FFFFFF;
  --light-gray: #F7F8FA;
  --text: #1A1A1A;
  --text-muted: #5A6474;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 4px 24px rgba(6, 28, 63, 0.08);
  --shadow-md: 0 12px 48px rgba(6, 28, 63, 0.12);
  --shadow-lg: 0 24px 80px rgba(6, 28, 63, 0.18);
  --shadow-glow: 0 0 60px rgba(255, 106, 0, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --header-h: 92px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::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: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(1280px, 92vw);
  margin-inline: auto;
}

.container-wide {
  width: min(1440px, 94vw);
  margin-inline: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-muted);
  max-width: 640px;
  margin-top: 16px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Loading Screen */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: min(480px, 92vw);
  height: auto;
  display: block;
}

.loader-bar-wrap {
  width: 240px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 3px;
  transition: width 0.1s linear;
}

.loader-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.98); }
}

/* Cursor Follower */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body.cursor-active .cursor-glow { opacity: 1; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header.scrolled {
  background: rgba(6, 28, 63, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
  flex-shrink: 0;
  overflow: visible;
}

.logo img {
  max-height: 58px;
  height: auto;
  width: auto;
  max-width: min(320px, 42vw);
  display: block;
  object-fit: contain;
  object-position: left center;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-text span { color: var(--primary); }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
}

.header-cta {
  margin-left: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 106, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 106, 0, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--deep-blue);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.8125rem; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 90% 80% at 50% 45%, rgba(6, 28, 63, 0.25) 0%, rgba(6, 28, 63, 0.55) 100%),
    radial-gradient(ellipse 50% 60% at 75% 50%, rgba(255, 106, 0, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, rgba(6, 28, 63, 0.1) 0%, rgba(6, 28, 63, 0.85) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(255, 106, 0, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 20px;
}

.hero-title .char { display: inline-block; }

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .suffix { color: var(--primary); }

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.hero-floats {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.float-icon {
  position: absolute;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.float-icon:nth-child(1) { top: 20%; right: 10%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 60%; right: 20%; animation-delay: -2s; }
.float-icon:nth-child(3) { top: 30%; right: 30%; animation-delay: -4s; }
.float-icon:nth-child(4) { bottom: 20%; right: 15%; animation-delay: -6s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Trust Bar */
.trust-bar {
  padding: 24px 0;
  background: var(--light-gray);
  border-block: 1px solid rgba(6, 28, 63, 0.06);
  overflow: hidden;
}

.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  border: 1px solid rgba(6, 28, 63, 0.06);
}

.trust-card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.1), rgba(255, 140, 34, 0.15));
  border-radius: var(--radius-sm);
  color: var(--primary);
}

/* Why Section */
.why-section {
  padding: 120px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
}

.why-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.why-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--navy) 100%);
}

.why-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 28, 63, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.why-image-caption {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.why-image-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.why-image-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
}

.why-image-badge span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.why-cards {
  display: grid;
  gap: 16px;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition);
  cursor: default;
}

.why-card:hover {
  background: var(--white);
  border-color: rgba(255, 106, 0, 0.2);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transform: translateX(8px);
}

.why-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  color: var(--white);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Services Grid */
.services-section {
  padding: 120px 0;
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.service-card {
  position: relative;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 28, 63, 0.06);
  transition: all var(--transition);
  overflow: hidden;
  min-height: 220px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.1), rgba(255, 140, 34, 0.15));
  border-radius: var(--radius-md);
  color: var(--primary);
  margin-bottom: 20px;
  transition: transform var(--transition);
}

.service-card:hover .service-card-icon { transform: scale(1.1); }

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-card-expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all var(--transition);
  margin-top: 0;
}

.service-card:hover .service-card-expand {
  max-height: 80px;
  opacity: 1;
  margin-top: 12px;
}

.service-card-expand p {
  font-size: 0.8125rem;
  color: var(--primary);
  font-weight: 500;
}

/* Process Timeline */
.process-section {
  padding: 120px 0;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.process-section .section-title { color: var(--white); }
.process-section .section-subtitle { color: rgba(255, 255, 255, 0.65); }

.process-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.process-showcase {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: stretch;
  margin-top: 64px;
}

.process-visual-panel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-slides {
  position: absolute;
  inset: 0;
}

.process-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.06);
  transition: opacity 0.55s ease, transform 0.65s ease, visibility 0.55s;
  overflow: hidden;
}

.process-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}

.process-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-slide-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background: rgba(6, 28, 63, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 106, 0, 0.35);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-light);
}

.process-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  background: linear-gradient(180deg, transparent, rgba(6, 28, 63, 0.92));
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
}

.process-counter {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  white-space: nowrap;
}

.process-counter span {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

.process-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
}

.process-bar-fill {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 4px;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.45);
}

.process-steps-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-section .process-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.process-section .process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 16px 18px 16px 12px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
  opacity: 0.45;
}

.process-section .process-step:hover {
  opacity: 0.75;
  background: rgba(255, 255, 255, 0.04);
}

.process-section .process-step.active {
  opacity: 1;
  background: rgba(255, 106, 0, 0.08);
  border-color: rgba(255, 106, 0, 0.25);
}

.process-section .process-step.active .process-step-content {
  transform: translateX(6px);
  transition: transform 0.35s ease;
}

.process-section .process-step-num {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9375rem;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  z-index: 1;
}

.process-section .process-step.active .process-step-num {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary);
  box-shadow: 0 0 24px rgba(255, 106, 0, 0.35);
}

.process-section .process-step-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

.process-section .process-step-content strong {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
}

.process-section .process-step-content span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.process-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.process-nav-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.process-nav-btn:hover {
  background: rgba(255, 106, 0, 0.15);
  border-color: rgba(255, 106, 0, 0.4);
  transform: scale(1.05);
}

.process-dots {
  display: flex;
  gap: 10px;
}

.process-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, width 0.3s ease;
}

.process-dot.active {
  width: 28px;
  border-radius: 100px;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.5);
}

/* Legacy timeline (about/other pages) */
.timeline {
  position: relative;
  margin-top: 80px;
  padding-bottom: 40px;
}

.timeline-line {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.timeline-progress {
  position: absolute;
  top: 40px;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.5);
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.timeline-step {
  text-align: center;
  opacity: 0.4;
  transition: opacity var(--transition);
}

.timeline-step.active { opacity: 1; }

.timeline-dot {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  transition: all var(--transition);
}

.timeline-step.active .timeline-dot {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.4);
}

.timeline-step h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 180px;
  margin-inline: auto;
}

/* Map Section */
.map-section {
  padding: 120px 0;
  background: var(--white);
}

.map-wrapper {
  position: relative;
  margin-top: 64px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 20px;
  border: 2px solid rgba(6, 28, 63, 0.18);
  box-shadow:
    0 8px 32px rgba(6, 28, 63, 0.08),
    0 0 0 1px rgba(255, 106, 0, 0.12);
  overflow: visible;
}

#us-map-container {
  width: 100%;
  position: relative;
  line-height: 0;
  background: #F8FAFC;
  border: 2px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  box-shadow:
    inset 0 0 0 3px rgba(255, 106, 0, 0.15),
    0 4px 16px rgba(6, 28, 63, 0.06);
}

#us-map-full-container.states-map-full {
  width: 100%;
  position: relative;
  line-height: 0;
  min-height: 360px;
  background: #F8FAFC;
  border: 2px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  box-shadow:
    inset 0 0 0 3px rgba(255, 106, 0, 0.15),
    0 4px 16px rgba(6, 28, 63, 0.06);
}

.us-map {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  filter: drop-shadow(0 2px 4px rgba(6, 28, 63, 0.12));
}

.us-map path {
  fill: #B8C5D6;
  stroke: #475569;
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
  paint-order: stroke fill;
  stroke-linejoin: round;
  stroke-linecap: round;
  transition: fill 0.25s ease, stroke 0.25s ease, filter 0.25s ease;
  cursor: default;
}

.us-map path.licensed {
  fill: rgba(255, 106, 0, 0.55);
  stroke: #C24100;
  stroke-width: 1.5;
  cursor: pointer;
}

.us-map path.licensed:hover {
  fill: var(--primary);
  stroke: var(--navy);
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.55));
  animation-play-state: paused;
}

.map-error {
  padding: 48px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.map-tooltip {
  position: absolute;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.map-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.map-tooltip-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--primary);
  border-radius: 4px;
  font-size: 0.6875rem;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.map-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.map-stat {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.map-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.map-stat span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Expansion Section */
.expansion-section {
  position: relative;
  padding: 120px 0;
  background: var(--navy);
  overflow: hidden;
}

.expansion-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

.expansion-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: none;
  margin-inline: auto;
}

.expansion-content .section-title { color: var(--white); }
.expansion-content .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
  margin-inline: auto;
}

.expansion-nodes {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.expansion-node {
  text-align: center;
}

.expansion-node-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.4);
  animation: nodePulse 3s ease-in-out infinite;
}

.expansion-node:nth-child(2) .expansion-node-circle { animation-delay: -1s; }
.expansion-node:nth-child(3) .expansion-node-circle { animation-delay: -2s; }

@keyframes nodePulse {
  0%, 100% { box-shadow: 0 0 30px rgba(255, 106, 0, 0.4); }
  50% { box-shadow: 0 0 50px rgba(255, 106, 0, 0.6); }
}

.expansion-node span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Testimonials */
.testimonials-section {
  padding: 120px 0;
  background: var(--light-gray);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  margin-top: 64px;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 28, 63, 0.06);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--primary);
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep-blue), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--navy);
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(6, 28, 63, 0.15);
  transition: all var(--transition);
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--primary);
  width: 32px;
  border-radius: 5px;
}

/* Final CTA */
.cta-section {
  position: relative;
  padding: 140px 0;
  background: var(--navy);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(6, 28, 63, 0.9) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%230D2A5E" width="1200" height="400"/><path fill="%23061C3F" d="M0 300L50 280 100 290 150 260 200 270 250 240 300 250 350 220 400 230 450 200 500 210 550 180 600 190 650 160 700 170 750 140 800 150 850 120 900 130 950 100 1000 110 1050 80 1100 90 1150 60 1200 70V400H0Z"/><rect fill="%23FF6A00" opacity="0.08" x="200" y="100" width="800" height="200" rx="100"/></svg>') center/cover;
}

.cta-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 106, 0, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content .section-title {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Footer */
.footer {
  background: #041428;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand img {
  width: auto;
  max-width: 280px;
  height: auto;
  max-height: 64px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-tagline {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--primary);
  font-weight: 600;
}

.footer h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--primary); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
}

.footer-states {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.footer-state {
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 80px;
  background: var(--navy);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255, 106, 0, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(13, 42, 94, 0.5) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .section-title { color: var(--white); }
.page-hero .section-subtitle { color: rgba(255, 255, 255, 0.65); }

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: rgba(255, 255, 255, 0.8); }

/* About Page */
.about-story {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.mission-vision {
  padding: 100px 0;
  background: var(--light-gray);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.mv-card {
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 28, 63, 0.06);
  box-shadow: var(--shadow-sm);
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.mv-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.values-section {
  padding: 100px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  padding: 32px;
  text-align: center;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.value-card:hover {
  background: var(--white);
  border-color: rgba(255, 106, 0, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  color: var(--white);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.timeline-section {
  padding: 100px 0;
  background: var(--navy);
}

.timeline-section .section-title { color: var(--white); }
.timeline-section .section-subtitle { color: rgba(255, 255, 255, 0.6); }

.milestones {
  position: relative;
  margin-top: 64px;
  padding-left: 40px;
}

.milestones::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), rgba(255, 106, 0, 0.1));
}

.milestone {
  position: relative;
  padding-bottom: 48px;
  padding-left: 32px;
  opacity: 0.5;
  transition: opacity var(--transition);
}

.milestone.active { opacity: 1; }

.milestone::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--navy);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.5);
}

.milestone-year {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.milestone h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.milestone p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
}

/* Services Page */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid rgba(6, 28, 63, 0.06);
}

.service-detail:nth-child(even) { background: var(--light-gray); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  color: var(--white);
  margin-bottom: 24px;
}

.service-detail h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.service-detail-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.benefits-list {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text);
}

.benefits-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23FF6A00'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.service-detail .process-steps {
  display: grid;
  gap: 16px;
}

.service-detail .process-step-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(6, 28, 63, 0.06);
}

.service-detail:nth-child(even) .process-step-item { background: var(--white); }

.service-detail .process-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.service-detail .process-step-item h4 {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.service-detail .process-step-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* States Page */
.states-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.states-stat-card {
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  text-align: center;
}

.states-stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
}

.states-stat-card span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

.states-main {
  padding: 80px 0;
}

.states-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.states-map-full {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 0;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.state-search {
  margin-bottom: 24px;
}

.state-search input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 2px solid rgba(6, 28, 63, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%235A6474' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.857 1.064a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E") 16px center no-repeat;
}

.state-search input:focus {
  outline: none;
  border-color: var(--primary);
}

.states-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.sidebar-panel {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(6, 28, 63, 0.06);
  margin-bottom: 24px;
}

.sidebar-panel h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.sidebar-stat {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(6, 28, 63, 0.06);
  font-size: 0.875rem;
}

.sidebar-stat:last-child { border-bottom: none; }
.sidebar-stat strong { color: var(--primary); }

.state-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 300px;
  overflow-y: auto;
}

.state-chip {
  padding: 6px 12px;
  background: var(--light-gray);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.state-chip:hover,
.state-chip.active {
  background: var(--primary);
  color: var(--white);
}

.state-chip.highlight {
  animation: chipHighlight 1s ease;
}

@keyframes chipHighlight {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 20px rgba(255, 106, 0, 0.5); }
}

.growth-roadmap {
  padding: 80px 0;
  background: var(--light-gray);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.roadmap-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(6, 28, 63, 0.06);
  transition: all var(--transition);
}

.roadmap-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.roadmap-card .roadmap-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(255, 106, 0, 0.2);
  margin-bottom: 12px;
}

.roadmap-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.roadmap-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Contact Page */
.contact-section {
  padding: 80px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.contact-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  color: var(--white);
  flex-shrink: 0;
}

.contact-card strong {
  display: block;
  font-size: 0.875rem;
  color: var(--navy);
}

.contact-card span, .contact-card a {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form-wrap {
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(6, 28, 63, 0.06);
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(6, 28, 63, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-success {
  display: none;
  padding: 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-sm);
  color: #15803d;
  font-size: 0.875rem;
  margin-top: 16px;
}

.form-success.visible { display: block; }

.contact-map {
  margin-top: 80px;
}

.contact-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  background: var(--light-gray);
  border: 1px solid rgba(6, 28, 63, 0.06);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.office-card {
  padding: 40px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.office-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.office-card .office-label {
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.office-card address {
  font-style: normal;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

/* Reveal animations base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

/* Page transition overlay */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

.page-transition.active {
  animation: pageTransition 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageTransition {
  0% { transform: scaleY(0); transform-origin: bottom; }
  50% { transform: scaleY(1); transform-origin: bottom; }
  51% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: top; }
}

/* Decorative closing docs visual */
.closing-visual {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background:
    linear-gradient(135deg, rgba(13, 42, 94, 0.9) 0%, rgba(6, 28, 63, 0.95) 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.02) 40px,
      rgba(255, 255, 255, 0.02) 41px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.doc-stack {
  position: relative;
  width: 200px;
  height: 260px;
}

.doc-page {
  position: absolute;
  width: 180px;
  height: 240px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.doc-page:nth-child(1) { transform: rotate(-6deg) translate(-10px, 10px); opacity: 0.7; }
.doc-page:nth-child(2) { transform: rotate(3deg) translate(5px, 5px); opacity: 0.85; }
.doc-page:nth-child(3) {
  transform: rotate(0deg);
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 8px;
}

.doc-line {
  height: 8px;
  background: var(--light-gray);
  border-radius: 4px;
}

.doc-line.short { width: 60%; }
.doc-line.accent { background: var(--primary); width: 40%; height: 4px; margin-top: 8px; }

.doc-seal {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  line-height: 1.2;
}
