@font-face {
  font-family: "Inter";
  src: url("vendor/fonts/inter-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("vendor/fonts/inter-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("vendor/fonts/inter-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("vendor/fonts/inter-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("vendor/fonts/inter-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

:root {
  --blue: #0b5bd3;
  --blue-dark: #083b8f;
  --blue-deep: #071b3b;
  --red: #e4232c;
  --white: #ffffff;
  --text: #102033;
  --muted: #6d7b8d;
  --soft: #f4f7fb;
  --line: #e3e9f0;
  --shadow: 0 24px 60px rgba(8, 46, 92, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(218, 226, 236, 0.8);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: white;
  font-weight: 800;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 25px rgba(11, 91, 211, 0.25);
}

.brand-mark::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  right: -2px;
  top: -2px;
  border: 2px solid white;
}


.brand-image {
  padding: 5px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
}

.brand-image::after {
  display: none;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 16px;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
}

.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: 0.25s ease;
}

.nav-links > a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--blue);
  color: white;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(238, 246, 255, 0.9), rgba(255,255,255,1) 54%),
    var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 59, 143, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 59, 143, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
}

.hero-glow-blue {
  width: 420px;
  height: 420px;
  background: var(--blue);
  left: -130px;
  top: 80px;
}

.hero-glow-red {
  width: 260px;
  height: 260px;
  background: var(--red);
  right: -80px;
  bottom: 40px;
}

.hero-grid {
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(228, 35, 44, 0.1);
}

.hero h1 {
  margin: 22px 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 780px;
}

.hero h1 span {
  color: var(--blue);
}

.hero-copy {
  max-width: 680px;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.button-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 30px rgba(11, 91, 211, 0.2);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
}

.button-secondary {
  background: white;
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-facts {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hero-facts div {
  display: flex;
  flex-direction: column;
}

.hero-facts strong {
  font-size: 14px;
}

.hero-facts span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.hero-card {
  background: var(--blue-deep);
  color: white;
  padding: 34px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--blue);
  top: -130px;
  right: -90px;
  filter: blur(10px);
  opacity: 0.35;
}

.hero-card-top {
  display: flex;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.medical-cross {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  font-size: 28px;
  border-radius: 12px;
}


.hero-logo {
  width: 76px;
  height: 76px;
  padding: 8px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-card small {
  color: rgba(255,255,255,0.58);
}

.hero-card h2 {
  margin: 7px 0 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.service-preview {
  margin: 34px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.service-preview-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.service-preview-item > span {
  color: #78aef7;
  font-size: 12px;
  font-weight: 800;
}

.service-preview-item div {
  display: flex;
  flex-direction: column;
}

.service-preview-item small {
  margin-top: 4px;
}

.card-link {
  font-weight: 700;
  color: white;
}

.card-link span {
  color: #7db2ff;
  margin-left: 6px;
}

.section {
  padding: 110px 0;
}

.section-soft {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

.section h2,
.section-heading h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 14px 0 0;
}

.section-text {
  color: var(--muted);
  font-size: 17px;
}

.section-text p:first-child {
  margin-top: 0;
}

.about-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.about-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -90px;
  width: min(46vw, 620px);
  aspect-ratio: 1 / 1;
  transform: translateY(-50%);
  background: url("img/logo.png") center / contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
}

.about-shell {
  position: relative;
  z-index: 1;
  padding: clamp(38px, 5.5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dfe8f2;
  border-radius: 30px;
  box-shadow: 0 24px 65px rgba(8, 46, 92, 0.075);
  overflow: hidden;
}

.about-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}

.about-intro {
  padding-bottom: clamp(46px, 5vw, 66px);
  border-bottom: 1px solid var(--line);
}

.leadership {
  margin-top: clamp(46px, 5vw, 64px);
}

.leadership-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 42px;
}

.leadership-heading h2 {
  font-size: clamp(30px, 3.4vw, 46px);
}

.leadership-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.leadership-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(8, 46, 92, 0.065);
  position: relative;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.leadership-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 3px;
  background: var(--red);
}

.leadership-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 91, 211, 0.3);
  box-shadow: 0 18px 42px rgba(8, 46, 92, 0.1);
}

.leadership-photo {
  width: 200px;
  height: 200px;
  min-height: 0;
  background: var(--blue-deep);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 9px 24px rgba(7, 27, 59, 0.14);
}

.leadership-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 32%;
  transition: transform 0.45s ease;
}

.leadership-card:hover .leadership-photo img {
  transform: scale(1.035);
}

.leadership-content {
  max-width: 820px;
  padding: 10px 34px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leadership-role {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf4ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leadership-content h3 {
  margin: 12px 0 17px;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.leadership-content p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.leadership-content p + p {
  margin-top: 14px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}

.section-heading > p {
  color: var(--muted);
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: white;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  position: relative;
  min-height: 330px;
  transition: 0.28s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 91, 211, 0.32);
  box-shadow: var(--shadow);
}

.card-number {
  position: absolute;
  right: 24px;
  top: 22px;
  color: #a7b5c4;
  font-weight: 800;
  font-size: 12px;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #edf4ff;
  color: var(--blue);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 42px;
}

.card h3 {
  font-size: 23px;
  margin: 0 0 10px;
}

.card p {
  color: var(--muted);
  margin-bottom: 25px;
}

.card a {
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
}

.trust {
  background: var(--blue-deep);
  color: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: center;
}

.section-label.light {
  color: #8bbcff;
}

.trust h2 {
  max-width: 750px;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.035);
}

.trust-list span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(11,91,211,0.28);
  color: #91bfff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.contact-copy {
  position: relative;
  isolation: isolate;
}

.contact-copy::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(90%, 350px);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  background: url("img/logo.png") center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.contact-copy > * {
  position: relative;
  z-index: 1;
}

.contact-details {
  margin-top: 38px;
  display: grid;
  gap: 22px;
}

.contact-details div {
  display: flex;
  flex-direction: column;
}

.contact-details small {
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-details a {
  font-weight: 700;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  outline: none;
  transition: 0.2s ease;
  background: #fbfcfe;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 91, 211, 0.08);
  background: white;
}

.contact-form select {
  min-height: 50px;
  color: var(--text);
  cursor: pointer;
}

.contact-form select:invalid {
  color: var(--muted);
}

.contact-form select option {
  color: var(--text);
}

.conditional-field[hidden] {
  display: none;
}

.contact-form textarea {
  resize: vertical;
}

.privacy {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500 !important;
  color: var(--muted);
}

.privacy input {
  width: auto;
  margin-top: 4px;
}

.form-button {
  width: 100%;
  border: none;
  margin-top: 5px;
}

.form-note {
  display: block;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 25px;
  align-items: center;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.footer-credit {
  font-size: 12px;
}

.footer-credit a {
  color: var(--blue);
  font-weight: 700;
}

.footer-credit a:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

.footer-heart {
  color: var(--red);
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-size: 13px;
}

.footer-links .footer-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-links .footer-instagram:hover,
.footer-links .footer-instagram:focus-visible {
  border-color: #c8a0ef;
  background: rgba(167, 90, 210, 0.24);
  color: #ffffff;
}

.footer-links .footer-instagram:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.footer-instagram svg {
  display: block;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    padding: 22px 20px;
    background: white;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .split,
  .section-heading,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .leadership-card {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 28px;
    padding: 22px;
  }

  .leadership-photo {
    width: 170px;
    height: 170px;
  }

  .leadership-content {
    padding: 8px 20px 8px 0;
  }

  .leadership-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .about-section::before {
    right: -110px;
    width: min(72vw, 520px);
    opacity: 0.04;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 70px 0;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer p {
    text-align: left;
  }

  .footer-meta {
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero h1 {
    font-size: 48px;
  }

  .section {
    padding: 78px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form,
  .hero-card {
    padding: 24px;
  }

  .leadership {
    margin-top: 58px;
  }

  .about-shell {
    padding: 30px 20px;
    border-radius: 22px;
  }

  .about-section::before {
    right: -130px;
    width: 390px;
    opacity: 0.035;
  }

  .contact-copy::before {
    width: min(82vw, 310px);
    opacity: 0.045;
  }

  .leadership-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 20px;
  }

  .leadership-photo {
    width: 148px;
    height: 148px;
    min-height: 0;
    aspect-ratio: auto;
  }

  .leadership-content {
    padding: 0 2px 4px;
  }
}


.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid .card:nth-child(4),
.services-grid .card:nth-child(5) {
  min-height: 330px;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


.service-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #edf4ff;
  font-size: 28px;
  margin-bottom: 28px;
  box-shadow: inset 0 0 0 1px rgba(11, 91, 211, 0.08);
}

.service-card h3 {
  margin-top: 0;
}

.service-card p {
  flex: 1;
}

.service-card a {
  margin-top: 8px;
}


.welcome-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.welcome-card-logo {
  position: relative;
  z-index: 2;
}

.welcome-card-logo img {
  display: block;
  max-width: 150px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.welcome-card-content {
  position: relative;
  z-index: 2;
}

.welcome-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #8bbcff !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.welcome-card h2 {
  margin: 0 0 18px;
  max-width: 520px;
}

.welcome-card p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.75;
}

.welcome-card .card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
}


.hero-logo-bg {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(42vw, 560px);
  aspect-ratio: 1 / 1;
  background: url("img/logo.png") center/contain no-repeat;
  opacity: 0.08;
  filter: grayscale(5%) blur(0.2px);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1100px) {
  .hero-logo-bg {
    width: min(50vw, 420px);
    right: 1%;
    opacity: 0.07;
  }
}

@media (max-width: 900px) {
  .hero-logo-bg {
    width: min(75vw, 360px);
    right: 50%;
    top: 22%;
    transform: translate(50%, -50%);
    opacity: 0.06;
  }
}

@media (max-width: 560px) {
  .hero-logo-bg {
    width: 300px;
    top: 18%;
    opacity: 0.05;
  }
}
/* =========================================
   IMPRESSUM
   ========================================= */

.legal-main {
  min-height: calc(100vh - 78px);
  padding: 90px 0 110px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(238, 246, 255, 0.85),
      rgba(255, 255, 255, 1) 58%
    );
}

.legal-watermark {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -100px;
  width: min(48vw, 650px);
  aspect-ratio: 1 / 1;
  transform: translateY(-50%);
  background: url("img/logo.png") center / contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
}

.legal-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 80px;
  align-items: start;
}

.legal-heading {
  position: sticky;
  top: 125px;
}

.legal-heading h1 {
  margin: 15px 0 18px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--text);
}

.legal-heading p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.legal-card {
  padding: clamp(30px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.legal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}

.legal-block {
  padding: 0 0 34px;
  margin: 0 0 34px;
  border-bottom: 1px solid var(--line);
}

.legal-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-block h2 {
  margin: 0 0 18px;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
}

.legal-block p,
.legal-address {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.legal-block p + p {
  margin-top: 16px;
}

.legal-address {
  font-style: normal;
}

.legal-address-spaced {
  margin-top: 14px;
}

.legal-contact-spaced {
  margin-top: 24px;
}

.legal-list {
  margin: 14px 0 18px;
  padding-left: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.legal-list li + li {
  margin-top: 5px;
}

.legal-address strong {
  color: var(--text);
  font-size: 18px;
}

.legal-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.legal-contact div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.legal-contact span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.legal-contact a,
.legal-link {
  color: var(--blue);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.legal-contact a:hover,
.legal-link:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .legal-main {
    padding: 70px 0 90px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .legal-heading {
    position: static;
  }

  .legal-heading p {
    max-width: 600px;
  }

  .legal-watermark {
    right: -150px;
    width: min(80vw, 540px);
  }
}

@media (max-width: 560px) {
  .legal-main {
    padding: 55px 0 75px;
  }

  .legal-heading h1 {
    font-size: 48px;
  }

  .legal-card {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .legal-contact {
    grid-template-columns: 1fr;
  }

  .legal-watermark {
    right: -160px;
    width: 390px;
    opacity: 0.035;
  }
}
.legal-block h3 {
  margin: 28px 0 10px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

/* =========================================
   CLEAN MODERN REFRESH
   ========================================= */

:root {
  --blue: #155fcf;
  --blue-dark: #0a469f;
  --blue-deep: #081a2f;
  --red: #e52b36;
  --text: #0c2136;
  --muted: #627184;
  --soft: #f5f7fa;
  --line: #e1e7ef;
  --shadow: 0 18px 48px rgba(8, 31, 59, 0.09);
}

html {
  scroll-padding-top: 90px;
}

body {
  background: #ffffff;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(21, 95, 207, 0.24);
  outline-offset: 3px;
}

.container {
  width: min(1200px, calc(100% - 48px));
}

.header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(225, 231, 239, 0.78);
  backdrop-filter: blur(20px) saturate(150%);
}

.nav {
  min-height: 74px;
}

.brand {
  gap: 11px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  box-shadow: 0 7px 20px rgba(8, 31, 59, 0.08);
}

.brand-text strong {
  font-size: 15px;
  letter-spacing: -0.015em;
}

.brand-text small {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.nav-links {
  gap: 28px;
  font-size: 13px;
}

.nav-links > a:not(.nav-cta)::after {
  bottom: -9px;
  height: 1.5px;
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  box-shadow: 0 7px 20px rgba(21, 95, 207, 0.15);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  background: var(--blue-dark);
  box-shadow: 0 10px 26px rgba(21, 95, 207, 0.22);
  transform: translateY(-1px);
}

.hero {
  min-height: min(860px, calc(100vh - 74px));
  background:
    radial-gradient(circle at 8% 8%, rgba(21, 95, 207, 0.09), transparent 34%),
    radial-gradient(circle at 92% 82%, rgba(229, 43, 54, 0.06), transparent 27%),
    #fbfcfe;
}

.hero::before {
  background-size: 56px 56px;
  opacity: 0.65;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-glow {
  opacity: 0.1;
  filter: blur(120px);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: clamp(48px, 6vw, 84px);
  padding: clamp(82px, 9vw, 126px) 0;
}

.eyebrow,
.section-label {
  gap: 9px;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.status-dot {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 4px rgba(229, 43, 54, 0.09);
}

.hero h1 {
  max-width: 720px;
  margin: 24px 0;
  font-size: clamp(52px, 5.8vw, 76px);
  line-height: 1;
  letter-spacing: -0.058em;
}

.hero-copy {
  max-width: 630px;
  margin: 0 0 34px;
  color: #58697d;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button-primary {
  box-shadow: 0 10px 26px rgba(21, 95, 207, 0.18);
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(21, 95, 207, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
}

.hero-facts {
  margin-top: 48px;
  padding-top: 24px;
  gap: 28px;
}

.hero-facts strong {
  font-size: 13px;
}

.hero-facts span {
  font-size: 11px;
}

.hero-card {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(21, 95, 207, 0.42), transparent 40%),
    linear-gradient(145deg, #0a213c, #061629);
  box-shadow: 0 28px 70px rgba(8, 26, 47, 0.2);
}

.hero-card::before {
  width: 170px;
  height: 170px;
  top: -110px;
  right: -80px;
  opacity: 0.22;
}

.welcome-card {
  gap: 28px;
}

.welcome-card-logo img {
  max-width: 138px;
  max-height: 62px;
}

.welcome-kicker {
  margin-bottom: 12px;
  font-size: 10px;
}

.welcome-card h2 {
  margin-bottom: 20px;
  font-size: clamp(27px, 2.4vw, 34px);
  line-height: 1.12;
}

.welcome-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.78;
}

.welcome-card .card-link {
  font-size: 14px;
}

.hero-logo-bg {
  right: 2%;
  width: min(40vw, 540px);
  opacity: 0.038;
}

.section {
  padding: clamp(88px, 8vw, 112px) 0;
}

.section-soft {
  background: #f6f8fb;
}

.section h2,
.section-heading h2 {
  max-width: 780px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
}

.section-text,
.leadership-heading p,
.contact-copy p {
  color: #637286;
  font-size: 16px;
  line-height: 1.78;
}

.about-section {
  background: #ffffff;
}

.about-section::before {
  opacity: 0.025;
}

.about-shell {
  padding: clamp(42px, 5vw, 68px);
  border-color: #e5eaf1;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 50px rgba(8, 31, 59, 0.055);
}

.about-shell::before {
  width: 120px;
  height: 3px;
}

.about-intro {
  padding-bottom: clamp(40px, 5vw, 60px);
}

.leadership {
  margin-top: clamp(42px, 5vw, 58px);
}

.leadership-heading {
  margin-bottom: 34px;
}

.leadership-card {
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: 22px;
  border-color: #e3e9f0;
  border-radius: 18px;
  box-shadow: none;
}

.leadership-card::after {
  width: 48px;
  height: 2px;
}

.leadership-card:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 95, 207, 0.28);
  box-shadow: 0 14px 32px rgba(8, 31, 59, 0.07);
}

.leadership-photo {
  width: 164px;
  height: 164px;
  border-radius: 14px;
  box-shadow: none;
}

.leadership-content {
  padding: 6px 24px 6px 0;
}

.leadership-role {
  padding: 5px 9px;
  background: #eef4fd;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.leadership-content h3 {
  margin: 11px 0 13px;
  font-size: clamp(25px, 2.2vw, 31px);
}

.leadership-content p {
  font-size: 14px;
  line-height: 1.72;
}

.section-heading {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  margin-bottom: 42px;
}

.section-heading > p {
  line-height: 1.75;
}

.services-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.services-grid .service-card {
  grid-column: span 2;
}

.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
  grid-column: span 3;
}

.card,
.service-card {
  min-height: 350px;
  padding: 30px;
  border-color: #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: none;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 95, 207, 0.26);
  box-shadow: 0 16px 36px rgba(8, 31, 59, 0.075);
}

.card-number {
  right: 22px;
  top: 20px;
  color: #a4afbd;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border-radius: 14px;
  background: #eef4fd;
  color: var(--blue);
  box-shadow: none;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.25;
}

.service-card p {
  margin: 0 0 24px;
  color: #657488;
  font-size: 14px;
  line-height: 1.72;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.service-card a span {
  transition: transform 0.2s ease;
}

.service-card a:hover span {
  transform: translateX(3px);
}

.trust {
  padding: clamp(76px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 8% 30%, rgba(21, 95, 207, 0.26), transparent 28%),
    linear-gradient(135deg, #081a2f, #0a2340);
}

.trust h2 {
  font-size: clamp(36px, 4vw, 50px);
}

.trust-list {
  gap: 10px;
}

.trust-list div {
  padding: 14px 16px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
}

.trust-list span {
  width: 24px;
  height: 24px;
  background: rgba(73, 137, 231, 0.2);
  color: #9ec5ff;
}

#kontakt {
  background: #ffffff;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(50px, 7vw, 88px);
}

.contact-copy::before {
  width: min(86%, 330px);
  opacity: 0.035;
}

.contact-details {
  margin-top: 34px;
  gap: 18px;
}

.contact-details div {
  padding-left: 14px;
  border-left: 2px solid #dbe7f7;
}

.contact-details small {
  font-size: 11px;
}

.contact-details a {
  font-size: 15px;
}

.contact-form {
  padding: 34px;
  border-color: #e1e7ef;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(8, 31, 59, 0.075);
}

.contact-form label {
  margin-bottom: 17px;
  color: #253b51;
  font-size: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  margin-top: 8px;
  padding: 13px 14px;
  border-color: #dfe6ee;
  border-radius: 12px;
  background: #f8fafc;
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(21, 95, 207, 0.65);
  box-shadow: 0 0 0 4px rgba(21, 95, 207, 0.075);
}

.privacy {
  font-size: 12px !important;
  line-height: 1.55;
}

.form-note {
  font-size: 11px;
  line-height: 1.5;
}

.footer {
  padding: 42px 0;
  border-top: 0;
  background: #06172a;
  color: #ffffff;
}

.footer .brand-text strong {
  color: #ffffff;
}

.footer .brand-text small,
.footer p {
  color: rgba(255, 255, 255, 0.56);
}

.footer-credit a {
  color: #89b8ff;
}

.footer-credit a:hover {
  color: #bdd7ff;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: #ffffff;
}

.legal-main {
  padding: 88px 0 108px;
  background:
    radial-gradient(circle at 0% 0%, rgba(21, 95, 207, 0.07), transparent 30%),
    #f6f8fb;
}

.legal-watermark {
  opacity: 0.025;
}

.legal-layout {
  grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(52px, 6vw, 78px);
}

.legal-heading {
  top: 116px;
}

.legal-heading h1 {
  margin: 16px 0 19px;
  font-size: clamp(50px, 5.5vw, 70px);
}

.legal-card {
  padding: clamp(32px, 4vw, 50px);
  border-color: #e1e7ef;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 52px rgba(8, 31, 59, 0.07);
}

.legal-card::before {
  width: 110px;
  height: 3px;
}

.legal-block {
  margin-bottom: 31px;
  padding-bottom: 31px;
}

.legal-block h2 {
  margin-bottom: 16px;
  font-size: 23px;
}

.legal-block p,
.legal-address,
.legal-list {
  color: #647387;
  font-size: 15px;
  line-height: 1.78;
}

.legal-contact {
  gap: 12px;
}

.legal-contact div {
  padding: 16px 17px;
  border-color: #e3e9f0;
  border-radius: 12px;
  background: #f7f9fc;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: 42px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid .service-card,
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: auto;
  }

  .services-grid .service-card:last-child {
    grid-column: 1 / -1;
    min-height: 300px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    top: 74px;
    gap: 18px;
    padding: 22px 24px 26px;
    border-bottom-color: #e1e7ef;
    box-shadow: 0 18px 36px rgba(8, 31, 59, 0.08);
  }

  .hero-grid,
  .split,
  .section-heading,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 78px 0;
  }

  .hero-card {
    max-width: 680px;
  }

  .hero-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .leadership-heading {
    gap: 16px;
  }

  .contact-form {
    max-width: 720px;
  }

  .legal-main {
    padding: 68px 0 88px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 30px, 1200px);
  }

  .hero-grid {
    padding: 64px 0 72px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 54px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-facts div {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: baseline;
  }

  .hero-card {
    padding: 28px;
    border-radius: 22px;
  }

  .section {
    padding: 76px 0;
  }

  .section h2,
  .section-heading h2,
  .trust h2 {
    font-size: 35px;
  }

  .about-shell {
    padding: 30px 20px;
    border-radius: 22px;
  }

  .leadership-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 19px;
  }

  .leadership-photo {
    width: 138px;
    height: 138px;
  }

  .leadership-content {
    padding: 0 2px 4px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card:last-child {
    grid-column: auto;
  }

  .card,
  .service-card {
    min-height: 0;
    padding: 25px;
  }

  .trust {
    padding: 70px 0;
  }

  .contact-form {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .footer {
    padding: 38px 0;
  }

  .legal-main {
    padding: 56px 0 74px;
  }

  .legal-heading h1 {
    font-size: 46px;
  }

  .legal-card {
    padding: 28px 21px;
    border-radius: 20px;
  }

  .legal-block h2 {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* COLORED SERVICES & MOTION */

.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(210, 219, 230, 0.92);
  box-shadow: 0 10px 30px rgba(8, 31, 59, 0.07);
}

.service-card {
  --service-color: #155fcf;
  --service-rgb: 21, 95, 207;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 3px solid var(--service-color);
  background:
    linear-gradient(180deg, rgba(var(--service-rgb), 0.065), transparent 92px),
    #ffffff;
}

.service-card::before {
  position: absolute;
  z-index: -1;
  top: -82px;
  right: -82px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(var(--service-rgb), 0.055);
  content: "";
  pointer-events: none;
}

.service-card:nth-child(1) {
  --service-color: #dc2626;
  --service-rgb: 220, 38, 38;
}

.service-card:nth-child(2) {
  --service-color: #ea580c;
  --service-rgb: 234, 88, 12;
}

.service-card:nth-child(3) {
  --service-color: #155fcf;
  --service-rgb: 21, 95, 207;
}

.service-card:nth-child(4) {
  --service-color: #7c3aed;
  --service-rgb: 124, 58, 237;
}

.service-card:nth-child(5) {
  --service-color: #0f8a7a;
  --service-rgb: 15, 138, 122;
}

.service-card .card-number {
  color: rgba(var(--service-rgb), 0.58);
}

.service-card .service-icon {
  border: 1px solid rgba(var(--service-rgb), 0.15);
  background: rgba(var(--service-rgb), 0.095);
  color: var(--service-color);
  transition: transform 0.28s ease, background-color 0.28s ease;
}

.service-card > a {
  color: var(--service-color);
}

.service-card:hover {
  border-color: rgba(var(--service-rgb), 0.28);
  border-top-color: var(--service-color);
  box-shadow: 0 18px 42px rgba(var(--service-rgb), 0.105);
}

.service-card:hover .service-icon {
  transform: translateY(-3px) rotate(-2deg);
  background: rgba(var(--service-rgb), 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content {
  animation: hero-content-enter 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.welcome-card {
  animation: hero-card-enter 0.85s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-content-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-card-enter {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .welcome-card {
    animation: none;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-card:hover .service-icon {
    transform: none;
  }
}

/* LIGHT / DARK THEME */

:root {
  color-scheme: light;
}

[data-theme="dark"] {
  color-scheme: dark;
  --blue: #4f91ef;
  --blue-dark: #74a9f5;
  --blue-deep: #071524;
  --text: #e8f0f8;
  --muted: #9aaabd;
  --soft: #0d1825;
  --line: #253649;
  --white: #0a1420;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.theme-toggle {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(21, 95, 207, 0.38);
  background: #ffffff;
}

.theme-icon {
  position: absolute;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.25s ease, transform 0.3s ease;
}

.theme-icon-sun {
  opacity: 0;
  transform: scale(0.65) rotate(-45deg);
}

[data-theme="dark"] .theme-icon-moon {
  opacity: 0;
  transform: scale(0.65) rotate(35deg);
}

[data-theme="dark"] .theme-icon-sun {
  opacity: 1;
  transform: scale(1) rotate(0);
}

[data-theme="dark"] body {
  background: #08111c;
  color: var(--text);
}

[data-theme="dark"] .header {
  background: rgba(8, 17, 28, 0.88);
  border-bottom-color: rgba(37, 54, 73, 0.82);
}

[data-theme="dark"] .header.scrolled {
  background: rgba(8, 17, 28, 0.96);
  border-bottom-color: rgba(45, 65, 87, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

[data-theme="dark"] .brand-image {
  border-color: #2b3d50;
  background: #ffffff;
}

[data-theme="dark"] .theme-toggle {
  border-color: #2b3d50;
  background: rgba(18, 32, 47, 0.9);
  color: #f6c85f;
}

[data-theme="dark"] .theme-toggle:hover {
  border-color: #45617d;
  background: #162638;
}

[data-theme="dark"] .menu-toggle span {
  background: var(--text);
}

[data-theme="dark"] .hero {
  background:
    radial-gradient(circle at 8% 8%, rgba(79, 145, 239, 0.16), transparent 34%),
    radial-gradient(circle at 92% 82%, rgba(229, 43, 54, 0.1), transparent 27%),
    #08131f;
}

[data-theme="dark"] .hero::before {
  opacity: 0.38;
}

[data-theme="dark"] .hero-copy,
[data-theme="dark"] .section-text,
[data-theme="dark"] .leadership-heading p,
[data-theme="dark"] .contact-copy p,
[data-theme="dark"] .service-card p,
[data-theme="dark"] .legal-block p,
[data-theme="dark"] .legal-address,
[data-theme="dark"] .legal-list {
  color: #9eafc1;
}

[data-theme="dark"] .button-secondary {
  border-color: #30445a;
  background: rgba(17, 32, 47, 0.78);
  color: #dce8f4;
}

[data-theme="dark"] .button-secondary:hover {
  border-color: #4f91ef;
  background: #14263a;
}

[data-theme="dark"] .hero-facts {
  border-top-color: #26384b;
}

[data-theme="dark"] .about-section,
[data-theme="dark"] #kontakt {
  background: #0a1420;
}

[data-theme="dark"] .section-soft {
  background: #0d1825;
}

[data-theme="dark"] .about-shell,
[data-theme="dark"] .leadership-card,
[data-theme="dark"] .contact-form,
[data-theme="dark"] .legal-card {
  border-color: #253649;
  background: rgba(15, 28, 42, 0.97);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .leadership-card:hover {
  border-color: rgba(79, 145, 239, 0.42);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

[data-theme="dark"] .leadership-role {
  background: rgba(79, 145, 239, 0.14);
  color: #86b7fb;
}

[data-theme="dark"] .service-card {
  border-color: rgba(var(--service-rgb), 0.3);
  border-top-color: var(--service-color);
  background:
    linear-gradient(180deg, rgba(var(--service-rgb), 0.12), transparent 100px),
    #101d2b;
}

[data-theme="dark"] .service-card:hover {
  border-color: rgba(var(--service-rgb), 0.48);
  border-top-color: var(--service-color);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .service-card:nth-child(1) {
  --service-color: #f45a62;
}

[data-theme="dark"] .service-card:nth-child(2) {
  --service-color: #f58a4d;
}

[data-theme="dark"] .service-card:nth-child(3) {
  --service-color: #6ca6f5;
}

[data-theme="dark"] .service-card:nth-child(4) {
  --service-color: #a780f4;
}

[data-theme="dark"] .service-card:nth-child(5) {
  --service-color: #4cc6b6;
}

[data-theme="dark"] .contact-details div {
  border-left-color: #345170;
}

[data-theme="dark"] .contact-form label {
  color: #c8d5e3;
}

[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .contact-form textarea {
  border-color: #2b3d50;
  background: #0a1623;
  color: #e8f0f8;
}

[data-theme="dark"] .contact-form input::placeholder,
[data-theme="dark"] .contact-form textarea::placeholder {
  color: #718399;
}

[data-theme="dark"] .contact-form select option {
  background: #0a1623;
  color: #e8f0f8;
}

[data-theme="dark"] .legal-main {
  background:
    radial-gradient(circle at 0% 0%, rgba(79, 145, 239, 0.11), transparent 30%),
    #0b1622;
}

[data-theme="dark"] .legal-contact div {
  border-color: #2a3c50;
  background: #0b1825;
}

@media (max-width: 900px) {
  [data-theme="dark"] .nav-links {
    border-bottom-color: #253649;
    background: rgba(8, 17, 28, 0.98);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
  }

  .theme-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-toggle,
  .theme-icon {
    transition: none;
  }
}

/* CONTACT FORM FEEDBACK */

.website-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.privacy a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  margin: 4px 0 16px;
  padding: 13px 15px;
  border: 1px solid;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.55;
}

.form-status-success {
  border-color: #a7d7bb;
  background: #edf9f1;
  color: #17633a;
}

.form-status-error {
  border-color: #efb2b6;
  background: #fff1f2;
  color: #9f1f2a;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

[data-theme="dark"] .form-status-success {
  border-color: #286244;
  background: #102b1d;
  color: #8de0ae;
}

[data-theme="dark"] .form-status-error {
  border-color: #71333a;
  background: #32171b;
  color: #ff9fa7;
}

/* INTERACTIVE COVERAGE MAP */

.coverage-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(21, 95, 207, 0.07), transparent 30%),
    #f6f8fb;
}

.coverage-heading {
  margin-bottom: 46px;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

.coverage-copy {
  padding: 22px 0;
}

.coverage-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(25px, 2.4vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.coverage-copy > p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.72);
  color: #31465c;
  font-size: 12px;
  font-weight: 700;
}

.coverage-list li span {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(229, 43, 54, 0.1);
}

.coverage-hint {
  margin-top: 24px;
  padding: 17px 18px;
  border-left: 3px solid var(--blue);
  border-radius: 0 12px 12px 0;
  background: rgba(21, 95, 207, 0.065);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.coverage-hint strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
}

.coverage-map-card {
  overflow: hidden;
  border: 1px solid #dde5ee;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(8, 31, 59, 0.1);
}

.coverage-map-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 60px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.coverage-map-topline > div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.coverage-map-topline small {
  color: var(--muted);
  font-size: 10px;
}

.map-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22a866;
  box-shadow: 0 0 0 4px rgba(34, 168, 102, 0.12);
}

.coverage-map-stage {
  position: relative;
  min-height: 510px;
  background: #eaf0f6;
}

.coverage-map,
.map-consent {
  width: 100%;
  min-height: 510px;
}

.coverage-map[hidden],
.map-consent[hidden],
.coverage-result[hidden] {
  display: none !important;
}

.map-consent {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 42px;
  text-align: center;
  background:
    linear-gradient(rgba(21, 95, 207, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 95, 207, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(21, 95, 207, 0.12), transparent 34%),
    #f8fafc;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.map-consent-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 19px;
  place-items: center;
  border-radius: 19px;
  background: #eaf2fd;
  color: var(--blue);
}

.map-consent-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-consent h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.map-consent p {
  max-width: 510px;
  margin: 0 0 23px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.map-consent p a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.map-consent .button {
  border: 0;
}

.coverage-map-status {
  padding: 13px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.coverage-map-status-loading {
  color: var(--blue);
}

.coverage-map-status-success {
  background: #eff9f3;
  color: #17633a;
}

.coverage-map-status-error {
  background: #fff1f2;
  color: #9f1f2a;
}

.coverage-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.coverage-result > div {
  min-width: 0;
}

.coverage-result small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-result strong {
  display: block;
  font-size: 16px;
}

.coverage-result p {
  margin: 4px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coverage-result .button {
  min-height: 44px;
  flex: 0 0 auto;
  border: 0;
  font-size: 12px;
}

.coverage-map .maplibregl-ctrl-attrib {
  font-family: "Inter", Arial, sans-serif;
  font-size: 9px;
}

.coverage-map .maplibregl-ctrl-group {
  overflow: hidden;
  border: 1px solid rgba(12, 33, 54, 0.14);
  border-radius: 9px;
  box-shadow: 0 6px 18px rgba(8, 31, 59, 0.14);
}

.coverage-map .maplibregl-ctrl-group button {
  width: 34px;
  height: 34px;
}

.coverage-state-marker,
.coverage-selected-marker {
  display: block;
  width: 15px;
  height: 15px;
  padding: 0;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 5px 14px rgba(8, 31, 59, 0.32);
}

.coverage-state-marker {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coverage-state-marker:hover,
.coverage-state-marker:focus-visible {
  z-index: 2;
  transform: scale(1.28);
  box-shadow: 0 6px 17px rgba(8, 31, 59, 0.4);
}

.coverage-selected-marker {
  width: 19px;
  height: 19px;
  background: var(--blue);
  pointer-events: none;
}

.coverage-selected-marker-error {
  background: var(--red);
}

[data-theme="dark"] .coverage-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(79, 145, 239, 0.1), transparent 30%),
    #0d1825;
}

[data-theme="dark"] .coverage-list li {
  border-color: #2a3c50;
  background: rgba(16, 29, 43, 0.85);
  color: #c8d5e3;
}

[data-theme="dark"] .coverage-hint {
  background: rgba(79, 145, 239, 0.09);
}

[data-theme="dark"] .coverage-map-card {
  border-color: #283a4d;
  background: #0f1c2a;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .coverage-map-stage {
  background: #111f2e;
}

[data-theme="dark"] .map-consent {
  background:
    linear-gradient(rgba(79, 145, 239, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 145, 239, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(79, 145, 239, 0.15), transparent 34%),
    #0b1724;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

[data-theme="dark"] .map-consent-icon {
  background: rgba(79, 145, 239, 0.14);
}

[data-theme="dark"] .coverage-map-status-success {
  background: #102b1d;
  color: #8de0ae;
}

[data-theme="dark"] .coverage-map-status-error {
  background: #32171b;
  color: #ff9fa7;
}

[data-theme="dark"] .coverage-map .maplibregl-ctrl-group {
  border-color: #30465d;
  background: #102033;
}

[data-theme="dark"] .coverage-map .maplibregl-ctrl-group button {
  background-color: #102033;
}

[data-theme="dark"] .coverage-map .maplibregl-ctrl-group button + button {
  border-top-color: #30465d;
}

[data-theme="dark"] .coverage-map .maplibregl-ctrl-group button span {
  filter: invert(1) brightness(1.6);
}

[data-theme="dark"] .coverage-map .maplibregl-ctrl-attrib {
  background: rgba(8, 17, 28, 0.85);
  color: #a7b8ca;
}

[data-theme="dark"] .coverage-map .maplibregl-ctrl-attrib a {
  color: #8dbbfa;
}

@media (max-width: 1050px) {
  .coverage-layout {
    grid-template-columns: 1fr;
  }

  .coverage-copy {
    padding: 0;
  }
}

@media (max-width: 680px) {
  .coverage-list {
    grid-template-columns: 1fr;
  }

  .coverage-map-card {
    border-radius: 18px;
  }

  .coverage-map-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .coverage-map-stage,
  .coverage-map,
  .map-consent {
    min-height: 430px;
  }

  .map-consent {
    padding: 30px 20px;
  }

  .coverage-result {
    align-items: stretch;
    flex-direction: column;
  }

  .coverage-result p {
    white-space: normal;
  }

  .coverage-result .button {
    width: 100%;
  }
}

/* =========================================
   PRE-LAUNCH, ACCESSIBILITY & MOBILE FINISH
   ========================================= */

body {
  overflow-x: hidden;
}

@supports (overflow: clip) {
  body {
    overflow-x: clip;
  }
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
.legal-contact a,
.contact-details a {
  overflow-wrap: anywhere;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  border-radius: 10px;
  background: var(--blue-deep);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  outline: 3px solid rgba(255, 255, 255, 0.75);
  outline-offset: 2px;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: 12px;
}

.menu-toggle span {
  margin: 5px auto;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.error-main {
  position: relative;
  display: grid;
  min-height: calc(100vh - 74px - 154px);
  place-items: center;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(21, 95, 207, 0.11), transparent 32%),
    radial-gradient(circle at 90% 85%, rgba(229, 43, 54, 0.07), transparent 28%),
    #f8fafc;
}

.error-main::before {
  position: absolute;
  right: -80px;
  width: min(48vw, 560px);
  aspect-ratio: 1;
  background: url("img/logo.png") center / contain no-repeat;
  content: "";
  opacity: 0.035;
  pointer-events: none;
}

.error-card {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
}

.error-code {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: clamp(70px, 14vw, 120px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.error-card h1 {
  margin: 0 0 18px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.08;
}

.error-card p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

[data-theme="dark"] .error-main {
  background:
    radial-gradient(circle at 10% 15%, rgba(79, 145, 239, 0.14), transparent 32%),
    radial-gradient(circle at 90% 85%, rgba(229, 43, 54, 0.1), transparent 28%),
    #08131f;
}

[data-theme="dark"] .error-card {
  border-color: #253649;
  background: rgba(15, 28, 42, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .error-card p {
  color: #9eafc1;
}

@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav-links {
    position: fixed;
    z-index: 45;
    top: 74px;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    width: 100%;
    max-height: calc(100dvh - 74px);
    padding: 20px 24px calc(26px + env(safe-area-inset-bottom));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.22s ease, visibility 0.22s;
  }

  .nav-links.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links > a,
  .nav-links .nav-cta {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
  }

  .nav-links .nav-cta {
    justify-content: center;
  }

  .nav-links > a:not(.nav-cta)::after {
    display: none;
  }

  .theme-toggle {
    margin-top: 2px;
  }

  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
    letter-spacing: -0.045em;
  }

  .hero-grid {
    gap: 34px;
    padding-top: 52px;
  }

  .hero-card {
    padding: 26px 22px;
  }

  .hero-facts div {
    grid-template-columns: minmax(94px, 0.55fr) 1fr;
  }

  .section-heading,
  .contact-grid,
  .trust-grid {
    gap: 30px;
  }

  .section h2,
  .section-heading h2,
  .trust h2 {
    font-size: clamp(31px, 9vw, 38px);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .privacy input {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }

  .coverage-map-stage,
  .coverage-map,
  .map-consent {
    min-height: 400px;
  }

  .coverage-map-topline {
    padding: 14px 16px;
  }

  .coverage-map-status,
  .coverage-result {
    padding-right: 16px;
    padding-left: 16px;
  }

  .error-main {
    min-height: calc(100vh - 74px);
    padding: 62px 0;
  }

  .error-card {
    padding: 36px 22px;
    border-radius: 22px;
  }

  .error-actions {
    display: grid;
  }

  .legal-card,
  .about-shell,
  .contact-form,
  .service-card {
    max-width: 100%;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 22px, 1200px);
  }

  .brand-text small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-actions,
  .error-actions {
    width: 100%;
  }

  .leadership-card,
  .card,
  .service-card,
  .contact-form,
  .legal-card {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .skip-link,
  .menu-toggle span,
  .nav-links {
    transition: none;
  }
}

/* REQUEST PROCESS */

.process-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.process-section::before {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(21, 95, 207, 0.055);
  content: "";
  filter: blur(4px);
  pointer-events: none;
}

.process-heading {
  position: relative;
  z-index: 1;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  position: relative;
  min-height: 286px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #e1e7ef;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(21, 95, 207, 0.04), transparent 110px),
    #ffffff;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.process-step::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54px;
  height: 2px;
  background: var(--red);
  content: "";
}

.process-step:hover {
  border-color: rgba(21, 95, 207, 0.28);
  box-shadow: 0 16px 36px rgba(8, 31, 59, 0.075);
  transform: translateY(-3px);
}

.process-step-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.process-number {
  color: #9ba8b7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.process-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: #eef4fd;
  color: var(--blue);
}

.process-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.process-step p {
  margin: 0;
  color: #657488;
  font-size: 14px;
  line-height: 1.72;
}

.process-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 21px 24px;
  border: 1px solid #dce5ef;
  border-radius: 18px;
  background: #f7f9fc;
}

.process-cta > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.process-cta strong {
  font-size: 15px;
}

.process-cta span {
  color: var(--muted);
  font-size: 13px;
}

.process-cta .button {
  min-width: 158px;
  flex: 0 0 auto;
  text-align: center;
}

[data-theme="dark"] .process-section {
  background: #0a1420;
}

[data-theme="dark"] .process-section::before {
  background: rgba(79, 145, 239, 0.08);
}

[data-theme="dark"] .process-step {
  border-color: #253649;
  background:
    linear-gradient(180deg, rgba(79, 145, 239, 0.08), transparent 110px),
    #0f1c2a;
}

[data-theme="dark"] .process-step:hover {
  border-color: rgba(79, 145, 239, 0.42);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.23);
}

[data-theme="dark"] .process-icon {
  background: rgba(79, 145, 239, 0.14);
  color: #86b7fb;
}

[data-theme="dark"] .process-step p,
[data-theme="dark"] .process-cta span {
  color: #9eafc1;
}

[data-theme="dark"] .process-cta {
  border-color: #293c50;
  background: #0c1926;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .process-step {
    padding: 24px 21px;
    border-radius: 18px;
  }

  .process-step-topline {
    margin-bottom: 24px;
  }

  .process-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 21px;
  }

  .process-cta .button {
    width: 100%;
  }
}

/* FAQ */

.faq-section {
  border-top: 1px solid #e8edf3;
  background:
    radial-gradient(circle at 0% 100%, rgba(21, 95, 207, 0.055), transparent 30%),
    #ffffff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 112px;
}

.faq-intro h2 {
  margin: 16px 0 20px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.faq-intro p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #dfe6ee;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(21, 95, 207, 0.28);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(8, 31, 59, 0.065);
}

.faq-item summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  color: var(--text);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(21, 95, 207, 0.24);
  outline-offset: -3px;
}

.faq-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: #eef4fd;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  padding: 0 20px 20px;
}

.faq-answer p {
  margin: 0;
  padding-top: 17px;
  border-top: 1px solid #edf1f5;
  color: #657488;
  font-size: 14px;
  line-height: 1.75;
}

[data-theme="dark"] .faq-section {
  border-top-color: #223447;
  background:
    radial-gradient(circle at 0% 100%, rgba(79, 145, 239, 0.08), transparent 30%),
    #0a1420;
}

[data-theme="dark"] .faq-item {
  border-color: #293b4e;
  background: rgba(15, 28, 42, 0.9);
}

[data-theme="dark"] .faq-item[open] {
  border-color: rgba(79, 145, 239, 0.42);
  background: #0f1c2a;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.23);
}

[data-theme="dark"] .faq-toggle {
  background: rgba(79, 145, 239, 0.14);
}

[data-theme="dark"] .faq-toggle::before,
[data-theme="dark"] .faq-toggle::after {
  background: #86b7fb;
}

[data-theme="dark"] .faq-answer p {
  border-top-color: #26384b;
  color: #9eafc1;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .faq-intro h2 {
    font-size: clamp(31px, 9vw, 38px);
  }

  .faq-item {
    border-radius: 14px;
  }

  .faq-item summary {
    min-height: 64px;
    padding: 16px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 16px 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-toggle::before,
  .faq-toggle::after {
    transition: none;
  }
}
