/* ============================================================
   OLANDER MEDIA — Main Stylesheet
   Colors: Midnight Green #193D45 | Olive #978C2C | Gunmetal #112222
   Citron #D9CF77 | Orange #F44A25 | BG Gray #F0ECEC
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Open+Sans:wght@300;400;600&display=swap');

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

:root {
  --midnight:    #193D45;
  --olive:       #978C2C;
  --gunmetal:    #112222;
  --citron:      #D9CF77;
  --orange:      #F44A25;
  --bg-gray:     #F0ECEC;
  --white:       #FFFFFF;
  --border:      #E2DDDD;
  --text-body:   #2A3A3A;
  --max-w:       1200px;
  --nav-h:       72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: var(--gunmetal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--midnight);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.02em; }

p { color: var(--text-body); font-size: 1.05rem; line-height: 1.75; }

.eyebrow {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 1rem;
}

.section-label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
}

/* ── Layout Utilities ───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section--gray {
  background: var(--bg-gray);
}

.section--dark {
  background: var(--midnight);
}

.section--dark h2,
.section--dark h3,
.section--dark p,
.section--dark .eyebrow { color: var(--white); }
.section--dark .eyebrow { color: var(--citron); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover {
  background: #d93d1c;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--midnight);
  border: 2px solid var(--midnight);
}
.btn--outline:hover {
  background: var(--midnight);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(17,34,34,0.08);
}

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

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gunmetal);
  transition: color 0.15s ease;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--olive);
  transition: width 0.2s ease;
}

.nav__links a:hover { color: var(--midnight); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { margin-left: 1rem; }
.nav__links a.nav__cta,
.nav__links a.nav__cta:hover { color: var(--white); }
.nav__cta::after { display: none; }

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--midnight);
  transition: all 0.25s ease;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 0;
  overflow: hidden;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 560px;
}

.hero__content { padding-bottom: 5rem; }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1.5rem;
}

.hero__tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--olive);
}

.hero__headline {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--midnight);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero__headline em {
  font-style: normal;
  color: var(--olive);
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Olive accent bar on image */
.hero__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -12px;
  width: 4px;
  height: 60px;
  background: var(--olive);
  z-index: 1;
}

/* ── Stats bar ───────────────────────────────────────────────── */
.stats {
  background: var(--midnight);
  padding: 3rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats__item {
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.stats__item:last-child { border-right: none; }

.stats__number {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--citron);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}

.stats__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
  display: block;
}

/* ── Client Logos Marquee ────────────────────────────────────── */
.logos {
  padding: 6rem 0;
  background: var(--white);
  overflow: hidden;
}

.logos__intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Fade edges */
.logos__track-wrap {
  position: relative;
}

.logos__track-wrap::before,
.logos__track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logos__track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.logos__track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.logos__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 90s linear infinite;
}

.logos__track:hover {
  animation-play-state: paused;
}

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

.logos__item {
  background: var(--white);
  border: 1px solid #E4DFDF;
  border-radius: 4px;
  padding: 0.75rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 80px;
  margin: 0 0.6rem;
  flex-shrink: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.logos__item:hover {
  border-color: var(--olive);
  box-shadow: 0 2px 12px rgba(25, 61, 69, 0.08);
}

.logos__item img {
  height: auto;
  max-height: 52px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.logos__item:hover img {
  opacity: 1;
}

/* ── Why Us / Differentiator ─────────────────────────────────── */
.why {
  padding: 7rem 0;
}

.why__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}

.why__headline { max-width: 520px; }
.why__headline h2 { margin-top: 0.75rem; }

.why__intro p {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.why__intro p:last-child { margin-bottom: 0; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--olive);
  margin: 1.5rem 0;
}

.why__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.25rem 2rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pillar:hover {
  border-color: var(--midnight);
  transform: translateY(-3px);
}

.pillar__number {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--olive);
  margin-bottom: 1rem;
  display: block;
}

.pillar h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* ── Services ────────────────────────────────────────────────── */
.services__header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.services__header-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--border);
  transition: border-color 0.2s ease;
}

.service-card:hover {
  border-color: var(--midnight);
}

.service-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.25rem;
  color: var(--olive);
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--midnight);
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #4A5A5A;
}

/* ── Results / Case Studies ──────────────────────────────────── */
.results__header {
  margin-bottom: 3.5rem;
}

.case-studies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.case-study {
  background: var(--bg-gray);
  overflow: hidden;
  position: relative;
}

.case-study__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.case-study__body {
  padding: 2.5rem;
}

.case-study__category {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.5rem;
  display: block;
}

.case-study__title {
  font-size: 1.35rem;
  color: var(--midnight);
  margin-bottom: 1rem;
}

.case-study__desc {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  color: var(--text-body);
}

.case-study__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.stat-item__number {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--olive);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}

.stat-item__label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6A7A7A;
  margin-top: 0.25rem;
  display: block;
}

/* ── Process ─────────────────────────────────────────────────── */
.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

/* connector line */
.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--midnight);
  color: var(--white);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--midnight);
}

.process-step p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #5A6A6A;
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testimonial {
  padding: 2.25rem;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--citron);
  line-height: 1;
  position: absolute;
  top: 1.25rem;
  left: 2rem;
  pointer-events: none;
}

.testimonial__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-body);
  padding-top: 2rem;
  margin-bottom: 1.5rem;
}

.testimonial__author {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.testimonial__name {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--midnight);
  display: block;
}

.testimonial__role {
  font-size: 0.78rem;
  color: #6A7A7A;
  display: block;
  margin-top: 0.15rem;
}

.testimonial__company {
  font-size: 0.78rem;
  color: var(--olive);
  font-weight: 600;
  display: block;
  margin-top: 0.1rem;
}

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  background: var(--midnight);
  padding: 6rem 0;
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: flex-end;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  font-size: 1rem;
}

.cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  min-width: 240px;
}

.cta-section__contact {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  width: 100%;
}

.cta-section__contact a {
  display: block;
  color: var(--citron);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-top: 0.25rem;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg-gray);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer__brand img {
  height: 40px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer__tagline {
  font-size: 0.85rem;
  color: #5A6A6A;
  line-height: 1.65;
  max-width: 240px;
}

.footer__col h4 {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--midnight);
  margin-bottom: 1rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(25,61,69,0.6);
  transition: color 0.15s ease;
}

.footer__col ul li a:hover {
  color: var(--midnight);
}

.footer__contact p {
  font-size: 0.88rem;
  color: #5A6A6A;
  line-height: 1.8;
}

.footer__contact a { color: var(--olive); }
.footer__contact a:hover { color: var(--midnight); }

/* ── Footer bottom bar (full-bleed dark strip) ─────────────── */
.footer__bottom {
  background: var(--gunmetal);
}

.footer__bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.15s ease;
}

.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ── Animations ──────────────────────────────────────────────── */

/* Scroll-triggered fade up */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up--d1 { transition-delay: 0.1s; }
.fade-up--d2 { transition-delay: 0.2s; }
.fade-up--d3 { transition-delay: 0.3s; }
.fade-up--d4 { transition-delay: 0.4s; }
.fade-up--d5 { transition-delay: 0.5s; }
.fade-up--d6 { transition-delay: 0.6s; }
.fade-up--d7 { transition-delay: 0.7s; }

/* ── Hero page-load keyframes ──────────────────────────────── */
@keyframes heroTagIn {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes heroHeadIn {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroSubIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroActionsIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroImgIn {
  from { opacity: 0; transform: translateX(48px) scale(1.04); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes heroAccentIn {
  from { height: 0; opacity: 0; }
  to   { height: 60px; opacity: 1; }
}

/* Apply to hero elements — run immediately on load */
.hero__tag {
  animation: heroTagIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.15s;
}

.hero__headline {
  animation: heroHeadIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.3s;
}

.hero__sub {
  animation: heroSubIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.52s;
}

.hero__actions {
  animation: heroActionsIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.7s;
}

.hero__image {
  animation: heroImgIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.25s;
}

.hero__image::before {
  animation: heroAccentIn 0.5s ease both;
  animation-delay: 0.8s;
}

/* Subtle continuous float on hero image after load - REMOVED, entrance only */
/* .hero__image.loaded { animation: heroFloat 6s ease-in-out infinite; } */

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .process__steps::before { display: none; }
  .why__pillars { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__image { display: none; }
  .hero { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 3rem; }
  .hero__content { padding-bottom: 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 1.5rem; }
  .why__header { grid-template-columns: 1fr; gap: 1.5rem; }
  .why__pillars { grid-template-columns: 1fr; }
  .services__header { grid-template-columns: 1fr; gap: 1rem; }
  .services__header-right { justify-content: flex-start; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .case-studies { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .cta-section__inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta-section__actions { align-items: center; width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom__inner { flex-direction: column; gap: 1rem; text-align: center; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav.menu-open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .nav.menu-open .nav__cta { display: none; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
}

/* ── Testimonial Carousel ────────────────────────────────────── */
.testimonial-carousel {
  margin-top: 3.5rem;
  position: relative;
}

.testimonial-track {
  position: relative;
  min-height: 220px;
}

.testimonial-slide {
  display: none;
  animation: slideIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.testimonial-slide--active {
  display: block;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.99); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Borderless quote floated on dark background */
.testimonial-carousel .testimonial {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 3rem 2rem 4.5rem;
  border: none;
  background: transparent;
  position: relative;
}

/* Vertical olive accent bar */
.testimonial-carousel .testimonial::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 1.5rem;
  width: 3px;
  background: var(--olive);
  border-radius: 2px;
}

/* Giant faded decorative quote mark */
.testimonial-carousel .testimonial::before {
  content: '\201C';
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 14rem;
  font-weight: 900;
  color: var(--midnight);
  line-height: 0.75;
  position: absolute;
  top: -1rem;
  left: 0.75rem;
  pointer-events: none;
  opacity: 0.07;
  user-select: none;
}

.testimonial-carousel .testimonial__text {
  font-size: 1.2rem;
  line-height: 1.85;
  color: rgba(25, 61, 69, 0.85);
  padding-top: 0;
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Author row: dash + stacked info */
.testimonial-carousel .testimonial__author {
  border-top: none;
  padding-top: 0;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.testimonial-carousel .testimonial__author::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--olive);
  flex-shrink: 0;
  margin-top: 0.6rem;
}

.testimonial-carousel .testimonial__author-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.testimonial-carousel .testimonial__name {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--midnight);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-carousel .testimonial__role {
  font-size: 0.8rem;
  color: rgba(25, 61, 69, 0.5);
}

.testimonial-carousel .testimonial__company {
  font-size: 0.8rem;
  color: var(--olive);
  font-weight: 600;
}

/* Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 3rem;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(25, 61, 69, 0.2);
  background: transparent;
  color: rgba(25, 61, 69, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: rgba(25, 61, 69, 0.06);
  border-color: var(--midnight);
  color: var(--midnight);
}

/* Bar-style progress dots */
.carousel-dots {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 320px;
  align-items: center;
}

.carousel-dot {
  width: 18px;
  height: 3px;
  border-radius: 2px;
  border: none;
  background: rgba(25, 61, 69, 0.15);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-dot.dot--active {
  background: var(--olive);
  width: 36px;
}

@media (max-width: 768px) {
  .testimonial-carousel .testimonial {
    padding: 1rem 1.5rem 2rem 2.75rem;
  }
  .testimonial-carousel .testimonial__text {
    font-size: 1.05rem;
  }
}
