/* ===================================================
   Klinik för Hälsa & Skönhet — Style Sheet
   =================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-bg: #faf9f7;
  --color-bg-alt: #f3f1ed;
  --color-surface: #ffffff;
  --color-text: #2c2c2c;
  --color-text-muted: #6b6b6b;
  --color-accent: #c4626a;
  --color-accent-light: #e8a5aa;
  --color-accent-dark: #a34a52;
  --color-border: #e5e2dd;

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);

  --transition: 0.3s ease;
  --header-height: 80px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-dark);
}

ul {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(196, 98, 106, 0.35);
}

.btn--primary:hover {
  background-color: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 98, 106, 0.45);
}

.btn--full {
  width: 100%;
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(250, 249, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 55px;
  width: auto;
}

/* ---------- Navigation ---------- */
.nav__list {
  display: flex;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.3px;
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--color-accent);
}

.nav__link:hover::after {
  width: 100%;
}

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.hamburger__line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(250, 249, 247, 0.88) 0%, rgba(240, 235, 229, 0.82) 50%, rgba(243, 241, 237, 0.85) 100%);
  z-index: 1;
}

.hero__decoration {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 98, 106, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero__content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.hero__highlight {
  color: var(--color-accent);
  font-style: italic;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}

/* =============================================
   SECTIONS (shared)
   ============================================= */
.section {
  padding: var(--space-2xl) 0;
}

.section--about {
  background: var(--color-bg);
}

.section--treatments {
  background: var(--color-bg-alt);
}

.section--why {
  background: var(--color-bg);
}

.section--contact {
  background: var(--color-bg-alt);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text);
}

.section__desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 540px;
  margin: var(--space-sm) auto 0;
}

/* =============================================
   OM OSS
   ============================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* --- About Image --- */
.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__image:hover .about__img {
  transform: scale(1.03);
}

.about__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__stats {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   BEHANDLINGAR
   ============================================= */
/* --- Treatments Banner --- */
.treatments__banner {
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-height: 360px;
}

.treatments__banner-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.treatments__banner:hover .treatments__banner-img {
  transform: scale(1.02);
}

.treatments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.treatment-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.treatment-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-sm);
  color: var(--color-accent);
}

.treatment-card__icon svg {
  width: 100%;
  height: 100%;
}

.treatment-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.treatment-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* =============================================
   VARFÖR OSS
   ============================================= */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.why-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  color: var(--color-accent);
}

.why-card__icon svg {
  width: 100%;
  height: 100%;
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: var(--space-xs);
}

.why-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* =============================================
   KONTAKT
   ============================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.contact__item:last-child {
  margin-bottom: 0;
}

.contact__item-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--color-accent);
  margin-top: 2px;
}

.contact__item-icon svg {
  width: 100%;
  height: 100%;
}

.contact__item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--color-text);
}

.contact__item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---------- Form ---------- */
.contact__form {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.form__group {
  margin-bottom: var(--space-sm);
}

.form__group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--color-text);
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(196, 98, 106, 0.12);
}

.form__group textarea {
  resize: vertical;
}

/* ---------- Form Success State ---------- */
.form-success {
  text-align: center;
  padding: var(--space-lg);
}

.form-success__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-sm);
  color: var(--color-accent);
}

.form-success__icon svg {
  width: 100%;
  height: 100%;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}

.form-success p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* =============================================
   EMS-TRÄNING
   ============================================= */
.section--ems {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.section--ems::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 98, 106, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section--ems::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 98, 106, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* --- EMS Heading --- */
.ems__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-lg);
}

/* --- EMS Intro --- */
.ems__intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}

.ems__intro-text p {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.ems__intro-text p:last-child {
  margin-bottom: 0;
}

.ems__intro-text strong {
  color: var(--color-text);
  font-weight: 600;
}

/* --- Highlight Box --- */
/* --- EMS Image --- */
.ems__image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-md);
}

.ems__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.ems__image-wrapper:hover .ems__image {
  transform: scale(1.03);
}

.ems__highlight-box {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.ems__highlight-item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-accent);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ems__highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.ems__highlight-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.ems__highlight-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* --- EMS Benefits --- */
.ems__benefits {
  margin-bottom: var(--space-2xl);
}

.ems__benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.ems-benefit {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ems-benefit:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ems-benefit__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  color: var(--color-accent);
}

.ems-benefit__icon svg {
  width: 100%;
  height: 100%;
}

.ems-benefit__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.ems-benefit__desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- EMS Steps Timeline --- */
.ems__steps {
  margin-bottom: var(--space-2xl);
}

.ems__steps-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.ems__steps-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent-light), var(--color-accent), var(--color-accent-light));
}

.ems-step {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  position: relative;
}

.ems-step:last-child {
  margin-bottom: 0;
}

.ems-step__number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(196, 98, 106, 0.3);
  position: relative;
  z-index: 1;
}

.ems-step__content {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  flex: 1;
  transition: box-shadow var(--transition);
}

.ems-step__content:hover {
  box-shadow: var(--shadow-md);
}

.ems-step__content h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}

.ems-step__content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- EMS Notice --- */
.ems__notice {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: rgba(196, 98, 106, 0.06);
  border: 1px solid rgba(196, 98, 106, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ems__notice-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--color-accent);
  margin-top: 2px;
}

.ems__notice-icon svg {
  width: 100%;
  height: 100%;
}

.ems__notice-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.ems__notice-text p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- EMS CTA --- */
.ems__cta {
  text-align: center;
}

/* =============================================
   EMS-INKONTINENS (EMS CHAIR)
   ============================================= */
.section--ems-chair {
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.section--ems-chair::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 98, 106, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.ems-chair__benefits {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.ems-chair__benefit-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.ems-chair__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.ems-chair__benefit-card h3 {
  margin-bottom: var(--space-sm);
  text-align: left;
}

.ems-chair__benefit-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  height: 60px;
  width: auto;
  margin-bottom: var(--space-sm);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__tagline {
  font-size: 0.9rem;
  max-width: 260px;
}

.footer h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-sm);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: #fff;
}

.footer__contact p {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.65);
}

.footer__contact a:hover {
  color: #fff;
}

.footer__bottom {
  padding-top: var(--space-md);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* =============================================
   RESPONSIVE — Tablet
   ============================================= */
@media (max-width: 900px) {
  .treatments__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  /* --- EMS --- */
  .ems__intro {
    grid-template-columns: 1fr;
  }

  .ems__benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* --- EMS Chair --- */
  .ems-chair__benefits .about__grid {
    gap: var(--space-md);
  }
}

/* =============================================
   RESPONSIVE — Mobile
   ============================================= */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  /* --- Mobile Navigation --- */
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--color-surface);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }

  .nav__link {
    font-size: 1.15rem;
  }

  /* --- Hero --- */
  .hero {
    min-height: 90vh;
    padding-top: calc(var(--header-height) + var(--space-lg));
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__decoration {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -80px;
  }

  /* --- About --- */
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about__stats {
    justify-content: space-around;
  }

  /* --- Treatments --- */
  .treatments__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* --- Why Us --- */
  .why__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .why-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  /* --- Contact --- */
  .contact__grid {
    grid-template-columns: 1fr;
  }

  /* --- EMS --- */
  .ems__intro {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .ems__benefits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .ems__steps-timeline::before {
    left: 20px;
  }

  .ems-step__number {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .ems-step__content {
    padding: var(--space-sm) var(--space-md);
  }

  .ems__notice {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* --- Footer --- */
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__logo {
    margin: 0 auto var(--space-sm);
  }

  .footer__tagline {
    max-width: none;
  }
}

/* =============================================
   MOBILE OVERLAY
   ============================================= */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}