:root {
  color-scheme: light;
  --ink: #102033;
  --muted: #5d6a78;
  --line: #d9e1ea;
  --soft: #f5f8fb;
  --paper: #ffffff;
  --navy: #061a34;
  --red: #e5202e;
  --blue: #1267d8;
  --shadow: 0 18px 50px rgba(6, 26, 52, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.responsive-ad-slot {
  box-sizing: border-box;
  display: grid;
  place-items: center;
  width: min(100%, var(--ad-width, 100%));
  min-height: var(--ad-height, 90px);
  margin: 18px auto;
  overflow: hidden;
}

.responsive-ad-slot.is-ad-test {
  border: 2px dashed #6c88a0;
  border-radius: 10px;
  background: repeating-linear-gradient(135deg, #eef4f8, #eef4f8 12px, #e4edf3 12px, #e4edf3 24px);
  color: #29475e;
}

.responsive-ad-slot span {
  display: grid;
  gap: 3px;
  text-align: center;
}

.responsive-ad-slot.is-ad-direct {
  min-height: 0;
}

.responsive-ad-slot.is-ad-direct a,
.responsive-ad-slot.is-ad-direct img {
  display: block;
  width: 100%;
  height: auto;
}

.responsive-ad-slot.is-ad-direct a {
  max-width: 100%;
}

.responsive-ad-slot.is-ad-direct img {
  object-fit: contain;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 225, 234, 0.8);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--navy);
}

.brand-link img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-logo-link img {
  width: min(455px, 45vw);
  max-height: 78px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-left: 0;
}

.brand-claim {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--navy);
}

.knowledge-nav-menu {
  position: relative;
}

.knowledge-nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.knowledge-nav-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.knowledge-nav-dropdown {
  position: absolute;
  z-index: 35;
  top: calc(100% + 14px);
  left: -14px;
  display: none;
  width: 238px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(6, 26, 52, .18);
}

.knowledge-nav-menu.is-open .knowledge-nav-dropdown { display: grid; }

.knowledge-nav-dropdown a {
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--navy);
}

.knowledge-nav-dropdown a:hover { background: #eef6ff; }

.site-header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.site-language {
  position: relative;
}

.site-language-trigger {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 51px;
  height: 42px;
  padding: 0 22px 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.site-language-trigger::after {
  content: "";
  position: absolute;
  right: 9px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.site-language-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  width: max-content;
  min-width: 172px;
  max-width: calc(100vw - 32px);
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(6, 26, 52, .18);
}

.site-language.is-open .site-language-menu { display: grid; }

.site-language-menu button {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--navy);
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}

.site-language-menu button:hover,
.site-language-menu button.is-selected {
  background: #eef6ff;
}

.site-menu-toggle { display: none; }

.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;
}

.site-notice-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(217, 225, 234, 0.85);
  background: #eef6ff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
}

.site-notice-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.site-notice-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.site-notice-banner.is-collapsed {
  justify-content: flex-end;
  min-height: 38px;
  padding-block: 5px;
}

.site-notice-banner.is-collapsed .site-notice-content {
  display: none;
}

.site-notice-banner[hidden] {
  display: none;
}

.site-notice-banner a {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.site-notice-success {
  background: #ecf8f0;
}

.site-notice-warning {
  background: #fff5d7;
}

.site-notice-danger {
  background: #ffe7e7;
}

.nav-cta,
.primary-cta,
.nav-login,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 750;
  text-decoration: none;
  border: 1px solid transparent;
}

.nav-cta,
.primary-cta {
  color: #fff;
  background: var(--red);
}

.nav-login,
.secondary-cta {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.site-nav .nav-login:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.hero {
  min-height: clamp(430px, 58vh, 620px);
  display: grid;
  align-items: start;
  padding: clamp(12px, 1.5vw, 22px) clamp(18px, 4vw, 64px) clamp(28px, 5vw, 70px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 26, 52, 0.96) 0%, rgba(6, 26, 52, 0.82) 46%, rgba(6, 26, 52, 0.35) 100%),
    url("../assets/logos/swisscvpilot-logo.png") center right 4vw / min(48vw, 860px) auto no-repeat,
    #061a34;
}

.hero-inner {
  width: min(760px, 100%);
  padding-bottom: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #b9c9dc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: #e4ecf6;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
}

.seo-hero h1 {
  max-width: 920px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof,
.small-note {
  font-size: 14px;
}

.hero-proof {
  color: #c9d6e6;
}

.small-note {
  margin-top: 14px;
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-strip div {
  padding: 22px clamp(18px, 4vw, 46px);
  border-right: 1px solid var(--line);
}

.trust-strip strong {
  display: block;
  font-size: 20px;
  color: var(--navy);
}

.trust-strip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(26px, 3.25vw, 44px) clamp(18px, 4vw, 64px);
}

.section.alt {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 16px;
}

.section-head h2,
.content-page h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-head p,
.content-page p,
.content-page li {
  color: var(--muted);
  line-height: 1.5;
}

.feature-grid,
.audience-grid,
.step-grid,
.layout-preview-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(6, 26, 52, 0.07);
}

.price-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}

.price-kicker,
.price-billing {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-value {
  margin: 18px 0 4px;
  color: var(--red);
  font-size: 38px;
  font-weight: 850;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.price-card .nav-login,
.price-card .secondary-cta {
  width: 100%;
}

.price-card.is-loading {
  grid-column: 1 / -1;
  min-height: 160px;
}

.audience-grid,
.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.layout-preview-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.feature,
.audience,
.step,
.faq-item,
.layout-preview-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.feature h3,
.audience h3,
.step h3,
.faq-item h2 {
  margin: 0 0 10px;
  color: var(--navy);
}

.feature p,
.audience p,
.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.layout-preview-card {
  display: grid;
  gap: 12px;
  min-height: 210px;
}

.layout-preview-card strong {
  color: var(--navy);
}

.mini-layout {
  display: grid;
  align-content: start;
  gap: 8px;
  height: 150px;
  padding: 16px;
  border: 1px solid #d8e1eb;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.08);
}

.mini-layout::before {
  content: "";
  width: 42%;
  height: 18px;
  background: var(--navy);
}

.mini-layout span {
  display: block;
  height: 8px;
  background: #b7c1cc;
}

.mini-layout span:nth-child(2) {
  width: 86%;
}

.mini-layout span:nth-child(3) {
  width: 72%;
}

.mini-layout span:nth-child(4) {
  width: 55%;
}

.mini-layout.classic {
  border-top: 5px solid var(--navy);
}

.mini-layout.modern {
  grid-template-columns: 34% 1fr;
}

.mini-layout.modern::before {
  width: 100%;
  height: 100%;
  grid-row: 1 / span 5;
  background: #edf3f9;
}

.mini-layout.executive::before {
  width: 58%;
  background: #1f2f46;
}

.mini-layout.creative {
  border-left: 5px solid var(--red);
}

.mini-layout.compact {
  gap: 6px;
  padding: 12px;
}

.mini-layout.specialist {
  border-top: 5px solid var(--blue);
}


.layout-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.layout-slider-track {
  --slider-items: 6;
  display: flex;
  width: max-content;
  gap: 18px;
  animation: layout-slide-left calc(var(--slider-items) * 5s) linear infinite;
}

.layout-slider:hover .layout-slider-track,
.layout-slider:focus-within .layout-slider-track {
  animation-play-state: paused;
}

.layout-slider .layout-preview-card {
  width: min(260px, 72vw);
  flex: 0 0 auto;
}

.layout-preview-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@keyframes layout-slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * (278px * var(--slider-items))));
  }
}

.section-cta {
  margin-top: 26px;
}

.split-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background: var(--navy);
  color: #fff;
}

.split-band p,
.split-band li {
  color: #d9e6f6;
}

.split-band img {
  width: min(440px, 100%);
  margin-inline: auto;
}

.page-hero {
  padding: clamp(26px, 3.25vw, 44px) clamp(18px, 4vw, 64px);
  background: var(--soft);
}

.page-hero h1 { max-width: 920px; font-size: clamp(30px, 4vw, 52px); line-height: 1.04; }

.page-hero p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.42;
}

.content-page {
  max-width: 940px;
  padding: 24px clamp(18px, 4vw, 64px) 44px;
}

.content-page section {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.content-page h2 {
  margin: 0 0 7px;
  font-size: clamp(22px, 2.5vw, 30px);
}

.content-page p { margin: 7px 0; line-height: 1.5; }

.public-contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; max-width: 900px; }
.public-contact-form label { display: grid; gap: 6px; color: var(--navy); font-weight: 700; }
.public-contact-form .full-width { grid-column: 1 / -1; }
.public-contact-form input, .public-contact-form select, .public-contact-form textarea { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 7px; background: #fff; color: var(--ink); font: inherit; }
.public-contact-form textarea { resize: vertical; }
.public-contact-form-status { grid-column: 1 / -1; min-height: 22px; margin: 0; color: var(--muted); }
.public-contact-form-status.success { color: #14733b; }
.public-contact-form-status.error { color: #b42318; }
.public-contact-honeypot { position: absolute !important; left: -10000px !important; }

@media (max-width: 760px) {
  .page-hero { padding-top: 24px; padding-bottom: 24px; }
  .page-hero p { font-size: 17px; }
  .content-page { padding-top: 18px; padding-bottom: 32px; }
  .content-page section { padding: 14px 0; }
  .public-contact-form { grid-template-columns: 1fr; gap: 11px; }
  .public-contact-form .full-width { grid-column: auto; }
}

.faq-list {
  display: grid;
  gap: 14px;
}

/* Compact spacing is limited to the homepage. */
.home-page .hero {
  min-height: clamp(330px, 43vh, 440px);
  padding-top: 10px;
  padding-bottom: clamp(18px, 2.5vw, 32px);
}

.home-page .seo-hero {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  background: linear-gradient(110deg, #061a34 0%, #0a274a 58%, #0d345e 100%);
}

.hero-cv-animation {
  justify-self: end;
  display: block;
  width: min(100%, 365px);
  aspect-ratio: 0.87;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
}

.hero-cv-animation img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  transform: translateX(-50.5%);
}

@media (max-width: 980px) {
  .home-page .seo-hero {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.62fr);
    gap: 24px;
  }

  .hero-cv-animation { width: min(100%, 310px); }
}

.home-page .hero p { margin-top: 12px; line-height: 1.34; }
.home-page .hero-actions { margin-top: 15px; }
.home-page .hero-proof { margin-top: 10px; }
.home-page .trust-strip div { padding-top: 12px; padding-bottom: 12px; }
.home-page .trust-strip strong { font-size: 18px; }
.home-page .trust-strip span { margin-top: 2px; }

.home-page .section {
  padding-top: clamp(26px, 3.25vw, 44px);
  padding-bottom: clamp(26px, 3.25vw, 44px);
}

.home-page .section-head { margin-bottom: 16px; }
.home-page .section-head .eyebrow { margin-bottom: 5px; }
.home-page .section-head p { margin: 8px 0 0; line-height: 1.42; }

.home-page .feature-grid,
.home-page .audience-grid,
.home-page .step-grid,
.home-page .pricing-grid { gap: 12px; }

.home-page .feature,
.home-page .audience,
.home-page .step,
.home-page .faq-item { padding: 14px 16px; }

.home-page .feature h3,
.home-page .audience h3,
.home-page .step h3,
.home-page .faq-item h2 { margin-bottom: 5px; }

.home-page .feature p,
.home-page .audience p,
.home-page .step p,
.home-page .faq-item p { margin: 0; line-height: 1.48; }

.home-page .faq-list { gap: 8px; }
.home-page .section-cta { margin-top: 12px; }
.home-page .small-note { margin-top: 7px; }
.home-page .price-card { min-height: 285px; gap: 15px; padding: 18px; }
.home-page .price-value { margin-top: 12px; }
.home-page .price-card ul { gap: 7px; }

@media (max-width: 760px) {
  .home-page .hero { min-height: 0; padding-top: 20px; padding-bottom: 24px; }
  .home-page .seo-hero {
    grid-template-columns: 1fr;
    gap: 22px;
    background: linear-gradient(180deg, #061a34 0%, #0a274a 100%);
  }
  .hero-cv-animation { justify-self: center; width: min(82vw, 360px); }
  .home-page .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-page .price-card {
    min-height: 0;
    gap: 16px;
    padding: 20px;
    border-radius: 14px;
  }
  .home-page .price-card h3 { font-size: 25px; }
  .home-page .price-card .secondary-cta { min-height: 48px; }
  .home-page .section { padding-top: 24px; padding-bottom: 24px; }
  .home-page .section-head { margin-bottom: 14px; }
  .home-page .trust-strip div { padding-top: 10px; padding-bottom: 10px; }
}

.site-footer {
  background: #07182e;
  color: #dbe7f4;
  padding: 44px clamp(18px, 4vw, 64px) 18px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  width: min(360px, 84vw);
  max-height: 82px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
}

.footer-main p {
  max-width: 560px;
  margin: 0;
  color: #b9c9dc;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}

.footer-links a {
  color: #dbe7f4;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid rgba(219, 231, 244, 0.16);
}

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: #9dadc1;
}

.powered-by img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.footer-note {
  color: #8ea1b7;
  font-size: 12px;
}

.site-edit-toolbar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: #ffffff;
  background: var(--red);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(6, 26, 52, 0.24);
  transform: translateX(-50%);
}

.site-edit-toolbar button,
.site-edit-toolbar a {
  min-height: 34px;
  padding: 0 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  text-decoration: none;
  font: inherit;
}

.site-edit-enabled .site-edit-target {
  outline: 2px dashed rgba(229, 32, 46, 0.72);
  outline-offset: 5px;
  cursor: pointer;
}

.site-edit-enabled .site-edit-target:hover {
  background: rgba(229, 32, 46, 0.08);
}

.site-edit-dialog {
  width: min(620px, calc(100vw - 28px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 28px 70px rgba(6, 26, 52, 0.28);
}

.site-edit-dialog::backdrop {
  background: rgba(6, 26, 52, 0.42);
}

.site-edit-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.site-edit-panel h2,
.site-edit-panel p {
  margin: 0;
}

.site-edit-panel label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.site-edit-panel input,
.site-edit-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
}

.site-edit-close {
  justify-self: end;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
}

.site-edit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.site-edit-status {
  min-height: 20px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
  }

  .brand-logo-link img { width: min(270px, 62vw); }

  .site-header-controls { grid-column: 2; grid-row: 1; margin-left: 0; }

  .site-menu-toggle {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--navy);
  }

  .site-menu-toggle::before,
  .site-menu-toggle::after,
  .site-menu-toggle > span[aria-hidden] {
    content: "";
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .2s ease, top .2s ease, opacity .2s ease;
  }

  .site-menu-toggle::before { top: 13px; }
  .site-menu-toggle > span[aria-hidden] { top: 19px; }
  .site-menu-toggle::after { top: 25px; }
  .menu-open .site-menu-toggle::before { top: 19px; transform: rotate(45deg); }
  .menu-open .site-menu-toggle > span[aria-hidden] { opacity: 0; }
  .menu-open .site-menu-toggle::after { top: 19px; transform: rotate(-45deg); }

  .site-header .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 8px 0 4px;
    border-top: 1px solid var(--line);
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
  }

  .site-header.menu-open .site-nav { display: flex; }

  .site-header .site-nav a {
    display: block;
    padding: 11px 8px;
    border-radius: 8px;
  }

  .knowledge-nav-menu { width: 100%; }

  .knowledge-nav-trigger {
    width: 100%;
    padding: 11px 8px;
    border-radius: 8px;
    text-align: left;
  }

  .knowledge-nav-trigger::after { margin-left: auto; }

  .knowledge-nav-dropdown {
    position: static;
    width: 100%;
    margin-top: 2px;
    box-shadow: none;
  }

  .site-header .site-nav .nav-cta { text-align: center; }

  .hero {
    background:
      linear-gradient(180deg, rgba(6, 26, 52, 0.98) 0%, rgba(6, 26, 52, 0.9) 56%, rgba(6, 26, 52, 0.74) 100%),
      url("../assets/logos/swisscvpilot-logo.png") center 44% / min(82vw, 520px) auto no-repeat,
      #061a34;
  }

  .trust-strip,
  .feature-grid,
  .audience-grid,
  .step-grid,
  .layout-preview-grid,
  .split-band,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
