/* Starlapse B.V. - Andy v2 stylesheet */
/* Direction: Blue Steel - deep blue + subtle purple, polished tech credibility */
/* Nav: white; Hero: blue-to-indigo gradient; Cards: white elevated, blue border */
/* vs Oscar: white nav vs dark navy, blue-indigo gradient vs flat navy, Manrope vs Work Sans, */
/*   diamond-label vs '//' mono, purple nuance vs pure blue, motion vs static */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design tokens ────────────────────────────────────────── */
:root {
  --blue:          #2563eb;
  --blue-dark:     #1d4ed8;
  --blue-dim:      #1e40af;
  --blue-mist:     #eff4ff;
  --purple:        #7c3aed;
  --purple-lite:   #ede9fe;
  --surface:       #ffffff;
  --surface-alt:   #f0f4ff;
  --text:          #0f172a;
  --muted:         #64748b;
  --border:        #e2e8f0;
  --white:         #ffffff;

  --grad-hero:     linear-gradient(135deg, #0f2356 0%, #1d4ed8 52%, #4338ca 100%);
  --grad-cta:      linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #5b21b6 100%);
  --grad-accent:   linear-gradient(90deg, var(--blue), var(--purple));

  --card-shadow:   0 1px 3px rgba(0,0,0,.05), 0 4px 16px rgba(37,99,235,.07);
  --card-shadow-hover: 0 4px 8px rgba(0,0,0,.06), 0 12px 32px rgba(37,99,235,.14);

  --font-heading:  'Manrope', system-ui, -apple-system, sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;

  --max-w:  1200px;
  --radius: 10px;

  --transition: .22s ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--surface); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

/* ── Layout helpers ───────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5.5rem 0; }
.section--light { background: var(--surface-alt); }
.section--navy  { background: #0f1e3d; color: var(--white); }
.section--dark  { background: #0a1628; color: var(--white); }

/* ── Navigation ───────────────────────────────────────────── */
/* White nav (vs Oscar's solid dark navy) */
.nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(37,99,235,.06);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__brand { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav__logo { width: 30px; height: 30px; object-fit: contain; }
.nav__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: -.02em;
}
.nav__links { display: flex; align-items: center; gap: 1.75rem; margin-left: auto; }
.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .92rem;
  color: var(--muted);
  transition: color var(--transition);
  letter-spacing: .01em;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
  transition: right var(--transition);
}
.nav__link:hover::after, .nav__link--active::after { right: 0; }
.nav__link:hover, .nav__link--active { color: var(--text); }
.nav__cta {
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .88rem;
  padding: .5rem 1.15rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: .01em;
  box-shadow: 0 2px 6px rgba(37,99,235,.3);
}
.nav__cta:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,.35); }

/* ── Hero ─────────────────────────────────────────────────── */
/* Blue-to-indigo gradient - subtly introduces purple; distinct from Oscar's flat dark navy */
.hero {
  background: var(--grad-hero);
  color: var(--white);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
/* Subtle radial glow behind content */
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(124,58,237,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
}
.hero__content { display: flex; flex-direction: column; gap: 1.5rem; }
.hero__heading {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  line-height: 1.75;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .25rem; }
.hero__img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.25); }
.hero__img img { width: 100%; height: 400px; object-fit: cover; }

.hero--inner { padding: 4rem 0 3rem; }
.hero--inner .hero__inner { grid-template-columns: 1fr 380px; }
.hero--inner .hero__img { aspect-ratio: 1 / 1; }
.hero--inner .hero__img img { height: 100%; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .92rem;
  padding: .7rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition), opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  text-decoration: none;
  letter-spacing: .01em;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--blue); color: var(--white); box-shadow: 0 2px 8px rgba(37,99,235,.4); }
.btn--primary:hover { background: var(--blue-dark); box-shadow: 0 4px 16px rgba(37,99,235,.45); }
.btn--outline { border: 1.5px solid rgba(255,255,255,.45); color: var(--white); background: transparent; }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.07); }
.btn--dark { background: var(--text); color: var(--white); }
.btn--dark:hover { background: #1e2942; }
.btn--white { background: var(--white); color: var(--blue-dim); box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.btn--white:hover { box-shadow: 0 4px 16px rgba(0,0,0,.14); }

/* ── Section labels ───────────────────────────────────────── */
/* Purple diamond prefix - distinct from Oscar's '//' monospace prefix */
.label {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .875rem;
}
.label::before {
  content: '\25C6';
  font-size: .6em;
  color: var(--purple);
  opacity: .85;
  line-height: 1;
}
.label--light { color: rgba(255,255,255,.7); }
.label--light::before { color: rgba(196,167,255,.9); opacity: 1; }

/* ── Section headings ─────────────────────────────────────── */
.section__heading {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 1rem;
  line-height: 1.16;
}
.section__sub { font-size: 1.02rem; color: var(--muted); max-width: 560px; line-height: 1.75; }
.section__sub--light { color: rgba(255,255,255,.72); }
.section__header { margin-bottom: 3rem; }
.section__header--center { text-align: center; }
.section__header--center .section__sub { margin: 0 auto; }

/* ── Service cards ────────────────────────────────────────── */
/* White with elevated shadow; blue top-border, purple hover glow */
.services { display: flex; flex-direction: column; gap: 1.5rem; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(37,99,235,.2);
}
.service-card--reverse { grid-template-columns: 1fr 320px; }
.service-card--reverse .service-card__img { order: 2; }
.service-card--reverse .service-card__body { order: 1; }
.service-card__img { overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.service-card__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  border-left: 3px solid var(--blue);
  transition: border-color var(--transition);
}
.service-card:hover .service-card__body { border-color: var(--purple); }
.service-card--reverse .service-card__body { border-left: none; border-right: 3px solid var(--blue); }
.service-card--reverse:hover .service-card__body { border-right-color: var(--purple); border-left: none; }
.service-card__title { font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em; color: var(--text); font-family: var(--font-heading); }
.service-card__desc { font-size: .95rem; line-height: 1.75; color: var(--muted); }
.service-card__tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .25rem; }
.tag {
  background: var(--blue-mist);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 4px;
  font-size: .75rem;
  padding: .2rem .65rem;
  color: var(--blue-dim);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: .02em;
}
/* Light-surface outline override for cards */
.service-card .btn--outline {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: transparent;
}
.service-card .btn--outline:hover { border-color: var(--blue); color: var(--blue); }

/* ── Verticals ────────────────────────────────────────────── */
.verticals__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3.5rem;
}
.verticals__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.vertical {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition), border-top-color var(--transition);
}
.vertical:hover { box-shadow: var(--card-shadow-hover); border-top-color: var(--purple); }
.vertical__icon { width: 44px; height: 44px; object-fit: contain; }
.vertical__title { font-size: 1.1rem; font-weight: 700; font-family: var(--font-heading); letter-spacing: -.015em; color: var(--text); }
.vertical__tag { color: var(--blue); font-size: .75rem; font-weight: 600; font-family: var(--font-body); letter-spacing: .1em; text-transform: uppercase; }
.vertical__desc { font-size: .93rem; color: var(--muted); line-height: 1.7; }

/* ── Who we are ───────────────────────────────────────────── */
.who { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: center; }
.who__text { display: flex; flex-direction: column; gap: 1rem; }
.who__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow-hover); }
.who__img img { width: 100%; height: 420px; object-fit: cover; object-position: top; }

/* ── Tech stack ───────────────────────────────────────────── */
.tech-stack { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.tech-chip {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: .35rem .9rem;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: 0 1px 3px rgba(37,99,235,.05);
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.tech-chip:hover { border-color: var(--blue); color: var(--blue); box-shadow: 0 2px 8px rgba(37,99,235,.1); }

/* ── CTA band ─────────────────────────────────────────────── */
/* Blue-to-purple gradient CTA - introduces purple prominently but tastefully */
.cta-band {
  background: var(--grad-cta);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 40%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(167,139,250,.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.cta-band__text { display: flex; flex-direction: column; gap: 1rem; }
.cta-band__heading { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -.025em; }
.cta-band__sub { color: rgba(255,255,255,.8); line-height: 1.75; }
.cta-band__img { border-radius: var(--radius); overflow: hidden; }
.cta-band__img img { width: 100%; height: 260px; object-fit: cover; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #0a1628;
  color: rgba(255,255,255,.6);
  padding: 3.5rem 0 2rem;
}
.footer__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.5rem;
}
.footer__brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer__logo { width: 26px; height: 26px; object-fit: contain; }
.footer__name { font-family: var(--font-heading); font-weight: 800; color: var(--white); font-size: .95rem; letter-spacing: -.02em; }
.footer__info { display: flex; flex-direction: column; gap: .4rem; font-size: .87rem; }
.footer__info span b { color: rgba(255,255,255,.85); font-weight: 500; }
.footer__nav { display: flex; flex-direction: column; gap: .6rem; font-size: .88rem; }
.footer__nav a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer__nav a:hover { color: var(--white); }
.footer__contact { display: flex; flex-direction: column; gap: .6rem; }
.footer__contact a { color: rgba(255,255,255,.55); transition: color var(--transition); font-size: .88rem; }
.footer__contact a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer__tagline { font-style: italic; }

/* ── Prose ────────────────────────────────────────────────── */
.prose { display: flex; flex-direction: column; gap: 1rem; }
.prose p { font-size: 1rem; color: var(--muted); line-height: 1.8; }
.prose h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.015em; font-family: var(--font-heading); }
.prose ul { display: flex; flex-direction: column; gap: .5rem; padding-left: 1.25rem; list-style: disc; }
.prose ul li { font-size: .95rem; color: var(--muted); line-height: 1.65; }

/* ── Steps ────────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 2rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start; }
.step__num {
  width: 2.75rem; height: 2.75rem;
  background: var(--blue-mist);
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .82rem;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.step:hover .step__num { background: var(--purple-lite); border-color: var(--purple); color: var(--purple); }
.step__title { font-weight: 700; font-size: 1.05rem; margin-bottom: .4rem; letter-spacing: -.015em; font-family: var(--font-heading); }
.step__desc { font-size: .95rem; color: var(--muted); line-height: 1.7; }
.section--light .step__num { background: var(--white); }

/* ── Philosophy ───────────────────────────────────────────── */
.beliefs { display: flex; flex-direction: column; gap: 1.75rem; }
.belief { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1rem; align-items: start; }
.belief__num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(196,167,255,.5);
  line-height: 1;
}
.belief__text { font-size: .95rem; color: rgba(255,255,255,.82); line-height: 1.75; padding-top: .1rem; }

/* ── Two-col ──────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.two-col--img-right { grid-template-columns: 1fr 400px; align-items: center; }
.two-col--img-left  { grid-template-columns: 400px 1fr; align-items: center; }
.two-col__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow-hover); }
.two-col__img img { width: 100%; height: 340px; object-fit: cover; }

/* ── Contact page ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-row { display: flex; align-items: center; gap: .75rem; }
.contact-row__label { font-weight: 600; font-size: .92rem; min-width: 80px; color: var(--text); }
.contact-row__val { font-size: .95rem; color: var(--muted); }
.contact-row__val a { color: var(--blue); }
.contact-box {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition), border-top-color var(--transition);
}
.contact-box:hover { box-shadow: var(--card-shadow-hover); border-top-color: var(--purple); }
.contact-box__heading { font-size: 1.25rem; font-weight: 700; letter-spacing: -.02em; font-family: var(--font-heading); }
.contact-box__sub { font-size: .95rem; color: var(--muted); line-height: 1.7; }

/* ── About info table ─────────────────────────────────────── */
.info-table { display: flex; flex-direction: column; }
.info-row { display: flex; gap: 1rem; font-size: .92rem; border-bottom: 1px solid var(--border); padding: .8rem 0; }
.info-row:last-child { border-bottom: none; }
.info-row__key { min-width: 140px; font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; padding-top: .1rem; color: var(--blue-dim); font-family: var(--font-body); }
.info-row__val { color: var(--muted); }

/* ── Expertise list ───────────────────────────────────────── */
.expertise-list { display: flex; flex-direction: column; gap: .5rem; }
.expertise-list li {
  padding: .65rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  font-size: .92rem;
  color: var(--text);
  transition: border-color var(--transition);
}
.expertise-list li:hover { border-left-color: var(--purple); }

/* ── Consultancy cards ────────────────────────────────────── */
.consult-services { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 1rem; }
.consult-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 3px solid var(--blue);
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition), border-top-color var(--transition);
}
.consult-card:hover { box-shadow: var(--card-shadow-hover); border-top-color: var(--purple); }
.consult-card__title { font-size: 1.05rem; font-weight: 700; font-family: var(--font-heading); letter-spacing: -.015em; }
.consult-card__desc { font-size: .9rem; color: var(--muted); line-height: 1.7; }
.consult-card ul { padding-left: 1.25rem; list-style: disc; display: flex; flex-direction: column; gap: .35rem; }
.consult-card li { font-size: .88rem; color: var(--muted); }

/* ── FAQ accordion ────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 800px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.faq-item:hover { border-color: var(--blue); box-shadow: var(--card-shadow); }
.faq-item[open] { border-color: var(--blue); box-shadow: var(--card-shadow); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: .97rem;
  font-family: var(--font-heading);
  letter-spacing: -.01em;
  color: var(--text);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--blue-dim); }
.faq-chevron {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--muted);
  transition: transform .2s, border-color var(--transition), color var(--transition), background var(--transition);
}
.faq-item[open] .faq-chevron {
  transform: rotate(45deg);
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-mist);
}
.faq-body {
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.78;
  border-top: 1px solid var(--border);
}
.faq-body p + p { margin-top: .75rem; }
.faq-body a { color: var(--blue); }

/* ── Animations ───────────────────────────────────────────── */
/* Hero entrance (CSS-only, runs on load) */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.hero__heading { animation: fadeSlideUp .7s cubic-bezier(.22,1,.36,1) both; }
.hero__sub     { animation: fadeSlideUp .7s cubic-bezier(.22,1,.36,1) .14s both; }
.hero__actions { animation: fadeSlideUp .7s cubic-bezier(.22,1,.36,1) .28s both; }

/* Scroll-reveal base (JS adds .anim-ready, then .in-view) */
.anim-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}
.anim-ready.in-view {
  opacity: 1;
  transform: none;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero__heading, .hero__sub, .hero__actions {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .anim-ready, .anim-ready.in-view {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner,
  .hero--inner .hero__inner,
  .service-card,
  .service-card--reverse,
  .verticals__intro,
  .who,
  .cta-band__inner,
  .two-col,
  .two-col--img-right,
  .two-col--img-left,
  .contact-grid { grid-template-columns: 1fr; }
  .service-card--reverse .service-card__img,
  .service-card--reverse .service-card__body { order: unset; }
  .service-card__body { border-left: none; border-top: 3px solid var(--blue); }
  .service-card--reverse .service-card__body { border-right: none; border-top: 3px solid var(--blue); }
  .hero__img { display: none; }
  .verticals__cols { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 1.5rem; }
  .consult-services { grid-template-columns: 1fr; }
  .two-col__img img { height: 240px; }
  .cta-band__img { display: none; }
}
@media (max-width: 600px) {
  .nav__links { gap: 1rem; }
  .nav__link { display: none; }
  .nav__cta { display: flex; }
  .verticals__cols { grid-template-columns: 1fr; }
  .beliefs { gap: 1.25rem; }
  .section { padding: 3.5rem 0; }
  .faq-item summary { padding: 1rem 1.25rem; }
  .faq-body { padding: 1rem 1.25rem 1.25rem; }
}
