/* ===================================================
   ORANGE SCHADE — CAPELLE AAN DEN IJSSEL
   Auto schadeherstel · demo site
   =================================================== */

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

:root {
  --orange:      #FF6B00;
  --orange-dark: #D95A00;
  --orange-light:#FFF0E5;
  --dark:        #1A1A1A;
  --anthracite:  #2C2C2C;
  --mid:         #4A4A4A;
  --muted:       #767676;
  --border:      #E5E5E5;
  --bg-light:    #F5F5F5;
  --white:       #FFFFFF;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.07);
  --shadow-md:   0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.14);
  --transition:  all .25s ease;
  --header-h:    72px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: inherit;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p { max-width: 68ch; }
a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-dark); }

img { max-width: 100%; display: block; }
address { font-style: normal; }

/* ---------- 1. UTILITIES ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--light  { background: var(--bg-light); }
.section--white  { background: var(--white); }
.section--dark   { background: var(--anthracite); color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header p {
  margin: 12px auto 0;
  color: var(--muted);
  max-width: 55ch;
}
.section--dark .section-header p { color: #aaa; }

.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--orange-light);
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 12px;
}
.section--dark .section-tag {
  background: rgba(255,107,0,.18);
  color: #FF8C3A;
}

/* ---------- 2. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}
.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); }

.btn--ghost { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.22); color: var(--white); }

.btn--outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn--outline:hover { background: var(--orange); color: var(--white); }

.btn--white { background: var(--white); color: var(--orange); border-color: var(--white); }
.btn--white:hover { background: var(--orange-light); }

.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn--outline-white:hover { background: rgba(255,255,255,.15); color: var(--white); }

/* ---------- 3. SITE HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(26,26,26,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.01em;
  flex-shrink: 0;
}
.logo strong { color: var(--orange); }
.logo:hover { color: var(--white); }
.logo__text { color: var(--white); }

.desktop-nav {
  display: flex;
  margin-left: auto;
}
.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
}
.desktop-nav a {
  display: block;
  padding: 8px 16px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  border-radius: 6px;
}
.desktop-nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }

.nav-cta { margin-left: 8px; flex-shrink: 0; }

.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  color: var(--white);
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .hamburger span:nth-child(2) { opacity: 0; }
.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 4. MOBILE MENU OVERLAY ---------- */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  background: var(--dark);
  z-index: 950;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.mobile-menu__overlay.is-open {
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}

.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding: 0 0 32px;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  height: var(--header-h);
}
.logo--menu {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo--menu strong { color: var(--orange); }

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.7);
  padding: 8px;
  border-radius: 6px;
  transition: var(--transition);
}
.mobile-menu__close:hover { color: var(--white); background: rgba(255,255,255,.08); }

.mobile-menu__list {
  list-style: none;
  padding: 16px 0;
  flex: 1;
}
.mobile-menu__item {
  display: block;
  padding: 16px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-menu__item:hover { color: var(--orange); background: rgba(255,107,0,.07); }

.mobile-menu__ctas {
  padding: 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu__contact-info {
  padding: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu__contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  margin-bottom: 8px;
  max-width: none;
}
.mobile-menu__contact-info svg { flex-shrink: 0; }

/* ---------- 5. HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,.82) 0%,
    rgba(26,26,26,.60) 50%,
    rgba(255,107,0,.25) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-bottom: 64px;
  max-width: 780px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero__title {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero__sub {
  color: rgba(255,255,255,.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 36px;
  max-width: 55ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
}

/* ---------- 6. USP BAR ---------- */
.usp-bar {
  background: var(--anthracite);
  border-top: 3px solid var(--orange);
  padding: 40px 0;
}
.usp-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.usp-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.usp-bar__item svg { flex-shrink: 0; margin-top: 3px; }
.usp-bar__item strong {
  display: block;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.usp-bar__item span {
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  line-height: 1.4;
}

/* ---------- 7. CARDS (DIENSTEN) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card__icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.card h3 { margin-bottom: 12px; color: var(--dark); }
.card p { color: var(--mid); font-size: .9rem; margin-bottom: 20px; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: .875rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}
.card__link:hover { gap: 10px; }

/* ---------- 8. ABOUT SECTION ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-grid__text h2 { color: var(--white); margin-bottom: 20px; }
.about-grid__text .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 16px;
  max-width: none;
}
.about-grid__text p {
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
  max-width: none;
}
.check-list {
  list-style: none;
  margin-bottom: 32px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.check-list li:last-child { border-bottom: none; }
.check-list li svg { flex-shrink: 0; }

.about-grid__image {
  position: relative;
}
.img-fill {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.img-fill > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge__number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge__label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .85;
}

/* ---------- 9. WERKWIJZE / STEPS ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(25% / 2);
  right: calc(25% / 2);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step__num {
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  margin: 0 auto 16px;
}
.step h3 { margin-bottom: 8px; font-size: 1rem; }
.step p { color: var(--muted); font-size: .875rem; max-width: 22ch; margin: 0 auto; }

/* ---------- 10. REVIEWS ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card__stars {
  display: flex;
  gap: 3px;
}
.review-card blockquote {
  color: var(--mid);
  font-size: .9rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
  border: none;
  padding: 0;
  quotes: "\201C""\201D";
}
.review-card blockquote::before {
  content: open-quote;
  color: var(--orange);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 2px;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: .9rem; color: var(--dark); }
.review-card__author span { color: var(--muted); font-size: .8rem; }

/* ---------- 11. CTA BAND ---------- */
.cta-band {
  background: var(--orange);
  padding: 72px 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band__text { flex: 1; min-width: 280px; }
.cta-band__text h2 { color: var(--white); margin-bottom: 8px; }
.cta-band__text p { color: rgba(255,255,255,.85); max-width: 50ch; }
.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ---------- 12. CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: flex; gap: 16px; }
.form-row--two > * { flex: 1; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.optional { text-transform: none; font-weight: 400; color: var(--muted); font-size: .78rem; }

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,.12);
}
.form-field textarea { resize: vertical; min-height: 130px; }

.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info__block h3 { margin-bottom: 16px; }
.contact-info__block address { display: flex; flex-direction: column; gap: 10px; }
.contact-info__block p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--mid);
  font-size: .9rem;
  max-width: none;
}
.contact-info__block p svg { flex-shrink: 0; margin-top: 2px; }
.contact-info__block a { color: var(--dark); font-weight: 500; }
.contact-info__block a:hover { color: var(--orange); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 9px 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
  color: var(--mid);
}
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--dark); }
.hours-table tr.closed td { color: var(--muted); }

.contact-info__map { border-radius: var(--radius-lg); overflow: hidden; }

/* ---------- 13. FOOTER ---------- */
.footer-kit {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding-top: 64px;
}
.footer-kit__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-kit__brand .logo--footer {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: inline-flex;
}
.footer-kit__brand p {
  font-size: .875rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 32ch;
}
.footer-kit__address {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .85rem;
}
.footer-kit__address a { color: rgba(255,255,255,.6); }
.footer-kit__address a:hover { color: var(--orange); }

.footer-kit__col h4 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer-kit__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-kit__col a { color: rgba(255,255,255,.6); font-size: .875rem; }
.footer-kit__col a:hover { color: var(--orange); }

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: .85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-kit__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-kit__bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  max-width: none;
}
.footer-kit__bottom a { color: var(--orange); }

/* ---------- 14. MEDIA — IMG FILL SAFETY NET ---------- */
.media, .img-fill, figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- 15. RESPONSIVE ---------- */

/* 1024px — tablet landscape */
@media (max-width: 1024px) {
  .usp-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid__image { max-width: 560px; }
  .footer-kit__inner { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}

/* 768px — tablet portrait */
@media (max-width: 768px) {
  .desktop-nav, .nav-cta { display: none; }
  .mobile-menu__trigger { display: flex; }
  :root { --header-h: 64px; }

  .section { padding: 60px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 20px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .cta-band__actions { width: 100%; }
  .cta-band__actions .btn { flex: 1; justify-content: center; }
}

/* 480px — large mobile */
@media (max-width: 480px) {
  .usp-bar__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { flex-direction: column; gap: 12px; }
  .form-row--two { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-kit__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-kit__bottom-inner { flex-direction: column; align-items: flex-start; }
  .about-badge { bottom: -16px; left: -8px; padding: 16px 18px; }
}

/* 375px — small mobile */
@media (max-width: 375px) {
  .container { padding: 0 16px; }
  .cta-band__actions { flex-direction: column; }
  .cta-band__actions .btn { text-align: center; justify-content: center; }
}

/* ---------- PATCH: Improved nav contrast + card definition ---------- */
.desktop-nav a { color: rgba(255,255,255,.95); }
.card { box-shadow: 0 2px 10px rgba(0,0,0,.06); }
@media (max-width: 768px) {
  .card { box-shadow: 0 3px 14px rgba(0,0,0,.09); border-color: #D0D0D0; margin-bottom: 4px; }
}
/* Step numbers — slightly larger spacing */
.steps-grid { gap: 40px; }
.step__num { width: 60px; height: 60px; font-size: 1.1rem; }
