/* ============================================================
   ACCEL COUNSELING — Premium Static Site
   Color Palette: Deep Navy #003366 | Lime #a4c539 | Cream #fdf5e6 | Teal #016f73
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #003366;
  --navy-deep:  #001f40;
  --lime:       #a4c539;
  --lime-dark:  #84a020;
  --lime-pale:  #eef5d0;
  --cream:      #fdf5e6;
  --cream-dark: #f0e6cb;
  --teal:       #016f73;
  --teal-dark:  #015256;
  --dark:       #111418;
  --mid:        #1e242a;
  --text-dark:  #0d1a2b;
  --text-mid:   #304254;
  --text-light: rgba(255,255,255,0.9);
  --text-muted-light: rgba(255,255,255,0.65);

  --font-body:    'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;

  --max-w: 75rem;   /* 1200px */
  --radius: 0.75rem;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }

/* ==============================
   UTILITY
============================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-light  { background: var(--cream); }
.section-white  { background: #ffffff; }
.section-dark   { background: var(--navy); }
.section-teal   { background: var(--teal); }
.section-lime   { background: var(--lime); }
.section-video  { padding: 0; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }

.section-header {
  margin-bottom: 3.5rem;
  text-align: center;
}
.section-header-light .section-label,
.section-header-light .section-title { color: var(--cream); }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime-dark);
  margin-bottom: 0.375rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

/* Navy → Teal gradient heading (light bg sections) */
.gradient-heading {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Cream → Lime gradient heading (dark bg sections) */
.gradient-heading-light {
  background: linear-gradient(135deg, var(--cream) 0%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Green/Tan gradient heading (dark bg sections) */
.gradient-heading-alt {
  background: linear-gradient(135deg, var(--lime) 0%, var(--cream-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Earthy gradient heading (light bg sections) */
.gradient-heading-earth {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #8c6a28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ==============================
   BUTTONS
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--lime);
  color: var(--navy-deep);
  border-color: var(--lime);
}
.btn-primary:hover {
  background: var(--lime-dark);
  border-color: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(164, 197, 57, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 51, 102, 0.35);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ==============================
   NAV
============================== */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}

#main-nav.scrolled {
  background: rgba(0, 31, 64, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.875rem 0;
  box-shadow: 0 0.25rem 2rem rgba(0,0,0,0.25);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.logo-accel {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: 0.08em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  transition: all var(--transition);
}
.nav-link:hover { color: var(--lime); }

.nav-link.nav-cta {
  background: var(--lime);
  color: var(--navy-deep);
  padding: 0.5rem 1.25rem;
  margin-left: 0.5rem;
}
.nav-link.nav-cta:hover {
  background: var(--lime-dark);
  color: var(--navy-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3125rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--cream);
  border-radius: 9999px;
  transition: all var(--transition);
}

/* ==============================
   HERO
============================== */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #013a55 50%, var(--teal-dark) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(164,197,57,0.08) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(1,111,115,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.hero-bg-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 52rem;
  padding: 2rem;
  padding-top: 8rem;
}

.hero-pretitle {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  text-wrap: balance;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(253,245,230,0.85);
  max-width: 36rem;
  margin: 0 auto 0.75rem;
  text-wrap: balance;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-locations {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(253,245,230,0.5);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.75s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

/* Scroll cue removed */


/* ==============================
   SERVICES — Glassmorphism
============================== */
.section-services {
  background: linear-gradient(135deg, #001228 0%, #001f40 35%, #012d52 65%, #014a55 100%);
  position: relative;
  overflow: hidden;
}

.services-bg-glow {
  position: absolute;
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(164,197,57,0.07) 0%, transparent 65%);
  top: -10rem;
  right: -10rem;
  pointer-events: none;
}
.section-services::after {
  content: '';
  position: absolute;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(1,111,115,0.09) 0%, transparent 65%);
  bottom: -8rem;
  left: -8rem;
  pointer-events: none;
}

.section-label-light  { color: var(--lime); }
.section-title-light  { color: var(--cream); }

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

.glass-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 1rem;
  padding: 1.875rem;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.glass-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-0.3rem);
  box-shadow:
    0 1.5rem 3rem rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

/* Top gradient accent bar */
.glass-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 1rem 1rem 0 0;
}
.accent-lime { background: linear-gradient(90deg, var(--lime), rgba(164,197,57,0.4)); }
.accent-teal { background: linear-gradient(90deg, var(--teal), rgba(1,111,115,0.4)); }
.accent-gold { background: linear-gradient(90deg, #c8973a, rgba(200,151,58,0.4)); }

.glass-card .service-title {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
  margin: 0;
}

.service-copy {
  font-size: 0.9375rem;
  color: rgba(253,245,230,0.75);
  line-height: 1.75;
  flex: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: auto;
}
.service-tags span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 0.2rem 0.625rem;
}



/* ==============================
   EMDR SECTION
============================== */
.emdr-layout {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 4rem;
  align-items: start;
}

.emdr-label-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 8rem;
  padding-top: 0.5rem;
}

.emdr-big-label {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  text-shadow: 0 0.125rem 1.5rem rgba(164,197,57,0.4);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.emdr-sub-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253,245,230,0.5);
  margin-top: 0.75rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.emdr-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 2rem;
  line-height: 1.2;
  text-wrap: balance;
}

.emdr-body p {
  font-size: 1rem;
  color: rgba(253,245,230,0.85);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.emdr-how-box {
  background: rgba(164,197,57,0.08);
  border: 1px solid rgba(164,197,57,0.2);
  border-left: 3px solid var(--lime);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-top: 2rem;
}
.emdr-how-box h3 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
}
.emdr-how-box p {
  font-size: 0.9375rem;
  color: rgba(253,245,230,0.8);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.emdr-how-box p:last-child { margin-bottom: 0; }

/* ==============================
   APPROACH
============================== */
.approach-layout {
  display: grid;
  grid-template-columns: 1fr 18rem;
  gap: 4rem;
  align-items: start;
}

.approach-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.approach-text p:last-child { margin-bottom: 0; }

.approach-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.credential-card {
  background: white;
  border: 1px solid rgba(0,51,102,0.1);
  border-left: 3px solid var(--lime);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  transition: all var(--transition);
}
.credential-card:hover {
  border-left-color: var(--navy);
  box-shadow: 0 0.25rem 1rem rgba(0,51,102,0.1);
}
.credential-card h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.credential-card p {
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 1.4;
}

/* ==============================
   ABOUT
============================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 20rem;
  gap: 4rem;
  align-items: start;
}

.about-body p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { color: var(--cream); font-weight: 700; }

.about-license {
  margin-top: 2rem;
}
.license-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: rgba(164,197,57,0.12);
  border: 1px solid rgba(164,197,57,0.3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
}

.about-image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 4rem;
}

.about-headshot-img {
  width: 100%;
  max-width: 18rem;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 1rem;
  border: 1px solid rgba(164,197,57,0.25);
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.3);
  display: block;
}

/* ==============================
   OFFICE VIDEO
============================== */
.office-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,31,64,0.72) 0%, rgba(1,111,115,0.55) 100%);
  z-index: 1;
}

.office-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 50rem;
}

.office-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 1rem;
  text-shadow: 0 0.125rem 1rem rgba(0,0,0,0.4);
}

.office-subtext {
  font-size: 1.125rem;
  color: rgba(253,245,230,0.8);
  margin-bottom: 2.5rem;
}

.office-locations-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.office-chip {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: rgba(164,197,57,0.15);
  border: 1px solid rgba(164,197,57,0.4);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

/* ==============================
   BOOK — Nine Energetic Betrayals
============================== */
.section-book {
  background: linear-gradient(135deg, #0d0d1a 0%, #111428 50%, #0a1a0a 100%);
  position: relative;
  overflow: hidden;
}
.section-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,151,58,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(164,197,57,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.book-layout {
  display: grid;
  grid-template-columns: 16rem 1fr;
  gap: 5rem;
  align-items: center;
}

/* Book cover image */
.book-cover-img {
  width: 100%;
  max-width: 20rem;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 10px 15px 30px rgba(0,0,0,0.5), 0 2px 10px rgba(0,0,0,0.3);
  transition: transform var(--transition);
}
.book-cover-img:hover {
  transform: translateY(-0.35rem) rotate(-1deg);
}

/* Book content */
.book-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
  margin: 0.5rem 0 1.5rem;
}
.book-copyright {
  font-size: 0.6em;
  vertical-align: super;
  color: rgba(253,245,230,0.4);
}

.book-copy {
  font-size: 1rem;
  color: rgba(253,245,230,0.72);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

.book-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.book-status-pill {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(200,151,58,0.7);
  border: 1px solid rgba(200,151,58,0.25);
  border-radius: 9999px;
  padding: 0.4rem 1rem;
}

/* ==============================
   GRITWORKS COACHING BRIDGE
============================== */
.section-coaching {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0a1a2e 60%, #012020 100%);
  position: relative;
  overflow: hidden;
}
.section-coaching::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 2rem,
    rgba(164,197,57,0.015) 2rem,
    rgba(164,197,57,0.015) 4rem
  );
  pointer-events: none;
}

.coaching-layout {
  display: grid;
  grid-template-columns: 1fr 18rem;
  gap: 4rem;
  align-items: center;
}

.coaching-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--cream);
  margin: 0.5rem 0 1.5rem;
  line-height: 1.15;
}

.coaching-copy {
  font-size: 1rem;
  color: rgba(253,245,230,0.75);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 36rem;
}
.coaching-copy strong { color: var(--lime); font-weight: 600; }

.btn-lime-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  border: 2px solid var(--lime);
  color: var(--lime);
  background: transparent;
  transition: all var(--transition);
}
.btn-lime-outline:hover {
  background: var(--lime);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(164,197,57,0.3);
}

.coaching-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}
.coaching-badge-inner {
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(164,197,57,0.06);
  border: 1px solid rgba(164,197,57,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  text-align: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 3rem rgba(164,197,57,0.08), inset 0 1px 0 rgba(255,255,255,0.08);
}
.coaching-badge-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: 0.04em;
  line-height: 1;
}
.coaching-badge-sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(164,197,57,0.6);
  margin-bottom: 0.75rem;
}
.coaching-badge-tagline {
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(253,245,230,0.45);
  line-height: 1.5;
}

/* ==============================
   FEES
============================== */
.fees-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.fee-card {
  background: var(--cream);
  border: 1px solid rgba(0,51,102,0.1);
  border-top: 3px solid var(--lime);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}
.fee-card:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0,51,102,0.1);
  transform: translateY(-0.2rem);
}
.fee-card h3 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
}
.fee-rate {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.375rem;
  line-height: 1.2;
}
.fee-detail {
  font-size: 0.8125rem;
  color: var(--text-mid);
}
.fee-card-note {
  border-top-color: var(--teal);
}
.fee-card-note p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0.625rem;
}
.fee-card-note p:last-child { margin-bottom: 0; }

.fees-note {
  font-size: 0.8125rem;
  color: var(--text-mid);
  opacity: 0.7;
  text-align: center;
  border-top: 1px solid rgba(0,51,102,0.08);
  padding-top: 1.25rem;
}

/* ==============================
   CONTACT
============================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  text-wrap: balance;
}

.contact-block {
  margin-bottom: 1.75rem;
}
.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,51,102,0.6);
  margin-bottom: 0.25rem;
}
.contact-value {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
}
.contact-link {
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid rgba(0,51,102,0.25);
  transition: border-color var(--transition);
}
.contact-link:hover { border-color: var(--navy); }

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 2.5rem;
}
.contact-actions .btn { justify-content: center; }

/* ==============================
   FOOTER
============================== */
.site-footer {
  background: var(--navy-deep);
  padding: 3.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 0.25rem;
}
.footer-logo-accel {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: 0.08em;
}
.footer-logo-sub {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--lime); }

.footer-legal {
  width: 100%;
  max-width: 40rem;
}
.footer-legal p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 0.375rem;
}
.footer-disclaimer {
  font-size: 0.75rem !important;
  max-width: 36rem;
  margin: 0.75rem auto 0.375rem;
}
.footer-copy { margin-top: 0.75rem !important; }

/* ==============================
   ANIMATIONS
============================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(1.5rem); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* Content always visible — no scroll-reveal opacity tricks */

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 68rem) {
  .approach-layout {
    grid-template-columns: 1fr;
  }
  .approach-credentials {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .credential-card { flex: 1 1 13rem; }

  .about-layout { grid-template-columns: 1fr; }
  .about-image-col { align-items: flex-start; padding-top: 0; }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }

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

@media (max-width: 56rem) {
  .emdr-layout {
    grid-template-columns: 1fr;
  }
  .emdr-label-col {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    position: static;
  }
  .emdr-big-label {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: none;
    font-size: 3rem;
  }
  .emdr-sub-label {
    writing-mode: horizontal-tb;
    transform: none;
    margin-top: 0;
  }
}

@media (max-width: 48rem) {
  .section { padding: 4rem 0; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(0,15,30,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }

  .nav-link { font-size: 1.25rem; padding: 0.75rem 1.5rem; }
  .nav-link.nav-cta { margin-left: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .contact-actions .btn { font-size: 0.8125rem; }
}
