/* Corone Zirconio — Case Stories design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #1e3a5f;
  --navy-dark: #152a45;
  --navy-light: #2a4a73;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-dark: #1d4ed8;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 12px 40px rgba(30, 58, 95, 0.12);
  --font: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--gray-800);
  line-height: 1.65;
  font-size: 1rem;
  background: var(--white);
  padding-bottom: 80px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue-dark); }
.container { width: min(1140px, 92vw); margin-inline: auto; }
main { padding-top: 64px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: 0.9375rem;
  border: 2px solid transparent; cursor: pointer; transition: all 0.25s; font-family: var(--font);
}
.btn--primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); }
.btn--outline { background: transparent; border-color: var(--gray-200); color: var(--navy); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { background: var(--gray-100); color: var(--navy); }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }

/* Header */
.header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  padding: 0.875rem 0;
  background: linear-gradient(180deg, rgba(21, 42, 69, 0.92) 0%, rgba(21, 42, 69, 0.35) 70%, transparent 100%);
  transition: background 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  background: rgba(30, 58, 95, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.header__logo img { height: 44px; width: auto; max-width: min(200px, 52vw); }
.header__nav { display: none; gap: 1.75rem; }
.header__nav a { color: rgba(255, 255, 255, 0.85); font-size: 0.875rem; font-weight: 500; }
.header__nav a:hover { color: var(--white); }
.header__actions { display: flex; align-items: center; gap: 0.75rem; }
.header__phone {
  display: none; color: var(--white); font-weight: 600; font-size: 0.875rem;
}
.header__cta { display: none; }
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); border-radius: 10px; cursor: pointer; padding: 10px;
}
.nav-toggle span {
  display: block; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  position: fixed; inset: 0 0 0; z-index: 199; padding-top: 72px;
  background: rgba(21, 42, 69, .98); backdrop-filter: blur(16px);
  padding: 5.5rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: .25rem;
  transform: translateX(100%); transition: transform .35s ease; overflow-y: auto;
}
body.nav-open .nav-mobile { transform: translateX(0); }
body.nav-open { overflow: hidden; }
body.nav-open .header { z-index: 201; }
.nav-backdrop {
  position: fixed; inset: 0; z-index: 198;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s, visibility .3s;
}
body.nav-open .nav-backdrop {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.nav-mobile a {
  display: block; padding: 1rem; color: #fff; font-weight: 600;
  font-size: 1.0625rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-mobile .btn { margin-top: 1rem; width: 100%; }
@media (min-width: 900px) {
  .header__nav { display: flex; }
  .header__phone { display: block; }
  .header__cta { display: inline-flex; }
  .nav-toggle, .nav-mobile { display: none; }
}

/* Brand bar — sotto hero (plan marketing: pas seksionit hero) */
.brand-bar {
  margin-top: 0;
  padding: 1rem 0 1.15rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  z-index: 2;
}
.brand-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
@media (min-width: 768px) {
  .brand-bar__inner {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}
.brand-bar__label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-600);
  white-space: nowrap;
  flex-shrink: 0;
}
.brand-bar__logos {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem 1rem;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media (max-width: 479px) {
  .brand-bar__logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: .15rem;
  }
  .brand-bar__logos::-webkit-scrollbar { display: none; }
}
.brand-bar__logos li {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  padding: .35rem .65rem;
  height: 40px;
  min-width: 100px;
}
.brand-bar__logos img {
  max-height: 26px;
  max-width: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
}

main { padding-top: 64px; }
main:has(.hero--pdf:first-child) { padding-top: 0; }

.header--hero:not(.scrolled):not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.header--hero.scrolled,
.header--hero.is-scrolled {
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(14px);
}

/* Hero PDF */
.hero.hero--pdf {
  position: relative;
  min-height: min(92vh, 860px);
  padding: 6.5rem 0 0;
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}
.hero--pdf::after { display: none; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg picture { display: block; width: 100%; height: 100%; }
.hero__bg { perspective: 1400px; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: contain; object-position: center center;
  transform-origin: center center;
  animation: heroJaw3d 6s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroJaw3d {
  from { transform: rotateY(-22deg); }
  to   { transform: rotateY(22deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg img { animation: none; }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.2) 0%, rgba(15,23,42,.55) 55%, rgba(15,23,42,.95) 100%);
}
@media (min-width: 900px) {
  .hero__bg img { object-fit: contain; object-position: center center; }
  .hero__overlay {
    background: linear-gradient(90deg, rgba(15,23,42,.95) 0%, rgba(15,23,42,.78) 38%, rgba(15,23,42,.25) 68%, rgba(15,23,42,0) 100%);
  }
}
.hero__layout {
  position: relative; z-index: 1;
  display: grid; gap: 2rem; align-items: end;
  flex: 1; padding-bottom: 1.5rem;
}
@media (min-width: 900px) {
  .hero__layout { grid-template-columns: 1fr; gap: 3rem; align-items: center; }
  .hero__main { max-width: 640px; }
}
.hero__pills-bar {
  position: relative; z-index: 1;
  background: rgba(15,23,42,.55);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: .85rem 0;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.hero-pill {
  display: inline-flex; padding: .4rem .85rem; border-radius: 999px;
  font-size: .75rem; font-weight: 600;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.92);
}
.hero__price--bar { margin-top: 1.25rem; margin-bottom: 0; }
.hero-review-slider {
  background: rgba(255,255,255,.95); border-radius: var(--radius);
  padding: 1.15rem 1.25rem; box-shadow: var(--shadow-lg); max-width: 340px; margin-left: auto;
}
.hero-review-slider__track { position: relative; min-height: 110px; }
.hero-review-slider .hero-review-card { display: block; }
.hero-review-slider .hero-review-card[hidden] { display: none; }
.hero-review-card .stars { color: #fbbf24; font-size: .875rem; margin-bottom: .5rem; letter-spacing: 1px; }
.hero-review-card p {
  font-size: .875rem; color: var(--gray-600); line-height: 1.55;
  font-style: italic; margin-bottom: .75rem;
}
.hero-review-card cite { display: block; font-style: normal; font-weight: 700; font-size: .8125rem; color: var(--navy); }
.hero-review-card__story {
  display: block; margin-top: .35rem; font-size: .75rem; color: var(--blue); font-weight: 600;
}
.hero-review-card__story[hidden] { display: none !important; }
.hero-review-slider__nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: .85rem; padding-top: .75rem; border-top: 1px solid var(--gray-200);
}
.hero-review-slider__btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--gray-200); background: #fff;
  color: var(--navy); font-size: 1.25rem; cursor: pointer;
}
.hero-review-slider__count { font-size: .75rem; font-weight: 700; color: var(--gray-600); }
.hero-doctor-slider {
  background: rgba(255,255,255,.95); border-radius: var(--radius);
  padding: 1rem 1.15rem; box-shadow: var(--shadow-lg); max-width: 340px; margin-left: auto;
}
.hero-doctor-slider__track { position: relative; min-height: 72px; }
.hero-doctor-slider .hero-doctor-card {
  position: static; display: flex; gap: .85rem; align-items: center;
  max-width: none; margin: 0; background: transparent; border: none; box-shadow: none; padding: 0;
}
.hero-doctor-slider .hero-doctor-card[hidden] { display: none; }
.hero-doctor-slider__nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: .85rem; padding-top: .75rem; border-top: 1px solid var(--gray-200);
}
.hero-doctor-slider__btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--gray-200); background: #fff;
  color: var(--navy); font-size: 1.25rem; cursor: pointer;
}
.hero-doctor-slider__count { font-size: .75rem; font-weight: 700; color: var(--gray-600); }

.why-section--pdf .why-pdf__top {
  display: grid; gap: 1.25rem; margin-bottom: 2rem;
}
@media (min-width: 900px) {
  .why-section--pdf .why-pdf__top { grid-template-columns: 1fr 1fr; align-items: start; }
}
.why-pdf__body { display: grid; gap: 1.5rem; }
@media (min-width: 900px) {
  .why-pdf__body { grid-template-columns: auto 1fr; align-items: start; gap: 2rem; }
}

.carousel-panel {
  display: grid; grid-template-columns: auto 1fr auto; gap: .5rem; align-items: center; min-width: 0;
}
.carousel-panel__viewport { overflow: hidden; min-width: 0; }
.carousel-panel__arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--gray-200); background: #fff;
  color: var(--navy); font-size: 1.5rem; cursor: pointer; flex-shrink: 0;
}
.carousel-panel--banner .carousel-panel__arrow {
  background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.35); color: #fff;
}
.carousel-panel--banner .carousel-panel__viewport .testimonials-banner__grid,
.carousel-panel--banner .carousel-panel__viewport .team-grid,
.carousel-panel .carousel-panel__viewport .case-stories__grid {
  display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.carousel-panel--banner .testimonial-card,
.carousel-panel--banner .team-card,
.carousel-panel .case-card { flex: 0 0 clamp(260px, 80vw, 360px); scroll-snap-align: start; min-width: 0; }

.journey-pdf__accordion { max-width: 720px; margin: 0 auto; }
.journey-pdf__content h3 { font-size: clamp(1.35rem, 3vw, 1.75rem); margin-bottom: .75rem; }
.journey-pdf__content p { color: var(--gray-600); margin-bottom: 1.25rem; }
.journey-pdf__item[open] summary { border-bottom: 1px solid var(--gray-200); }
.journey-pdf__item p { padding: 0 1.25rem 1.15rem 3.75rem; color: var(--gray-600); font-size: .9375rem; }
.journey-pdf__item summary::after {
  content: '+'; margin-left: auto; font-size: 1.25rem; color: var(--gray-600);
}
.journey-pdf__item[open] summary::after { content: '×'; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 2.5rem 0 3rem;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.25), transparent 50%);
  pointer-events: none;
}
.hero__grid {
  display: grid; gap: 2.5rem; align-items: center;
  position: relative; z-index: 1;
}
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1fr 1fr; } }
.hero__badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: #93c5fd;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: #93c5fd; }
.hero__lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem; max-width: 480px; margin-bottom: 1.25rem; line-height: 1.55;
}
.hero__price {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 0.15rem;
  font-size: 2.25rem; font-weight: 800; color: var(--white); line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero__price small {
  font-size: 0.875rem; font-weight: 500; color: rgba(255, 255, 255, 0.72);
  line-height: 1.3;
}
.hero__btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero__btns .btn--outline { border-color: rgba(255, 255, 255, 0.35); color: var(--white); }
.hero__btns .btn--outline:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); color: var(--white); }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  font-size: 0.8125rem; color: rgba(255, 255, 255, 0.75);
}
.hero__trust-item { display: flex; align-items: center; gap: 0.4rem; }
.hero__trust-item svg { flex-shrink: 0; stroke: #93c5fd; }
.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  aspect-ratio: 4/3;
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }

/* Service ticker / marquee */
.ticker {
  background: var(--blue);
  color: var(--white);
  padding: 0.875rem 0;
  overflow: hidden;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0 2rem;
  font-size: 0.875rem; font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.ticker__dot {
  width: 6px; height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  padding: 3rem 0;
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  text-align: center; padding: 1.5rem 1rem;
  background: var(--gray-50); border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.stat__value { display: block; font-size: 2rem; font-weight: 800; color: var(--blue); }
.stat__label { font-size: 0.8125rem; color: var(--gray-600); margin-top: 0.25rem; }

/* Section utilities */
.section { padding: 4.5rem 0; }
.section--gray { background: var(--gray-50); }
.section-label {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); font-weight: 700; margin-bottom: 0.5rem;
}
.section h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800; color: var(--navy); letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section__lead { color: var(--gray-600); max-width: 600px; }

/* Case Stories — dark section */
.case-stories {
  background: var(--navy-dark);
  color: var(--white);
  padding: 5rem 0;
  overflow: hidden;
}
.case-stories .section-label { color: #93c5fd; }
.case-stories .why-section__tag { color: #93c5fd; }
.case-stories h2 { color: var(--white); }
.case-stories__lead { color: rgba(255, 255, 255, 0.82); max-width: 640px; margin-bottom: 1.75rem; line-height: 1.6; }
.case-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .case-stats { grid-template-columns: repeat(4, 1fr); } }
.case-stat {
  padding: 1.15rem 1rem; text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}
.case-stat__value {
  display: block; font-size: 1.75rem; font-weight: 800;
  color: #fff; line-height: 1.1; margin-bottom: 0.35rem;
}
.case-stat__label {
  display: block; font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75); line-height: 1.35;
}
.case-stories__grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 768px) { .case-stories__grid { grid-template-columns: repeat(2, 1fr); } }
.case-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}
.case-card__img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.case-card__img img { width: 100%; height: 100%; object-fit: cover; }
.case-card__tags {
  position: absolute; top: 1rem; left: 1rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.case-tag {
  background: rgba(37, 99, 235, 0.9);
  color: var(--white);
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; border-radius: 999px;
}
.case-tag--outline {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}
.case-card__body { padding: 1.5rem; }
.case-card__title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.case-card__text { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.7); line-height: 1.6; }
.case-card__meta {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem; color: rgba(255, 255, 255, 0.55);
}

/* Package & offers */
.section--soft { background: var(--gray-50); }
.package-section { padding: 4.5rem 0; }

.offers-grid {
  display: grid; gap: 1.25rem; margin-top: 2.5rem; align-items: stretch;
}
@media (min-width: 768px) { .offers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .offers-grid { grid-template-columns: repeat(3, 1fr); } }

.offer-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
}
.offer-card--featured {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: rgba(37, 99, 235, 0.35);
  color: var(--white);
}
.offer-card__badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--blue); color: #fff;
  font-size: .65rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: .35rem .7rem; border-radius: 999px;
}
.offer-card__tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: .35rem;
}
.offer-card--featured .offer-card__tag { color: #93c5fd; }
.offer-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
.offer-card--featured h3 { color: var(--white); }
.offer-card__price {
  font-size: 2.25rem; font-weight: 800; color: var(--blue);
  line-height: 1.1; margin-bottom: .5rem;
}
.offer-card--featured .offer-card__price { color: var(--white); }
.offer-card__price--quote { font-size: 1.125rem; font-weight: 700; color: var(--navy); }
.offer-card--featured .offer-card__price--quote { color: #fff; }
.offer-card__desc { font-size: .9rem; color: var(--gray-600); line-height: 1.5; margin-bottom: 1.25rem; }
.offer-card--featured .offer-card__desc { color: rgba(255,255,255,.78); }
.offer-card__list { list-style: none; margin: 0 0 1.5rem; flex-grow: 1; }
.offer-card__list li {
  padding: .5rem 0 .5rem 1.5rem; position: relative;
  font-size: .875rem; border-bottom: 1px solid var(--gray-200);
}
.offer-card--featured .offer-card__list li {
  border-bottom-color: rgba(255,255,255,.1); color: rgba(255,255,255,.9);
}
.offer-card__list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--blue); font-weight: 700;
}
.offer-card--featured .offer-card__list li::before { color: #93c5fd; }
.offer-card .btn { width: 100%; justify-content: center; margin-top: auto; }
.offer-card:not(.offer-card--featured) .btn--outline {
  background: var(--blue); border-color: var(--blue); color: var(--white);
}
.offer-card:not(.offer-card--featured) .btn--outline:hover {
  background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white);
}
.offers-note {
  margin-top: 1.5rem; text-align: center; font-size: 1rem; font-weight: 600; color: var(--blue);
}

/* Offers carousel — manual on mobile (no autoplay) */
.offers-carousel { margin-top: 2.5rem; }
.offers-carousel .offers-grid { margin-top: 0; }
.offers-carousel__hint {
  display: none;
  font-size: .8125rem; font-weight: 600; color: var(--blue);
  text-align: center; margin-bottom: .85rem;
}
.offers-carousel__viewport { display: block; }
.offers-carousel__arrow { display: none; }
.offers-carousel__footer { display: none; }

/* Journey — 4 steps */
.journey-section {
  padding: 4.5rem 0; background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.journey-section__lead { margin-inline: auto; max-width: 560px; }
.journey-steps-wrap { margin-top: 2.5rem; overflow: hidden; }
.journey-steps { display: grid; gap: 1.25rem; text-align: left; }
.journey-step {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 1.75rem 1.25rem;
  height: 100%; position: relative; z-index: 1;
}
.journey-step__num {
  width: 3.25rem; height: 3.25rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 3px solid var(--blue);
  color: var(--blue); font-weight: 800; font-size: .875rem; margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
}
.journey-step__title {
  font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem;
}
.journey-step__text { font-size: .875rem; color: var(--gray-600); line-height: 1.55; }
.journey-section__cta { margin-top: 2rem; }

.carousel-dots {
  display: flex; justify-content: center; align-items: center;
  gap: .45rem; margin-top: 1.15rem;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
  background: var(--gray-200); cursor: pointer; transition: width .25s, background .25s;
}
.carousel-dot.is-active {
  width: 22px; border-radius: 999px; background: var(--blue);
}

@media (max-width: 767px) {
  .journey-steps {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-padding-inline: 1rem; gap: 1rem; padding-bottom: .35rem;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .journey-steps::-webkit-scrollbar { display: none; }
  .journey-step {
    flex: 0 0 min(86vw, 300px); scroll-snap-align: center;
  }
  .offers-carousel__hint { display: block; }
  .offers-carousel__viewport {
    overflow: hidden;
    width: 100%;
    min-width: 0;
  }
  .offers-carousel .offers-grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    margin: 0;
  }
  .offers-carousel .offers-grid::-webkit-scrollbar { display: none; }
  .offers-carousel .offers-grid .offer-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-sizing: border-box;
    padding: 1.5rem 1.25rem;
  }
  .offers-carousel__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    margin-top: 1rem;
  }
  .offers-carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .offers-carousel__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
  }
  .offers-carousel__arrow:active { background: var(--gray-50); }
  .offers-carousel__count {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .06em;
    min-width: 3.5rem;
    text-align: center;
  }
  .offers-carousel .carousel-dots { margin-top: 0; }
  .package-section .section__lead { font-size: .95rem; }
  .hero__micro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }
  .hero.hero--pdf {
    min-height: min(88vh, 780px);
    padding-top: 6rem;
  }
  .hero__bg img {
    object-fit: contain;
    object-position: center top;
    height: calc(100% - 5rem);
    margin-top: 5rem;
  }
  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.15) 0%,
      rgba(15, 23, 42, 0.5) 50%,
      rgba(15, 23, 42, 0.96) 100%
    );
  }
  .hero__layout {
    padding-bottom: 2.5rem;
    align-items: end;
  }
  .hero__aside {
    width: 100%;
  }
  .hero-review-slider {
    max-width: none;
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .carousel-dots { display: none; }
  .offers-carousel .offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    align-items: stretch;
  }
}
@media (min-width: 1024px) {
  .offers-carousel .offers-grid:not([hidden]) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .offers-carousel .offers-grid:not([hidden]) .offer-card:nth-child(1) { order: 2; }
  .offers-carousel .offers-grid:not([hidden]) .offer-card:nth-child(2) { order: 1; }
  .offers-carousel .offers-grid:not([hidden]) .offer-card:nth-child(3) { order: 3; }
  .journey-steps {
    grid-template-columns: repeat(4, 1fr); position: relative; padding-top: .25rem;
  }
  .journey-steps::before {
    content: ''; position: absolute; top: 1.85rem; left: 8%; right: 8%;
    height: 2px; z-index: 0;
    background: linear-gradient(90deg, #dbeafe, var(--blue), #60a5fa);
  }
}

/* How it works — horizontal steps */
.how-it-works { padding: 4.5rem 0; background: var(--gray-50); }
.process-steps {
  display: grid; gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  text-align: center; padding: 1.5rem 1rem;
}
.process-step__num {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  color: var(--blue);
  font-size: 1.125rem; font-weight: 800;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}
.process-step__title {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.5rem;
}
.process-step__text {
  font-size: 0.875rem; color: var(--gray-600); line-height: 1.55;
}
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    /* connector handled via grid gap instead */
  }
}

/* Video section */
.video-section { padding: 4.5rem 0; }
.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow);
  background: var(--navy-dark);
}
.video-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.85;
}
.video-wrap.is-playing img { display: none; }
.video-wrap__player {
  width: 100%; height: 100%; display: block; object-fit: contain; background: #000;
}
.video-wrap--card { aspect-ratio: 16/10; border-radius: var(--radius); box-shadow: none; }
.video-wrap--card img { opacity: 1; }
.video-wrap--card .video-play__btn { width: 48px; height: 48px; }
.video-wrap--card .video-play__btn svg { width: 20px; height: 20px; }
.video-wrap--card .video-play { gap: 0; }
.video-play[hidden] { display: none !important; }
[data-video-poster][hidden] { display: none !important; }
.video-play {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(30, 58, 95, 0.45);
  color: var(--white);
  transition: background 0.3s;
}
.video-play:hover { background: rgba(30, 58, 95, 0.55); color: var(--white); }
.video-play__btn {
  width: 80px; height: 80px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.5);
  margin-bottom: 1rem;
  transition: transform 0.25s, background 0.25s;
}
.video-play:hover .video-play__btn {
  transform: scale(1.08);
  background: var(--blue-light);
}
.video-play__btn svg { width: 32px; height: 32px; fill: var(--white); margin-left: 4px; }
.video-play__label { font-weight: 600; font-size: 1rem; }

/* Testimonials */
.testimonials { padding: 4.5rem 0; background: var(--gray-50); }
.testimonials__grid {
  display: grid; gap: 1.5rem; margin-top: 2.5rem;
}
@media (min-width: 768px) { .testimonials__grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.06);
}
.testimonial__stars { color: #fbbf24; font-size: 0.875rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial__text {
  font-size: 0.9375rem; color: var(--gray-600);
  font-style: italic; margin-bottom: 1rem; line-height: 1.6;
}
.testimonial__author { font-weight: 700; font-size: 0.875rem; color: var(--navy); }

/* FAQ */
.faq-section { padding: 4.5rem 0; }
.faq-list { max-width: 760px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  width: 100%; background: none; border: none;
  color: var(--navy);
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  text-align: left;
  padding: 1.25rem 2.5rem 1.25rem 0;
  cursor: pointer; position: relative;
}
.faq-q::after {
  content: '+'; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--blue); font-size: 1.5rem; font-weight: 400;
  line-height: 1;
}
.faq-item.open .faq-q::after { content: '×'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding-bottom: 1.25rem; color: var(--gray-600); font-size: 0.9375rem; }

/* Booking form section */
.booking-section {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0;
}
.booking-section .section-label { color: #93c5fd; }
.booking-section h2 { color: var(--white); }
.booking-section__lead { color: rgba(255, 255, 255, 0.75); margin-bottom: 2rem; }
.booking-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 900px) { .booking-grid { grid-template-columns: 1.4fr 0.8fr; } }
.form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--gray-800);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}
.form-box h3 {
  font-size: 1.25rem; font-weight: 700; color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid; gap: 1rem;
}
@media (min-width: 560px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.8125rem; font-weight: 600;
  color: var(--gray-600); margin-bottom: 0.35rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.8rem 1rem;
  border: 1px solid var(--gray-200); border-radius: 10px;
  font-family: var(--font); font-size: 1rem;
  color: var(--gray-800); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-honey { position: absolute; left: -9999px; opacity: 0; }
.form-box .btn--primary { width: 100%; margin-top: 0.5rem; }
.form-note { font-size: 0.75rem; color: var(--gray-400); margin-top: 0.75rem; text-align: center; }

/* Sidebar cards */
.booking-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
}
.sidebar-card h4 {
  font-size: 1rem; font-weight: 700; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.sidebar-card h4 svg { stroke: #93c5fd; flex-shrink: 0; }
.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:last-child { font-weight: 600; }
.emergency-phone {
  display: block;
  font-size: 1.5rem; font-weight: 800;
  color: var(--white); margin: 0.5rem 0;
}
.emergency-phone:hover { color: #93c5fd; }
.sidebar-card p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.65); line-height: 1.55; }
.sidebar-card .btn { width: 100%; margin-top: 1rem; }

/* Footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 3rem 0 1.5rem;
  font-size: 0.875rem;
}
.footer a { color: rgba(255, 255, 255, 0.85); }
.footer a:hover { color: #93c5fd; }
.footer__grid {
  display: grid; gap: 2rem; margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-faq { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 1.2fr 0.75fr 0.75fr 1.3fr; }
  .footer-faq { grid-column: auto; margin-top: 0; padding-top: 0; border-top: none; }
}
.footer__logo img { height: 48px; width: auto; max-width: 220px; margin-bottom: 1rem; }
.footer h4 { color: var(--white); font-size: 0.9375rem; margin-bottom: 0.75rem; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem; text-align: center;
  font-size: 0.8125rem;
}

/* WhatsApp float + mobile bar */
.wa-float {
  position: fixed; bottom: 5.5rem; right: 1.25rem; z-index: 999;
  width: 56px; height: 56px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.06); color: var(--white); }
.wa-float svg { width: 28px; fill: var(--white); }
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  display: flex; gap: 0.75rem; padding: 0.75rem 1rem;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-bar .btn { flex: 1; padding: 0.75rem; font-size: 0.875rem; min-height: 44px; }
.mobile-bar { padding-bottom: max(.75rem, env(safe-area-inset-bottom)); }
.mobile-bar .btn--outline { border-color: rgba(255, 255, 255, 0.3); color: var(--white); }
@media (min-width: 768px) {
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
  .wa-float { bottom: 1.25rem; }
}

.text-center { text-align: center; }

/* Language switcher — removed from UI; lang only via URL (/it/, /en/, …) */
.lang-switcher { display: none !important; }
.lang-btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  border: none; background: transparent; cursor: pointer;
  font-family: var(--font); font-size: .6875rem; font-weight: 700;
  letter-spacing: .04em; padding: .35rem .55rem; border-radius: 999px;
  color: rgba(255, 255, 255, 0.65); transition: background .2s, color .2s;
}
.lang-btn.is-active {
  background: rgba(255, 255, 255, 0.15); color: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.header__actions { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
@media (max-width: 900px) {
  .header__actions .lang-switcher { display: none; }
  .nav-mobile .lang-switcher { display: flex; justify-content: center; margin: 1rem 0; }
}

/* Medical team */
.team-section {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.team-grid {
  display: grid; gap: 1.5rem; margin-top: 2.5rem;
}
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center;
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #fff; font-weight: 800; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.team-card h3 { font-size: 1.0625rem; margin-bottom: .35rem; color: var(--white); }
.team-card p { font-size: .875rem; color: rgba(255, 255, 255, 0.65); line-height: 1.5; }

/* Plan PDF layout */
.hero__image { position: relative; }
.hero-doctor-card {
  position: absolute; bottom: 1rem; right: 1rem; left: 1rem;
  display: flex; align-items: center; gap: .85rem;
  background: rgba(255,255,255,.97); border-radius: var(--radius);
  padding: .85rem 1rem; box-shadow: var(--shadow); z-index: 3;
}
@media (min-width: 900px) { .hero-doctor-card { left: auto; max-width: 260px; } }
.hero-doctor-card__avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), #60a5fa);
  color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.hero-doctor-card strong { display: block; font-size: .9rem; color: var(--navy); }
.hero-doctor-card__role { display: block; font-size: .75rem; color: var(--gray-600); }
.hero-doctor-card__meta { display: flex; gap: .75rem; margin-top: .25rem; font-size: .7rem; font-weight: 600; color: var(--blue); }
.why-section__tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: .5rem; }
.reviews-badge { display: inline-flex; align-items: center; gap: .65rem; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 999px; padding: .45rem 1rem .45rem .45rem; margin-top: 1.25rem; }
.reviews-badge__avatars { display: flex; }
.reviews-badge__avatars span { width: 28px; height: 28px; border-radius: 50%; margin-left: -8px; background: linear-gradient(135deg, #93c5fd, var(--blue)); border: 2px solid #fff; }
.reviews-badge__avatars span:first-child { margin-left: 0; }
.services-scroll { display: flex; gap: 1rem; overflow-x: auto; overflow-y: hidden; margin: 0; padding: 0.25rem 0 1rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.services-scroll::-webkit-scrollbar { display: none; }
.carousel-wrap { position: relative; margin-top: 2rem; overflow: hidden; max-width: 100%; }
.service-card { flex: 0 0 clamp(240px, 72vw, 300px); scroll-snap-align: start; min-width: 0; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.service-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.service-card__body { padding: 1.15rem; }
.plan-banner { padding: 2rem 0; margin: 0; overflow: hidden; }
.plan-banner--blue { background: transparent; color: #fff; margin: 0; padding: 0; border-radius: 0; }
.plan-banner__inner {
  background: linear-gradient(135deg, #1e6fd9 0%, var(--blue-dark) 48%, #152a45 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem);
  max-width: 100%; overflow: hidden;
}
.plan-banner--blue .section-label { color: rgba(255,255,255,.85); }
.plan-banner--blue h2 { color: #fff; font-size: clamp(1.35rem, 4vw, 2rem); line-height: 1.25; }
.testimonials-banner__grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 768px) { .testimonials-banner__grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.testimonial-card p { color: rgba(255,255,255,.92); line-height: 1.55; margin-bottom: 1rem; }
.testimonial-card cite { font-style: normal; font-size: .8125rem; color: rgba(255,255,255,.75); display: block; margin-bottom: 1rem; }
.testimonial-card .stars { color: #fbbf24; margin-bottom: .75rem; }
.testimonial-card .btn { width: 100%; font-size: .8125rem; }
.journey-pdf { padding: 4rem 0; }
.journey-pdf__featured { display: grid; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 900px) { .journey-pdf__featured { grid-template-columns: 1fr 1fr; } }
.journey-pdf__img { border-radius: var(--radius-lg); overflow: hidden; }
.journey-pdf__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.journey-pdf__num { display: inline-flex; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--blue); color: #fff; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 1rem; }
.journey-pdf__item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: .75rem; background: #fff; }
.journey-pdf__item summary { padding: 1.15rem 1.25rem; font-weight: 700; cursor: pointer; list-style: none; display: flex; gap: .75rem; color: var(--navy); }
.journey-pdf__item summary::-webkit-details-marker { display: none; }
.journey-pdf__item summary::before { content: attr(data-step); width: 2rem; height: 2rem; border-radius: 50%; background: #dbeafe; color: var(--blue); font-size: .75rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.team-banner .team-card { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.footer-faq { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.footer-faq h4 { color: #fff; margin-bottom: 1rem; }
.footer-certs { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }
.cert-badge { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; padding: .5rem .85rem; font-size: .75rem; font-weight: 600; }
.footer-faq .faq-item { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.footer-faq .faq-q { color: #fff; }
.footer-faq .faq-a p { color: rgba(255,255,255,.72); }

/* Responsive polish */
main { overflow-x: clip; }
body { overflow-x: hidden; }

@media (max-width: 640px) {
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; }
  .hero-doctor-card {
    position: relative; bottom: auto; left: auto; right: auto;
    margin: -1.25rem 0.5rem 0; max-width: none;
  }
  .reviews-badge { flex-wrap: wrap; border-radius: var(--radius); max-width: 100%; }
  .brand-bar__logos { padding-inline: 0.25rem; }
  .case-card:hover { transform: none; }
}

@media (max-width: 767px) {
  .testimonials-banner__grid { grid-template-columns: 1fr; }
  .team-banner .team-grid { grid-template-columns: 1fr; }
}

/* International LP layout */
.hero__micro {
  font-size: .8125rem; color: rgba(255,255,255,.75);
  margin: .75rem 0 0; max-width: 28rem;
}
.hero__price--bar[hidden] { display: none !important; }
.why-international { padding: 4rem 0; background: var(--gray-50); }
.why-international h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 2rem; color: var(--navy); }
.why-args { display: grid; gap: 1.25rem; margin-bottom: 2rem; }
@media (min-width: 900px) { .why-args { grid-template-columns: repeat(3, 1fr); } }
.why-arg {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
}
.why-arg h3 { font-size: 1.0625rem; margin-bottom: .65rem; color: var(--navy); }
.why-arg p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }
.brand-bar--embedded { margin-top: .5rem; padding: 0; border: none; background: transparent; }
.brand-bar--hero { border-bottom: 1px solid rgba(255,255,255,.08); }
.booking-section--early { background: #fff; border-bottom: 1px solid var(--gray-200); }
.booking-grid--compact { max-width: 920px; margin-inline: auto; }
.booking-sidebar--inline .sidebar-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; }
.testimonial-card__story {
  display: block; font-size: .75rem; color: rgba(255,255,255,.65);
  margin: -.5rem 0 1rem;
}
.testimonial-card__story[hidden] { display: none !important; }
.header.scrolled .lang-switcher,
.header.is-scrolled .lang-switcher { background: rgba(15,23,42,.08); }
.header.scrolled .lang-btn,
.header.is-scrolled .lang-btn { color: var(--navy); }
.header.scrolled .lang-btn.is-active,
.header.is-scrolled .lang-btn.is-active { background: rgba(37,99,235,.12); color: var(--blue); }

/* Testimonials + video (section 2) */
.testimonials-video-section { padding: 4rem 0; }
.testimonials-video-section__lead { max-width: 640px; color: var(--gray-600); margin-bottom: 0; }
.testimonials-video-layout {
  display: grid; gap: 1.25rem 2rem;
  grid-template-columns: 1fr;
  grid-template-areas:
    "main"
    "quotes";
}
.testimonials-video-layout__main {
  grid-area: main;
  display: flex; flex-direction: column; gap: .35rem;
}
.testimonials-video-layout__label { margin-bottom: 0; }
.testimonials-video-layout__title {
  grid-area: unset; margin-bottom: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800; color: var(--navy); letter-spacing: -0.02em; line-height: 1.2;
}
.testimonials-video-layout__lead { margin-bottom: 0; line-height: 1.55; }
.testimonials-video-layout__media { margin-top: .5rem; }
.testimonials-video-layout__quotes { grid-area: quotes; }
@media (min-width: 960px) {
  .testimonials-video-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0 2.5rem;
    grid-template-areas: "main quotes";
    align-items: start;
  }
  .testimonials-video-layout__main { gap: .3rem; }
  .testimonials-video-layout__media { margin-top: .65rem; }
  .testimonials-video-layout__quotes {
    display: flex; flex-direction: column;
    align-self: start;
    min-height: 0;
  }
  .testimonials-video-layout__quotes .carousel-panel {
    flex: 1; display: grid;
    grid-template-columns: auto 1fr auto; align-items: stretch;
    min-height: 0;
  }
  .testimonials-video-layout__quotes .carousel-panel__viewport {
    display: flex; align-items: stretch; min-height: 100%;
  }
  .testimonials-video-layout__quotes .testimonials-quote-grid {
    align-items: stretch; min-height: 100%;
  }
}
.video-section__eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: .2rem;
}
.testimonials-video-layout__media .video-section__title { font-size: 1.25rem; color: var(--navy); margin-bottom: .65rem; }
.video-section__title { font-size: 1.25rem; color: var(--navy); margin-bottom: 1rem; }
.testimonials-video-layout__quotes .carousel-panel { margin-bottom: 1.25rem; }
.testimonials-video-layout__quotes > .btn { width: 100%; }
.testimonials-quote-grid {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: .25rem;
}
.testimonials-quote-grid::-webkit-scrollbar { display: none; }
.testimonial-quote {
  flex: 0 0 clamp(280px, 88vw, 340px); scroll-snap-align: start;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
@media (min-width: 960px) {
  .testimonial-quote { flex-basis: clamp(300px, 32vw, 360px); min-height: 100%; }
}
.testimonial-quote__media {
  flex-shrink: 0;
}
.testimonial-quote__media.video-wrap--card { aspect-ratio: 4/5; }
.testimonial-quote__media img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-quote__media .video-wrap__player { aspect-ratio: 4/5; object-fit: contain; }
.testimonial-quote__body {
  flex: 1; display: flex; flex-direction: column;
  padding: 1.25rem 1.25rem 1.35rem;
}
.testimonial-quote__body p {
  flex: 1;
  font-size: .9rem; color: var(--gray-600); line-height: 1.55;
  margin-bottom: .75rem; font-style: italic;
}
.testimonial-quote__body .stars { color: #fbbf24; margin-bottom: .5rem; font-size: .875rem; }
.testimonial-quote__body cite { display: block; font-style: normal; font-weight: 700; font-size: .8125rem; color: var(--navy); }
.testimonial-quote__story {
  display: block; margin-top: .35rem; font-size: .75rem; color: var(--blue); font-weight: 600;
}
.testimonial-quote__story[hidden] { display: none !important; }
.video-play { border: none; cursor: pointer; font-family: var(--font); }

/* ES price list — vetëm /es/ (accordion) */
[data-lang-block="packages-es"][hidden] { display: none !important; }
.price-list-wrap { display: grid; gap: .75rem; margin-top: 1.5rem; }
.price-accordion {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow); overflow: hidden;
}
.price-accordion__summary {
  padding: 1rem 1.15rem; font-weight: 700; font-size: 1rem;
  color: var(--navy); cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
}
.price-accordion__summary::-webkit-details-marker { display: none; }
.price-accordion__summary::after {
  content: '+'; width: 1.75rem; height: 1.75rem; border-radius: 50%;
  background: #dbeafe; color: var(--blue); font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.price-accordion[open] .price-accordion__summary::after { content: '−'; }
.price-accordion__body { padding: 0 1rem 1rem; }
.price-list-table-wrap {
  overflow-x: auto; border: 1px solid var(--gray-200);
  border-radius: calc(var(--radius) - 4px); background: #fff;
}
.price-list-table {
  width: 100%; border-collapse: collapse; font-size: .875rem;
}
.price-list-table th,
.price-list-table td {
  padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
}
.price-list-table th {
  background: var(--gray-50); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; color: var(--navy);
}
.price-list-table tbody tr:last-child td { border-bottom: none; }
.price-list-table td:last-child { font-weight: 600; color: var(--blue); }
.price-list-table--formula td:nth-child(2),
.price-list-table--payment td:nth-child(2) { font-weight: 500; color: var(--navy); }
.offers-note--es { margin-top: 1.25rem; }
@media (max-width: 639px) {
  .price-list-wrap { margin-top: 1rem; gap: .6rem; }
  .price-accordion__summary { padding: .9rem 1rem; font-size: .9375rem; }
  .price-accordion__body { padding: 0 .75rem .85rem; }
  .price-list-table-wrap { border: none; background: transparent; }
  .price-list-table { font-size: .8125rem; }
  .price-list-table thead { display: none; }

  /* Servicios: emër + çmim në një rresht */
  .price-list-table--services tbody tr {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: .75rem; padding: .7rem 0;
    border-bottom: 1px solid var(--gray-200);
  }
  .price-list-table--services tbody tr:last-child { border-bottom: none; }
  .price-list-table--services td { border: none; padding: 0; }
  .price-list-table--services td::before { display: none !important; }
  .price-list-table--services td:nth-child(1) {
    flex: 1; font-weight: 600; color: var(--navy); line-height: 1.35;
  }
  .price-list-table--services td:nth-child(2) { display: none; }
  .price-list-table--services td:nth-child(3) {
    flex-shrink: 0; font-weight: 700; color: var(--blue);
    white-space: nowrap; text-align: right;
  }

  /* Formula + pagos: titull + përshkrim + badge */
  .price-list-table--formula tbody tr,
  .price-list-table--payment tbody tr {
    display: block; padding: .75rem 0;
    border-bottom: 1px solid var(--gray-200);
  }
  .price-list-table--formula tbody tr:last-child,
  .price-list-table--payment tbody tr:last-child { border-bottom: none; }
  .price-list-table--formula td,
  .price-list-table--payment td {
    display: block; border: none; padding: 0;
  }
  .price-list-table--formula td::before,
  .price-list-table--payment td::before { display: none !important; }
  .price-list-table--formula td:nth-child(1),
  .price-list-table--payment td:nth-child(1) {
    font-weight: 700; color: var(--navy); margin-bottom: .2rem;
  }
  .price-list-table--formula td:nth-child(2),
  .price-list-table--payment td:nth-child(2) {
    color: var(--gray-600); font-size: .8125rem; line-height: 1.4;
    margin-bottom: .35rem;
  }
  .price-list-table--formula td:nth-child(3),
  .price-list-table--payment td:nth-child(3) {
    display: inline-block; width: fit-content;
    padding: .2rem .55rem; border-radius: 999px;
    background: #eff6ff; color: var(--blue);
    font-weight: 700; font-size: .75rem;
  }
  .package-section .section__lead { font-size: .9rem; line-height: 1.5; }
  .package-section h2 { font-size: clamp(1.35rem, 5.5vw, 1.75rem); }
}

/* Journey VIP — 5 hapa, pa foto */
.journey-vip {
  padding: 4.5rem 0;
  background: linear-gradient(165deg, #0f2744 0%, #1e3a5f 42%, #2563eb 100%);
  color: #fff;
}
.journey-vip .section-label,
.journey-vip__label { color: #93c5fd; }
.journey-vip h2 { color: #fff; }
.journey-vip .section__lead { color: rgba(255,255,255,.82); }
.journey-vip__track {
  display: grid; gap: 1rem; margin-top: 2.5rem; position: relative;
}
@media (min-width: 768px) {
  .journey-vip__track { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 1100px) {
  .journey-vip__track {
    grid-template-columns: repeat(5, 1fr); gap: 1rem;
    padding-top: 1.5rem;
  }
  .journey-vip__track::before {
    content: ''; position: absolute; top: 2.35rem; left: 6%; right: 6%;
    height: 2px; background: linear-gradient(90deg, rgba(147,197,253,.2), rgba(255,255,255,.45), rgba(147,197,253,.2));
    z-index: 0;
  }
}
.journey-vip__step {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.97); border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem 1.4rem; color: var(--navy);
  box-shadow: 0 12px 40px rgba(15,23,42,.18);
  border: 1px solid rgba(255,255,255,.65);
}
.journey-vip__step--highlight {
  border-color: #93c5fd;
  box-shadow: 0 16px 48px rgba(37,99,235,.28);
}
.journey-vip__num {
  position: absolute; top: -0.65rem; left: 1rem;
  display: inline-flex; min-width: 2rem; height: 2rem; padding: 0 .45rem;
  border-radius: 999px; background: var(--blue); color: #fff;
  align-items: center; justify-content: center; font-weight: 800; font-size: .75rem;
}
.journey-vip__icon {
  width: 2.5rem; height: 2.5rem; border-radius: 12px;
  background: #eff6ff; color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: .85rem;
}
.journey-vip__icon svg { width: 1.35rem; height: 1.35rem; }
.journey-vip__step h3 { font-size: 1.05rem; margin-bottom: .5rem; line-height: 1.3; }
.journey-vip__step p { font-size: .875rem; color: var(--gray-600); line-height: 1.55; margin: 0; }
.journey-vip__cta { margin-top: 2.25rem; }
.journey-vip__cta .btn--primary {
  background: #fff; color: var(--blue); border-color: #fff;
}
.journey-vip__cta .btn--primary:hover { background: #eff6ff; }
