/* ============================================================
   PYXIS — styles.css
   ============================================================ */

:root {
  --navy:        #1E3F6A;
  --navy-deep:   #152E4E;
  --sky:         #00A0D2;
  --sky-light:   #E6F6FB;
  --white:       #FFFFFF;
  --off-white:   #F7F9FB;
  --text-body:   #2C3E50;
  --text-muted:  #6B7C93;
  --border:      #D9E4EE;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', sans-serif;
  --shadow-card:       0 2px 12px rgba(30,63,106,0.08);
  --shadow-card-hover: 0 8px 32px rgba(30,63,106,0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --container: 1200px;
  --section-v: clamp(64px, 9vw, 112px);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  padding-top: 62px; /* mobile: no topbar, just 62px header */
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
}

h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
}

h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.25;
}

h3 {
  font-size: 22px;
  font-weight: 600;
}

.overline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  display: block;
  margin-bottom: 12px;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  background: var(--sky);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #0090BE; }

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  font-family: var(--font-body);
  text-decoration: none;
  background: transparent;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.card-link {
  color: var(--sky);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-body);
}
.card-link:hover { text-decoration: underline; }

.section-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 16px auto 0;
  text-align: center;
  line-height: 1.65;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-top: 4px; }

/* ============================================================
   SECTION 1 — Top bar
   ============================================================ */
#top-bar {
  height: 40px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 48px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-link {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}
.top-bar-link:hover { opacity: 0.8; }

.top-bar-right { display: flex; align-items: center; }

/* ============================================================
   SECTION 2 — Sticky navigation
   ============================================================ */
#site-header {
  position: fixed;
  top: 40px; /* below topbar on desktop */
  width: 100%;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}

#site-header.scrolled {
  background: rgba(30,63,106,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  padding: 0 clamp(20px, 5vw, 48px);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img, .nav-logo-img { height: 42px; display: block; }

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active { color: var(--sky); }

.btn-nav {
  background: var(--sky);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background 0.2s;
  display: none; /* hidden mobile */
}
.btn-nav:hover { background: #0090BE; }

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile nav overlay */
#mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

body.menu-open #mobile-nav {
  display: flex;
}
body.menu-open { overflow: hidden; }

.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
}

.mobile-nav-link {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 24px;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--sky); }

.mobile-nav-cta { margin-top: 8px; }

/* ============================================================
   SECTION 3 — Hero
   ============================================================ */
#hero {
  position: relative;
  height: auto;
  background: url('assets/images/Home.jpg') center center / cover no-repeat;
  margin-top: -62px; /* pull up under fixed header (mobile) */
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,63,106,0.82) 0%, rgba(30,63,106,0.52) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 760px;
  padding-left: clamp(24px, 8vw, 120px);
  padding-right: clamp(24px, 5vw, 80px);
  padding-top: clamp(90px, 11vw, 118px);
  padding-bottom: clamp(48px, 6vw, 64px);
}

/* Hero h1 capped so long Dutch phrases don't cause excessive line-wrapping */
.hero-inner h1 {
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.12;
}

.hero-inner .overline { color: var(--sky); font-size: 13px; }

.hero-inner h1 { color: var(--white); }

.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  max-width: 520px;
  margin-top: 18px;
  margin-bottom: 28px;
  font-family: var(--font-body);
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-trust span {
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
}

.hero-trust span:not(:first-child)::before {
  content: '·';
  margin-right: 24px;
  opacity: 0.5;
}

/* ============================================================
   SECTION 4 — Trust bar
   ============================================================ */
#trust-bar {
  background: var(--navy);
  padding: 36px 0;
}

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

.trust-item {
  text-align: center;
  padding: 8px 16px;
}

.trust-item:nth-child(1),
.trust-item:nth-child(2) {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.trust-stat {
  display: block;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.trust-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--sky);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============================================================
   SECTION 5 — Services
   ============================================================ */
#diensten {
  background: var(--off-white);
  padding: var(--section-v) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(1.06) saturate(1.05);
}

.card-body {
  padding: 28px;
  border-top: 3px solid var(--sky);
}

.card-body h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.card-body p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

/* ============================================================
   SECTION 6 — Voor wie
   ============================================================ */
#voor-wie {
  background: var(--white);
  padding: var(--section-v) 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.audience-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.audience-card:hover { box-shadow: var(--shadow-card); }

.audience-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--sky-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.audience-body h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}

.audience-body p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  font-family: var(--font-body);
}

/* ============================================================
   SECTION 7 — About
   ============================================================ */
#over-pyxis {
  background: var(--off-white);
  padding: var(--section-v) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
}

.about-text h2 { margin: 4px 0 20px; color: var(--navy); }

.about-text p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.6;
  font-family: var(--font-body);
}

.about-list li::before {
  content: '✓';
  color: var(--sky);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

/* ============================================================
   SECTION 8 — Process
   ============================================================ */
#werkwijze {
  background: var(--white);
  padding: var(--section-v) 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.process-step {
  text-align: center;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: rgba(0, 160, 210, 0.28);
  line-height: 1;
  margin-bottom: 8px;
}

.process-step h3::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--sky);
  margin: 0 auto 12px;
  border-radius: 2px;
}

.process-step h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  font-family: var(--font-body);
}

/* ============================================================
   SECTION 9 — Team
   ============================================================ */
#professionals {
  background: var(--off-white);
  padding: var(--section-v) 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.team-divider-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin: 40px 0 20px;
  position: relative;
}
.team-divider-label::before,
.team-divider-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 80px);
  height: 1px;
  background: var(--border);
}
.team-divider-label::before { left: 0; }
.team-divider-label::after  { right: 0; }

.members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 0;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.team-card:hover { box-shadow: var(--shadow-card-hover); }

.team-card--partner .team-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.team-card--member .team-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-card--partner .team-info {
  padding: 20px 24px;
}

.team-card--member .team-info {
  padding: 14px 16px;
}

.team-info h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card--partner .team-info h3 { font-size: 20px; }
.team-card--member .team-info h3  { font-size: 16px; }

.team-role {
  font-family: var(--font-body);
  color: var(--sky);
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.team-card--partner .team-role { font-size: 14px; }
.team-card--member  .team-role { font-size: 13px; }

.team-phone {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  display: block;
}
.team-phone:hover { color: var(--sky); }

/* ============================================================
   SECTION 10 — News
   ============================================================ */
#actueel {
  background: var(--white);
  padding: var(--section-v) 0;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.news-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.news-body { padding: 24px; }

.news-tag {
  display: inline-block;
  background: var(--sky-light);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.news-body h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-body h3 a {
  color: inherit;
  text-decoration: none;
}

.news-body h3 a:hover { color: var(--sky); }

.news-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

/* ============================================================
   SECTION 11 — Contact
   ============================================================ */
#contact {
  background: var(--navy);
  padding: var(--section-v) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.contact-details { margin-bottom: 8px; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  font-family: var(--font-body);
}

.contact-social {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}

.social-icon {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.social-icon:hover { color: var(--white); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

input, textarea {
  width: 100%;
  background: #F7F9FB;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--text-body);
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, textarea:focus {
  border-color: var(--sky);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,160,210,0.15);
}

textarea { resize: vertical; }

.btn-submit {
  width: 100%;
  background: var(--sky);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover { background: #0090BE; }

/* ============================================================
   SECTION 12 — Footer
   ============================================================ */
#footer {
  background: var(--navy-deep);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-faro {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-faro:hover { color: var(--white); }

/* ============================================================
   SECTION 13 — Mobile sticky CTA
   ============================================================ */
#mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 58px;
  z-index: 998;
  border-top: 2px solid var(--sky);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
}

.mobile-cta-call    { background: var(--sky);  color: var(--white); }
.mobile-cta-message { background: var(--navy); color: var(--white); }

/* Mobile: add bottom padding for the sticky bar */
body { padding-bottom: 58px; }

/* ============================================================
   TABLET — 768px+
   ============================================================ */
@media (min-width: 768px) {

  #top-bar { display: flex; }

  body {
    padding-top: 102px; /* topbar 40 + header 62 */
    padding-bottom: 0;
  }

  #site-header { top: 40px; }

  #hero { margin-top: -102px; }

  /* Logo breathing room on desktop */
  .nav-logo { padding-left: 4px; }

  /* Hide mobile elements */
  #mobile-cta  { display: none; }
  .hamburger   { display: none; }
  .nav-links   { display: flex; }
  .btn-nav     { display: inline-block; }

  /* Trust bar */
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .trust-item:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: none;
  }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: none;
  }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .card-image img { height: 220px; }

  /* Audience */
  .audience-grid { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
  .about-image img { height: 500px; }

  /* Process */
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-step:not(:last-child) {
    border-right: 2px dashed var(--border);
    border-radius: 0;
  }
  .process-step:first-child  { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
  .process-step:last-child   { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }

  /* Team */
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .members-grid  { grid-template-columns: repeat(3, 1fr); }

  /* News */
  .news-grid { grid-template-columns: repeat(3, 1fr); }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
}

/* ============================================================
   DESKTOP — 1024px+
   ============================================================ */
@media (min-width: 1024px) {

  .members-grid { grid-template-columns: repeat(5, 1fr); }

  /* Services stay 3 col */
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  .hero-trust span:not(:first-child)::before {
    margin-right: 24px;
  }
}

/* ============================================================
   Mobile hero overrides
   ============================================================ */
@media (max-width: 767px) {

  #top-bar { display: none; }

  #site-header { top: 0; }

  /* Smaller logo on mobile */
  .nav-logo img, .nav-logo-img { height: 34px; }

  /* Hero on mobile — padding-based, no fixed height */
  .hero-inner {
    padding-top: 96px;
    padding-bottom: 52px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-inner h1 { font-size: clamp(28px, 8vw, 36px); }
  .hero-sub { font-size: 16px; margin-bottom: 22px; }
  .hero-ctas { flex-direction: column; }
  .hero-trust { gap: 10px; margin-top: 18px; }

  /* Cards single col */
  .services-grid { grid-template-columns: 1fr; gap: 20px; }

  /* About */
  .about-grid { grid-template-rows: auto auto; }
  .about-image { order: -1; }
  .about-image img { height: 280px; }

  /* Process */
  .process-step { border-right: none !important; border-radius: var(--radius-lg) !important; }
  .process-step h3::before { margin-bottom: 10px; }

  /* Team members 2-col on mobile is fine, keep it */

  /* Footer single col tighter */
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Contact form full padding */
  .contact-form-wrap { padding: 28px 20px; }
}

/* ============================================================
   ANIMATIONS — placed last so they win specificity ties
   ============================================================ */

/* Hero entrance — pure CSS, fires on page load */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-inner .overline  { animation: fadeIn 0.6s cubic-bezier(0.22,1,0.36,1) 0.25s both; }
.hero-inner h1         { animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.45s both; }
.hero-inner .hero-sub  { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.65s both; }
.hero-inner .hero-ctas { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.82s both; }
.hero-inner .hero-trust{ animation: fadeIn 0.6s cubic-bezier(0.22,1,0.36,1) 1.05s both; }

/* Scroll-reveal — overrides component transitions due to source order */
.anim {
  opacity: 0 !important;
  transform: translateY(32px) !important;
  transition:
    opacity   0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.anim.anim--left  { transform: translateX(-44px) !important; }
.anim.anim--right { transform: translateX(44px)  !important; }
.anim.anim--scale { transform: translateY(20px) scale(0.97) !important; }

.anim.visible {
  opacity:   1 !important;
  transform: none !important;
}

/* Reduced-motion: skip all animations */
@media (prefers-reduced-motion: reduce) {
  .anim {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-inner .overline,
  .hero-inner h1,
  .hero-inner .hero-sub,
  .hero-inner .hero-ctas,
  .hero-inner .hero-trust {
    animation: none;
    opacity: 1;
  }
}
