:root {
  --cream: #fcfbfa;
  --sand: #f5f1e8;
  --sand-deep: #ece5d6;
  --blue-50: #c6d1e8;
  --blue-200: #7f8fbb;
  --blue-500: #2b3f72;
  --blue-700: #132146;
  --ink: #0c1329;
  --muted: #4a5470;
  --line: #ced5e5;
  --white: #ffffff;
  --blush: #e7cfc2;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", Arial, sans-serif;
  --container: 1120px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 30;
  background: var(--blue-700);
  color: var(--white);
  padding: .7rem 1rem;
}
.skip-link:focus { left: 0; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(var(--p, 0));
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-700) 55%, var(--blush));
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(252, 251, 250, .78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 18px 40px -34px rgba(12, 19, 41, .6);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.brand-mark {
  width: 62px;
  height: auto;
  transition: transform .6s var(--ease);
}
.brand:hover .brand-mark { transform: scale(1.08) rotate(-4deg); }
.brand-text {
  display: grid;
  line-height: 1.05;
}
.brand-text strong {
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-700);
}
.brand-text em {
  font-style: normal;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--blue-500);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 2vw, 1.8rem);
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-links li:not(:last-child) a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--blue-500);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform .4s var(--ease);
}
.nav-links li:not(:last-child) a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}
.nav-links a[aria-current="page"] { color: var(--blue-500); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-700);
  transition: transform .3s var(--ease), opacity .2s linear;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Διακόπτης γλώσσας ---------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 30px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .35s var(--ease), background .35s var(--ease);
}
.lang-switch a:hover { color: var(--blue-700); }
.lang-switch a[aria-current="true"] {
  background: var(--blue-700);
  color: var(--white);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.4rem;
  border: 1px solid var(--blue-200);
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--blue-500), var(--blue-700));
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px -24px rgba(12, 19, 41, .65);
}
.btn:hover::before { transform: translateY(0); }
.btn-primary {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: var(--white);
}
.btn-primary::before { background: linear-gradient(120deg, var(--blue-500), var(--ink)); }
.btn-ghost {
  color: var(--blue-700);
  background: rgba(255, 255, 255, .5);
}
.btn-ghost:hover { color: var(--white); }
.btn-nav {
  min-height: 40px;
  padding: .65rem 1rem;
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: var(--white) !important;
}
.magnetic { will-change: transform; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(5rem, 9vw, 7rem);
  background:
    radial-gradient(90% 80% at 100% 0%, var(--blue-50), transparent 55%),
    linear-gradient(135deg, var(--sand), var(--cream));
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  will-change: transform;
  transform: translate3d(0, var(--py, 0px), 0);
}
.orb-1 {
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  top: -12%;
  right: -8%;
  background: radial-gradient(circle at 30% 30%, var(--blue-50), transparent 70%);
  animation: orbFloat 16s ease-in-out infinite;
}
.orb-2 {
  width: 34vw;
  height: 34vw;
  max-width: 420px;
  max-height: 420px;
  bottom: -14%;
  left: -6%;
  background: radial-gradient(circle at 60% 40%, var(--blush), transparent 68%);
  opacity: .42;
  animation: orbFloat 21s ease-in-out -6s infinite reverse;
}
.orb-3 {
  width: 26vw;
  height: 26vw;
  max-width: 320px;
  max-height: 320px;
  top: 32%;
  left: 38%;
  background: radial-gradient(circle at 50% 50%, var(--blue-200), transparent 70%);
  opacity: .28;
  animation: orbFloat 26s ease-in-out -12s infinite;
}
.hero-lines {
  position: absolute;
  inset: 0;
  opacity: .36;
  background:
    linear-gradient(90deg, rgba(43, 63, 114, .12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(43, 63, 114, .10) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 80%, transparent 100%);
  animation: gridDrift 18s linear infinite;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-grid,
.split,
.contact-layout,
.cta-inner,
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.eyebrow {
  margin: 0 0 .9rem;
  color: var(--blue-500);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow-live {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .35rem .85rem .35rem .6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
}
.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  flex: none;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--blue-500);
  animation: pulseRing 2.2s ease-out infinite;
}
h1, h2, h3 { overflow-wrap: anywhere; }
p, li, a, span, dd, strong { overflow-wrap: anywhere; }
h1, h2 {
  font-family: var(--serif);
  color: var(--blue-700);
  line-height: 1.05;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(3rem, 8vw, 6.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { margin: 0; color: var(--blue-700); }

/* Kinetic headline */
.kinetic {
  margin-bottom: 1.2rem;
  letter-spacing: -.01em;
}
.k-line { display: block; }
.k-word { display: inline-block; white-space: nowrap; }
.k-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(.5em) rotate(4deg);
  animation: charIn .9s var(--ease) forwards;
  animation-delay: calc(var(--k) * 38ms + 120ms);
}
.k-line-accent .k-char {
  background: linear-gradient(100deg, var(--blue-700) 20%, var(--blue-500) 50%, var(--blue-200) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline {
  margin: 0 0 1rem;
  color: var(--blue-500);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.35;
}
.shimmer {
  background: linear-gradient(100deg, var(--blue-500) 30%, var(--blush) 46%, var(--blue-500) 62%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerMove 6.5s linear infinite;
}
.hero-lead,
.lead,
.page-hero p,
.cta-inner p {
  color: var(--muted);
  font-size: 1.08rem;
}
.hero-lead { max-width: 46ch; }
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}
.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.6rem 0 0;
  padding: 0;
}
.hero-chips li {
  padding: .4rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  color: var(--blue-500);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  animation: riseIn .7s var(--ease) forwards;
  animation-delay: calc(.85s + var(--i) * 90ms);
  transition: transform .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.hero-chips li:hover {
  transform: translateY(-3px);
  border-color: var(--blue-200);
  color: var(--blue-700);
}
.hero-copy .eyebrow,
.hero-tagline,
.hero-lead,
.hero-actions {
  opacity: 0;
  animation: riseIn .75s var(--ease) forwards;
}
.hero-tagline { animation-delay: .5s; }
.hero-lead { animation-delay: .6s; }
.hero-actions { animation-delay: .7s; }

.hero-panel,
.info-card,
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 28px 60px -42px rgba(12, 19, 41, .45);
}
.hero-panel {
  position: relative;
  overflow: hidden;
  animation: panelEnter .9s var(--ease) .35s both;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(198, 209, 232, .28) 42%, transparent 68%);
  transform: translateX(-120%);
  animation: panelSheen 5.5s ease-in-out 1.6s infinite;
  pointer-events: none;
}
.panel-glow {
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 70%;
  background: radial-gradient(60% 60% at 50% 50%, var(--blue-50), transparent 70%);
  opacity: .8;
  animation: glowBreathe 8s ease-in-out infinite;
  pointer-events: none;
}
.panel-orbit {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 74px;
  height: 74px;
  border: 1px dashed var(--blue-50);
  border-radius: 50%;
  animation: spin 22s linear infinite;
  pointer-events: none;
}
.panel-orbit span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-200);
}
.panel-orbit span:nth-child(1) { top: -3px; left: calc(50% - 3.5px); }
.panel-orbit span:nth-child(2) { bottom: 6px; left: 4px; background: var(--blush); }
.panel-orbit span:nth-child(3) { bottom: 6px; right: 4px; }
.panel-mark {
  position: relative;
  width: 152px;
  height: auto;
  margin-bottom: .9rem;
  animation: markFloat 6.5s ease-in-out infinite;
}
.ekg {
  width: 100%;
  height: 46px;
  margin-bottom: 1.1rem;
  overflow: visible;
}
.ekg path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ekg-track { stroke: var(--blue-50); }
.ekg-pulse {
  stroke: var(--blue-500);
  stroke-dasharray: 120 460;
  stroke-dashoffset: 120;
  animation: ekgDraw 3.6s linear .8s infinite;
}
.hero-panel dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}
.hero-panel dl > div {
  border-top: 1px solid var(--line);
  padding-top: .8rem;
}
.hero-panel dt,
.contact-list span,
.service-card span,
.timeline span,
.steps li > span {
  color: var(--blue-500);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-panel dd { margin: .2rem 0 0; color: var(--ink); }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--blue-500);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: 0;
  animation: riseIn .8s var(--ease) 1.3s forwards;
}
.scroll-cue span {
  display: block;
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, transparent, var(--blue-200));
  animation: cueDrop 2.4s ease-in-out infinite;
}

/* ---------- Tickers ---------- */
.ticker {
  background: var(--blue-700);
  color: var(--sand);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, .12);
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 1rem 0;
  animation: tickerMove 30s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  flex: none;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  white-space: nowrap;
}
.ticker-track span::after {
  content: "·";
  margin-left: 2rem;
  color: var(--blue-200);
}
.marquee-soft {
  padding: 1.1rem 0;
  background: var(--sand);
  border-block: 1px solid var(--line);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: tickerMove 42s linear infinite reverse;
}
.marquee-soft:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  flex: none;
  white-space: nowrap;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ---------- Stats ---------- */
.stats-strip {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.stat {
  padding: 1rem 1.2rem;
  border-left: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--blue-700);
  font-variant-numeric: tabular-nums;
}
.stat span {
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-alt {
  background: var(--white);
  border-block: 1px solid var(--line);
}
.section-head {
  max-width: 760px;
  margin-bottom: 2.4rem;
}
.line-reveal {
  overflow: hidden;
}
.line-reveal > span {
  display: block;
  transform: translateY(105%);
  transition: transform .9s var(--ease);
}
.reveal.in .line-reveal > span,
.line-reveal.in > span { transform: translateY(0); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .9rem;
  color: var(--blue-700);
  border-bottom: 1px solid var(--blue-200);
  font-weight: 500;
}
.arrow-link::after {
  content: "→";
  transition: transform .35s var(--ease);
}
.arrow-link:hover::after { transform: translateX(6px); }

.info-card {
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card-badge {
  display: inline-block;
  margin-bottom: .8rem;
  padding: .25rem .7rem;
  border-radius: 999px;
  background: var(--sand);
  color: var(--blue-500);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.flag-row {
  display: flex;
  gap: .5rem;
  margin-top: 1.2rem;
}
.flag-row span {
  padding: .3rem .7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-500);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.service-grid-wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .8rem;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(198, 209, 232, .55), transparent 65%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-200);
  box-shadow: 0 34px 70px -44px rgba(12, 19, 41, .55);
}
.service-card h2,
.service-card h3 {
  position: relative;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.15;
}
.service-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}
.service-card-more {
  margin-top: 0;
}
.service-back {
  display: inline-flex;
  margin-top: 0;
  margin-bottom: 1.4rem;
}
.service-detail {
  max-width: 62ch;
}

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.steps li::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue-500);
  transition: width 1s var(--ease) .1s;
}
.steps li.in::after { width: 100%; }
.steps h3 {
  margin: .5rem 0 .4rem;
  font-family: var(--serif);
  font-size: 1.5rem;
}
.steps p { margin: 0; color: var(--muted); }

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: linear-gradient(180deg, var(--sand), var(--cream));
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 46vw;
  height: 46vw;
  max-width: 560px;
  max-height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--blue-50), transparent 70%);
  filter: blur(50px);
  animation: orbFloat 18s ease-in-out infinite;
  pointer-events: none;
}
.page-hero > .container { position: relative; }
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  opacity: 0;
  animation: riseIn .8s var(--ease) .1s forwards;
}
.page-hero .eyebrow,
.page-hero p {
  opacity: 0;
  animation: riseIn .8s var(--ease) .25s forwards;
}
.doctor-hero { align-items: center; }
.doctor-portrait-frame {
  justify-self: center;
  width: min(100%, 320px);
  padding: .5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 28px 60px -42px rgba(12, 19, 41, .45);
}
.doctor-portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 1491;
  object-fit: cover;
  border-radius: 12px;
}
.timeline {
  display: grid;
  gap: 1rem;
}
.timeline article,
.contact-list div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  transition: background .4s var(--ease), padding-left .4s var(--ease);
}
.timeline article:hover {
  background: linear-gradient(90deg, var(--sand), transparent);
  padding-left: .8rem;
}
.timeline p { margin: 0; color: var(--ink); }
.contact-list { grid-column: 1 / -1; }
.contact-list strong,
.contact-list a {
  font-weight: 500;
  color: var(--ink);
}
.contact-list a { border-bottom: 1px solid var(--blue-200); }

/* ---------- CTA ---------- */
.cta-section {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--sand);
  border-top: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.cta-aura {
  position: absolute;
  inset: -50% -20% auto -20%;
  z-index: -1;
  height: 200%;
  background:
    radial-gradient(40% 40% at 20% 40%, rgba(198, 209, 232, .8), transparent 70%),
    radial-gradient(35% 35% at 80% 60%, rgba(231, 207, 194, .55), transparent 70%);
  animation: auraDrift 20s ease-in-out infinite alternate;
}
.cta-inner h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-700);
  color: var(--sand);
  padding-top: 3rem;
}
.footer-inner {
  grid-template-columns: 1.2fr .8fr 1fr;
  align-items: start;
  padding-bottom: 2.5rem;
}
.footer-logo {
  width: 168px;
  height: auto;
  background: var(--cream);
  border-radius: 12px;
  padding: .8rem;
  transition: transform .5s var(--ease);
}
.footer-logo:hover { transform: translateY(-4px); }
.footer-tag {
  max-width: 32ch;
  color: var(--blue-50);
  font-family: var(--serif);
}
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer-links a {
  width: fit-content;
  transition: transform .35s var(--ease), color .35s var(--ease);
}
.footer-links a:hover {
  transform: translateX(6px);
  color: var(--white);
}
.footer-bottom {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  padding: 1.2rem 0 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(245, 241, 232, .72);
  font-size: .85rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Keyframes ---------- */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes charIn {
  0% { opacity: 0; transform: translateY(.55em) rotate(5deg); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) rotate(0); }
}
@keyframes panelEnter {
  from { opacity: 0; transform: translateY(30px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes panelSheen {
  0%, 38% { transform: translateX(-120%); }
  62%, 100% { transform: translateX(120%); }
}
@keyframes glowBreathe {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.12); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes markFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.03); }
}
@keyframes ekgDraw {
  0% { stroke-dashoffset: 120; }
  100% { stroke-dashoffset: -460; }
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(3.2); opacity: 0; }
}
@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, var(--py, 0px), 0) scale(1); }
  50% { transform: translate3d(2%, calc(var(--py, 0px) - 24px), 0) scale(1.08); }
}
@keyframes auraDrift {
  from { transform: translate3d(-3%, 0, 0); }
  to { transform: translate3d(4%, -4%, 0); }
}
@keyframes shimmerMove {
  from { background-position: 260% 0; }
  to { background-position: -60% 0; }
}
@keyframes cueDrop {
  0%, 100% { transform: scaleY(.4); transform-origin: 50% 0; opacity: .5; }
  50% { transform: scaleY(1); transform-origin: 50% 0; opacity: 1; }
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 72px 0, 0 72px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    display: grid;
    gap: .1rem;
    padding: 1rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    /* Το panel ξεκινά στα 74px, οπότε πρέπει να ανέβει και το ύψος του και το offset. */
    transform: translateY(calc(-100% - 74px));
    visibility: hidden;
    transition: transform .35s var(--ease), visibility 0s linear .35s;
  }
  .nav-open .nav-links {
    transform: translateY(0);
    visibility: visible;
    transition: transform .35s var(--ease), visibility 0s;
  }
  .nav-links a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }
  .lang-switch a {
    min-width: 44px;
    height: 34px;
  }
  body.nav-open { overflow: hidden; }

  .hero-grid,
  .split,
  .contact-layout,
  .cta-inner,
  .footer-inner,
  .service-grid,
  .service-grid-wide {
    grid-template-columns: 1fr;
  }
  /* Το πρώτο κομμάτι πιάνει ακριβώς μία οθόνη: τελευταίο ορατό το «Δείτε υπηρεσίες». */
  .hero { padding: 0 0 3.5rem; }
  .hero-grid { gap: 2.5rem; }
  .hero-copy {
    min-height: calc(100vh - 74px);
    min-height: calc(100svh - 74px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 2rem;
  }
  .hero-copy > .eyebrow-live { align-self: flex-start; }
  .hero-chips { display: none; }
  .hero-lines {
    background-size: 54px 54px;
    animation-duration: 24s;
  }
  h1 { font-size: 3.05rem; }
  h2 { font-size: 2.1rem; }
  .hero h1 {
    font-size: 2.9rem;
    max-width: 100%;
  }
  .hero-tagline,
  .hero-lead { max-width: 24rem; }
  .hero-tagline {
    font-size: 1.08rem;
    line-height: 1.35;
  }
  .hero-actions,
  .cta-actions { display: grid; }
  .btn { width: 100%; }
  .scroll-cue { display: none; }
  .stat { border-left: 0; border-top: 1px solid var(--line); }
  .timeline article,
  .contact-list div {
    grid-template-columns: 1fr;
    gap: .25rem;
  }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .service-grid,
  .service-grid-wide { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .k-char,
  .hero-copy .eyebrow,
  .hero-tagline,
  .hero-lead,
  .hero-actions,
  .hero-chips li,
  .scroll-cue,
  .page-hero h1,
  .page-hero .eyebrow,
  .page-hero p,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .line-reveal > span { transform: none !important; }
}
