/* ============================================
   FINAL GEULA — CUSTOM CSS
   Geometric Clean | Deep Navy + Gold Palette
   ============================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
  --navy-900: #080f1a;
  --navy-800: #0d1b2a;
  --navy-700: #122236;
  --navy-600: #1a3050;
  --navy-500: #1e3a5f;
  --navy-400: #2a4f7c;
  --slate: #8fa3b8;
  --slate-light: #b8cad8;
  --cream: #f5f0e8;
  --cream-dim: #e8e2d8;
  --gold-400: #e8c56a;
  --gold-500: #c9a84c;
  --gold-600: #a8893a;
  --gold-glow: rgba(201, 168, 76, 0.18);
  --white: #ffffff;
  --text-primary: #f0ece4;
  --text-secondary: #b8cad8;
  --text-muted: #7a94ab;
  --border: rgba(255,255,255,0.08);
  --border-gold: rgba(201,168,76,0.25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4), 0 2px 4px rgba(0,0,0,0.25);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.3);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.25), 0 2px 6px rgba(201,168,76,0.15);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.35), 0 8px 32px rgba(0,0,0,0.25), 0 1px 2px rgba(255,255,255,0.04) inset;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 4vw, 4rem);
  --space-2xl: clamp(3rem, 6vw, 6rem);
  --space-3xl: clamp(4rem, 8vw, 9rem);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Red Hat Text', sans-serif;
  background-color: var(--navy-800);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: 'Red Hat Display', sans-serif;
  line-height: 1.2;
  color: var(--cream);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 600; }

p { color: var(--text-secondary); line-height: 1.75; }

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* --- SECTION LABELS --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Red Hat Text', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--space-sm);
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.section-label.light { color: var(--gold-400); }
.section-label.light::before { background: var(--gold-400); }

.section-title {
  margin-bottom: var(--space-md);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.section-header .section-label::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: 'Red Hat Text', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
  color: var(--navy-800);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #f0d07a 0%, var(--gold-400) 100%);
  box-shadow: 0 6px 28px rgba(201,168,76,0.4), 0 2px 8px rgba(201,168,76,0.2);
  transform: translateY(-2px);
  color: var(--navy-800);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
  color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--gold-500);
  border: 1.5px solid var(--gold-500);
}
.btn-outline:hover {
  background: var(--gold-glow);
  transform: translateY(-2px);
  color: var(--gold-400);
  border-color: var(--gold-400);
}

.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* --- GEO DECORATIONS --- */
.geo-accent { position: absolute; pointer-events: none; z-index: 0; }
.geo-circle-lg {
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  top: -10%;
  right: -10%;
  opacity: 0.4;
}
.geo-dots {
  width: 160px;
  height: 160px;
  background-image: radial-gradient(circle, var(--gold-500) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.12;
  bottom: 10%;
  left: 3%;
}

/* ============================================
   FLOATING NAV
   ============================================ */
.floating-nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1200px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.floating-nav.visible {
  opacity: 1;
  pointer-events: all;
}
.floating-nav.at-top {
  opacity: 1;
  pointer-events: all;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(13, 27, 42, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.06) inset;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-logo-img { width: 32px; height: 32px; }
.nav-logo-text {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--cream);
  background: rgba(255,255,255,0.07);
}
.nav-link.active { color: var(--gold-400); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.25rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-800);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  flex-shrink: 0;
  min-height: 40px;
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
  color: var(--navy-800);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-hamburger:hover { background: rgba(255,255,255,0.08); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--navy-700);
  border-left: 1px solid var(--border);
  z-index: 1100;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: all var(--transition);
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.08); color: var(--cream); }

.mobile-nav-links { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-links a {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.mobile-nav-links a:hover { background: rgba(255,255,255,0.06); color: var(--cream); }

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-800);
  font-weight: 700;
  border-radius: var(--radius-full);
  min-height: 52px;
  transition: all var(--transition);
}
.mobile-cta:hover { transform: translateY(-1px); color: var(--navy-800); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
  backdrop-filter: blur(4px);
}
.mobile-overlay.visible { opacity: 1; pointer-events: all; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 40%, var(--navy-700) 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(6rem, 12vw, 9rem);
  padding-bottom: var(--space-3xl);
}

.hero-geo {
  position: absolute;
  pointer-events: none;
}
.hero-geo-1 {
  width: clamp(400px, 60vw, 900px);
  height: clamp(400px, 60vw, 900px);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
  top: -20%;
  right: -15%;
}
.hero-geo-2 {
  width: clamp(200px, 30vw, 500px);
  height: clamp(200px, 30vw, 500px);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.06);
  top: 10%;
  right: 5%;
}
.hero-geo-3 {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(201,168,76,0.1);
  transform: rotate(45deg);
  bottom: 15%;
  left: 5%;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-container {
  position: relative;
  z-index: 2;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-lg);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 8px var(--gold-400);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}
.hero-title-accent { color: var(--gold-400); }

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-md);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-note i { color: var(--gold-500); }

/* --- HERO STEPS --- */
.hero-steps {
  margin-top: var(--space-2xl);
  position: relative;
  z-index: 2;
}
.steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-lg) var(--space-md);
  position: relative;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.step-item:last-child { border-right: none; }
.step-item:hover { background: rgba(255,255,255,0.04); }

.step-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-400);
  margin-bottom: var(--space-sm);
  transition: all var(--transition);
}
.step-item:hover .step-icon-wrap {
  background: rgba(201,168,76,0.2);
  box-shadow: var(--shadow-gold);
}
.step-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}
.step-num {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-500);
  opacity: 0.7;
  letter-spacing: 0.08em;
}
.step-line { display: none; }

/* --- HERO IMAGE --- */
.hero-image-wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  z-index: 1;
  display: none;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy-800) 0%, transparent 40%, transparent 70%, var(--navy-800) 100%),
              linear-gradient(180deg, var(--navy-800) 0%, transparent 20%, transparent 80%, var(--navy-800) 100%);
}

/* ============================================
   SITUATION SECTION — seamless flow
   ============================================ */
.situation-section {
  padding: var(--space-3xl) 0;
  background: var(--navy-800);
  position: relative;
}

.situation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.situation-text .section-title { margin-bottom: var(--space-md); }
.situation-body { margin-bottom: var(--space-md); }
.situation-body:last-of-type { margin-bottom: var(--space-lg); }

.situation-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.scenario-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.scenario-card:hover {
  background: rgba(255,255,255,0.055);
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 2px 8px rgba(201,168,76,0.1);
}
.scenario-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}
.scenario-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.scenario-card p { font-size: 0.85rem; line-height: 1.6; }

/* ============================================
   HOW WE WORK SECTION
   ============================================ */
.how-section {
  padding: var(--space-3xl) 0;
  background: var(--navy-700);
  position: relative;
  overflow: hidden;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.how-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.how-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.how-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 2px 8px rgba(201,168,76,0.12);
}
.how-card:hover::before { opacity: 1; }

.how-number {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-500);
  opacity: 0.6;
  margin-bottom: var(--space-sm);
}
.how-icon {
  font-size: 1.5rem;
  color: var(--gold-400);
  margin-bottom: var(--space-sm);
}
.how-card h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.how-card p { font-size: 0.88rem; line-height: 1.65; }

/* ============================================
   FEATURES SECTION — two column
   ============================================ */
.features-section {
  padding: var(--space-3xl) 0;
  background: var(--navy-800);
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.features-image-col { position: relative; }
.features-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.features-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(13,27,42,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-400);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

.feature-items { display: flex; flex-direction: column; gap: 0; }
.feature-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-item:last-child { border-bottom: none; }
.feature-item:hover { padding-left: 0.5rem; }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition);
}
.feature-item:hover .feature-icon {
  background: rgba(201,168,76,0.18);
  box-shadow: var(--shadow-gold);
}
.feature-text h4 { margin-bottom: 0.3rem; color: var(--cream); }
.feature-text p { font-size: 0.88rem; }

/* ============================================
   SERVICES ACCORDION
   ============================================ */
.services-section {
  padding: var(--space-3xl) 0;
  background: var(--navy-700);
  position: relative;
  overflow: hidden;
}

.accordion { display: flex; flex-direction: column; gap: 0; }
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-item:first-child { border-top: 1px solid var(--border); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  gap: var(--space-md);
  text-align: left;
  transition: all var(--transition);
}
.accordion-trigger:hover { padding-left: 0.5rem; }

.acc-trigger-left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.acc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.accordion-trigger[aria-expanded="true"] .acc-icon {
  background: rgba(201,168,76,0.2);
}
.acc-trigger-left span {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: var(--cream);
}
.acc-arrow {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.accordion-trigger[aria-expanded="true"] .acc-arrow { transform: rotate(180deg); color: var(--gold-400); }

.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-body.open { max-height: 600px; }

.acc-body-inner {
  padding: 0 0 var(--space-lg) 60px;
}
.acc-body-inner p { margin-bottom: var(--space-sm); font-size: 0.95rem; }
.acc-list {
  margin-top: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.acc-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.acc-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}

/* ============================================
   SWIPER — CASES
   ============================================ */
.cases-section {
  padding: var(--space-3xl) 0;
  background: var(--navy-800);
  overflow: hidden;
}

.cases-swiper { padding-bottom: 3.5rem !important; }

.case-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.case-card:hover {
  border-color: var(--border-gold);
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}

.case-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-400);
}
.case-card h3 { font-size: 1.1rem; }
.case-card p { font-size: 0.88rem; flex: 1; }
.case-instruments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}
.case-instruments span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--gold-400);
}

.swiper-pagination-bullet {
  background: var(--text-muted) !important;
  opacity: 0.5 !important;
}
.swiper-pagination-bullet-active {
  background: var(--gold-400) !important;
  opacity: 1 !important;
}
.swiper-button-prev, .swiper-button-next {
  color: var(--gold-400) !important;
  background: rgba(13,27,42,0.8);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  width: 44px !important;
  height: 44px !important;
  transition: all var(--transition);
}
.swiper-button-prev::after, .swiper-button-next::after { font-size: 0.9rem !important; }
.swiper-button-prev:hover, .swiper-button-next:hover {
  background: var(--gold-glow);
  box-shadow: var(--shadow-gold);
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
  padding: var(--space-3xl) 0;
  background: var(--navy-700);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.why-content p { margin-bottom: var(--space-md); }
.why-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: var(--space-lg);
}
.why-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.why-point i { color: var(--gold-400); font-size: 0.9rem; }

.why-image-col {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}
.why-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
}
.why-img-2 {
  width: 75%;
  margin-left: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-500) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-geo-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1);
  top: -30%;
  left: -10%;
  pointer-events: none;
}
.cta-geo-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
  bottom: -20%;
  right: 5%;
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: var(--space-md);
}
.cta-subtitle {
  color: var(--slate-light);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.cta-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}
.cta-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-light);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.cta-contact-link:hover { color: var(--gold-400); }
.cta-contact-link i { color: var(--gold-400); }
.cta-divider { color: var(--text-muted); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-900);
  border-top: 1px solid var(--border);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  transition: opacity var(--transition);
}
.footer-logo:hover { opacity: 0.8; }
.footer-logo-img { width: 36px; height: 36px; }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}
.footer-nav a {
  padding: 0.4rem 0.8rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.footer-nav a:hover { color: var(--gold-400); background: rgba(255,255,255,0.04); }

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-contact span { display: flex; align-items: center; gap: 0.4rem; }
.footer-contact i { color: var(--gold-500); font-size: 0.8rem; }
.footer-contact a { color: var(--text-muted); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold-400); }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  width: 100%;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--text-secondary); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: clamp(8rem, 15vw, 12rem) 0 var(--space-3xl);
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
  overflow: hidden;
  text-align: center;
}
.page-hero-geo {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.07);
  top: -30%;
  right: -10%;
  pointer-events: none;
}
.page-hero-content { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-title { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: var(--space-md); }
.page-hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  padding: var(--space-3xl) 0;
  background: var(--navy-800);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.about-text p { margin-bottom: var(--space-md); }
.about-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.values-section {
  padding: var(--space-3xl) 0;
  background: var(--navy-700);
  position: relative;
  overflow: hidden;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}
.value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.value-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.05);
}
.value-icon {
  font-size: 1.5rem;
  color: var(--gold-400);
  margin-bottom: var(--space-sm);
}
.value-card h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.value-card p { font-size: 0.88rem; }

.approach-section {
  padding: var(--space-3xl) 0;
  background: var(--navy-800);
}
.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.approach-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.approach-steps { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-lg); }
.approach-step {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.approach-step:hover { border-color: var(--border-gold); background: rgba(255,255,255,0.05); }
.approach-step-num {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-500);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
  min-width: 36px;
}
.approach-step-content h4 { margin-bottom: 0.3rem; }
.approach-step-content p { font-size: 0.88rem; }

.about-image-section {
  padding: var(--space-xl) 0 var(--space-3xl);
  background: var(--navy-800);
}
.about-wide-img-wrap { position: relative; }
.about-wide-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 21/9;
  box-shadow: var(--shadow-lg);
}
.about-img-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(13,27,42,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  max-width: 500px;
}
.about-img-caption p { font-size: 0.9rem; color: var(--slate-light); }

/* ============================================
   SERVICE PAGES
   ============================================ */
.service-intro {
  padding: var(--space-3xl) 0;
  background: var(--navy-800);
}
.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.service-intro-text p { margin-bottom: var(--space-md); }
.service-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.service-details {
  padding: var(--space-3xl) 0;
  background: var(--navy-700);
  position: relative;
  overflow: hidden;
}
.service-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}
.service-step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.service-step-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.05);
}
.service-step-icon {
  font-size: 1.5rem;
  color: var(--gold-400);
  margin-bottom: var(--space-sm);
}
.service-step-card h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.service-step-card p { font-size: 0.88rem; }

.service-process {
  padding: var(--space-3xl) 0;
  background: var(--navy-800);
}
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.process-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.process-points { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-lg); }
.process-point {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.process-point-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1rem;
  flex-shrink: 0;
}
.process-point h4 { margin-bottom: 0.3rem; }
.process-point p { font-size: 0.88rem; }

/* ============================================
   INSURANCE PAGE
   ============================================ */
.insurance-types {
  padding: var(--space-3xl) 0;
  background: var(--navy-700);
  position: relative;
  overflow: hidden;
}
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}
.insurance-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.insurance-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.05);
}
.insurance-icon {
  font-size: 1.5rem;
  color: var(--gold-400);
  margin-bottom: var(--space-sm);
}
.insurance-card h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.insurance-card p { font-size: 0.88rem; }

.insurance-process {
  padding: var(--space-3xl) 0;
  background: var(--navy-800);
}

.insurance-note {
  padding: 0 0 var(--space-3xl);
  background: var(--navy-800);
}
.note-card {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}
.note-icon {
  font-size: 2rem;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.note-content h3 { margin-bottom: var(--space-sm); }
.note-content p { margin-bottom: var(--space-md); font-size: 0.95rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: var(--space-3xl) 0;
  background: var(--navy-800);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
}
.contact-form-card h2 { margin-bottom: 0.5rem; }
.form-subtitle { font-size: 0.9rem; margin-bottom: var(--space-lg); }

.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  color: var(--cream);
  font-family: 'Red Hat Text', sans-serif;
  font-size: 0.95rem;
  transition: all var(--transition);
  min-height: 48px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold-500);
  cursor: pointer;
}
.form-checkbox label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.form-checkbox label a { color: var(--gold-400); text-decoration: underline; }

.contact-info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-card);
}
.contact-info-card h3 { margin-bottom: var(--space-lg); }
.contact-detail {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.contact-detail a:hover { color: var(--gold-400); }

.contact-note-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}
.contact-note-icon {
  color: var(--gold-400);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-note-card h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.contact-note-card p { font-size: 0.85rem; }

.map-section {
  padding: 0 0 var(--space-3xl);
  background: var(--navy-800);
}
.map-wrap h3 { margin-bottom: var(--space-md); }
.map-iframe-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: var(--space-3xl) 0;
  background: var(--navy-800);
}
.thanks-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.thanks-icon {
  font-size: 3.5rem;
  color: var(--gold-400);
  margin-bottom: var(--space-lg);
  animation: scale-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes scale-in {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.thanks-title { margin-bottom: var(--space-md); }
.thanks-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.thanks-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  color: var(--gold-400);
  margin-bottom: var(--space-xl);
}
.thanks-note i { font-size: 0.9rem; }
.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: clamp(8rem, 15vw, 11rem) 0 var(--space-3xl);
  background: var(--navy-800);
  min-height: 100vh;
}
.legal-header {
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}
.legal-header h1 { margin-bottom: 0.5rem; }
.legal-date { font-size: 0.85rem; color: var(--text-muted); }

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--cream);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-content h3 {
  font-size: 1.05rem;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  color: var(--cream);
}
.legal-content p { margin-bottom: var(--space-sm); font-size: 0.95rem; }
.legal-content ul {
  margin: var(--space-sm) 0 var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-content li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  list-style: disc;
}
.legal-content a { color: var(--gold-400); text-decoration: underline; }
.legal-content a:hover { color: var(--gold-400); opacity: 0.8; }
.legal-content code {
  font-family: monospace;
  background: rgba(255,255,255,0.06);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  font-size: 0.88em;
  color: var(--gold-400);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 900px;
  background: rgba(18, 34, 54, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);
  display: none;
}
.cookie-banner.visible { display: block; }

.cookie-banner-inner {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--cream);
}
.cookie-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.cookie-text a { color: var(--gold-400); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Red Hat Text', sans-serif;
  min-height: 44px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.cookie-btn-accept {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-800);
}
.cookie-btn-accept:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.cookie-btn-reject {
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.cookie-btn-reject:hover { background: rgba(255,255,255,0.1); color: var(--cream); }
.cookie-btn-customize {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.cookie-btn-customize:hover { color: var(--text-secondary); border-color: rgba(255,255,255,0.2); }

/* Cookie Customize Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cookie-modal-overlay.visible { display: flex; }
.cookie-modal {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.cookie-modal h3 { margin-bottom: var(--space-md); }
.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-cat-info h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.cookie-cat-info p { font-size: 0.82rem; color: var(--text-muted); }

.cookie-toggle {
  position: relative;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle-slider {
  display: block;
  width: 44px;
  height: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition);
  position: relative;
}
.cookie-toggle-slider::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  top: 3px;
  left: 3px;
  transition: transform var(--transition);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--gold-500); }
.cookie-toggle input:checked + .cookie-toggle-slider::after { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 1024px) {
  .hero-image-wrap { display: block; }
  .hero-container { max-width: 58%; }
}

@media (max-width: 1023px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .situation-grid { grid-template-columns: 1fr; }
  .features-layout { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .approach-layout { grid-template-columns: 1fr; }
  .service-intro-grid { grid-template-columns: 1fr; }
  .service-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .insurance-grid { grid-template-columns: repeat(2, 1fr); }
  .process-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .steps-track { grid-template-columns: repeat(2, 1fr); }
  .step-item { border-right: none; border-bottom: 1px solid var(--border); }
  .step-item:nth-child(2n) { border-right: none; }
  .step-item:nth-last-child(-n+2) { border-bottom: none; }

  .situation-cards { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .service-steps-grid { grid-template-columns: 1fr; }
  .insurance-grid { grid-template-columns: 1fr; }

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

  .acc-body-inner { padding-left: 0; }

  .about-wide-img { aspect-ratio: 16/9; }
  .about-img-caption { position: static; margin-top: var(--space-sm); }

  .note-card { flex-direction: column; }

  .cookie-banner-inner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; justify-content: center; }

  .footer-contact { flex-direction: column; align-items: center; }
  .cta-contact-row { flex-direction: column; gap: 0.75rem; }
  .cta-divider { display: none; }
}

@media (max-width: 480px) {
  .steps-track { grid-template-columns: 1fr; }
  .step-item { border-right: none; border-bottom: 1px solid var(--border); }
  .step-item:last-child { border-bottom: none; }

  .situation-cards { grid-template-columns: 1fr; }
  .thanks-actions { flex-direction: column; }
  .thanks-actions .btn { width: 100%; justify-content: center; }

  .cookie-actions { flex-direction: column; }
  .cookie-btn { width: 100%; }

  .footer-nav { flex-direction: column; align-items: center; }
  .footer-legal { flex-direction: column; align-items: center; }
}