:root {
  --bg: #0b1220;
  --bg-soft: #111a2e;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.12);
  --text: #f6f8fb;
  --muted: #aab5c8;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #74d7c8;
  --accent-2: #b7a6ff;
  --accent-dark: #0f6f66;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0,0,0,0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Aptos", "Inter", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(116, 215, 200, 0.22), transparent 35%),
    radial-gradient(circle at 85% 5%, rgba(183, 166, 255, 0.20), transparent 30%),
    linear-gradient(180deg, #08101f 0%, #0b1220 46%, #0d1424 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 40px, var(--max)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(8, 16, 31, 0.76);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0.06em; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07101e;
  display: grid; place-items: center;
  font-weight: 900;
  box-shadow: 0 10px 34px rgba(116, 215, 200, 0.28);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 540;
  color: var(--muted);
}
.nav-links a:hover { color: var(--white); }
.lang { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 999px; padding: 6px; }
.lang a { padding: 5px 9px; border-radius: 999px; color: var(--muted); }
.lang a.active { background: rgba(255,255,255,0.12); color: var(--white); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 11px 17px;
  border-radius: 999px;
  font-weight: 680;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.35); }
.btn.primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #07101e; border: none; }
.btn.secondary { background: rgba(255,255,255,0.08); color: var(--white); }
.hero {
  padding: 78px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 52px;
  align-items: start;
}
.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: 18px;
}
h1 {
  font-family: "Aptos Display", "Aptos", "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 5.55vw, 72px);
  line-height: 1.035;
  letter-spacing: -0.052em;
  font-weight: 760;
  max-width: 11.8ch;
  margin: 0 0 24px;
  color: rgba(246,248,251,.97);
}
.lead {
  color: #d7deea;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.62;
  max-width: 660px;
  margin: 0 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 34px; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.metric { padding: 16px; background: rgba(255,255,255,0.07); border: 1px solid var(--line); border-radius: var(--radius-md); }
.metric strong { display: block; font-size: 22px; }
.metric span { color: var(--muted); font-size: 13px; }
.hero-card {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-xl);
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.06)),
    radial-gradient(circle at 40% 0%, rgba(116, 215, 200, 0.23), transparent 32%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.orbit {
  position: absolute; inset: 34px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 50%;
  opacity: .8;
}
.orbit.two { inset: 92px; opacity: .55; }
.orbit.three { inset: 150px; opacity: .4; }
.hero-card-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { border: 1px solid var(--line); background: rgba(10,18,32,0.5); border-radius: 999px; padding: 8px 12px; font-size: 13px; color: #dbe3ef; }
.focus-panel { margin-top: auto; padding: 24px; border-radius: var(--radius-lg); background: rgba(5,10,20,0.55); border: 1px solid var(--line); }
.focus-panel h2 {
  font-family: "Aptos Display", "Aptos", "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
  font-weight: 740;
}
.focus-panel p { margin: 0; color: var(--muted); }
.section { padding: 82px 0; }
.section.alt { background: rgba(255,255,255,0.03); border-block: 1px solid rgba(255,255,255,0.08); }
.section-head { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; align-items: start; margin-bottom: 34px; }
h2 {
  font-family: "Aptos Display", "Aptos", "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
  font-weight: 740;
}
.section-head p { color: var(--muted); margin: 0; font-size: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card { padding: 26px; border-radius: var(--radius-lg); background: var(--card); border: 1px solid var(--line); }
.card:hover { background: var(--card-strong); }
.card h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  font-weight: 720;
}
.card p { color: var(--muted); margin: 0; }
.card ul { margin: 16px 0 0; padding-left: 18px; color: var(--muted); }
.card li { margin: 6px 0; }
.icon { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: rgba(116,215,200,0.12); color: var(--accent); margin-bottom: 18px; font-weight: 900; }
.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 28px; align-items: start; }
.bio-card { background: linear-gradient(145deg, rgba(116,215,200,.12), rgba(183,166,255,.10)); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 34px; align-self: start; }
.bio-card p { color: #dce4ee; }
.timeline { display: grid; gap: 14px; }
.step { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 22px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: rgba(255,255,255,0.06); }
.step-num { color: var(--accent); font-weight: 900; }
.step h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  font-weight: 720;
}
.step p { margin: 0; color: var(--muted); }
.notice { padding: 22px; border-radius: var(--radius-lg); border: 1px solid rgba(116,215,200,0.32); background: rgba(116,215,200,0.08); color: #dcefe9; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: start; }
.form { display: grid; gap: 14px; }
label { display: grid; gap: 7px; color: #d7deea; font-size: 14px; font-weight: 700; }
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(5,10,20,0.45);
  color: var(--white);
  font: inherit;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(116,215,200,0.11); }
textarea { min-height: 150px; resize: vertical; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); font-weight: 500; }
.checkbox input { width: auto; margin-top: 5px; }
.honeypot { display: none; }
.status { padding: 13px 15px; border-radius: 14px; border: 1px solid var(--line); margin-bottom: 14px; display: none; }
.status.success { display: block; background: rgba(116,215,200,0.10); border-color: rgba(116,215,200,0.34); }
.status.error { display: block; background: rgba(255,111,111,0.10); border-color: rgba(255,111,111,0.34); }
.calendly-box { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); background: rgba(255,255,255,0.06); }
.calendly-inline-widget { min-width: 320px; height: 720px; }
.footer { padding: 42px 0; color: var(--muted); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.small { font-size: 13px; color: var(--muted); }
.legal-page { padding: 70px 0; }
.legal-page .card { max-width: 900px; }
.legal-page h1 {
  font-family: "Aptos Display", "Aptos", "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 5.55vw, 72px);
  line-height: 1.035;
  letter-spacing: -0.052em;
  font-weight: 760;
  max-width: 11.8ch;
  margin: 0 0 24px;
  color: rgba(246,248,251,.97);
}
.legal-page h2 {
  font-family: "Aptos Display", "Aptos", "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
  font-weight: 740;
}
.legal-page p, .legal-page li { color: var(--muted); }
@media (max-width: 980px) {
  .hero-grid, .section-head, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 430px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .nav-links .hide-sm { display: none; }
}
@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero {
  padding: 78px 0 70px;
  position: relative;
  overflow: hidden;
}
  .section { padding: 58px 0; }
  .grid-3, .grid-2, .metrics { grid-template-columns: 1fr; }
  .nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
  .nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 540;
  color: var(--muted);
}
  .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 11px 17px;
  border-radius: 999px;
  font-weight: 680;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
  .hero-actions { width: 100%; }
  .step { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* v2: clearer hero service overview, replacing the previous abstract orbit graphic */
.hero-card.service-summary {
  min-height: auto;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.055)),
    radial-gradient(circle at 20% 0%, rgba(116, 215, 200, 0.16), transparent 32%);
}
.service-summary .hero-card-content {
  gap: 28px;
  justify-content: flex-start;
}
.service-summary h2 {
  font-family: "Aptos Display", "Aptos", "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
  font-weight: 740;
}
.summary-lead {
  color: var(--muted);
  margin: 0;
  font-size: 17px;
}
.summary-list {
  display: grid;
  gap: 12px;
}
.summary-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(5,10,20,0.40);
  border: 1px solid var(--line);
}
.summary-item span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(116,215,200,0.13);
  color: var(--accent);
  font-weight: 900;
  font-size: 13px;
}
.summary-item strong {
  display: block;
  font-size: 17px;
  margin-bottom: 4px;
}
.summary-item small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}
.calendly-consent {
  padding: 28px;
  min-height: 420px;
  display: grid;
  align-content: center;
  gap: 16px;
}
.calendly-consent h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  font-weight: 720;
}
.calendly-consent p {
  color: var(--muted);
  margin: 0;
}
.consent-actions,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(8,14,26,0.95);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.cookie-banner .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 11px 17px;
  border-radius: 999px;
  font-weight: 680;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
@media (max-width: 700px) {
  .summary-item { grid-template-columns: 1fr; }
  .cookie-banner { grid-template-columns: 1fr; left: 14px; right: 14px; bottom: 14px; }
  .cookie-actions .btn, .consent-actions .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 11px 17px;
  border-radius: 999px;
  font-weight: 680;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
}

/* v3: stronger focus section replacing CV-style background cards */
.focus-list .focus-head {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(116,215,200,0.24);
  background:
    linear-gradient(145deg, rgba(116,215,200,0.11), rgba(183,166,255,0.08)),
    rgba(255,255,255,0.045);
}
.focus-list .focus-head .eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: 18px;
}
.focus-list .focus-head h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  font-weight: 720;
}
.focus-list .focus-head p {
  margin: 0;
  color: var(--muted);
}
.focus-list .step {
  background: rgba(255,255,255,0.055);
}

.brand-logo {
  width: 190px;
  height: auto;
  display: block;
}
@media (max-width: 640px) {
  .brand-logo {
  width: 190px;
  height: auto;
  display: block;
}
}

p {
  font-weight: 420;
}
.hero-card h2 {
  font-size: clamp(34px, 3.6vw, 50px);
  max-width: 14ch;
}


/* German hero balance refinement */
html[lang="de"] h1 {
  font-size: clamp(46px, 5.8vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.052em;
  max-width: 11.6ch;
}

html[lang="de"] .hero-card h2 {
  font-size: clamp(38px, 3.25vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  max-width: 13.2ch;
}

@media (max-width: 720px) {
  html[lang="de"] h1 {
    font-size: clamp(42px, 13vw, 60px);
    max-width: 11.8ch;
  }

  html[lang="de"] .hero-card h2 {
    font-size: clamp(34px, 10vw, 46px);
    max-width: 13ch;
  }
}

/* Hero top alignment refinement */
.hero-grid > div:first-child {
  padding-top: 24px;
}

@media (max-width: 1020px) {
  .hero-grid > div:first-child {
    padding-top: 0;
  }
}

/* Refined footer */
.footer {
  padding: 74px 0 34px;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 18% 0%, rgba(116, 215, 200, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(8,16,31,0.16), rgba(8,16,31,0.52));
}

.footer-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) .82fr .72fr .72fr;
  gap: 34px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
  box-shadow: 0 22px 70px rgba(0,0,0,0.22);
}

.footer-logo {
  width: 182px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.footer-col a {
  color: #dfe6f4;
  transition: color .2s ease, opacity .2s ease;
}

.footer-col a:hover {
  color: var(--accent);
  opacity: 1;
}

.footer-label {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  color: rgba(170,181,200,0.78);
  font-size: 13px;
}

@media (max-width: 920px) {
  .footer-panel {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer {
    padding-top: 52px;
  }
  .footer-panel {
    grid-template-columns: 1fr;
    padding: 26px;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .footer-logo {
    width: 160px;
  }
}

/* Calendly dark integration refinement */
.calendly-box {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035)),
    radial-gradient(circle at 20% 0%, rgba(116, 215, 200, 0.12), transparent 34%);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.calendly-consent {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calendly-consent h3 {
  max-width: 14ch;
}

.calendly-embed-wrap {
  background: #0b1220;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
}

.calendly-inline-widget {
  background: #0b1220 !important;
  filter: invert(1) hue-rotate(180deg) saturate(.72) contrast(.92) brightness(.86);
}

.calendly-inline-widget iframe {
  background: #0b1220 !important;
}

/* Refined CTA system: logo-inspired primary buttons */
.btn {
  position: relative;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.055);
  color: var(--white);
  box-shadow: none;
  overflow: hidden;
}

.btn.primary {
  background:
    linear-gradient(135deg, rgba(246,248,251,0.98), rgba(224,239,238,0.96));
  color: #07101e;
  border: 1px solid rgba(246,248,251,0.74);
  box-shadow:
    0 14px 34px rgba(0,0,0,0.22),
    inset 0 0 0 1px rgba(116,215,200,0.16);
}

.btn.primary:hover {
  background:
    linear-gradient(135deg, rgba(255,255,255,1), rgba(213,243,238,0.98));
  border-color: rgba(116,215,200,0.78);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.28),
    0 0 22px rgba(116,215,200,0.16),
    inset 0 0 0 1px rgba(116,215,200,0.28);
}

.btn.secondary {
  background: rgba(255,255,255,0.045);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.17);
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.075);
  border-color: rgba(246,248,251,0.34);
}

/* Make form submit buttons read as actual actions, not cards */
.form .btn.primary {
  width: fit-content;
  min-width: 148px;
}

/* Premium minimal header navigation */
.nav {
  min-height: 76px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 540;
  letter-spacing: 0.018em;
  color: rgba(214, 222, 239, 0.76);
}

.nav-links > a {
  position: relative;
  padding: 8px 0;
  transition: color .2s ease, opacity .2s ease;
}

.nav-links > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(.35);
  transform-origin: center;
  transition: opacity .22s ease, transform .22s ease;
}

.nav-links > a:hover {
  color: var(--white);
  opacity: 1;
}

.nav-links > a:hover::after {
  opacity: .82;
  transform: scaleX(1);
}

.lang {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 5px;
  background: rgba(255,255,255,0.025);
}

.lang a {
  padding: 5px 10px;
  border-radius: 999px;
  color: rgba(214, 222, 239, 0.72);
  font-size: 13px;
  font-weight: 560;
  letter-spacing: .03em;
}

.lang a.active {
  background: rgba(255,255,255,0.095);
  color: rgba(246,248,251,0.96);
}

.lang a:hover {
  color: var(--white);
}

@media (max-width: 720px) {
  .nav-links {
    gap: 14px;
  }
  .lang {
    margin-left: 0;
  }
}

/* Greek language refinements */
html[lang="el"] h1 {
  font-size: clamp(44px, 5.25vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  max-width: 12.5ch;
}

html[lang="el"] .hero-card h2 {
  font-size: clamp(36px, 3.1vw, 50px);
  line-height: 1.06;
  max-width: 13.5ch;
}

html[lang="el"] .nav-links {
  gap: 24px;
}

html[lang="el"] .summary-item small,
html[lang="el"] p {
  line-height: 1.7;
}

@media (max-width: 720px) {
  html[lang="el"] h1 {
    font-size: clamp(40px, 12vw, 56px);
    max-width: 12ch;
  }
}

/* Greek clean language typography */
html[lang="el"] .step-num {
  min-width: 118px;
}

html[lang="el"] .card h3,
html[lang="el"] .step h3 {
  letter-spacing: -0.02em;
}

html[lang="el"] .summary-item strong {
  letter-spacing: -0.01em;
}


/* Cookie banner layout fix */
.cookie-banner {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(1280px, calc(100% - 48px));
  max-width: 1280px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(7, 13, 27, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.cookie-banner.show {
  display: flex !important;
}

.cookie-banner:not(.show) {
  display: none !important;
}

.cookie-banner p,
.cookie-banner__text,
.cookie-text {
  margin: 0;
  max-width: 760px;
  line-height: 1.5;
}

.cookie-actions,
.cookie-banner__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.cookie-banner .button,
.cookie-banner button,
.cookie-banner .btn {
  margin: 0;
}

@media (max-width: 820px) {
  .cookie-banner {
    width: calc(100% - 28px);
    bottom: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }

  .cookie-banner p,
  .cookie-banner__text,
  .cookie-text {
    max-width: none;
  }

  .cookie-actions,
  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cookie-banner .button,
  .cookie-banner button,
  .cookie-banner .btn {
    width: 100%;
  }
}


/* Calendly embedded dark panel fix */
[data-calendly-box].calendly-loaded,
.calendly-consent.calendly-loaded {
  padding: 0 !important;
  overflow: hidden !important;
  background: #0b1220 !important;
  border-radius: 22px !important;
}

[data-calendly-box].calendly-loaded .calendly-inline-widget,
.calendly-consent.calendly-loaded .calendly-inline-widget {
  width: 100% !important;
  min-height: 720px !important;
  background: #0b1220 !important;
  border-radius: 22px !important;
}


/* FINAL legal-page typography override */
body.legal-page main,
body.legal-page .section {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

body.legal-page .panel,
body.legal-page .card,
body.legal-page .glass-card,
body.legal-page .legal-card,
body.legal-page .policy-card,
body.legal-page .content-card,
body.legal-page main > section > div,
body.legal-page main > div {
  max-width: 920px !important;
}

body.legal-page h1 {
  font-size: clamp(38px, 4.2vw, 58px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.052em !important;
  margin-top: 0 !important;
  margin-bottom: 26px !important;
}

body.legal-page h2 {
  font-size: clamp(20px, 1.65vw, 26px) !important;
  line-height: 1.16 !important;
  letter-spacing: -0.026em !important;
  margin-top: 24px !important;
  margin-bottom: 10px !important;
}

body.legal-page h2:first-of-type {
  margin-top: 16px !important;
}

body.legal-page p {
  font-size: 16px !important;
  line-height: 1.65 !important;
  max-width: 780px !important;
}

@media (max-width: 760px) {
  body.legal-page main,
  body.legal-page .section {
    padding-top: 48px !important;
    padding-bottom: 56px !important;
  }

  body.legal-page h1 {
    font-size: clamp(34px, 9vw, 46px) !important;
  }

  body.legal-page h2 {
    font-size: 22px !important;
  }

  body.legal-page p {
    font-size: 15px !important;
  }
}

