:root {
  --bg: #07090d;
  --surface: #0e1420;
  --surface-2: #121b2b;
  --text: #f6f8fc;
  --muted: #a8b1c2;
  --subtle: #778398;
  --line: #222c3d;
  --blue: #4b8eff;
  --blue-bright: #6fe0f2;
  --blue-soft: rgba(75, 142, 255, 0.12);
  --green: #56c6a2;
  --danger: #fb7185;
  --max-width: 1180px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--bg);
  background: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.section-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 112px 0;
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 9, 13, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}
.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  overflow: hidden;
  flex: 0 0 auto;
  background: #10151d;
  border: 1px solid rgba(111, 224, 242, 0.28);
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(44, 180, 231, 0.16);
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}
.brand-name {
  font: 700 1.02rem "Sora", sans-serif;
  letter-spacing: -0.025em;
}
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.3vw, 34px);
}
.primary-nav a {
  color: #c3ccdb;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.primary-nav a:hover { color: white; }
.primary-nav .nav-cta {
  padding: 10px 15px;
  color: #e9fbff;
  background: rgba(75, 142, 255, 0.1);
  border: 1px solid rgba(111, 224, 242, 0.36);
  border-radius: 7px;
}
.nav-toggle {
  display: none;
  color: white;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 12px;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
h1 { font-size: clamp(3.35rem, 7.2vw, 6.4rem); }
h2 { font-size: clamp(2.35rem, 5vw, 4.25rem); }
h3 { font-size: 1.35rem; }
p { margin-top: 0; }

.section-label {
  margin: 0 0 22px;
  color: #91bdff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-label span {
  display: inline-block;
  margin-right: 7px;
  padding: 4px 9px;
  background: var(--blue-soft);
  border: 1px solid rgba(75, 142, 255, 0.2);
  border-radius: 4px;
}

.hero {
  padding-top: 94px;
  background: radial-gradient(circle at 72% 20%, rgba(44, 105, 205, 0.13), transparent 32%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: center;
  gap: clamp(54px, 9vw, 126px);
}
.hero-content h1 { max-width: 800px; margin-bottom: 26px; }
.hero-content h1 em { color: #79a9ff; font-style: normal; }
.lead {
  max-width: 690px;
  margin-bottom: 32px;
  color: #b9c2d1;
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
}
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--blue); }
.button-primary:hover { background: #347cf0; }
.button:disabled { opacity: 0.65; cursor: wait; transform: none; }
.text-link {
  color: white;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.hero-note { margin: 22px 0 0; color: var(--subtle); font-size: 0.78rem; }
.mentor-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.mentor-card > img { width: 100%; aspect-ratio: 4 / 4.1; object-fit: cover; object-position: center 28%; }
.mentor-card-body { padding: 26px 28px 29px; }
.mentor-card-body .section-label { margin-bottom: 9px; }
.mentor-card-body h2 { margin-bottom: 8px; font-size: 2rem; }
.mentor-card-body p:last-child { margin: 0; color: var(--muted); font-size: 0.91rem; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 84px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-row div { display: flex; align-items: center; gap: 14px; padding: 22px 20px; }
.trust-row div + div { border-left: 1px solid var(--line); }
.trust-row strong { color: var(--blue-bright); font-size: 0.75rem; }
.trust-row span { color: #cbd3df; font-size: 0.88rem; }

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 9vw, 130px);
}
.about h2 { margin-bottom: 0; font-size: clamp(2.6rem, 4.7vw, 4.4rem); }
.about-content { padding-top: 36px; }
.about-content p { color: var(--muted); }
.about-content .about-lead { color: var(--text); font-size: 1.12rem; font-weight: 600; }
blockquote {
  margin: 34px 0 0;
  padding: 22px 0 22px 24px;
  color: #cbe9f0;
  border-left: 2px solid var(--blue-bright);
  font: 500 1.15rem/1.6 "Sora", sans-serif;
}

.situation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.situation-card {
  overflow: hidden;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.situation-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.situation-card figcaption { padding: 28px 30px 32px; }
.situation-card figcaption > span {
  display: block;
  margin-bottom: 9px;
  color: var(--blue-bright);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.situation-card h3 { margin-bottom: 10px; font-size: 1.45rem; }
.situation-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }

.section-heading-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 50px;
}
.section-heading-row h2 { max-width: 720px; margin-bottom: 0; }
.section-heading-row > p { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  padding: 32px;
  background: #0b1019;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.service-card-featured {
  background: linear-gradient(180deg, rgba(75,142,255,.13), rgba(14,20,32,.92));
  border-color: rgba(75, 142, 255, 0.42);
}
.card-number { align-self: flex-end; color: #5e6d85; font: 600 1rem "Sora"; }
.service-type {
  margin: 55px 0 9px;
  color: var(--blue-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.service-card h3 { font-size: 1.65rem; }
.service-card > p:not(.service-type) { color: var(--muted); font-size: 0.92rem; }
.service-card ul { margin: 15px 0 30px; padding: 0; list-style: none; }
.service-card li { position: relative; margin: 10px 0; padding-left: 18px; color: #c1cad8; font-size: 0.85rem; }
.service-card li::before { content: "·"; position: absolute; left: 0; color: var(--blue-bright); font-weight: 900; }
.service-card > a { margin-top: auto; color: white; font-size: 0.84rem; font-weight: 700; text-decoration: none; }

.approach { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(60px, 10vw, 145px); }
.approach-heading { position: sticky; top: 120px; align-self: start; }
.approach-heading h2 { margin-bottom: 22px; }
.approach-heading > p:last-child { color: var(--muted); }
.process { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.process > li > span { color: var(--blue-bright); font: 600 0.8rem "Sora"; }
.process h3 { margin-bottom: 10px; }
.process p { margin: 0; color: var(--muted); }

.scope { padding-bottom: 90px; }
.scope-heading { max-width: 810px; margin-bottom: 46px; }
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.scope-card { padding: 36px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; }
.scope-positive { background: rgba(86, 198, 162, 0.05); border-color: rgba(86, 198, 162, 0.28); }
.scope-card h3 { font-size: 1.25rem; }
.scope-card ul { margin: 24px 0 0; padding: 0; list-style: none; }
.scope-card li { position: relative; margin: 12px 0; padding-left: 23px; color: var(--muted); }
.scope-card li::before { content: "—"; position: absolute; left: 0; color: var(--blue-bright); }
.scope-note { margin: 24px 0 0; color: var(--subtle); font-size: 0.82rem; }

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 128px);
  border-bottom: 0;
}
.contact-intro h2 { margin-bottom: 24px; }
.contact-intro > p:not(.section-label) { color: var(--muted); }
.contact-detail { margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line); }
.contact-detail span { display: block; color: var(--subtle); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-detail a { color: var(--blue-bright); font-weight: 600; }
.contact-small { margin-top: 20px; font-size: 0.78rem; }
.contact-form { padding: clamp(26px, 4vw, 44px); background: var(--surface); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 7px; color: #d7deea; font-size: 0.82rem; font-weight: 700; }
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  color: white;
  background: #080c13;
  border: 1px solid #2a3446;
  border-radius: 6px;
}
textarea { min-height: 150px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #67748a; }
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(75, 142, 255, 0.16);
  border-color: var(--blue);
}
.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  margin: 4px 0 24px;
  color: var(--muted);
  font-size: 0.78rem;
}
.website-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent-field input { width: auto; margin-top: 4px; }
.consent-field a { color: var(--blue-bright); }
.form-submit { width: 100%; }
.form-status { min-height: 24px; margin: 16px 0 0; font-size: 0.86rem; font-weight: 600; }

.site-footer { border-top: 1px solid var(--line); background: #05070a; }
.footer-inner {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.8fr 1.25fr;
  gap: clamp(38px, 6vw, 80px);
  padding: 72px 0 62px;
}
.footer-brand p { max-width: 260px; margin: 22px 0 0; color: var(--muted); font-size: 0.85rem; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-column h2 { margin-bottom: 8px; color: white; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-column a, .footer-column address { color: var(--muted); font-size: 0.8rem; font-style: normal; text-decoration: none; }
.footer-column a:hover { color: white; }
.footer-contact a { overflow-wrap: anywhere; color: var(--blue-bright); }
.footer-contact address { margin-top: 10px; }
.footer-bottom {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}
.footer-bottom p { margin: 0; color: #69758a; font-size: 0.72rem; }

.legal-page .site-header { position: static; }
.legal-main {
  width: min(calc(100% - 40px), 880px);
  margin: 0 auto;
  padding: 84px 0 110px;
}
.legal-intro { padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.legal-intro h1 { margin-bottom: 20px; font-size: clamp(2.7rem, 7vw, 5rem); }
.legal-intro > p:not(.section-label) { max-width: 720px; color: var(--muted); }
.legal-meta { color: var(--subtle); font-size: 0.78rem; }
.legal-content { padding-top: 18px; }
.legal-content section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 14px; font-size: 1.45rem; letter-spacing: -0.025em; }
.legal-content h3 { margin: 28px 0 10px; font-size: 1rem; letter-spacing: -0.02em; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 0.91rem; }
.legal-content li { margin: 8px 0; }
.legal-callout { margin: 28px 0 0; padding: 22px; color: #c9d8ec; background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--blue-bright); border-radius: 6px; }
.legal-contact-box { padding: 24px; background: var(--surface); border-radius: 8px; }
.sitemap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; }
.sitemap-card { padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; }
.sitemap-card h2 { font-size: 1.25rem; }
.sitemap-card a { color: var(--blue-bright); }

/* Cookie consent */
.cookie-banner[hidden],
.cookie-dialog-backdrop[hidden] { display: none; }
.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 120;
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto;
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  background: rgba(14, 20, 32, 0.98);
  border: 1px solid #31405a;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(18px);
}
.cookie-banner-copy { max-width: 690px; }
.cookie-eyebrow {
  margin: 0 0 6px;
  color: var(--blue-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cookie-banner h2,
.cookie-dialog h2 { margin: 0; color: white; font-size: 1.28rem; letter-spacing: -0.025em; }
.cookie-banner-copy > p:last-child,
.cookie-dialog > p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}
.cookie-banner a { color: var(--blue-bright); }
.cookie-banner-actions,
.cookie-dialog-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.cookie-button {
  min-height: 44px;
  padding: 10px 16px;
  color: white;
  border: 1px solid #34435e;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 750;
}
.cookie-button:hover { transform: translateY(-1px); }
.cookie-button:focus-visible,
.cookie-close:focus-visible,
.footer-cookie-button:focus-visible { outline: 3px solid rgba(111, 224, 242, 0.45); outline-offset: 3px; }
.cookie-button-primary { color: #071019; background: var(--blue-bright); border-color: var(--blue-bright); }
.cookie-button-secondary { background: #172135; }
.cookie-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 4, 8, 0.78);
}
.cookie-dialog {
  width: min(100%, 660px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 30px;
  background: #0e1420;
  border: 1px solid #31405a;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.cookie-dialog-open { overflow: hidden; }
.cookie-dialog-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.cookie-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: white;
  background: #172135;
  border: 1px solid #34435e;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}
.cookie-option {
  margin-top: 20px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #111a29;
  border: 1px solid var(--line);
  border-radius: 9px;
}
.cookie-option h3,
.cookie-option strong { margin: 0; color: white; font-size: 0.92rem; }
.cookie-option p,
.cookie-option small { display: block; margin: 4px 0 0; color: var(--muted); font-size: 0.76rem; line-height: 1.5; }
.cookie-required { color: var(--green); font-size: 0.7rem; font-weight: 800; white-space: nowrap; }
.cookie-switch { position: relative; width: 48px; height: 26px; flex: 0 0 auto; }
.cookie-switch input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.cookie-switch > span {
  position: absolute;
  inset: 0;
  background: #354056;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease;
}
.cookie-switch > span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform 160ms ease;
}
.cookie-switch input:checked + span { background: var(--blue); }
.cookie-switch input:checked + span::after { transform: translateX(22px); }
.cookie-switch input:focus-visible + span { outline: 3px solid rgba(111, 224, 242, 0.45); outline-offset: 3px; }
.cookie-dialog-note { padding: 14px 16px; background: rgba(75, 142, 255, 0.08); border-left: 3px solid var(--blue); }
.cookie-dialog-actions { margin-top: 24px; }
.footer-cookie-button,
.inline-cookie-button {
  padding: 0;
  color: var(--muted);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: inherit;
  text-decoration: underline;
}
.footer-cookie-button:hover,
.inline-cookie-button:hover { color: white; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    background: #090d14;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 8px 0; }
  .primary-nav .nav-cta { padding: 12px; text-align: center; }
  .hero-grid { grid-template-columns: 1fr 340px; gap: 50px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-type { margin-top: 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cookie-banner { grid-template-columns: 1fr; align-items: start; }
  .cookie-banner-actions { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .section-shell { width: min(calc(100% - 32px), var(--max-width)); padding: 78px 0; }
  .header-inner { width: calc(100% - 32px); min-height: 70px; }
  .primary-nav { top: 70px; }
  .brand-logo { width: 38px; height: 38px; }
  .brand-name { font-size: 0.9rem; }
  .hero { padding-top: 58px; }
  .hero-grid, .about, .section-heading-row, .approach, .scope-grid, .contact { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .mentor-card { max-width: 430px; }
  .trust-row { grid-template-columns: 1fr; margin-top: 56px; }
  .trust-row div + div { border-left: 0; border-top: 1px solid var(--line); }
  .about, .approach, .contact { gap: 46px; }
  .about-content { padding-top: 0; }
  .section-heading-row { align-items: start; gap: 18px; }
  .approach-heading { position: static; }
  .footer-inner { width: calc(100% - 32px); grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { width: calc(100% - 32px); flex-direction: column; gap: 6px; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .situation-grid { grid-template-columns: 1fr; }
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    padding: 20px;
    gap: 20px;
  }
  .cookie-banner-actions,
  .cookie-dialog-actions { display: grid; grid-template-columns: 1fr; }
  .cookie-button { width: 100%; }
  .cookie-dialog { padding: 22px; }
  .cookie-option { align-items: flex-start; }
}

@media (max-width: 430px) {
  h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .text-link { align-self: flex-start; }
  .process li { grid-template-columns: 44px 1fr; }
  .scope-card, .service-card, .contact-form { padding: 24px; }
}
