:root {
  --presence-blue: #283593;
  --presence-royal: #334fb4;
  --presence-ink: #242833;
  --presence-lime: #a3e635;
  --presence-mint: #1e996f;
  --presence-gold: #b89b5e;
  --presence-ice: #eaf2ff;
  --presence-paper: #ffffff;
  --presence-soft: #f6f8fc;
  --presence-line: #dce4f3;
  --text: #142033;
  --muted: #5f6c82;
  --shadow: 0 24px 80px rgba(36, 40, 51, 0.14);
  --radius: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--presence-paper);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 21;
  width: 100%;
  background: var(--presence-ink);
  padding: 0 max(16px, calc((100vw - var(--max)) / 2));
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 36px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-contact a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.topbar-contact a:hover {
  color: var(--presence-paper);
}

.site-header {
  position: sticky;
  top: 36px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 14px max(16px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--presence-line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  color: var(--presence-paper);
  background: linear-gradient(135deg, var(--presence-blue), var(--presence-royal));
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #34435c;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--presence-blue);
}

.tp-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 7px 14px;
  border: 1px solid var(--presence-line);
  border-radius: 999px;
  line-height: 1.3;
  white-space: nowrap;
  transition: border-color 180ms ease;
}

.tp-badge:hover {
  border-color: #00b67a;
}

.tp-stars {
  color: #00b67a;
  font-size: 0.72rem;
  letter-spacing: 2px;
}

.tp-info {
  color: var(--muted);
  font-size: 0.72rem;
}

.tp-info strong {
  color: var(--presence-ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--presence-line);
  border-radius: var(--radius);
  background: var(--presence-paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--presence-ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  color: var(--presence-paper);
  background: var(--presence-blue);
  box-shadow: 0 14px 32px rgba(40, 53, 147, 0.22);
}

.button.secondary {
  color: var(--presence-blue);
  border-color: rgba(40, 53, 147, 0.22);
  background: var(--presence-paper);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms ease;
  will-change: opacity, transform;
}

[data-reveal="image"] {
  filter: saturate(0.88) blur(2px);
  transform: translateY(34px) scale(0.985);
}

[data-reveal].is-visible {
  opacity: 1;
  filter: none;
  transform: none;
}

[data-reveal="stagger"] > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="stagger"].is-visible > * {
  opacity: 1;
  transform: none;
}

[data-reveal="stagger"].is-visible > *:nth-child(2) {
  transition-delay: 90ms;
}

[data-reveal="stagger"].is-visible > *:nth-child(3) {
  transition-delay: 180ms;
}

[data-reveal="stagger"].is-visible > *:nth-child(4) {
  transition-delay: 270ms;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: start;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 108px) 0 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--presence-mint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--presence-ink);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.hero-intro {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid var(--presence-line);
  border-radius: var(--radius);
  background: var(--presence-paper);
}

.hero-stats dt {
  color: var(--presence-blue);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
  height: 660px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--presence-ink);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(36, 40, 51, 0), rgba(36, 40, 51, 0.36)),
    linear-gradient(90deg, rgba(40, 53, 147, 0.16), rgba(184, 155, 94, 0.08));
  z-index: 1;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
  width: min(270px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: var(--radius);
  color: var(--presence-paper);
  background: rgba(36, 40, 51, 0.74);
  backdrop-filter: blur(14px);
}

.floating-note > span,
.floating-note > strong {
  display: block;
}

.floating-note > span {
  opacity: 0.82;
  font-size: 0.82rem;
}

.floating-note > strong {
  margin-top: 4px;
  font-size: 1.4rem;
}

.floating-stats {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: min(300px, calc(100% - 48px));
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: var(--radius);
  background: rgba(20, 28, 45, 0.88);
  backdrop-filter: blur(16px);
}

.floating-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.floating-stats strong {
  color: var(--presence-paper);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.floating-stats span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.3;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 28px;
  border: 1px solid var(--presence-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--presence-ice);
}

.trust-strip > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 24px 18px;
  text-align: center;
  color: var(--presence-blue);
}

.trust-strip > div + div {
  border-left: 1px solid var(--presence-line);
}

.trust-strip svg {
  margin-bottom: 6px;
}

.trust-strip strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--presence-blue);
}

.trust-strip span {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 400;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.concierge {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.concierge-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.concierge-media::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: calc(var(--radius) - 2px);
  content: "";
  pointer-events: none;
}

.concierge-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.concierge-copy {
  max-width: 680px;
}

.concierge-copy h2 {
  max-width: 620px;
}

.lux-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.lux-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--presence-ink);
  font-weight: 800;
}

.lux-list span::before {
  display: block;
  width: 34px;
  height: 1px;
  background: var(--presence-gold);
  content: "";
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

.section-copy p,
.section-heading p,
.proof-panel p,
.final-cta p {
  color: var(--muted);
  font-size: 1.04rem;
}

.steps {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 76px;
}

.steps::before {
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 20px;
  width: 2px;
  content: '';
  background: linear-gradient(to bottom, var(--presence-line), transparent);
}

.steps article {
  position: relative;
  display: block;
  padding: 0 0 44px 28px;
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.steps article:last-child {
  padding-bottom: 0;
}

.steps span {
  position: absolute;
  left: -76px;
  top: 0;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--presence-paper);
  background: var(--presence-blue);
  font-size: 0.82rem;
  font-weight: 800;
  border: 2px solid var(--presence-blue);
}

.steps h3 {
  padding-top: 10px;
  margin-bottom: 8px;
  font-size: 1.22rem;
  color: var(--presence-ink);
}

.steps h3,
.steps p {
  grid-column: unset;
}

.steps p {
  margin-bottom: 0;
  color: #3d4a5c;
  font-size: 0.96rem;
  line-height: 1.6;
}

.treatment-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.treatment-band {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 88% 14%, rgba(184, 155, 94, 0.16), transparent 28%),
    linear-gradient(135deg, var(--presence-ink), #0f1830);
}

.treatment-band h2,
.treatment-band h3 {
  color: var(--presence-paper);
}

.treatment-band .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.section-cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 32px;
}

.treatment-cta {
  margin-top: 40px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.treatment-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.16);
}

.treatment-card img {
  width: 100%;
  aspect-ratio: 4 / 3.15;
  object-fit: cover;
}

.treatment-card div {
  padding: 22px;
}

.treatment-card p {
  color: rgba(255, 255, 255, 0.72);
}

.proof {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(234, 242, 255, 0.96), rgba(234, 242, 255, 0.72)),
    url("../img/clinic-interior.png") center / cover;
}

.proof-heading {
  max-width: 560px;
  margin: 0 auto clamp(36px, 5vw, 52px);
  text-align: center;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 32px rgba(36, 40, 51, 0.08);
  backdrop-filter: blur(12px);
}

.testimonial-stars {
  color: var(--presence-gold);
  font-size: 0.96rem;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 0;
  color: var(--presence-ink);
  font-size: 1rem;
  line-height: 1.65;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--presence-line);
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--presence-paper);
  background: linear-gradient(135deg, var(--presence-blue), var(--presence-royal));
  font-size: 0.82rem;
  font-weight: 800;
}

.testimonial-footer strong {
  display: block;
  color: var(--presence-ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-footer span {
  color: var(--muted);
  font-size: 0.78rem;
}

/* Results band */
.results-band {
  background: var(--presence-ink);
  width: 100%;
  max-width: none;
  padding: clamp(48px, 6vw, 80px) max(16px, calc((100vw - var(--max)) / 2));
}

.results-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.results-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px 40px;
  flex: 1;
  min-width: 180px;
}

.results-stat strong {
  color: var(--presence-paper);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.results-stat span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 160px;
}

.results-divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  flex: 0 0 auto;
}

/* Team sectie */
.team-section {
  background: var(--presence-soft);
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
}

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

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--presence-line);
  border-radius: var(--radius);
  background: var(--presence-paper);
  box-shadow: 0 4px 24px rgba(36, 40, 51, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(36, 40, 51, 0.12);
}

.team-avatar {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: var(--presence-paper);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.team-avatar--1 { background: linear-gradient(135deg, var(--presence-blue), #1565c0); }
.team-avatar--2 { background: linear-gradient(135deg, #2d6a4f, #1b4332); }
.team-avatar--3 { background: linear-gradient(135deg, #6a1e55, #2d3561); }

.team-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--presence-mint);
  background: rgba(0, 182, 122, 0.08);
  color: #00965e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.team-card-body h3 {
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.team-title {
  color: var(--presence-blue);
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card-body p:last-child {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Tarieven sectie */
.pricing-section {
  background: var(--presence-paper);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border: 1px solid var(--presence-line);
  border-radius: var(--radius);
  background: var(--presence-paper);
  box-shadow: 0 4px 24px rgba(36, 40, 51, 0.06);
  position: relative;
}

.pricing-card--featured {
  border-color: var(--presence-blue);
  box-shadow: 0 8px 40px rgba(40, 53, 147, 0.14);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 4px 16px;
  border-radius: 999px;
  background: var(--presence-blue);
  color: var(--presence-paper);
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.pricing-card-head {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--presence-line);
}

.pricing-card-head h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.pricing-price strong {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--presence-ink);
  letter-spacing: -0.02em;
}

.pricing-price span {
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-card-head p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--presence-ink);
}

.pricing-list li::before {
  content: '';
  flex: 0 0 auto;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300b67a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/14px no-repeat;
  border: 1.5px solid var(--presence-mint);
}

.pricing-cta {
  width: 100%;
  text-align: center;
}

.pricing-note {
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.84rem;
}

/* Blog */
.blog-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  background: var(--presence-soft);
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid var(--presence-line);
  border-radius: var(--radius);
  background: var(--presence-paper);
  box-shadow: 0 4px 24px rgba(36, 40, 51, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(36, 40, 51, 0.12);
}

.blog-card-img {
  position: relative;
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  overflow: hidden;
  background: var(--presence-ink);
}

.blog-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.blog-card-img::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(to top, rgba(20, 32, 51, 0.55), transparent 60%);
}

.blog-tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: var(--presence-paper);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 22px;
}

.blog-meta {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.blog-card-body h3 {
  font-size: 1.06rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.blog-link {
  color: var(--presence-blue);
  font-size: 0.88rem;
  font-weight: 700;
  transition: opacity 180ms ease;
}

.blog-link:hover {
  opacity: 0.7;
}

/* FAQ */
.faq-section {
  background: var(--presence-paper);
}

.faq-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 100px;
}

.faq-heading h2 {
  margin-bottom: 28px;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-item {
  border-top: 1px solid var(--presence-line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--presence-line);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  color: var(--presence-ink);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: color 180ms ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex: 0 0 auto;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--presence-blue);
  transition: transform 240ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  color: var(--presence-blue);
}

.faq-item p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.final-cta {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.lead-form {
  padding: 28px;
  border: 1px solid var(--presence-line);
  border-radius: var(--radius);
  background: var(--presence-soft);
}

.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label,
.lead-form > label {
  color: var(--presence-ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--presence-line);
  border-radius: 999px;
  color: var(--text);
  background: var(--presence-paper);
}

.lead-form input:focus {
  outline: 3px solid rgba(163, 230, 53, 0.44);
  border-color: var(--presence-blue);
}

.lead-form .button {
  width: 100%;
}

.form-privacy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.form-message {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--presence-mint);
  font-weight: 700;
  text-align: center;
}

.site-footer {
  background: var(--presence-soft);
  border-top: 1px solid var(--presence-line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 56px 0 40px;
}

.footer-brand .brand {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav strong,
.footer-contact strong {
  margin-bottom: 4px;
  color: var(--presence-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact span,
.footer-contact a:not(.button) {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.footer-contact a:not(.button):hover {
  color: var(--presence-blue);
}

.footer-nav a:hover {
  color: var(--presence-blue);
}

.footer-cta {
  margin-top: 6px;
  align-self: flex-start;
  font-size: 0.86rem;
  min-height: 40px;
  padding: 0 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 20px 0 36px;
  border-top: 1px solid var(--presence-line);
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: var(--muted);
  font-weight: 600;
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: var(--presence-blue);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal],
  [data-reveal="stagger"] > * {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-cta,
  .tp-badge {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    gap: 8px;
    padding-top: 8px;
  }

  .site-nav.is-open a {
    padding: 12px;
    border-radius: var(--radius);
    background: var(--presence-soft);
  }

  .hero,
  .concierge,
  .split,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-visual {
    height: 480px;
  }

  .hero-visual img {
    min-height: 480px;
  }

  .trust-strip,
  .treatment-grid,
  .testimonial-grid,
  .blog-grid,
  .team-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card--featured {
    transform: none;
  }

  .results-divider {
    display: none;
  }

  .results-stat {
    padding: 16px 20px;
  }

  .faq-inner {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

  .topbar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .trust-strip > div:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .hero-stats,
  .trust-strip,
  .treatment-grid,
  .testimonial-grid,
  .blog-grid,
  .team-grid,
  .pricing-grid,
  .form-fields {
    grid-template-columns: 1fr;
  }

  .results-inner {
    flex-direction: column;
    gap: 8px;
  }

  .form-group--full {
    grid-column: 1;
  }

  .trust-strip > div + div {
    border-top: 1px solid var(--presence-line);
    border-left: 0;
  }

  .steps {
    padding-left: 60px;
  }

  .steps span {
    left: -60px;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
