:root {
  --sand: #f6efe4;
  --sand-strong: #eadfcd;
  --sage: #dce8df;
  --sage-soft: #edf5ef;
  --leaf: #9ab9a2;
  --leaf-deep: #6f9380;
  --rose: #dca4ab;
  --rose-dark: #c9838f;
  --teal: #1d6668;
  --teal-soft: #5aa9a5;
  --ink: #274446;
  --white: #fffdf9;
  --shadow: 0 20px 50px rgba(29, 102, 104, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(220, 164, 171, 0.22), transparent 30%),
    radial-gradient(circle at top right, rgba(90, 169, 165, 0.16), transparent 26%),
    var(--sand);
  line-height: 1.7;
  font-size: 16px;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 1rem;
  z-index: 30;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.nav-dropdown-toggle:focus-visible {
  outline: 3px solid rgba(29, 102, 104, 0.3);
  outline-offset: 3px;
}

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

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.container-wide {
  width: min(calc(100% - 2rem), 100%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(246, 239, 228, 0.9);
  border-bottom: 1px solid rgba(29, 102, 104, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
  color: var(--teal);
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text small {
  font-size: 0.82rem;
  color: var(--teal-soft);
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
}

.site-nav a {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--teal);
  font-size: 0.96rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border: none;
  background: transparent;
  border-radius: 999px;
  font-weight: 700;
  color: var(--teal);
  font-size: 0.96rem;
  cursor: pointer;
  font-family: inherit;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 250px;
  padding: 0.55rem;
  display: grid;
  gap: 0.3rem;
  background: rgba(255, 253, 249, 0.97);
  border: 1px solid rgba(29, 102, 104, 0.12);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.nav-dropdown-menu a {
  display: block;
  white-space: nowrap;
}

.nav-dropdown-menu[hidden] {
  display: none;
}

.site-nav a.active,
.site-nav a:hover,
.nav-dropdown-toggle.active,
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
  background: rgba(29, 102, 104, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 0.96rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(201, 131, 143, 0.25);
}

.btn-primary:hover {
  background: var(--rose-dark);
}

.btn-secondary {
  background: rgba(29, 102, 104, 0.09);
  color: var(--teal);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25);
}

.hero {
  padding: 2.5rem 0 1.5rem;
}

.hero-grid,
.split-grid,
.cards-grid,
.contact-grid,
.story-grid,
.review-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: 1.2fr 0.95fr;
  align-items: center;
}

.hero-stack {
  display: grid;
  gap: 1.2rem;
  animation: fadeUp 0.7s ease both;
}

.hero-banner {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(115deg, rgba(246, 239, 228, 0.22), rgba(220, 232, 223, 0.38)),
    linear-gradient(180deg, rgba(255, 253, 249, 0.12), rgba(90, 169, 165, 0.08)),
    url("assets/banner-optimized.jpg") center center / cover no-repeat;
  border: 1px solid rgba(29, 102, 104, 0.08);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner-content {
  width: min(100%, 880px);
  padding: 2.4rem;
  color: var(--ink);
  text-align: center;
  background: rgba(255, 253, 249, 0.66);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(29, 102, 104, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 45px rgba(39, 68, 70, 0.12);
}

.hero-banner-content .eyebrow {
  background: rgba(90, 169, 165, 0.12);
  color: var(--teal);
}

.hero-quote {
  margin: 0.85rem 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.1;
  color: var(--teal);
  max-width: none;
  white-space: nowrap;
}

.hero-subtext {
  max-width: 760px;
  font-size: 1rem;
  color: rgba(39, 68, 70, 0.92);
  margin-left: auto;
  margin-right: auto;
}

.hero-copy,
.panel,
.service-card,
.quote-card,
.contact-card,
.about-highlight,
.story-panel {
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid rgba(29, 102, 104, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  animation: fadeUp 0.7s ease both;
}

.hero-copy {
  padding: 2rem;
}

.trust-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  background: rgba(29, 102, 104, 0.05);
  color: rgba(39, 68, 70, 0.92);
  font-weight: 700;
}

.trust-list li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.38rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--teal-soft));
  flex: 0 0 auto;
}

.eyebrow {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(90, 169, 165, 0.12);
  color: var(--teal);
  font-weight: 800;
  font-size: 0.9rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
  color: var(--teal);
}

h1 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin: 0.75rem 0 0.9rem;
}

h2 {
  font-size: clamp(1.35rem, 2.1vw, 1.95rem);
  margin-bottom: 0.7rem;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

p {
  margin: 0 0 0.9rem;
  text-wrap: pretty;
}

.lead {
  font-size: 1rem;
  color: rgba(39, 68, 70, 0.9);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.section > .container > *,
.page-intro .container > * {
  animation: fadeUp 0.8s ease both;
}

.portrait-card {
  position: relative;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 480px;
}

.portrait-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 39, 40, 0.08), rgba(12, 39, 40, 0.52));
}

.portrait-note {
  position: relative;
  z-index: 1;
  margin: 1.25rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 253, 249, 0.88);
  border-radius: 18px;
  max-width: 340px;
}

.section {
  padding: 2rem 0 4rem;
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

#stress-burnout,
#rouw-verlies,
#werkgevers {
  scroll-margin-top: 7.5rem;
}

.section-header {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.story-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.story-panel,
.panel {
  padding: 2rem;
}

.video-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(29, 102, 104, 0.2);
  background:
    linear-gradient(135deg, rgba(220, 164, 171, 0.14), rgba(90, 169, 165, 0.14)),
    var(--white);
  color: var(--teal);
  font-weight: 700;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid.personal-grid {
  grid-template-columns: minmax(0, 460px);
  justify-content: start;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: center;
}

.service-card,
.quote-card,
.contact-card,
.about-highlight {
  padding: 1.8rem;
}

.service-card-stress {
  background: linear-gradient(180deg, rgba(237, 245, 239, 0.96), rgba(255, 253, 249, 0.94));
}

.service-card-rouw {
  background: linear-gradient(180deg, rgba(220, 232, 223, 0.96), rgba(255, 253, 249, 0.94));
}

.service-card-werk {
  background: linear-gradient(180deg, rgba(154, 185, 162, 0.28), rgba(255, 253, 249, 0.94));
}

.service-card-stress .icon-badge,
.service-card-stress .tag {
  background: rgba(154, 185, 162, 0.18);
}

.service-card-rouw .icon-badge,
.service-card-rouw .tag {
  background: rgba(111, 147, 128, 0.18);
}

.service-card-werk .icon-badge,
.service-card-werk .tag {
  background: rgba(29, 102, 104, 0.14);
}

.service-card p:last-child,
.quote-card p:last-child,
.contact-card p:last-child,
.about-highlight p:last-child {
  margin-bottom: 0;
}

.tag {
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  max-width: max-content;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(220, 164, 171, 0.18);
  color: var(--teal);
  font-weight: 800;
  font-size: 0.85rem;
}

.icon-badge {
  width: 54px;
  height: 54px;
  margin-bottom: 0.95rem;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(90, 169, 165, 0.12);
  color: var(--teal);
  font-size: 1.05rem;
  font-weight: 800;
}

.image-card {
  overflow: hidden;
  padding: 0;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.image-caption {
  padding: 1rem 1.1rem 1.15rem;
}

.compact-photo-card {
  padding: 0;
  overflow: hidden;
}

.compact-photo-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
}

.feature-text-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 1.1rem;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.photo-card {
  overflow: hidden;
  padding: 0;
}

.photo-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
}

.photo-card .image-caption {
  min-height: 120px;
}

.split-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-feature {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.contact-photo-card {
  padding: 0;
  overflow: hidden;
}

.contact-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.contact-practice-photo {
  margin: 1rem auto 0;
  max-width: 34rem;
  padding: 0.9rem;
  border-radius: calc(var(--radius-xl) - 0.2rem);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(246, 239, 228, 0.92));
  border: 1px solid rgba(29, 102, 104, 0.08);
}

.contact-practice-photo img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius-xl) - 0.4rem);
  box-shadow: 0 18px 40px rgba(29, 102, 104, 0.14);
  height: auto;
  object-fit: contain;
}

.contact-practice-photo figcaption {
  margin-top: 0.7rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  text-align: center;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.contact-item {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(29, 102, 104, 0.05);
  overflow-wrap: anywhere;
}

.contact-actions {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.icon-btn {
  width: 52px;
  min-width: 52px;
  padding: 0;
}

.icon-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.page-intro {
  padding: 3rem 0 1rem;
}

.page-intro .panel {
  padding: 2.5rem;
}

.home-intro-panel {
  max-width: none;
}

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 1.4rem;
  align-items: start;
}

.intro-profile-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}

.intro-text-card {
  padding: 1.35rem 1.4rem 1.5rem;
}

.intro-text-card .hero-actions {
  margin-top: 1.2rem;
}

.intro-profile-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
}

.intro-profile-copy {
  padding: 1.35rem 1.4rem 1.5rem;
}

.intro-profile-copy h3 {
  margin-bottom: 0.45rem;
}

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

.recognition-card {
  padding: 1.15rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.76);
  border: 1px solid rgba(29, 102, 104, 0.08);
  box-shadow: var(--shadow);
  font-weight: 700;
  color: var(--teal);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  position: relative;
  padding-top: 3.2rem;
}

.process-step {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(220, 164, 171, 0.18);
  color: var(--teal);
  font-weight: 800;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card p {
  font-size: 0.98rem;
}

.proof-card strong {
  color: var(--teal);
}

.offer-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.offer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 102, 104, 0.1);
  box-shadow: var(--shadow);
  font-weight: 800;
  color: var(--teal);
}

.offer-pill-stress {
  background: rgba(237, 245, 239, 0.98);
}

.offer-pill-rouw {
  background: rgba(220, 232, 223, 0.98);
}

.offer-pill-werk {
  background: rgba(154, 185, 162, 0.32);
}

.offer-highlight {
  border-width: 1px;
}

.offer-highlight-stress {
  background: rgba(237, 245, 239, 0.88);
}

.offer-highlight-rouw {
  background: rgba(220, 232, 223, 0.88);
}

.offer-highlight-werk {
  background: rgba(154, 185, 162, 0.2);
}

.soft-cta {
  color: var(--teal);
  font-weight: 800;
}

.soft-cta:hover {
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.legal-links a {
  color: rgba(255, 253, 249, 0.8);
  font-size: 0.92rem;
}

.quote-card.featured-quote {
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.88), rgba(246, 239, 228, 0.88));
}

.review-grid-featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.soft-list {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
}

.soft-list li {
  margin-bottom: 0.55rem;
}

.cta-band {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(29, 102, 104, 0.9), rgba(90, 169, 165, 0.9));
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band h3,
.cta-band p {
  color: var(--white);
}

.site-footer {
  margin-top: 2rem;
  padding: 0;
  color: rgba(39, 68, 70, 0.86);
  background: linear-gradient(135deg, #1d6668, #25595c);
}

.footer-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 2rem 0;
  color: var(--white);
}

.footer-brand {
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-copy {
  color: rgba(255, 253, 249, 0.8);
  font-size: 0.95rem;
}

.footer-copyright {
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.footer-meta {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px;
  margin-top: 0.2rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 253, 249, 0.14);
}

.footer-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

.footer-link:hover {
  background: rgba(255, 253, 249, 0.2);
}

.muted {
  color: rgba(39, 68, 70, 0.72);
}

.mobile-cta-bar {
  display: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .story-grid,
  .split-grid,
  .cards-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .photo-strip,
  .cards-grid.personal-grid,
  .home-intro-grid,
  .recognition-grid,
  .review-grid-featured,
  .process-grid,
  .proof-grid,
  .feature-split,
  .contact-list,
  .contact-feature {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-banner {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
  }

  .site-nav a {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .nav-dropdown {
    flex: 0 0 auto;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 220px;
    margin-top: 0.45rem;
  }

  .footer-panel {
    align-items: flex-start;
  }

  .footer-links {
    width: 100%;
  }

  .hero-copy,
  .panel,
  .service-card,
  .quote-card,
  .contact-card,
  .about-highlight,
  .story-panel {
    padding: 1.4rem;
  }

  h1 {
    font-size: 1.65rem;
  }

  .section {
    padding: 1.5rem 0 2.5rem;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .hero-banner {
    min-height: 280px;
  }

  .hero-banner-content {
    padding: 1.4rem;
    text-align: left;
  }

  .hero-quote {
    font-size: 1.65rem;
    white-space: normal;
  }

  .hero-subtext {
    font-size: 0.96rem;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions .btn:not(.icon-btn),
  .cta-row .btn:not(.icon-btn),
  .contact-actions .btn:not(.icon-btn) {
    width: 100%;
  }

  .contact-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .offer-pill {
    width: 100%;
  }

  .mobile-cta-bar {
    position: fixed;
    right: 0.9rem;
    bottom: 0.9rem;
    left: 0.9rem;
    z-index: 40;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 22px;
    background: rgba(255, 253, 249, 0.92);
    border: 1px solid rgba(29, 102, 104, 0.12);
    box-shadow: 0 18px 40px rgba(39, 68, 70, 0.18);
    backdrop-filter: blur(14px);
  }

  .mobile-cta-bar a {
    min-height: 48px;
    border-radius: 999px;
    font-weight: 800;
  }

  .mobile-cta-primary,
  .mobile-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
  }

  .mobile-cta-primary {
    background: var(--rose);
    color: var(--white);
  }

  .mobile-cta-secondary {
    background: #25d366;
    color: var(--white);
    min-width: 120px;
  }

  body.has-mobile-cta {
    padding-bottom: 6.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
