@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/gilroy-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/gilroy-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Century Gothic SRG";
  src: url("assets/fonts/century-gothic.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Century Gothic SRG";
  src: url("assets/fonts/century-gothic-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #1a1a1a;
  --blue: #00b2e0;
  --blue-dark: #0143a2;
  --blue-mid: #0062d8;
  --yellow: #ffc858;
  --white: #ffffff;
  --gray-5: #f4f4f4;
  --gray-10: #e9e9e9;
  --gray-15: #d9d9d9;
  --gray-30: #b4b4b4;
  --gray-50: #8f8f8f;
  --shadow: 0 20px 60px rgba(26, 26, 26, 0.12);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Century Gothic SRG", "Century Gothic", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 16px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--gray-10);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 206px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: #3c3c3c;
}

.nav a,
.phone-link,
.site-footer a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover,
.phone-link:hover,
.site-footer a:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.icon-link {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  text-decoration: none;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.icon-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.max-icon {
  background: var(--blue-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: 6px;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.header-cta:hover {
  background: var(--blue-dark);
}

.tooltip {
  position: relative;
}

.tooltip::after {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  content: attr(data-tooltip);
  display: none;
  padding: 6px 8px;
  color: var(--white);
  background: var(--black);
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
}

.tooltip:hover::after,
.tooltip:focus-visible::after {
  display: block;
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 0;
  border-radius: 6px;
  background: var(--blue);
}

.menu-button span {
  display: block;
  width: 100%;
  height: 4px;
  margin: 4px 0;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 78px max(24px, calc((100vw - var(--max)) / 2)) 58px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(26, 26, 26, 0.96) 0%, rgba(26, 26, 26, 0.86) 44%, rgba(26, 26, 26, 0.36) 72%, rgba(1, 67, 162, 0.1) 100%),
    url("assets/hero-background.png") center / cover no-repeat,
    linear-gradient(122deg, #1a1a1a 0%, #0143a2 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  content: "";
  background: var(--yellow);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.18), rgba(26, 26, 26, 0) 48%);
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: block;
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-element {
  position: absolute;
  display: block;
  user-select: none;
}

.hero-glass {
  right: max(130px, calc((100vw - var(--max)) / 2 + 130px));
  top: 90px;
  width: min(31vw, 390px);
  opacity: 0.34;
  filter: blur(0.2px);
}

.hero-ring {
  right: max(18px, calc((100vw - var(--max)) / 2 - 24px));
  top: 95px;
  width: min(38vw, 510px);
  opacity: 0.72;
  transform: rotate(-12deg);
}

.hero-scene {
  right: max(116px, calc((100vw - var(--max)) / 2 + 116px));
  bottom: 72px;
  width: min(25vw, 330px);
  opacity: 0.94;
}

.hero-ellipse {
  opacity: 0.7;
}

.hero-ellipse-cobalt {
  right: max(440px, calc((100vw - var(--max)) / 2 + 440px));
  top: 126px;
  width: min(13vw, 170px);
}

.hero-ellipse-yellow {
  right: max(78px, calc((100vw - var(--max)) / 2 + 78px));
  bottom: 86px;
  width: min(11vw, 150px);
  opacity: 0.62;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Gilroy", Arial, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 64px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
}

.hero-lead {
  max-width: 650px;
  margin-top: 26px;
  font-size: 21px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-list {
  display: grid;
  gap: 12px;
  max-width: 630px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-list li::before {
  position: absolute;
  left: 0;
  top: 6px;
  display: block;
  width: 22px;
  height: 22px;
  content: "";
  background: var(--white);
  border-radius: 5px;
}

.hero-list li::after {
  position: absolute;
  left: 6px;
  top: 12px;
  width: 10px;
  height: 6px;
  content: "";
  border-color: var(--blue);
  border-style: solid;
  border-width: 0 0 3px 3px;
  transform: rotate(-45deg);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 6px;
  font-family: "Gilroy", Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-light {
  color: var(--black);
  background: var(--white);
}

.button-secondary {
  color: var(--black);
  background: var(--yellow);
}

.mobile-sticky-cta {
  display: none;
}

.hero-markers {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 58px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 1px;
  width: min(640px, calc(100% - 48px));
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-markers span {
  padding: 18px 16px;
  background: rgba(26, 26, 26, 0.42);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(10px);
}

.section {
  padding: 104px max(24px, calc((100vw - var(--max)) / 2));
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading p:not(.eyebrow) {
  color: #565656;
  font-size: 18px;
}

.section-heading-light p:not(.eyebrow),
.dark-section .section-heading h2 {
  color: var(--white);
}

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

.scenario-card,
.risk-grid article,
.proof-grid article,
.method-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--gray-10);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.scenario-card {
  position: relative;
  overflow: hidden;
  padding-top: 30px;
}

.scenario-card::after {
  position: absolute;
  right: -54px;
  top: -58px;
  width: 168px;
  height: 168px;
  content: "";
  background: rgba(0, 178, 224, 0.08);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
}

.scenario-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.scenario-card:focus-visible {
  outline: 3px solid rgba(0, 178, 224, 0.35);
  outline-offset: 3px;
}

.scenario-card:hover::after {
  background: rgba(0, 178, 224, 0.14);
  transform: scale(1.08);
}

.scenario-card strong {
  align-self: end;
  color: var(--blue-dark);
  font-family: "Gilroy", Arial, sans-serif;
}

.scenario-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin-bottom: 8px;
  background:
    radial-gradient(circle at 50% 44%, rgba(0, 178, 224, 0.2), rgba(0, 178, 224, 0) 64%),
    linear-gradient(135deg, rgba(0, 178, 224, 0.1), rgba(1, 67, 162, 0.04));
  border-radius: 8px;
}

.scenario-icon img {
  width: 98px;
  height: 98px;
  object-fit: contain;
}

.stories-section {
  background: var(--gray-5);
}

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

.story-card {
  display: grid;
  gap: 18px;
  min-height: 360px;
  padding: 30px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-10);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(26, 26, 26, 0.08);
}

.story-card-accent {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(1, 67, 162, 0.92), rgba(0, 178, 224, 0.82)),
    url("assets/brand-gradient.jpg") center / cover;
  border-color: transparent;
}

.story-tag {
  justify-self: start;
  padding: 8px 10px;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.story-card-accent .story-tag {
  color: var(--black);
  background: var(--yellow);
}

.story-card p {
  color: #545454;
}

.story-card-accent p {
  color: rgba(255, 255, 255, 0.84);
}

.story-result {
  align-self: end;
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-10);
}

.story-card-accent .story-result {
  border-color: rgba(255, 255, 255, 0.24);
}

.story-result b {
  color: var(--blue-dark);
  font-family: "Gilroy", Arial, sans-serif;
}

.story-card-accent .story-result b {
  color: var(--yellow);
}

.solid-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.dark-section {
  color: var(--white);
  background: var(--black);
}

.dark-section .eyebrow {
  color: var(--yellow);
}

.risk-grid {
  margin-bottom: 36px;
}

.risk-grid article {
  grid-template-rows: auto auto 1fr auto;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.risk-grid .solid-icon {
  color: var(--blue);
  background: var(--white);
}

.risk-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: var(--radius);
}

.risk-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.risk-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.risk-grid b {
  align-self: end;
  color: var(--yellow);
}

.comparison-section {
  background: var(--gray-5);
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.comparison-column {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-column-accent {
  color: var(--white);
  background: var(--blue-dark);
}

.comparison-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 10px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 6px;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.comparison-column h3 {
  margin-bottom: 22px;
}

.comparison-column ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-column li {
  position: relative;
  padding-left: 28px;
}

.comparison-column li::before {
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--blue);
  border-radius: 3px;
}

.comparison-column-accent li::before {
  background: var(--yellow);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tab-button {
  min-height: 46px;
  padding: 12px 18px;
  color: var(--black);
  background: var(--gray-5);
  border: 1px solid var(--gray-10);
  border-radius: 6px;
  font-family: "Gilroy", Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.tab-button.is-active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.tab-panels {
  min-height: 385px;
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel {
  display: grid;
  gap: 20px;
  max-width: 940px;
  padding: 40px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(1, 67, 162, 0.92), rgba(0, 178, 224, 0.84)),
    url("assets/brand-gradient.jpg") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tab-panel p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
}

.tab-panel strong {
  color: var(--yellow);
  font-family: "Gilroy", Arial, sans-serif;
}

.tab-panel .button {
  justify-self: start;
  color: var(--black);
  background: var(--white);
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  counter-reset: process;
}

.process-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 260px;
  padding: 30px;
  background: var(--gray-5);
}

.process-grid article:nth-child(2) {
  background: #e3f7fc;
}

.process-grid article:nth-child(3) {
  color: var(--white);
  background: var(--blue);
}

.process-grid article:nth-child(4) {
  color: var(--black);
  background: var(--yellow);
}

.process-grid span {
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.process-grid p {
  color: #545454;
}

.process-grid article:nth-child(3) p {
  color: rgba(255, 255, 255, 0.84);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
}

.method-grid article {
  border: 0;
  border-radius: 0;
  background: var(--gray-5);
}

.method-grid article:nth-child(2) {
  background: #e3f7fc;
}

.method-grid article:nth-child(3) {
  color: var(--white);
  background: var(--blue);
}

.method-grid article:nth-child(4) {
  color: var(--black);
  background: var(--yellow);
}

.proof-section {
  background: var(--gray-5);
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.65fr);
  gap: 48px;
  align-items: start;
  color: var(--white);
  background: var(--black);
}

.form-copy {
  display: grid;
  gap: 22px;
}

.form-copy .eyebrow {
  color: var(--yellow);
}

.form-copy h2 {
  max-width: 740px;
}

.steps {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding-left: 54px;
  color: rgba(255, 255, 255, 0.82);
}

.steps li::before {
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 6px;
  counter-increment: step;
  content: counter(step);
  font-family: "Gilroy", Arial, sans-serif;
  font-weight: 700;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--black);
  background: var(--white);
  border-radius: var(--radius);
}

.lead-form h2 {
  font-size: 30px;
}

.lead-form p {
  color: #5a5a5a;
}

.lead-form label,
.lead-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: #3f3f3f;
  font-size: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--black);
  background: var(--gray-5);
  border: 1px solid var(--gray-15);
  border-radius: 6px;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.tab-button:focus-visible,
.button:focus-visible,
.icon-link:focus-visible,
.nav a:focus-visible {
  outline: 3px solid rgba(0, 178, 224, 0.35);
  outline-offset: 3px;
}

.lead-form fieldset {
  padding: 16px;
  border: 1px solid var(--gray-15);
  border-radius: 6px;
}

.lead-form legend {
  padding: 0 6px;
  font-family: "Gilroy", Arial, sans-serif;
  font-weight: 700;
}

.choice {
  display: flex !important;
  align-items: center;
  gap: 10px !important;
}

.choice input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--blue);
}

.form-note {
  min-height: 24px;
  color: var(--blue-dark) !important;
  font-size: 14px;
  font-weight: 700;
}

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

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid var(--gray-10);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.05);
}

.faq-list summary {
  position: relative;
  display: block;
  padding: 22px 58px 22px 24px;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.faq-list summary::after {
  position: absolute;
  right: 24px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  padding: 0 24px 18px;
  color: #545454;
  font-size: 17px;
  line-height: 1.6;
}

.faq-list details p:last-child {
  padding-bottom: 24px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(420px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  background: var(--gray-5);
}

.contact-card {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius);
}

.contact-card h2 {
  font-size: 36px;
}

.contact-card p:not(.eyebrow) {
  color: #545454;
}

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

.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  color: var(--black);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.contact-list a:hover {
  background: #eaf9fd;
}

.contact-list .solid-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  font-size: 11px;
}

.map-card {
  display: block;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  padding: 36px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--black);
}

.site-footer img {
  width: 180px;
}

.site-footer p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button {
    display: block;
  }

  .nav,
  .header-actions {
    position: fixed;
    left: 16px;
    right: 16px;
    display: none;
    z-index: 60;
    background: var(--white);
    border: 1px solid var(--gray-10);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav {
    top: 88px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
  }

  .nav a {
    padding: 12px;
  }

  .header-actions {
    /* низ панели .nav = 88px + 294px (6 пунктов) = 382px; 306px перекрывало «Отзывы»/«Контакты» */
    top: 390px;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    padding: 16px;
  }

  .header-cta {
    grid-column: 1 / -1;
  }

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

  body.nav-open .header-actions {
    display: grid;
  }

  .scenario-grid,
  .risk-grid,
  .proof-grid,
  .method-grid,
  .process-grid,
  .story-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-card-accent {
    transform: none;
  }

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

  .form-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 86px;
  }

  body {
    padding-bottom: 84px;
  }

  .brand img {
    width: 170px;
  }

  .site-header {
    min-height: 68px;
    padding: 14px 18px;
  }

  .hero {
    min-height: calc(100vh - 68px);
    padding: 78px 20px 92px;
  }

  .hero::before {
    opacity: 0.55;
    mask-image: none;
  }

  .hero-glass {
    right: -94px;
    top: 92px;
    width: 280px;
    opacity: 0.18;
  }

  .hero-ring {
    right: -150px;
    top: 84px;
    width: 330px;
    opacity: 0.36;
  }

  .hero-scene {
    right: -86px;
    bottom: 28px;
    width: 230px;
    opacity: 0.3;
  }

  .hero-ellipse-cobalt,
  .hero-ellipse-yellow {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 21px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-markers {
    left: 20px;
    right: 20px;
    bottom: 28px;
    grid-template-columns: repeat(2, 1fr);
    width: auto;
  }

  .hero-markers span {
    padding: 13px 10px;
    font-size: 13px;
  }

  .section {
    padding: 72px 20px;
  }

  .scenario-grid,
  .risk-grid,
  .proof-grid,
  .method-grid,
  .process-grid,
  .story-rail,
  .comparison {
    grid-template-columns: 1fr;
  }

  .comparison-column,
  .tab-panel,
  .lead-form,
  .story-card,
  .process-grid article,
  .contact-card {
    padding: 24px;
  }

  .tab-panels {
    min-height: 0;
  }

  .form-section {
    gap: 32px;
  }

  .contact-card h2 {
    font-size: 30px;
  }

  .contact-list a {
    align-items: flex-start;
  }

  .map-card {
    min-height: 300px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 18px;
    color: var(--white);
    background: var(--blue);
    border-radius: 6px;
    box-shadow: 0 14px 44px rgba(0, 98, 216, 0.28);
    font-family: "Gilroy", Arial, sans-serif;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-sticky-cta:hover {
    background: var(--blue-dark);
  }
}

@media (max-width: 420px) {
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .header-actions {
    grid-template-columns: 1fr 40px 40px;
  }

  .phone-link {
    font-size: 13px;
  }
}

.proof-grid-extended {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.proof-section .button-light {
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-10);
}

.inline-link {
  display: inline-flex;
  margin-top: 14px;
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.yandex-reviews-section {
  background: var(--gray-5);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 22px;
  align-items: start;
}

.reviews-widget {
  width: 100%;
  min-height: 620px;
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(26, 26, 26, 0.08);
}

.reviews-source-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--gray-10);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(26, 26, 26, 0.08);
}

.reviews-source-card p {
  color: #545454;
}

.reviews-source-card {
  position: sticky;
  top: 100px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(1, 67, 162, 0.94), rgba(0, 178, 224, 0.82)),
    url("assets/brand-gradient.jpg") center / cover;
  border-color: transparent;
}

.reviews-source-card p {
  color: rgba(255, 255, 255, 0.84);
}

.review-source-label {
  width: fit-content;
  padding: 8px 10px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 6px;
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.bank-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.bank-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 22px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-10);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.06);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  text-align: center;
}

.bank-logo-item img {
  max-width: 180px;
  max-height: 56px;
  object-fit: contain;
}

.bank-trust-note {
  max-width: 860px;
  margin: 28px auto 0;
  color: #565656;
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
}

.bank-trust-section .button {
  display: flex;
  width: fit-content;
  margin: 28px auto 0;
}

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

.footer-legal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-requisites {
  display: grid;
  gap: 6px;
  max-width: 760px;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0.82;
}

.footer-requisites p {
  margin: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-end;
}

.footer-legal-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.9;
}

.form-consent {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 10px !important;
  align-items: start;
  margin: 16px 0;
  color: rgba(26, 26, 26, 0.78) !important;
  font-size: 14px !important;
  line-height: 1.45;
}

.form-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.form-consent a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 18px;
  color: var(--black);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 70px rgba(26, 26, 26, 0.18);
}

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

.cookie-content {
  display: grid;
  gap: 6px;
}

.cookie-content h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}

.cookie-content p {
  margin: 0;
  color: rgba(26, 26, 26, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-content a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-button {
  white-space: nowrap;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(26, 26, 26, 0.58);
}

.modal-overlay[hidden] {
  display: none;
}

.success-modal {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(520px, 100%);
  padding: 34px;
  color: var(--black);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(26, 26, 26, 0.24);
}

.success-modal h2 {
  font-size: 34px;
}

.success-modal p {
  color: #545454;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--blue);
  border-radius: var(--radius);
}

.success-mark::before {
  width: 22px;
  height: 12px;
  content: "";
  border-color: var(--white);
  border-style: solid;
  border-width: 0 0 5px 5px;
  transform: rotate(-45deg);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--black);
  background: var(--gray-5);
  border: 0;
  border-radius: 6px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  background: var(--gray-10);
}

.legal-page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 80px;
  color: var(--black);
}

.legal-page h1 {
  margin: 24px 0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1;
}

.legal-page h2 {
  margin: 32px 0 12px;
  font-size: 24px;
}

.legal-page p {
  color: rgba(26, 26, 26, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.legal-back {
  display: inline-flex;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.legal-note {
  margin-top: 40px;
  font-size: 14px !important;
}

@media (max-width: 1024px) {
  .proof-grid-extended {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .reviews-source-card {
    position: static;
  }

  .bank-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .proof-grid-extended,
  .bank-logo-grid {
    grid-template-columns: 1fr;
  }

  .reviews-widget {
    min-height: 560px;
  }

  .bank-logo-item {
    min-height: 76px;
  }

  .trust-actions,
  .footer-main,
  .footer-legal {
    grid-template-columns: 1fr;
  }

  .trust-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-actions .button,
  .bank-trust-section .button {
    width: 100%;
  }

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

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 84px;
    grid-template-columns: 1fr;
  }

  .cookie-button {
    width: 100%;
  }

  .success-modal {
    padding: 28px;
  }
}

/* Final layout refinements from the edit brief */
.site-header {
  gap: 22px;
}

.nav {
  gap: 8px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  line-height: 1;
  white-space: nowrap;
}

.header-actions {
  min-height: 40px;
}

.phone-link,
.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}

.scenario-card {
  grid-template-rows: auto minmax(78px, auto) minmax(128px, 1fr) auto;
  min-height: 370px;
}

.scenario-card h3,
.scenario-card p,
.scenario-card strong {
  position: relative;
  z-index: 1;
}

.scenario-card.is-active {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.scenario-card.is-active::after {
  background: rgba(0, 178, 224, 0.16);
  transform: scale(1.1);
}

.scenario-details {
  display: none;
  margin-top: 28px;
  min-height: 0;
}

.scenario-details.has-active {
  display: block;
}

.scenario-details .tab-panel {
  max-width: none;
  scroll-margin-top: 104px;
}

.proof-section {
  background: linear-gradient(180deg, #f4f4f4 0%, #ffffff 100%);
}

.proof-grid-extended article {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 30px;
  box-shadow: 0 16px 48px rgba(26, 26, 26, 0.08);
}

.proof-grid-extended article::after {
  position: absolute;
  right: -62px;
  top: -62px;
  width: 170px;
  height: 170px;
  content: "";
  background: rgba(0, 178, 224, 0.08);
  border-radius: 50%;
}

.trust-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin-bottom: 8px;
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 178, 224, 0.18), rgba(0, 178, 224, 0) 68%),
    linear-gradient(135deg, rgba(0, 178, 224, 0.08), rgba(1, 67, 162, 0.04));
  border-radius: var(--radius);
}

.trust-icon img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.bank-logo-wall {
  margin-top: 36px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bank-logo-wall img {
  width: 100%;
  height: auto;
}

.map-card {
  width: 100%;
  min-height: 520px;
  border: 0;
}

@media (max-width: 1180px) {
  .nav {
    gap: 4px;
  }

  .header-actions {
    top: 390px; /* ниже низа открытого меню (382px), см. блок выше */
  }
}

@media (max-width: 760px) {
  .scenario-card {
    min-height: auto;
    grid-template-rows: auto;
  }

  .scenario-details {
    margin-top: 20px;
  }

  .bank-logo-wall {
    padding: 14px;
  }
}

/* Mobile handoff refinements */
@media (max-width: 760px) {
  body {
    font-size: 15px;
    line-height: 1.5;
  }

  .site-header {
    min-height: 72px;
    padding: 12px 18px;
  }

  .brand img {
    width: 150px;
  }

  .menu-button {
    width: 50px;
    height: 50px;
    padding: 10px;
  }

  .menu-button span {
    height: 4px;
    margin: 5px 0;
  }

  .hero {
    min-height: auto;
    padding: 56px 20px 64px;
  }

  h1 {
    font-size: clamp(36px, 10vw, 42px);
  }

  h2 {
    font-size: clamp(28px, 8.5vw, 32px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-list {
    gap: 14px;
    margin-top: 24px;
  }

  .hero-list li {
    padding-left: 38px;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .section {
    padding: 64px 20px;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 32px;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .scenario-card,
  .risk-grid article,
  .proof-grid article,
  .method-grid article {
    gap: 16px;
    padding: 22px;
  }

  .scenario-icon {
    width: 84px;
    height: 84px;
  }

  .scenario-icon img {
    width: 78px;
    height: 78px;
  }

  .story-card {
    min-height: auto;
  }

  .process-grid,
  .method-grid {
    gap: 12px;
    overflow: visible;
  }

  .process-grid article,
  .method-grid article {
    border-radius: var(--radius);
  }

  .comparison {
    gap: 14px;
  }

  .comparison-column,
  .tab-panel,
  .lead-form,
  .story-card,
  .process-grid article,
  .contact-card {
    padding: 22px;
  }

  .reviews-layout {
    gap: 18px;
  }

  .reviews-widget {
    min-height: 600px;
  }

  .reviews-source-card {
    padding: 22px;
  }

  .bank-logo-wall {
    margin-top: 24px;
  }

  .bank-trust-note {
    font-size: 16px;
    text-align: left;
  }

  .lead-form h2 {
    font-size: 26px;
  }

  .faq-list summary {
    padding: 20px 56px 20px 20px;
    font-size: 18px;
  }

  .faq-list summary::after {
    right: 18px;
  }

  .faq-list details p {
    padding: 0 20px 16px;
    font-size: 16px;
  }

  .contact-list a {
    padding: 10px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand img {
    width: 136px;
  }

  .menu-button {
    width: 48px;
    height: 48px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .hero {
    padding: 46px 18px 56px;
  }

  .section {
    padding: 56px 18px;
  }

  .reviews-widget {
    min-height: 560px;
  }

  .success-modal {
    padding: 26px 22px;
  }

  .success-modal h2 {
    font-size: 28px;
  }
}
