:root {
  --navy-950: #04111d;
  --navy-900: #061522;
  --navy-850: #0a1d2d;
  --navy-800: #0d263b;
  --navy-700: #17354d;
  --ink: #071522;
  --muted: #63717e;
  --line: rgba(7, 21, 34, 0.13);
  --white: #ffffff;
  --cream: #f7f3ea;
  --cream-2: #eee6d7;
  --gold-300: #f0d38d;
  --gold-400: #dcaf59;
  --gold-500: #c18b38;
  --gold-600: #9c6a29;
  --green: #53b985;
  --shadow-sm: 0 12px 36px rgba(3, 17, 29, 0.08);
  --shadow-md: 0 22px 70px rgba(3, 17, 29, 0.16);
  --shadow-lg: 0 34px 100px rgba(1, 10, 18, 0.28);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

::selection {
  color: var(--navy-950);
  background: var(--gold-300);
}

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

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--gold-300);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  color: #d8e0e7;
  background: #020b13;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12px;
  letter-spacing: 0.045em;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.utility-inner span {
  position: relative;
}

.utility-inner span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-400);
  position: absolute;
  top: 50%;
  left: -13px;
  transform: translateY(-50%);
}

.utility-inner a {
  color: var(--gold-300);
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  color: var(--white);
  background: rgba(4, 17, 29, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(4, 17, 29, 0.98);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 246px;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
}

.main-nav > a:not(.button) {
  color: #dfe7ee;
  position: relative;
  padding: 26px 0;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible {
  color: var(--white);
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s 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);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
}

.button-gold {
  color: #06131f;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 13px 32px rgba(193, 139, 56, 0.24);
}

.button-gold:hover,
.button-gold:focus-visible {
  box-shadow: 0 18px 42px rgba(193, 139, 56, 0.36);
}

.button-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--navy-950);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 14px 32px rgba(4, 17, 29, 0.18);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--navy-700);
}

.button-full {
  width: 100%;
}

.hero {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 30%, rgba(214, 164, 78, 0.16), transparent 30%),
    radial-gradient(circle at 18% 85%, rgba(20, 94, 119, 0.26), transparent 34%),
    linear-gradient(120deg, #04111d 0%, #071b2b 52%, #04111d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 17, 29, 0.08), rgba(4, 17, 29, 0));
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 720px;
  padding: 72px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  align-items: center;
  gap: 54px;
}

.kicker {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.kicker.dark {
  color: var(--gold-600);
}

.hero h1,
.section-heading h2,
.proof-copy h2,
.founder-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(48px, 5.35vw, 76px);
}

.hero h1 em {
  color: var(--gold-300);
  font-style: normal;
}

.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: #cad5df;
  font-size: 19px;
  line-height: 1.72;
}

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

.hero-trust {
  margin-top: 44px;
  padding-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-trust div {
  display: grid;
  gap: 3px;
}

.hero-trust strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.hero-trust span {
  color: #9eb0c0;
  font-size: 12px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  max-width: 580px;
  justify-self: end;
}

.hero-visual > img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 32px 50px rgba(0, 0, 0, 0.3));
}

.visual-halo {
  position: absolute;
  z-index: 1;
  width: 80%;
  aspect-ratio: 1;
  top: 10%;
  left: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 173, 86, 0.24), rgba(222, 173, 86, 0));
  filter: blur(20px);
}

.floating-proof {
  position: absolute;
  z-index: 3;
  right: -16px;
  bottom: 42px;
  min-width: 250px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  background: rgba(4, 17, 29, 0.92);
  border: 1px solid rgba(240, 211, 141, 0.25);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.proof-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(83, 185, 133, 0.12);
  flex: 0 0 auto;
}

.floating-proof div {
  display: grid;
}

.floating-proof strong {
  font-size: 13px;
}

.floating-proof small {
  color: #9eb0c0;
  font-size: 11px;
}

.proof-strip {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.proof-grid {
  padding: 26px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  color: var(--white);
  background: linear-gradient(135deg, #0b2236, #061522);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.proof-grid article {
  min-height: 60px;
  padding: 5px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-grid article:last-child {
  border-right: 0;
}

.proof-grid svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-400);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-grid div {
  display: grid;
  gap: 2px;
}

.proof-grid strong {
  font-size: 14px;
}

.proof-grid span {
  color: #9eafbd;
  font-size: 12px;
}

.section {
  padding: 112px 0;
}

.section-light {
  background: var(--white);
}

.section-cream {
  background: linear-gradient(180deg, #faf7f1, #f5efe5);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(193, 139, 56, 0.14), transparent 26%),
    linear-gradient(135deg, #061522, #0b2135);
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2,
.proof-copy h2,
.founder-copy h2,
.faq-intro h2,
.contact-copy h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.section-heading > p,
.split-heading > p,
.proof-copy > p,
.founder-copy > p,
.faq-intro > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.section-dark .section-heading > p,
.section-dark .split-heading > p {
  color: #a9bac8;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.split-heading > p {
  margin: 0;
}

.centered {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered .kicker {
  justify-content: center;
}

.centered > p {
  margin: 22px auto 0;
  max-width: 720px;
}

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

.problem-card {
  position: relative;
  min-height: 294px;
  padding: 34px;
  overflow: hidden;
  background: #fbfbfa;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.problem-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 139, 56, 0.16), transparent 70%);
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(193, 139, 56, 0.44);
  box-shadow: var(--shadow-md);
}

.card-number {
  color: var(--gold-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
}

.problem-card h3,
.service-card h3,
.model-card h3,
.process-step h3 {
  margin: 24px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.18;
}

.problem-card p,
.service-card p,
.model-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  min-height: 370px;
  padding: 38px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(240, 211, 141, 0.32);
}

.service-card.featured {
  background: linear-gradient(145deg, rgba(205, 151, 65, 0.14), rgba(255, 255, 255, 0.04));
  border-color: rgba(240, 211, 141, 0.35);
}

.featured-label {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 7px 10px;
  color: var(--gold-300);
  background: rgba(240, 211, 141, 0.09);
  border: 1px solid rgba(240, 211, 141, 0.22);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: rgba(240, 211, 141, 0.08);
  border: 1px solid rgba(240, 211, 141, 0.18);
  border-radius: 15px;
}

.icon-box svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--gold-300);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  color: var(--white);
  font-size: 28px;
}

.service-card p {
  color: #aebeca;
  max-width: 580px;
}

.service-card ul,
.model-card ul,
.contact-benefits {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-card li,
.model-card li,
.contact-benefits li {
  position: relative;
  padding-left: 24px;
}

.service-card li {
  color: #d8e1e8;
  font-size: 14px;
}

.service-card li::before,
.model-card li::before,
.contact-benefits li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid var(--gold-400);
  border-left: 2px solid var(--gold-400);
  transform: rotate(-45deg);
}

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

.model-card {
  position: relative;
  min-height: 470px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(7, 21, 34, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.model-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.model-primary {
  color: var(--white);
  background: linear-gradient(150deg, #0d2a42, #061522);
  border-color: rgba(193, 139, 56, 0.52);
  transform: translateY(-14px);
  box-shadow: var(--shadow-lg);
}

.model-primary:hover {
  transform: translateY(-20px);
}

.model-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 11px;
  color: #091522;
  background: var(--gold-300);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.model-index {
  color: var(--gold-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
}

.model-primary .model-index,
.model-primary .model-type {
  color: var(--gold-300);
}

.model-type {
  margin: 52px 0 2px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-card h3 {
  margin-top: 6px;
  font-size: 30px;
}

.model-primary p,
.model-primary li {
  color: #bac9d5;
}

.model-card ul {
  margin-bottom: 30px;
}

.model-card li {
  color: #4e5f6e;
  font-size: 14px;
}

.model-card > a {
  margin-top: auto;
  color: var(--gold-600);
  font-size: 14px;
  font-weight: 850;
}

.model-primary > a {
  color: var(--gold-300);
}

.model-card > a span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.model-card > a:hover span {
  transform: translateX(4px);
}

.proof-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 20%, rgba(26, 93, 122, 0.26), transparent 30%),
    linear-gradient(140deg, #061522, #0b2237);
}

.proof-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(240, 211, 141, 0.13);
  box-shadow: 0 0 0 80px rgba(240, 211, 141, 0.025), 0 0 0 160px rgba(240, 211, 141, 0.02);
}

.proof-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 78px;
  align-items: center;
}

.proof-copy > p {
  color: #aebeca;
  margin: 24px 0 0;
}

.reference-list {
  margin-top: 30px;
  display: grid;
  gap: 10px;
}

.reference-list span {
  position: relative;
  padding-left: 24px;
  color: #e4ebf1;
  font-size: 14px;
}

.reference-list span::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 1px;
  background: var(--gold-400);
}

.reference-note {
  margin-top: 24px !important;
  color: #778d9f !important;
  font-size: 11px !important;
  line-height: 1.6 !important;
}

.recommendation-card {
  padding: 44px;
  color: var(--ink);
  background: linear-gradient(160deg, #fffdfa, #f2eadc);
  border: 1px solid rgba(240, 211, 141, 0.36);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.quote-mark {
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 78px;
  line-height: 0.75;
}

.recommendation-card blockquote {
  margin: 18px 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.38;
}

.quote-author {
  display: grid;
  gap: 2px;
}

.quote-author strong {
  font-size: 14px;
}

.quote-author span {
  color: #6f7e8a;
  font-size: 12px;
}

.recommendation-meta {
  margin: 28px 0;
  padding: 20px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(7, 21, 34, 0.11);
  border-bottom: 1px solid rgba(7, 21, 34, 0.11);
}

.recommendation-meta span {
  color: #40515e;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
}

.text-link {
  color: var(--gold-600);
  font-size: 13px;
  font-weight: 850;
}

.text-link span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.process-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 37px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 139, 56, 0.55), transparent);
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step > span {
  width: 74px;
  height: 74px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  color: var(--gold-600);
  background: var(--white);
  border: 1px solid rgba(193, 139, 56, 0.35);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
}

.process-step p {
  max-width: 320px;
  margin-inline: auto;
}

.founder-section {
  color: var(--white);
  background: linear-gradient(135deg, #04111d, #0c263c);
}

.founder-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.founder-visual {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  display: grid;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.founder-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 16%;
}

.founder-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 17, 29, 0.02) 0%, rgba(4, 17, 29, 0.18) 55%, rgba(4, 17, 29, 0.36) 100%),
    radial-gradient(circle at 50% 18%, rgba(240, 211, 141, 0.12), transparent 28%);
  pointer-events: none;
}

.founder-chip {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  padding: 9px 15px;
  color: var(--navy-950);
  background: var(--gold-300);
  border-radius: 999px;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.founder-copy > p {
  color: #adbdca;
  margin: 24px 0 0;
}

.founder-points {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.founder-points div {
  padding: 18px;
  display: grid;
  gap: 4px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
}

.founder-points strong {
  color: var(--gold-300);
  font-size: 13px;
}

.founder-points span {
  color: #a9bac8;
  font-size: 11px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 82px;
  align-items: start;
}

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

.faq-intro > p {
  margin: 22px 0 28px;
}

.faq-list {
  border-top: 1px solid rgba(7, 21, 34, 0.13);
}

.faq-item {
  border-bottom: 1px solid rgba(7, 21, 34, 0.13);
}

.faq-item button {
  width: 100%;
  min-height: 82px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
}

.faq-item button i {
  width: 28px;
  height: 28px;
  position: relative;
  flex: 0 0 auto;
  border: 1px solid rgba(7, 21, 34, 0.18);
  border-radius: 50%;
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

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

.faq-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 60px 25px 0;
  color: var(--muted);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  color: var(--white);
  background: linear-gradient(135deg, #04111d, #0b2438);
}

.contact-glow {
  position: absolute;
  top: -160px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 159, 77, 0.2), transparent 68%);
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 72px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 122px;
}

.contact-copy > p {
  margin: 24px 0 0;
  color: #adbdca;
}

.direct-contact {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.direct-contact a {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.direct-contact a:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(240, 211, 141, 0.3);
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(240, 211, 141, 0.1);
  border-radius: 12px;
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--gold-300);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.direct-contact a > span:last-child {
  display: grid;
}

.direct-contact small {
  color: #8fa4b5;
  font-size: 11px;
}

.direct-contact strong {
  font-size: 14px;
}

.contact-benefits li {
  color: #c4d0d9;
  font-size: 13px;
}

.form-shell {
  overflow: hidden;
  color: var(--ink);
  background: #fffdfa;
  border: 1px solid rgba(240, 211, 141, 0.32);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-head {
  padding: 28px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  background: linear-gradient(135deg, #102d45, #071724);
}

.form-head span {
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-head strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.lead-form {
  padding: 34px;
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-form label:not(.consent) {
  display: grid;
  gap: 8px;
  color: #2d3b47;
  font-size: 12px;
  font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(7, 21, 34, 0.15);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input,
.lead-form select {
  height: 50px;
  padding: 0 13px;
}

.lead-form textarea {
  min-height: 130px;
  padding: 13px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(193, 139, 56, 0.12);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #9ba5ad;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #66737e;
  font-size: 11px;
  line-height: 1.5;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--gold-500);
}

.consent a {
  color: var(--gold-600);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note {
  margin: -6px 0 0;
  color: #818b93;
  text-align: center;
  font-size: 10px;
}

.hidden-field {
  position: absolute;
  left: -5000px;
}

.site-footer {
  padding: 74px 0 28px;
  color: #b1c0cc;
  background: #020b13;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.7fr);
  gap: 54px;
}

.footer-brand img {
  width: 230px;
}

.footer-brand p {
  max-width: 350px;
  margin: 20px 0 0;
  color: #8597a6;
  font-size: 13px;
}

.footer-grid h3 {
  margin: 2px 0 18px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid a,
.footer-grid span {
  font-size: 12px;
}

.footer-grid a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #6e8293;
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

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

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay {
  transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 19px;
  }

  .hero-layout {
    grid-template-columns: 1fr 0.88fr;
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(47px, 5.5vw, 68px);
  }

  .floating-proof {
    right: 0;
  }

  .proof-grid {
    padding-inline: 18px;
  }

  .proof-grid article {
    padding-inline: 14px;
  }

  .proof-layout,
  .founder-layout,
  .faq-layout,
  .contact-layout {
    gap: 48px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .utility-inner span:nth-child(2) {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: calc(34px + var(--header-height));
    right: 0;
    left: 0;
    max-height: calc(100vh - 104px);
    padding: 22px 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    color: var(--white);
    background: rgba(4, 17, 29, 0.995);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.2s ease, visibility 0.28s;
  }

  .main-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .main-nav > a:not(.button) {
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 18px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 70px;
    gap: 28px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 650px;
    justify-self: center;
  }

  .proof-strip {
    margin-top: -24px;
  }

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

  .proof-grid article:nth-child(2) {
    border-right: 0;
  }

  .proof-grid article:nth-child(-n + 2) {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .proof-grid article:nth-child(n + 3) {
    padding-top: 18px;
  }

  .split-heading,
  .proof-layout,
  .founder-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 24px;
  }

  .problem-grid,
  .model-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 0;
  }

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

  .service-card {
    min-height: 0;
  }

  .model-primary,
  .model-primary:hover {
    transform: none;
  }

  .model-card {
    min-height: 0;
  }

  .process-grid::before {
    display: none;
  }

  .process-step {
    max-width: 560px;
    margin-inline: auto;
  }

  .founder-visual {
    min-height: 370px;
    order: 2;
  }

  .founder-image {
    object-position: center 14%;
  }

  .founder-copy {
    order: 1;
  }

  .faq-intro,
  .contact-copy {
    position: static;
  }

  .contact-copy {
    max-width: 700px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 66px;
  }

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

  .utility-inner {
    justify-content: space-between;
    gap: 10px;
    font-size: 10px;
  }

  .utility-inner span:first-child {
    padding-left: 13px;
  }

  .brand {
    width: 205px;
  }

  .header-inner {
    gap: 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    padding: 54px 0 72px;
  }

  .hero h1 {
    font-size: clamp(41px, 13vw, 58px);
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    margin-top: 36px;
    padding-top: 22px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-trust > div {
    min-width: 0;
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    align-items: baseline;
    gap: 16px;
  }

  .hero-trust strong {
    display: block;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.025em;
    white-space: nowrap;
  }

  .hero-trust span {
    display: block;
    min-width: 0;
    font-size: 15px;
    line-height: 1.35;
  }

  .hero-visual {
    width: 100%;
  }

  .floating-proof {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 20px);
    min-width: 0;
    margin: -18px auto 0;
  }

  .proof-strip {
    margin-top: -32px;
  }

  .proof-grid {
    padding: 18px;
    grid-template-columns: 1fr;
  }

  .proof-grid article {
    padding: 14px 4px !important;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .proof-grid article:last-child {
    border-bottom: 0 !important;
  }

  .section,
  .contact-section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .proof-copy h2,
  .founder-copy h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .section-heading > p,
  .split-heading > p,
  .proof-copy > p,
  .founder-copy > p,
  .faq-intro > p,
  .contact-copy > p {
    font-size: 16px;
  }

  .problem-card,
  .service-card,
  .model-card,
  .recommendation-card {
    padding: 28px;
  }

  .featured-label {
    position: static;
    display: inline-flex;
    margin-bottom: 18px;
  }

  .service-card h3 {
    font-size: 26px;
  }

  .model-badge {
    top: 18px;
    right: 18px;
  }

  .model-type {
    margin-top: 42px;
  }

  .recommendation-card blockquote {
    font-size: 23px;
  }

  .recommendation-meta {
    grid-template-columns: 1fr;
  }

  .founder-points {
    grid-template-columns: 1fr;
  }

  .founder-visual {
    min-height: 320px;
  }

  .founder-image {
    object-position: center 12%;
  }

  .founder-chip {
    bottom: 18px;
    padding: 8px 12px;
    font-size: 10px;
  }

  .faq-item button {
    min-height: 74px;
    font-size: 18px;
  }

  .faq-answer p {
    padding-right: 0;
  }

  .form-head {
    padding: 24px;
    display: grid;
  }

  .lead-form {
    padding: 24px;
  }

  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .direct-contact strong {
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 26px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;
    height: 66px;
    padding: 8px max(12px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8px;
    background: rgba(3, 13, 22, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-cta a:last-child {
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    border-color: transparent;
  }
}

@media (max-width: 390px) {
  .brand {
    width: 180px;
  }

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

  .hero-trust > div {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 12px;
  }

  .hero-trust strong {
    font-size: 34px;
  }

  .hero-trust span {
    font-size: 14px;
  }

  .founder-visual {
    min-height: 280px;
  }

  .founder-image {
    object-position: center 10%;
  }

  .founder-chip {
    bottom: 14px;
    padding: 7px 10px;
  }

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

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

/* Legal and utility pages */
.legal-page,
.success-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8f4ec, #ffffff);
}

.legal-header {
  color: var(--white);
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.legal-header .container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-header img {
  width: 235px;
}

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

.legal-container {
  max-width: 880px;
}

.legal-container h1,
.success-card h1 {
  margin: 0 0 38px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.legal-intro {
  max-width: 720px;
  margin: -18px 0 36px;
  color: var(--muted);
  font-size: 18px;
}

.legal-container section {
  padding: 28px 0;
  border-top: 1px solid rgba(7,21,34,.12);
}

.legal-container h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.legal-container p {
  margin: 0 0 14px;
  color: #465764;
}

.legal-container a {
  color: var(--gold-600);
  font-weight: 750;
}

.legal-footer {
  padding: 24px 0;
  color: #8192a1;
  background: #020b13;
  font-size: 12px;
}

.legal-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.legal-footer a {
  color: var(--gold-300);
}

.success-wrap {
  min-height: 100vh;
  padding: 40px 20px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(193,139,56,.15), transparent 24%),
    linear-gradient(150deg, #f8f3e9, #ffffff);
}

.success-card {
  width: min(100%, 720px);
  padding: 54px;
  text-align: center;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(7,21,34,.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.success-card > img {
  width: 290px;
  margin: 0 auto 36px;
}

.success-card .kicker {
  justify-content: center;
}

.success-card h1 {
  margin-bottom: 20px;
}

.success-card > p:not(.kicker) {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.success-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #4db67f, #2e8d5e);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(46,141,94,.22);
  font-size: 30px;
  font-weight: 800;
}

.success-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 700px) {
  .legal-header .container {
    min-height: 72px;
  }

  .legal-header img {
    width: 190px;
  }

  .legal-header .button {
    display: none;
  }

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

  .success-card {
    padding: 38px 24px;
  }

  .success-actions {
    display: grid;
  }

  .success-actions .button {
    width: 100%;
  }
}

/* Rechtssicherer Praxisnachweis ohne Drittzitat oder Markenlogos */
.evidence-card {
  position: relative;
}

.evidence-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--gold-600);
  background: rgba(195, 137, 48, 0.09);
  border: 1px solid rgba(195, 137, 48, 0.22);
  border-radius: 16px;
}

.evidence-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.evidence-label {
  margin: 24px 0 8px;
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evidence-card h3 {
  margin: 0;
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 39px);
  line-height: 1.12;
}

.evidence-copy {
  margin: 18px 0 0;
  color: #53636f;
  font-size: 14px;
  line-height: 1.75;
}

.evidence-card .recommendation-meta span {
  display: grid;
  gap: 5px;
}

.evidence-card .recommendation-meta strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.1;
}

.evidence-list {
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.evidence-list li {
  position: relative;
  padding-left: 23px;
  color: #40515e;
  font-size: 13px;
  font-weight: 700;
}

.evidence-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--gold-600);
  border-bottom: 2px solid var(--gold-600);
  transform: rotate(-45deg);
}

.reference-note strong {
  color: #9eb0bd;
}

@media (max-width: 680px) {
  .evidence-card h3 {
    font-size: 30px;
  }

  .evidence-card .recommendation-meta {
    grid-template-columns: 1fr;
  }
}
