:root {
  --navy: #062b63;
  --navy-dark: #031f4d;
  --blue: #075fd6;
  --blue-bright: #2584ff;
  --text: #06183a;
  --muted: #6f7686;
  --line: #e5e9f1;
  --shadow: 0 12px 28px rgba(3, 31, 77, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

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

.topbar {
  background: linear-gradient(90deg, #062c66, #062d68 55%, #05295e);
  color: #fff;
  font-size: 14px;
}

.topbar-inner {
  width: min(1360px, calc(100% - 96px));
  min-height: 48px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  white-space: nowrap;
}

.socials {
  font-weight: 700;
  letter-spacing: 12px;
}

.main-nav {
  min-height: 116px;
  padding: 0 max(56px, calc((100vw - 1360px) / 2));
  background: rgba(255, 255, 255, .98);
  display: flex;
  align-items: center;
  gap: 42px;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 5px 28px rgba(3, 31, 77, .08);
}

.brand {
  flex: 1 0 330px;
}

.brand img {
  width: 292px;
  max-width: 100%;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  color: #06183a;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 48px 0 43px;
}

.nav-links a.active {
  color: var(--blue);
}

.nav-links a.active::after {
  content: "";
  height: 2px;
  width: 40px;
  background: var(--blue);
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
}

.nav-cta {
  margin-left: auto;
  padding: 18px 31px;
  border-radius: 4px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(3, 31, 77, .18);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid #dbe6f4;
  border-radius: 999px;
  background: #f7fbff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.lang-option {
  min-width: 42px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.lang-option.is-active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 16px rgba(7, 95, 214, .22);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  font-size: 22px;
}

.hero {
  min-height: 510px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(2, 33, 82, .98) 0%, rgba(3, 43, 99, .9) 33%, rgba(3, 43, 99, .48) 55%, rgba(255, 255, 255, .05) 100%),
    url("../assets/hero-cleaner.png");
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
}

.hero-copy {
  width: min(1360px, calc(100% - 96px));
  margin: 0 auto;
  color: #fff;
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 660px;
  margin: 0 0 6px;
  font-size: clamp(40px, 3.8vw, 56px);
  line-height: .98;
  font-weight: 900;
  text-transform: uppercase;
}

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

.claim {
  margin: 0 0 14px;
  font-size: 25px;
  font-weight: 800;
}

.intro {
  max-width: 610px;
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.btn {
  min-width: 220px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.btn.primary {
  background: #086df3;
  color: #fff;
  box-shadow: 0 12px 24px rgba(4, 64, 150, .22);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, .88);
  color: #fff;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 28px;
  align-items: center;
}

.trust-row div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-row strong {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, .95);
  border-radius: 50%;
  font-size: 19px;
}

.trust-row span {
  font-size: 14px;
  line-height: 1.25;
}

.floating-contact {
  position: fixed;
  right: 0;
  top: 325px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 13px;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.floating-contact a {
  min-width: 138px;
  padding: 14px 18px;
  color: #fff;
  font-weight: 800;
  border-radius: 24px 0 0 24px;
  box-shadow: var(--shadow);
}

.floating-contact .whatsapp {
  background: #20c85a;
}

.floating-contact .call {
  background: #1377d9;
}

.floating-contact .mail {
  background: #fff;
  color: #0754bb;
}

body.footer-visible .floating-contact {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(18px);
}

body.footer-visible .back-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.contact-page ~ .floating-contact,
.contact-page ~ .back-top {
  display: none;
}

.services {
  padding: 34px max(56px, calc((100vw - 1360px) / 2)) 44px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.services h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.1;
}

.section-lead {
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 16px;
}

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

.service-card {
  min-height: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(6, 24, 58, .10);
  overflow: hidden;
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 94, 255, .26);
  box-shadow: 0 20px 42px rgba(6, 24, 58, .16);
}

.service-image {
  height: 205px;
  background: #eef5ff;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 22px 24px 24px;
}

.service-kicker {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.service-card p {
  min-height: 72px;
  margin: 0 0 16px;
  color: #535a69;
  font-size: 15px;
  line-height: 1.55;
}

.service-card a {
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

.back-top {
  position: fixed;
  right: 28px;
  bottom: 26px;
  z-index: 25;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 28px;
  box-shadow: var(--shadow);
}

footer.site-footer {
  margin-top: 76px;
  background: #06183a;
  color: #fff;
  text-align: left;
  border-top: 6px solid var(--blue);
}

.footer-inner {
  width: min(1360px, calc(100% - 72px));
  margin: 0 auto;
  padding: 54px 0 42px;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  width: 245px;
  min-height: 96px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .18);
}

.footer-logo img {
  width: 100%;
  display: block;
}

.footer-brand p {
  max-width: 430px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.7;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.footer-column h3 {
  margin: 6px 0 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
  line-height: 1.45;
}

.footer-column a:hover {
  color: #fff;
}

.footer-column .footer-action {
  width: fit-content;
  margin-top: 18px;
  padding: 13px 18px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 94, 255, .28);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  width: min(1360px, calc(100% - 72px));
  margin: 0 auto;
  padding: 20px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 700;
}

.contact-page {
  background: #f6f9ff;
}

.contact-hero {
  min-height: 520px;
  padding: 78px max(36px, calc((100vw - 1360px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 56px;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(3, 31, 77, .95) 0%, rgba(6, 57, 132, .92) 58%, rgba(8, 109, 243, .78) 100%),
    url("../assets/service-gebaeudereinigung.png") center/cover;
  color: #fff;
}

.contact-hero h1 {
  max-width: 790px;
  margin: 0 0 20px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  line-height: 1.7;
}

.contact-hero-panel {
  padding: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  color: var(--navy);
  box-shadow: 0 24px 52px rgba(0, 0, 0, .24);
}

.contact-hero-panel img {
  width: 245px;
  display: block;
  margin: 0 0 24px;
}

.contact-hero-panel div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-hero-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-hero-panel a,
.contact-hero-panel strong {
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.contact-cards {
  width: min(1180px, calc(100% - 72px));
  margin: -42px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6, 24, 58, .14);
  overflow: hidden;
}

.contact-cards article {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.contact-cards article:last-child {
  border-right: 0;
}

.contact-cards strong,
.contact-cards span {
  display: block;
}

.contact-cards strong {
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
}

.contact-cards span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.contact-layout {
  width: min(1360px, calc(100% - 72px));
  margin: 86px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .72fr);
  gap: 42px;
  align-items: start;
}

.contact-form,
.contact-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(6, 24, 58, .10);
}

.contact-form {
  padding: 38px;
  display: grid;
  gap: 22px;
}

.contact-form h2,
.contact-box h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
}

.contact-form label {
  display: block;
}

.contact-form label span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 900;
}

.contact-form label b {
  color: #ef1f1f;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid #d9e0ec;
  border-radius: 6px;
  padding: 13px 15px;
  color: var(--navy);
  background: #fbfdff;
  font: inherit;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-side {
  display: grid;
  gap: 22px;
}

.contact-box {
  padding: 34px;
}

.contact-box a {
  display: block;
  margin-top: 16px;
  padding: 15px 16px;
  border-radius: 6px;
  background: #f1f6ff;
  color: var(--navy);
  font-weight: 900;
}

.contact-box a:hover {
  background: var(--blue);
  color: #fff;
}

.contact-map {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(6, 24, 58, .10);
}

.quote-page {
  background: #fff;
}

.quote-shell {
  width: min(1580px, calc(100% - 72px));
  margin: 0 auto;
  padding: 72px 0 46px;
}

.quote-shell h1 {
  margin: 0 0 28px;
  color: #06183a;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.quote-line {
  width: 80px;
  height: 4px;
  margin: 0 0 62px;
  background: #086df3;
}

.quote-form {
  display: grid;
  gap: 24px;
  color: #020d28;
}

.quote-form label {
  display: block;
  width: min(900px, 100%);
}

.quote-form label.wide,
.quote-form .form-grid {
  width: 100%;
}

.quote-form span {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 800;
}

.quote-form b {
  color: #ff1f1f;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  background: #fff;
  color: #34425d;
  font: inherit;
  font-size: 22px;
  padding: 12px 18px;
  box-shadow: 0 1px 3px rgba(6, 24, 58, .08);
}

.quote-form select {
  appearance: auto;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #9aa3b5;
}

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

.quote-form textarea {
  min-height: 275px;
  resize: vertical;
}

.send-btn {
  width: 142px;
  height: 62px;
  border: 0;
  border-radius: 0;
  background: #086df3;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.detail-page {
  background: #fff;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .8fr);
  min-height: 560px;
  background: linear-gradient(135deg, #062b63 0%, #073a88 100%);
  overflow: hidden;
}

.detail-hero-copy {
  width: min(720px, calc(100% - 72px));
  margin-left: max(36px, calc((100vw - 1360px) / 2));
  align-self: center;
  color: #fff;
  padding: 76px 0;
}

.detail-hero-copy .eyebrow,
.detail-cta .eyebrow {
  color: #7db7ff;
}

.detail-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 4.25vw, 58px);
  line-height: 1.04;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-hero p {
  max-width: 620px;
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.65;
}

.detail-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.detail-hero-image {
  min-height: 560px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.detail-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.proof-strip {
  width: min(1180px, calc(100% - 72px));
  margin: -48px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px rgba(6, 24, 58, .15);
}

.proof-strip div {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
}

.proof-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.detail-section {
  width: min(1360px, calc(100% - 72px));
  margin: 0 auto;
  padding: 86px 0 0;
}

.split-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.detail-section h2,
.image-band h2,
.detail-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.12;
}

.copy-block p,
.image-band p,
.detail-cta p {
  color: #4c5568;
  font-size: 18px;
  line-height: 1.7;
}

.copy-block p:first-child {
  margin-top: 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-cards article {
  min-height: 245px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-cards span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #eef5ff;
  color: var(--blue);
  font-weight: 900;
}

.feature-cards h3,
.process-grid h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 21px;
}

.feature-cards p,
.process-grid p {
  margin: 0;
  color: #586174;
  font-size: 16px;
  line-height: 1.6;
}

.image-band {
  width: min(1360px, calc(100% - 72px));
  margin: 92px auto 0;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
  padding: 28px;
  border-radius: 8px;
  background: #f4f8fd;
}

.image-band img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: right center;
  border-radius: 6px;
  display: block;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid div {
  padding: 26px 22px;
  border-left: 4px solid var(--blue);
  background: #f8fbff;
}

.process-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 36px;
  line-height: 1;
}

.detail-cta {
  width: min(1360px, calc(100% - 72px));
  margin: 92px auto 0;
  padding: 46px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 8px;
  background: linear-gradient(120deg, #062b63, #075fd6);
  color: #fff;
}

.detail-cta h2,
.detail-cta p {
  color: #fff;
}

.detail-cta p {
  margin-bottom: 0;
}

.about-hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr);
  align-items: center;
  gap: 48px;
  padding: 64px max(56px, calc((100vw - 1360px) / 2));
  background:
    linear-gradient(90deg, rgba(3, 31, 77, .98), rgba(6, 43, 99, .94)),
    radial-gradient(circle at 84% 20%, rgba(37, 132, 255, .34), transparent 34%);
  color: #fff;
  overflow: hidden;
}

.about-hero-copy {
  max-width: 720px;
}

.about-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(40px, 4.3vw, 62px);
  line-height: 1.04;
  font-weight: 900;
  text-transform: uppercase;
}

.about-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  line-height: 1.65;
}

.about-photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: end;
}

.about-photo-stack figure,
.about-founder-grid article {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 54px rgba(0, 0, 0, .28);
}

.about-photo-stack figure:nth-child(2) {
  transform: translateY(48px);
}

.about-photo-stack img {
  width: 100%;
  height: 460px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.about-photo-stack figcaption {
  padding: 18px 20px 20px;
  color: var(--text);
}

.about-photo-stack strong,
.about-photo-stack span {
  display: block;
}

.about-photo-stack strong {
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.about-photo-stack span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.about-founder-section {
  width: min(1360px, calc(100% - 72px));
  margin: 88px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1fr);
  gap: 44px;
  align-items: center;
}

.about-founder-section h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(32px, 3.1vw, 46px);
  line-height: 1.08;
}

.about-founder-section p {
  color: #4f596d;
  font-size: 18px;
  line-height: 1.7;
}

.about-founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.about-founder-grid article {
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.about-founder-grid img {
  width: 100%;
  height: 390px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.about-founder-grid h3 {
  margin: 22px 22px 8px;
  color: var(--navy);
  font-size: 24px;
}

.about-founder-grid p {
  margin: 0 22px 24px;
  color: #586174;
  font-size: 16px;
  line-height: 1.55;
}

.references-section {
  width: min(1360px, calc(100% - 72px));
  margin: 86px auto 0;
  text-align: center;
}

.references-section h2 {
  max-width: 860px;
  margin: 0 auto 32px;
  color: var(--navy);
  font-size: clamp(32px, 3.1vw, 46px);
  line-height: 1.08;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: left;
}

.reference-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.reference-grid img {
  width: 100%;
  height: 255px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.reference-grid div {
  padding: 24px 22px 26px;
}

.reference-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reference-grid h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 24px;
}

.reference-grid p {
  margin: 0;
  color: #586174;
  font-size: 16px;
  line-height: 1.6;
}

.legal-page {
  background: #f6f9ff;
}

.legal-hero {
  padding: 82px max(56px, calc((100vw - 1360px) / 2)) 70px;
  background: linear-gradient(120deg, #062b63, #075fd6);
  color: #fff;
}

.legal-hero h1 {
  max-width: 920px;
  margin: 0 0 18px;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: 1.02;
  text-transform: uppercase;
}

.legal-hero p {
  max-width: 760px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  line-height: 1.65;
}

.legal-hero span {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  font-weight: 800;
}

.legal-shell {
  width: min(1180px, calc(100% - 72px));
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-toc,
.legal-content article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-toc {
  position: sticky;
  top: 138px;
  padding: 24px;
}

.legal-toc strong,
.legal-toc a {
  display: block;
}

.legal-toc strong {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 18px;
}

.legal-toc a {
  padding: 10px 0;
  color: #526077;
  border-top: 1px solid #edf1f7;
  font-weight: 700;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content article {
  padding: 30px 32px;
}

.legal-content h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 26px;
}

.legal-content p {
  margin: 0 0 14px;
  color: #4f596d;
  font-size: 17px;
  line-height: 1.72;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}
