:root {
  --bg: #f4f0ea;
  --panel: #fcfaf7;
  --panel-strong: #f1e8df;
  --line: rgba(17, 26, 22, 0.1);
  --text: #142a25;
  --text-soft: #4a5f5b;
  --muted: #7a8f88;
  --shadow: rgba(18, 46, 39, 0.12);
  --green: #1f4d43;
  --green-deep: #153a34;
  --gold: #c6a572;
  --gold-soft: #e9dcc1;
  --rose: #d9a9a4;
  --sand: #eadbc1;
  --mint: #d8eadf;
  --forest: #3b5d53;
  --white: #ffffff;
  --soft-cream: #f7f1eb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(198, 165, 114, 0.16), transparent 32%),
    linear-gradient(180deg, #f5f1eb 0%, #f6f2ee 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(31, 77, 67, 0.08), transparent 35%), radial-gradient(circle at 80% 20%, rgba(198, 165, 114, 0.12), transparent 30%);
  pointer-events: none;
  z-index: -1;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(16px);
  background: rgba(247, 243, 238, 0.72);
  border-bottom: 1px solid rgba(20, 42, 37, 0.06);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 28px rgba(31, 77, 67, 0.08);
  background: rgba(247, 243, 238, 0.9);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green) 0%, #244f47 100%);
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  box-shadow: 0 15px 30px rgba(31, 77, 67, 0.2);
}

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

.brand-text strong {
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.brand-text small {
  color: var(--text-soft);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.96rem;
  color: var(--text-soft);
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  display: inline-flex;
  gap: 8px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.38);
  border: 1px solid rgba(20, 42, 37, 0.08);
}

.lang-btn {
  border: 0;
  padding: 7px 12px;
  background: transparent;
  color: var(--text-soft);
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(31, 77, 67, 0.18);
}

.text-link {
  color: var(--text-soft);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--white);
  box-shadow: 0 18px 32px rgba(21, 58, 52, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text);
  border-color: rgba(20, 42, 37, 0.15);
}

.blink {
  animation: blinkPulse 1.8s infinite ease-in-out;
}

@keyframes blinkPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(31,77,67,0), 0 18px 32px rgba(21,58,52,0.22); }
  50% { box-shadow: 0 0 0 8px rgba(31,77,67,0.08), 0 18px 32px rgba(21,58,52,0.22); }
}

#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.9s ease 0.2s, visibility 0.9s ease 0.2s;
  pointer-events: none;
}

#intro-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.intro-bg {
  position: absolute;
  inset: 0;
  background-image: url('./intro.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.52) saturate(0.85) contrast(1.08);
  transform: scale(1.08);
  animation: introBgReveal 4.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 12, 11, 0.2), rgba(3, 12, 11, 0.62));
}

.intro-center {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.intro-brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateY(12px);
}

.intro-name {
  margin-top: 10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.4rem, 2vw, 3.2rem);
  letter-spacing: 0.18em;
  font-weight: 800;
  color: rgba(255,255,255,0.98);
  text-transform: uppercase;
  text-shadow: 0 10px 35px rgba(0,0,0,0.34);
  opacity: 0;
  animation: introName 1.2s ease 1s forwards;
}

.intro-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
  font-size: clamp(0.62rem, 0.8vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 10px 30px rgba(0,0,0,0.26);
}

.intro-tagline span {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: introWord 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-tagline span:nth-child(1) { animation-delay: 1.5s; }
.intro-tagline span:nth-child(2) { animation-delay: 1.9s; }
.intro-tagline span:nth-child(3) { animation-delay: 2.3s; }

@keyframes introBgReveal {
  0% {
    opacity: 0;
    transform: scale(1.18);
    filter: brightness(0.36) blur(5px) saturate(0.8);
  }
  25% {
    opacity: 1;
    transform: scale(1.12);
    filter: brightness(0.5) blur(2px) saturate(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(0.52) saturate(0.85) contrast(1.08);
  }
}

@keyframes introBrand {
  0% {
    opacity: 0;
    transform: translateY(32px) scale(0.92);
  }
  55% {
    opacity: 1;
    transform: translateY(0) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introName {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introWord {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  70% {
    opacity: 1;
    transform: translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  padding: 72px 0 54px;
  overflow: hidden;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 14%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(31, 77, 67, 0.12), transparent 62%);
  pointer-events: none;
  transform: translateY(var(--scroll-shift, 0px)) scale(var(--scroll-scale, 1));
  transition: transform 0.2s linear;
}

.hero::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 6%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(198, 165, 114, 0.14), transparent 62%);
  filter: blur(12px);
  pointer-events: none;
  transform: translateY(calc(var(--scroll-shift, 0px) * -0.5)) scale(calc(var(--scroll-scale, 1) + 0.08));
  transition: transform 0.2s linear;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -22px -18px -18px -18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
  border: 1px solid rgba(20,42,37,0.04);
  border-radius: 30px;
  z-index: -1;
  backdrop-filter: blur(3px);
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

h1 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: clamp(4rem, 7vw, 6.2rem);
  font-weight: 600;
  max-width: 620px;
  line-height: 0.9;
  text-shadow: 0 12px 24px rgba(17, 26, 22, 0.05);
}

h1 span:nth-child(2), h1 span:nth-child(3) {
  color: var(--text);
}

h1 span:nth-child(1) { color: var(--green); }

.hero-copy {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 1.08rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(31, 77, 67, 0.06);
  border: 1px solid rgba(20, 42, 37, 0.08);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

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

.hero-trust div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-trust strong {
  font-size: 1.75rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
}

.hero-trust span {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 38px;
  overflow: hidden;
  background-image: linear-gradient(135deg, rgba(17, 26, 22, 0.12), rgba(17, 26, 22, 0.18)), url('https://mediclinic.be/sites/default/files/styles/2560x460/public/2022-07/Mediclinic%20-%20janagrafie-05871%20-%20copie_0.jpg?h=ecee5c99&itok=QxTtS2jf');
  background-size: cover;
  background-position: center;
  box-shadow: 0 58px 90px rgba(22, 36, 29, 0.14);
}

.visual-stage {
  position: relative;
  width: min(100%, 560px);
  border-radius: 32px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.58), rgba(235,241,239,0.78));
  border: 1px solid rgba(20, 42, 37, 0.08);
  box-shadow: 0 46px 80px rgba(31, 77, 67, 0.14);
  transform: translateY(0);
  animation: floatCard 6s ease-in-out infinite;
  backdrop-filter: blur(8px);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.card-primary {
  position: relative;
  width: 100%;
  background: linear-gradient(145deg, rgba(255,255,255,0.6), rgba(225, 236, 232, 0.7));
  border: 1px solid rgba(20, 42, 37, 0.06);
  border-radius: 32px;
  padding: 18px;
}

.card-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(20, 42, 37, 0.06);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #52b281;
  box-shadow: 0 0 0 5px rgba(82, 178, 129, 0.16);
}

.mini-portrait {
  margin-top: 16px;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 0.94;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3);
}

.mini-portrait img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.floating-panel {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(20, 42, 37, 0.08);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 20px 25px rgba(17, 26, 22, 0.08);
  backdrop-filter: blur(8px);
  animation: floatPanel 5s ease-in-out infinite;
}

.floating-panel strong {
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
}

.floating-panel span {
  color: var(--text-soft);
  font-size: 0.8rem;
}

@keyframes floatPanel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.panel-top {
  top: 60px;
  left: -18px;
}

.panel-bottom {
  right: -12px;
  bottom: 82px;
  animation-delay: 0.5s;
}

section {
  padding: 96px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.section-heading.centered {
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 42px;
}

h2 {
  font-size: clamp(2.8rem, 4vw, 4.3rem);
  font-weight: 600;
}

.treatments {
  background: linear-gradient(180deg, rgba(238, 229, 220, 0.38), rgba(255,255,255,0.28));
}

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

.treatment-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.68));
  border: 1px solid rgba(20, 42, 37, 0.06);
  border-radius: 26px;
  padding: 28px 24px 26px;
  box-shadow: 0 24px 48px rgba(18, 46, 39, 0.06), 0 0 0 1px rgba(255,255,255,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(18, 46, 39, 0.09);
}

.icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  background: rgba(20,42,37,0.06);
  color: var(--text);
}

.treatment-card h3 {
  font-size: 1.65rem;
  margin-top: 22px;
  margin-bottom: 12px;
}

.treatment-card p {
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
  min-height: 96px;
}

.treatment-card a {
  display: inline-block;
  margin-top: 20px;
  font-weight: 800;
  color: var(--green);
}

.accent-teal .icon-wrap { background: rgba(31, 77, 67, 0.12); }
.accent-gold .icon-wrap { background: rgba(198, 165, 114, 0.16); }
.accent-rose .icon-wrap { background: rgba(217, 169, 164, 0.18); }
.accent-sand .icon-wrap { background: rgba(234, 219, 193, 0.38); }
.accent-mint .icon-wrap { background: rgba(216, 234, 223, 0.46); }
.accent-forest .icon-wrap { background: rgba(59, 93, 83, 0.12); }

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

.showcase-image {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 40px 80px rgba(17, 26, 22, 0.14);
}

.showcase-image img {
  height: 100%;
  min-height: 570px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 32px;
  transform: scale(1.03);
}

.floating-note {
  position: absolute;
  left: 24px;
  bottom: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 35px rgba(17, 26, 22, 0.08);
}

.label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}

.floating-note strong {
  font-size: 1.3rem;
}

.showcase-copy p {
  color: var(--text-soft);
  line-height: 1.9;
  margin-bottom: 0;
}

.feature-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.feature-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text);
  font-weight: 600;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(47, 89, 82, 0.12);
  color: var(--green);
  font-size: 0.86rem;
}

.process {
  background: linear-gradient(180deg, rgba(245,240,234,0), rgba(234, 227, 216, 0.48));
}

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

.step-card {
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(20, 42, 37, 0.06);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(17, 26, 22, 0.04);
}

.step-index {
  display: inline-block;
  margin-bottom: 18px;
  font-weight: 800;
  color: var(--green);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.step-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-soft);
  line-height: 1.75;
  margin: 0;
}

.results-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 22px;
}

.result-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(20, 42, 37, 0.06);
  box-shadow: 0 20px 36px rgba(17, 26, 22, 0.05);
}

.result-card.large {
  grid-row: span 1;
}

.result-photo {
  overflow: hidden;
  aspect-ratio: 0.88;
}

.result-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.result-card:hover .result-photo img {
  transform: scale(1.04);
}

.result-content {
  padding: 22px 20px 24px;
}

.result-content span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--green);
  text-transform: uppercase;
}

.result-content h3 {
  margin-top: 10px;
  font-size: 1.75rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.testimonial {
  background: linear-gradient(160deg, rgba(255,255,255,0.9), rgba(248,241,234,0.65));
  border-radius: 26px;
  padding: 28px 24px;
  border: 1px solid rgba(20, 42, 37, 0.06);
}

.testimonial p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
  font-size: 1.04rem;
}

.testimonial div {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial strong {
  font-size: 1.05rem;
}

.testimonial span {
  color: var(--text-soft);
}

.faq-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.faq-intro p {
  color: var(--text-soft);
  line-height: 1.8;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(20, 42, 37, 0.08);
  border-radius: 22px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 24px;
  font-size: 1.08rem;
  font-weight: 800;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--green);
}

.faq-item.active .faq-question::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-item.active .faq-answer {
  max-height: 240px;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--text-soft);
  line-height: 1.8;
}

.cta-section {
  padding-top: 30px;
  padding-bottom: 120px;
}

.cta-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  background: linear-gradient(135deg, rgba(21, 58, 52, 0.98), rgba(32, 61, 55, 0.95));
  border-radius: 32px;
  padding: clamp(28px, 4vw, 52px);
  color: var(--white);
  box-shadow: 0 32px 70px rgba(21, 58, 52, 0.18);
}

.cta-copy h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-copy p {
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  max-width: 56ch;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.contact-list a {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}

.consult-form {
  display: grid;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 20px;
}

.consult-form label {
  display: grid;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

.consult-form input,
.consult-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  padding: 0 15px;
}

.consult-form input::placeholder {
  color: rgba(255,255,255,0.48);
}

.consult-form button {
  border: none;
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
}

.site-footer {
  background: linear-gradient(180deg, rgba(241, 236, 230, 0.96), rgba(234, 227, 216, 0.98));
  border-top: 1px solid rgba(20, 42, 37, 0.06);
  color: var(--text);
  padding: 26px 0 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 18px;
}

.footer-brand {
  display: inline-flex;
  margin-top: 8px;
}

.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--text-soft);
}

.site-footer a {
  transition: opacity 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 42, 37, 0.08);
  font-size: 0.92rem;
  color: var(--text-soft);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 52px, 0) scale(0.985);
  filter: blur(8px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 1s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroEntrance 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy .eyebrow { animation-delay: 0.2s; }
.hero-copy h1 { animation-delay: 0.35s; }
.hero-copy p { animation-delay: 0.55s; }
.hero-copy .hero-badges { animation-delay: 0.7s; }
.hero-copy .hero-actions { animation-delay: 0.85s; }
.hero-copy .hero-trust { animation-delay: 1s; }

@keyframes heroEntrance {
  0% { opacity: 0; transform: translateY(26px); }
  100% { opacity: 1; transform: translateY(0); }
}

.chat-demo {
  position: fixed;
  right: 24px;
  bottom: 94px;
  z-index: 90;
  width: min(340px, calc(100vw - 32px));
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(20,42,37,0.08);
  border-radius: 24px;
  box-shadow: 0 28px 50px rgba(17, 26, 22, 0.15), 0 0 0 1px rgba(255,255,255,0.4);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.chat-demo.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: bubbleUp 2.5s ease-in-out infinite;
}

@keyframes bubbleUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(21,58,52,0.96), rgba(31,77,67,0.9));
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.chat-header-title {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  font-weight: 800;
}

.chat-status {
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.chat-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 220px;
  overflow: auto;
  padding: 14px 14px 10px;
  background: linear-gradient(180deg, rgba(247,243,239,0.76), rgba(255,255,255,0.66));
}

.chat-message {
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 16px;
  line-height: 1.5;
  font-size: 0.78rem;
  box-shadow: 0 10px 20px rgba(20, 42, 37, 0.04);
}

.chat-message.bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.9);
  color: var(--text);
  border: 1px solid rgba(20,42,37,0.05);
}

.chat-message.user {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(31,77,67,0.12), rgba(31,77,67,0.2));
  color: var(--text);
}

.chat-form {
  display: flex;
  gap: 8px;
  padding: 12px 14px 14px;
  background: rgba(255,255,255,0.68);
}

.chat-form input {
  flex: 1;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(20,42,37,0.08);
  background: rgba(255,255,255,0.82);
  padding: 0 14px;
  color: var(--text);
}

.chat-form button {
  min-width: 72px;
  min-height: 40px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(21,58,52,0.18);
}

.chat-fab {
  position: fixed;
  left: 24px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2dc66a 0%, #1ca857 100%);
  box-shadow: 0 20px 32px rgba(33, 164, 92, 0.36);
  animation: pulseGreen 1.6s ease-in-out infinite;
  z-index: 90;
}

.chat-fab svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.chat-trigger {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(21,58,52,0.98), rgba(31,77,67,0.9));
  box-shadow: 0 18px 32px rgba(17, 26, 22, 0.18), 0 0 0 10px rgba(31,77,67,0.08);
  display: grid;
  place-items: center;
  z-index: 89;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: chatPulse 1.9s ease-in-out infinite;
}

.chat-trigger:hover,
.chat-trigger:focus-visible {
  transform: translateY(-2px) scale(1.03);
}

.chat-trigger svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

@keyframes chatPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 18px 32px rgba(17, 26, 22, 0.18), 0 0 0 0 rgba(31,77,67,0.14); }
  50% { transform: scale(1.05); box-shadow: 0 18px 32px rgba(17, 26, 22, 0.18), 0 0 0 12px rgba(31,77,67,0.08); }
}

@keyframes pulseGreen {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(45,198,106,0), 0 20px 32px rgba(33,164,92,0.36); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(45,198,106,0.12), 0 20px 32px rgba(33,164,92,0.36); }
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .showcase-grid,
  .faq-shell,
  .cta-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .treatments-grid,
  .steps-grid,
  .results-grid,
  .testimonials {
    grid-template-columns: 1fr 1fr;
  }

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

  .result-card.large {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    backdrop-filter: blur(18px);
  }

  .nav-shell {
    min-height: 72px;
    gap: 12px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .text-link {
    display: none;
  }

  .lang-switch {
    padding: 5px;
  }

  .lang-btn {
    font-size: 0.72rem;
    padding: 6px 10px;
  }

  .button {
    min-height: 48px;
    padding: 0 20px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges span {
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    padding: 8px 10px;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-trust strong {
    font-size: 1.5rem;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .treatments-grid,
  .steps-grid,
  .results-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .result-card.large {
    grid-column: auto;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .chat-demo {
    right: 16px;
    bottom: 88px;
    width: min(300px, calc(100vw - 24px));
  }

  .chat-fab {
    left: 16px;
    right: auto;
    bottom: 16px;
    width: 60px;
    height: 60px;
  }

  .chat-trigger {
    right: 16px;
    bottom: 16px;
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 390px) {
  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }

  .brand-text strong {
    letter-spacing: 0.08em;
    font-size: 0.72rem;
  }

  .brand-text small {
    letter-spacing: 0.06em;
  }

  .lang-switch {
    transform: scale(0.96);
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }
}

