:root {
  --blue: #0756a4;
  --blue-deep: #053c73;
  --blue-soft: #eaf4ff;
  --orange: #ec7b24;
  --ink: #142031;
  --muted: #647184;
  --line: #d9e3ee;
  --paper: #f6f9fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(9, 41, 78, .16);
  --radius: 8px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: min(var(--maxw), calc(100% - 40px)); margin-inline: auto; }

.progress { position: fixed; top: 0; left: 0; z-index: 200; height: 3px; width: 0; background: linear-gradient(90deg, var(--blue), var(--orange)); }
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  display: flex;
  align-items: center;
  transition: background .25s ease, height .25s ease, box-shadow .25s ease;
}
.topbar.scrolled { height: 68px; background: rgba(255,255,255,.92); backdrop-filter: blur(16px); box-shadow: 0 10px 30px rgba(9,41,78,.08); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 220px; }
.brand-logo { width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(7,86,164,.2)); }
.brand strong { display: block; font-weight: 800; letter-spacing: .02em; color: var(--blue); line-height: 1; }
.brand small { display: block; color: var(--muted); font-size: 11px; margin-top: 4px; }
.nav-links { display: flex; gap: 24px; align-items: center; font-size: 15.5px; font-weight: 800; color: #000000; }
.nav-links a { position: relative; padding: 4px 0; color: #000000; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px; background: var(--orange); transition: width .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-drop { position: relative; display: inline-flex; align-items: center; }
.nav-drop > a { display: inline-flex; align-items: center; }
.drop-caret { margin-left: 5px; font-size: 10px; opacity: .75; }
.nav-drop::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }
.nav-menu { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px); display: flex; flex-direction: column; min-width: 190px; padding: 8px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 18px 44px rgba(9,41,78,.16); opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease; z-index: 60; }
.nav-drop:hover .nav-menu, .nav-drop:focus-within .nav-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-menu a { padding: 9px 12px; border-radius: 9px; white-space: nowrap; }
.nav-menu a::after { display: none; }
.nav-menu a:hover { background: rgba(7,86,164,.08); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.phone-link { font-weight: 800; font-size: 17px; color: #000000; letter-spacing: .01em; }
.nav-actions .btn.primary { background: #000000; color: #fff; box-shadow: 0 15px 35px rgba(0,0,0,.2); }
.nav-actions .btn.primary:hover { background: #1a1a1a; }
.lang-switch { display: inline-flex; align-items: center; justify-content: center; height: 38px; padding: 0 13px; border-radius: 999px; border: 1.5px solid rgba(0,0,0,.2); font-weight: 800; font-size: 13.5px; letter-spacing: .05em; color: #000000; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.lang-switch:hover { background: #000000; color: #fff; border-color: #000000; }
.drawer .lang-switch { align-self: flex-start; margin-top: 4px; height: 44px; padding: 0 20px; font-size: 15px; }
.drawer a.drawer-sub { padding-left: 24px; font-size: 20px; opacity: .82; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: #fff; background: var(--blue); box-shadow: 0 15px 35px rgba(7,86,164,.24); }
.btn.primary:hover { background: var(--blue-deep); }
.btn.secondary { color: var(--blue); background: rgba(255,255,255,.78); border-color: rgba(7,86,164,.2); }
.btn.wide { width: 100%; margin-top: 12px; }
.hamburger { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 12px 8px; cursor: pointer; }
.hamburger span { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s ease; }
.overlay { position: fixed; inset: 0; z-index: 130; background: rgba(10,22,36,.42); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 140;
  width: min(360px, 84vw);
  height: 100vh;
  background: #fff;
  padding: 104px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: -30px 0 70px rgba(0,0,0,.16);
  transition: right .3s ease;
}
.drawer a:not(.btn) { font: 600 24px/1.1 "Source Serif 4", Georgia, serif; padding-bottom: 16px; border-bottom: 1px solid var(--line); color: #000000; }
body.menu-open .drawer { right: 0; }
body.menu-open .overlay { opacity: 1; pointer-events: auto; }

.hero { position: relative; min-height: 100vh; overflow: hidden; display: grid; align-items: center; padding: 128px 0 78px; background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(270deg, rgba(6,20,45,.18) 0%, rgba(6,20,45,0) 42%); z-index: 1; }
.hero-media { position: absolute; inset: 0; width: 100%; }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.98) contrast(1.02); }
.hero-grid { display: grid; grid-template-columns: 1fr minmax(0, 540px); gap: 56px; align-items: center; }
.hero-grid > *, .method-grid > *, .about-grid > *, .contact-grid > *, .page-layout > *, .content-flow > *, .content-block { min-width: 0; }
.eyebrow, .kicker { margin: 0 0 18px; color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
h1, h2, blockquote { font-family: "Source Serif 4", Georgia, serif; line-height: 1.05; letter-spacing: 0; }
h1 { max-width: 680px; margin: 0; font-size: clamp(44px, 6vw, 76px); color: #102032; overflow-wrap: normal; }
.lead { max-width: 600px; margin: 28px 0 34px; font-size: 18px; color: #435268; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; max-width: 590px; margin-top: 42px; }
.hero-stats div { padding-top: 16px; border-top: 1px solid var(--line); }
.hero-stats strong { display: block; color: var(--blue); font-size: 30px; line-height: 1; }
.hero-stats span { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; }
.hero-panel { align-self: end; padding: 20px; background: rgba(255,255,255,.86); border: 1px solid rgba(217,227,238,.9); border-radius: var(--radius); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.hero-panel img.hero-portrait { width: 100%; aspect-ratio: 1 / 1; height: auto; object-fit: cover; object-position: center top; border-radius: calc(var(--radius) - 6px); margin-bottom: 18px; }
.hero-panel p { margin: 0; font-weight: 700; color: #24364c; }
.hero-panel p span { display: block; margin-top: 4px; font-weight: 600; font-size: 13px; color: var(--muted); }

/* Γυάλινο (glass) πάνελ κειμένου πάνω από το banner (δεξιά) */
.hero .hero-copy { position: absolute; right: max(1.8vw, 14px); bottom: 4vh; z-index: 3; width: min(384px, 34vw); max-width: 384px; padding: 22px 26px; border-radius: 22px; background: linear-gradient(135deg, rgba(14,32,60,.52), rgba(14,32,60,.36)); border: 1px solid rgba(255,255,255,.28); box-shadow: 0 26px 64px rgba(6,20,45,.34); -webkit-backdrop-filter: blur(16px) saturate(1.15); backdrop-filter: blur(16px) saturate(1.15); }
/* Αριστερό κουτάκι τίτλου, πάνω από τον υπότιτλο του banner */
.hero-tagline { position: absolute; left: 12%; top: 60.5%; z-index: 3; width: min(500px, 40vw); padding: 18px 26px; border-radius: 18px; background: linear-gradient(135deg, rgba(9,22,48,.72), rgba(9,22,48,.6)); border: 1px solid rgba(255,255,255,.3); box-shadow: 0 18px 44px rgba(6,20,45,.32); -webkit-backdrop-filter: blur(14px) saturate(1.1); backdrop-filter: blur(14px) saturate(1.1); }
.hero-tagline h1 { margin: 0; color: #fff; font-size: clamp(22px, 2.3vw, 33px); line-height: 1.12; text-shadow: 0 2px 14px rgba(6,18,40,.42); }
.hero .hero-copy .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero .hero-copy .hero-actions .btn { width: 100%; padding: 0 8px; font-size: 13.5px; min-height: 46px; white-space: nowrap; }
.hero-doctor { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.hero-doctor img { width: 60px; height: 60px; border-radius: 14px; object-fit: cover; object-position: center top; border: 2px solid rgba(255,255,255,.5); flex-shrink: 0; }
.hero-doctor strong { display: block; color: #fff; font-size: 15px; font-weight: 700; line-height: 1.2; }
.hero-doctor small { display: block; margin-top: 2px; color: rgba(255,255,255,.75); font-size: 12px; }
.hero .hero-copy .eyebrow { color: #ffb26b; }
.hero .hero-copy h1 { color: #fff; font-size: clamp(28px, 2.7vw, 42px); text-shadow: 0 2px 16px rgba(6,18,40,.4); }
.hero .hero-copy .lead { font-size: 16px; }
.hero .hero-copy .lead { color: rgba(255,255,255,.92); }
.hero .hero-copy .hero-stats strong { color: #fff; }
.hero .hero-copy .hero-stats span { color: rgba(255,255,255,.82); }
.hero .hero-copy .hero-stats div { border-top-color: rgba(255,255,255,.32); }

.marquee { overflow: hidden; background: var(--blue); color: #fff; padding: 16px 0; }
.marquee-track { display: flex; width: max-content; gap: 34px; animation: marquee 24s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 34px; white-space: nowrap; font-weight: 800; }
.marquee-track span::after { content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--orange); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 108px 0; }
.section-head { max-width: 820px; margin-bottom: 54px; }
.section-head h2, .about-card h2, .contact-copy h2 { margin: 0; font-size: clamp(34px, 5vw, 62px); color: #12243a; }
.section-head p:not(.kicker), .contact-copy p, .method .section-head > p:not(.kicker) { color: var(--muted); font-size: 17px; }
.services { background: #fff; }
.svc-list { border-top: 1px solid var(--line); }
.svc-row { border-bottom: 1px solid var(--line); }
.svc-head { width: 100%; display: grid; grid-template-columns: 54px 1fr 42px; align-items: center; gap: 18px; padding: 28px 0; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }
.svc-head span { color: var(--orange); font-weight: 800; }
.svc-head strong { font: 600 clamp(22px, 3vw, 34px)/1.12 "Source Serif 4", Georgia, serif; }
.svc-head i { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 999px; position: relative; }
.svc-head i::before, .svc-head i::after { content: ""; position: absolute; inset: 50% auto auto 50%; width: 16px; height: 2px; background: var(--blue); transform: translate(-50%, -50%); }
.svc-head i::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .25s ease; }
.svc-body { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.svc-body p { max-width: 760px; margin: 0 0 30px 72px; color: #4c5a6b; }
.svc-row.open .svc-head strong { color: var(--blue); }
.svc-row.open .svc-head i { background: var(--blue-soft); border-color: var(--blue); }
.svc-row.open .svc-head i::after { transform: translate(-50%, -50%) rotate(0deg); }
.svc-row.open .svc-body { max-height: 220px; }

.method { background: linear-gradient(180deg, var(--paper), #fff); }
.method-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: start; }
.steps { display: grid; gap: 16px; }
.step { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 45px rgba(9,41,78,.06); }
.step span { color: var(--orange); font-weight: 800; }
.step strong { display: block; margin-top: 10px; font-size: 22px; color: var(--blue); }
.step p { margin: 10px 0 0; color: var(--muted); }

.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: stretch; }
.about-card, .quote-card { border-radius: var(--radius); border: 1px solid var(--line); background: var(--paper); padding: clamp(28px, 5vw, 54px); }
.about-card .intro { font-size: 19px; color: #34445a; }
.about-card ul { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.about-card li { position: relative; padding-left: 24px; color: #435268; }
.about-card li::before { content: ""; position: absolute; top: .68em; left: 0; width: 8px; height: 8px; border-radius: 999px; background: var(--orange); }
.quote-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 420px; color: #fff; background: linear-gradient(155deg, var(--blue), #173b61); overflow: hidden; position: relative; }
.quote-card::after { content: ""; position: absolute; right: -90px; bottom: -90px; width: 260px; height: 260px; border-radius: 999px; border: 50px solid rgba(255,255,255,.08); }
blockquote { position: relative; z-index: 1; margin: 0; font-size: clamp(32px, 4vw, 54px); }
figcaption { position: relative; z-index: 1; color: rgba(255,255,255,.76); font-weight: 800; }

.space { background: var(--paper); }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.gallery img { width: 100%; height: 520px; object-fit: cover; object-position: center; border-radius: var(--radius); box-shadow: 0 16px 40px rgba(9,41,78,.1); filter: saturate(.9) contrast(1.02) brightness(1.02); }
.gallery img:nth-child(2), .gallery img:nth-child(3) { height: 440px; align-self: end; }
.gallery.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery.four img { height: 470px; align-self: start; }
.gallery.four img:nth-child(even) { height: 410px; align-self: end; }

.voices {
  position: relative;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 62%, #0a6bc4 100%);
  color: #fff;
  overflow: hidden;
}
.voices::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(236,123,36,.16);
  pointer-events: none;
}
.voices .section-head { position: relative; z-index: 1; }
.voices .section-head h2 { color: #fff; }
.voices .section-head p:not(.kicker) { color: rgba(255,255,255,.76); }
.voices .kicker { color: #ffc38b; }
.voice-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.voice-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 30px 32px 26px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}
.voice-card::before {
  content: "\201C";
  display: block;
  margin-bottom: -22px;
  font: 700 64px/1 "Source Serif 4", Georgia, serif;
  color: var(--orange);
}
.voice-card blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.66;
  color: rgba(255,255,255,.93);
}
.voice-card figcaption {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.voice-card figcaption strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}
.voices-note {
  position: relative;
  z-index: 1;
  margin: 26px 0 0;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.contact-card { background: var(--blue); color: #fff; border-radius: var(--radius); padding: clamp(28px, 5vw, 46px); box-shadow: var(--shadow); display: grid; gap: 14px; }
.contact-card a:not(.btn), .contact-card div { display: block; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-card span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.66); font-weight: 800; }
.contact-card strong { display: block; margin-top: 4px; font-size: clamp(18px, 2.5vw, 28px); line-height: 1.22; overflow-wrap: anywhere; }
.contact-card .btn.primary { background: #fff; color: var(--blue); box-shadow: none; }

.footer { padding: 28px 0; background: #0f1f31; color: rgba(255,255,255,.72); font-size: 14px; }
.footer .shell { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer b { color: #fff; }
.footer a { color: rgba(255,255,255,.82); font-weight: 700; }
.footer-links { display: inline-flex; gap: 14px; flex-wrap: wrap; }
.clinicbrain-credit {
  color: rgba(255,255,255,.62);
}
.clinicbrain-credit a {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 260;
  width: min(920px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(217,227,238,.95);
  border-radius: var(--radius);
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(9,41,78,.22);
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.cookie-copy strong {
  display: block;
  color: var(--blue);
  font-size: 16px;
}
.cookie-copy {
  min-width: 0;
}
.cookie-copy p {
  margin: 6px 0 8px;
  color: #46566b;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: break-word;
}
.cookie-copy a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-actions .btn {
  min-height: 42px;
  padding: 0 16px;
  white-space: nowrap;
}

.page-hero {
  padding: 150px 0 86px;
  background:
    linear-gradient(100deg, rgba(246,249,252,.98) 0%, rgba(246,249,252,.94) 54%, rgba(246,249,252,.68) 100%),
    url("office-lounge.jpg") center right / cover no-repeat;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.breadcrumbs a { color: var(--blue); }
.breadcrumbs span::before { content: "/"; margin-right: 8px; color: #9aabba; }
.page-hero h1 { max-width: 840px; }
.page-hero .lead { max-width: 760px; }
.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 46px;
  align-items: start;
}
.content-flow {
  display: grid;
  gap: 30px;
}
.content-block {
  padding: clamp(28px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 45px rgba(9,41,78,.06);
}
.content-block h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 44px);
}
.content-block h3 {
  margin: 24px 0 8px;
  color: var(--blue);
  font-size: 20px;
}
.content-block p { margin: 0 0 14px; color: #435268; }
.content-block p:last-child { margin-bottom: 0; }
.check-list, .area-list, .link-grid {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  color: #33465d;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
}
.area-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.area-list li {
  padding: 14px 16px;
  background: var(--blue-soft);
  border: 1px solid #cfe3f7;
  border-radius: var(--radius);
  font-weight: 800;
  color: var(--blue);
}
.link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.link-grid a {
  display: block;
  min-height: 100%;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  color: var(--blue);
}
.service-card em {
  display: block;
  margin-top: auto;
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
}
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.feature-panel {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 45px rgba(9,41,78,.06);
}
.feature-panel.blue {
  background: var(--blue);
  color: #fff;
}
.feature-panel.blue p,
.feature-panel.blue li { color: rgba(255,255,255,.78); }
.feature-panel.blue h2 { color: #fff; }
.bio-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.bio-metrics div {
  padding: 18px;
  background: var(--blue-soft);
  border: 1px solid #cfe3f7;
  border-radius: var(--radius);
}
.bio-metrics strong {
  display: block;
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
}
.bio-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}
.professor-portrait {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
  margin: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 45px rgba(9,41,78,.06);
}
.professor-portrait img {
  width: 180px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}
.professor-portrait figcaption {
  color: var(--blue);
  font: 600 clamp(28px, 4vw, 42px)/1.1 "Source Serif 4", Georgia, serif;
}
.book-block { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 30px; align-items: center; }
.book-block img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(9,41,78,.18);
}
.book-block h2 { margin-top: 0; }
.book-block cite {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
  line-height: 1.4;
}
.book-block .book-meta { margin: 0; color: var(--muted); font-size: 14px; }
@media (max-width: 780px) { .book-block { grid-template-columns: 1fr; } .book-block img { max-width: 240px; } }

.wide-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 45px rgba(9,41,78,.08);
}
.wide-photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.wide-photo figcaption {
  padding: 14px 20px;
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.legal-head {
  padding: 132px 0 58px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%);
}
.legal-head h1 {
  max-width: 860px;
}
.updated {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}
.legal-wrap {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 54px 0 92px;
}
.legal-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.legal-toc strong {
  color: var(--ink);
}
.legal-toc a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}
.legal-body {
  padding: clamp(28px, 5vw, 54px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 45px rgba(9,41,78,.06);
}
.legal-body h2 {
  margin: 34px 0 12px;
  font-size: clamp(26px, 3.5vw, 40px);
}
.legal-body h2:first-child {
  margin-top: 0;
}
.legal-body p,
.legal-body li {
  color: #435268;
}
.legal-body a {
  color: var(--blue);
  font-weight: 800;
}
.legal-note {
  padding: 18px;
  background: var(--blue-soft);
  border: 1px solid #cfe3f7;
  border-radius: var(--radius);
  color: #29445f;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.legal-table th,
.legal-table td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.legal-table th {
  background: var(--blue);
  color: #fff;
}
.legal-foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal-foot-links a {
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.side-card {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.side-card img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius);
}
.side-card h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
}
.side-card p {
  margin: 0;
  color: rgba(255,255,255,.78);
}
.side-card .btn.primary {
  background: #fff;
  color: var(--blue);
  box-shadow: none;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 45px rgba(9,41,78,.06);
  min-height: 220px;
}
.service-card span { color: var(--orange); font-weight: 800; font-size: 13px; }
.service-card strong {
  font: 600 24px/1.12 "Source Serif 4", Georgia, serif;
  color: var(--ink);
}
.service-card p { margin: 0; color: var(--muted); }
.read-more {
  display: inline-flex;
  margin: 4px 0 30px 72px;
  color: var(--blue);
  font-weight: 800;
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-links, .phone-link { display: none; }
  .hamburger { display: block; }
  .hero { min-height: auto; padding-top: 110px; }
  .hero::before { background: linear-gradient(180deg, rgba(246,249,252,.96) 0%, rgba(246,249,252,.9) 50%, rgba(246,249,252,.72) 100%); }
  .hero-media { width: 100%; opacity: .42; }
  .hero-grid, .method-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero .hero-copy { position: relative; z-index: 3; right: auto; bottom: auto; width: auto; max-width: 100%; transform: none; }
  .hero-tagline { position: relative; z-index: 3; left: auto; top: auto; width: auto; max-width: 100%; margin-bottom: 14px; }
  .page-layout, .service-cards, .split-feature, .bio-metrics, .legal-wrap { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .legal-toc { position: static; }
  .hero-panel { max-width: 360px; }
  .gallery, .gallery.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery img, .gallery img:nth-child(2), .gallery img:nth-child(3),
  .gallery.four img, .gallery.four img:nth-child(even) { height: 400px; align-self: auto; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 32px, var(--maxw)); }
  .topbar { height: 70px; background: rgba(255,255,255,.92); backdrop-filter: blur(16px); }
  .topbar.scrolled { height: 64px; }
  .nav { gap: 12px; }
  .brand { min-width: 0; gap: 10px; }
  .brand-logo { width: 42px; height: 42px; }
  .brand strong { font-size: 15px; }
  .brand small { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { width: 42px; height: 42px; padding: 10px 8px; }
  .hero {
    min-height: auto;
    padding: 92px 0 34px;
    background: linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%);
  }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(6,20,45,.22) 0%, rgba(6,20,45,0) 30%, rgba(6,20,45,0) 68%, rgba(6,20,45,.45) 100%);
  }
  .hero-media {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  .hero-media img {
    object-position: center top;
  }
  .hero-grid {
    gap: 0;
    align-items: start;
  }
  .hero-copy {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    padding-top: 18px;
  }
  .eyebrow, .kicker { font-size: 10px; letter-spacing: .11em; line-height: 1.45; }
  .hero .eyebrow {
    max-width: 26ch;
    margin-bottom: 14px;
  }
  h1 { font-size: clamp(34px, 10.5vw, 40px); line-height: 1.04; overflow-wrap: break-word; }
  .hero-copy h1 {
    max-width: 100%;
    overflow-wrap: normal;
  }
  .page-hero h1 {
    font-size: clamp(30px, 8.8vw, 36px);
    line-height: 1.12;
    max-width: 11.5ch;
    overflow-wrap: anywhere;
  }
  .content-block h2 {
    font-size: 28px;
    line-height: 1.15;
    max-width: 12ch;
    overflow-wrap: anywhere;
  }
  .content-block p,
  .content-block li {
    overflow-wrap: break-word;
  }
  .professor-portrait {
    grid-template-columns: 1fr;
  }
  .professor-portrait img {
    width: 160px;
  }
  .service-card strong { overflow-wrap: anywhere; }
  .page-hero h1.name-title {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }
  .lead { font-size: 15px; max-width: 32ch; line-height: 1.62; }
  .hero-copy .lead {
    max-width: 30ch;
    margin: 18px 0 22px;
    overflow-wrap: break-word;
  }
  .page-hero .lead {
    max-width: 31ch;
    overflow-wrap: break-word;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 230px;
  }
  .hero .hero-copy .hero-actions { grid-template-columns: 1fr; max-width: 230px; }
  .hero .hero-copy .hero-actions .btn { font-size: 15px; padding: 0 16px; min-height: 48px; }
  .hero-actions .btn {
    min-height: 48px;
    padding: 0 16px;
    width: 100%;
  }
  .hero-actions .btn.secondary {
    background: rgba(255,255,255,.9);
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: none;
    margin-top: 28px;
  }
  .hero-stats div {
    min-width: 0;
    min-height: 88px;
    padding: 12px 10px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius);
    background: rgba(255,255,255,.1);
    box-shadow: none;
  }
  .hero-stats strong {
    font-size: 27px;
  }
  .hero-stats span {
    font-size: 11px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
  .hero-stats div:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 76px;
  }
  .hero .hero-copy { margin-top: 8px; padding: 24px 20px; border-radius: 20px; background: linear-gradient(160deg, rgba(10,24,48,.58), rgba(10,24,48,.66)); }
  .hero-panel { display: block; max-width: 240px; margin: 22px auto 0; padding: 14px; background: rgba(255,255,255,.92); }
  .section { padding: 76px 0; }
  .section-head { margin-bottom: 36px; }
  .svc-head { grid-template-columns: 38px 1fr 38px; gap: 12px; padding: 22px 0; }
  .svc-body p { margin-left: 0; }
  .read-more { margin-left: 0; }
  .area-list, .link-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 112px 0 62px; }
  .legal-head h1 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }
  .legal-body {
    padding: 24px;
  }
  .gallery, .gallery.four { grid-template-columns: 1fr; }
  .gallery img, .gallery img:nth-child(2), .gallery img:nth-child(3),
  .gallery.four img, .gallery.four img:nth-child(even) { height: 420px; }
  .footer .shell { display: grid; }
  .cookie-banner {
    grid-template-columns: 1fr;
    bottom: 14px;
    width: calc(100% - 24px);
    padding: 14px;
    gap: 12px;
  }
  .cookie-copy p {
    font-size: 13px;
    line-height: 1.38;
    margin: 4px 0 6px;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-content: stretch;
  }
  .cookie-actions .btn {
    min-width: 0;
    width: 100%;
    min-height: 44px;
    padding: 0 8px;
    font-size: 12.5px;
    white-space: normal;
    line-height: 1.15;
  }
}

/* ── Αρχική: κρυφό λεκτικό brand πάνω αριστερά (μένει μόνο ως κενός χώρος) ── */
.brand-quiet { display: none; }

/* Αρχική: όλο το μενού μαζεμένο αριστερά, πάνω στη λευκή περιοχή */
body.home .nav { justify-content: flex-start; gap: 30px; }
body.home .nav-actions { margin-left: 4px; }

/* ── Αρχική: μαύρα γράμματα στο μενού πάνω από το banner ── */
body.home .topbar:not(.scrolled) .nav-links,
body.home .topbar:not(.scrolled) .nav-links a { color: #000000; }
body.home .topbar:not(.scrolled) .phone-link { color: #000000; }
body.home .topbar:not(.scrolled) .nav-links a::after { background: var(--orange); }
body.home .topbar:not(.scrolled) .nav-menu a { color: #16283f; }
body.home .topbar:not(.scrolled) .hamburger span { background: var(--orange); }
/* Κουμπί Ραντεβού: πορτοκαλί, ώστε να ξεχωρίζει και πάνω στο μπλε και πάνω στο λευκό */
body.home .topbar .nav-actions .btn.primary { background: #000000; color: #fff; box-shadow: 0 15px 35px rgba(0,0,0,.3); }
body.home .topbar .nav-actions .btn.primary:hover { background: #1a1a1a; }

/* ── Αρχική: μικρότερο κουτί με τη φωτογραφία, ώστε να φαίνονται οι γραμμές του εγκεφάλου ── */
.hero .hero-copy { width: min(330px, 29vw); max-width: 330px; padding: 18px 22px; }
.hero .hero-copy .lead { margin: 16px 0 22px; }
.hero .hero-copy .hero-stats { margin-top: 26px; }

/* ── Ο Χώρος: μικρότερος τίτλος (-20%) και χάρτης ── */
.page-hero h1.h1-sm { font-size: clamp(35px, 4.8vw, 61px); }
.map-block { margin-top: 30px; }
.map-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-address { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; font-size: 17px; font-weight: 700; color: #24364c; }
.map-address li:first-child { font-size: 19px; }
@media (max-width: 640px) { .map-embed { aspect-ratio: 4 / 3; } }
@media (max-width: 780px) { .voice-grid { grid-template-columns: 1fr; } .voice-card { padding: 26px 24px 22px; } }

@media (max-width: 980px) {
  body.home .nav { justify-content: flex-end; }
  .hero .hero-copy { width: auto; max-width: 100%; padding: 22px 26px; }
  .page-hero h1.h1-sm { font-size: clamp(30px, 8.8vw, 36px); }
}

/* ── Ενότητα «Για την οικογένεια» (αρχική) ── */
.section.family { padding-top: 0; }
.family .feature-panel { max-width: 900px; margin: 0 auto; text-align: center; }
.family .feature-panel .kicker { color: #ffb26b; }
.family .feature-panel h2 { margin: 0; font-size: clamp(28px, 3.4vw, 42px); }
.family .feature-panel p { margin: 18px auto 26px; max-width: 680px; font-size: 17px; }
.family .feature-panel .btn.secondary { background: #fff; border-color: transparent; }
