* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gr-start: #AE8343;
  --primary-gr-mid: #F6C67E;
  --primary-gradient: linear-gradient(
    90deg,
    var(--primary-gr-start) 0%,
    var(--primary-gr-mid) 30%,
    var(--primary-gr-start) 67%,
    var(--primary-gr-mid) 100%
  );
  --primary-gr-start1: #ffffff;
  --primary-gr-mid1: #999999;
  --primary-gradient1: linear-gradient(
    341deg,
    var(--primary-gr-start1) 0%,
    var(--primary-gr-mid1) 100%
  );
  --accent-start: #FF6A5F;
  --accent-end: #E84D4F;
  --accent-hover-start: #FF7A70;
  --accent-hover-end: #F15A5C;
  --accent-rgb: 232,77,79;
  --accent-gradient: linear-gradient(180deg, var(--accent-start) 0%, var(--accent-end) 100%);
  --accent-gradient-hover: linear-gradient(180deg, var(--accent-hover-start) 0%, var(--accent-hover-end) 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #ffffff;
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.gradient-silver,
.gradient-gold,
.section-heading h2,
.team-content h2,
.final-cta h2,
.case-story h3,
.block-top h3,
.result-top h3,
.modal-dialog h2 {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.gradient-silver,
.section-heading h2,
.team-content h2,
.final-cta h2,
.case-story h3,
.block-top h3,
.result-top h3,
.modal-dialog h2 {
  background-image: var(--primary-gradient1);
}

.gradient-gold,
.section-heading h2 span,
.block-top h3 span,
.team-content h2 span,
.final-cta h2 span,
.case-story h3 span,
.result-case h3 span,
.modal-dialog h2 span {
  color: transparent;
  background-image: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.small-container {
  max-width: 900px;
}

.section {
  padding: 60px 0;
  position: relative;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.bg-glow {
  position: fixed;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 430px 230px rgba(37,82,139,0.36);
  z-index: 0;
  pointer-events: none;
  transition: box-shadow 0.7s ease;
}

body.yellow-glow .bg-glow {
  box-shadow: 0 0 430px 230px rgba(255,198,86,0.34);
}

body.blue-glow .bg-glow {
  box-shadow: 0 0 430px 230px rgba(37,82,139,0.36);
}

.glow-1 {
  top: 140px;
  left: 80px;
}

.glow-2 {
  bottom: 140px;
  right: 80px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}

.navbar {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 20;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  width: 118px;
}

.nav-logo img {
  max-height: 38px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  padding: 15px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.36);
}

.nav-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.nav-links a:hover {
  color: #ffc656;
}

.burger-btn {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(5,5,5,0.72);
  backdrop-filter: blur(18px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.burger-btn span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger-btn.active span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.burger-btn.active span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: clamp(32px, 5.6vh, 58px);
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(5,14,46,1) 100%),
    url("images/main-bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-radius: 0 0 48px 48px;
}

.hero-grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: calc(100vh - 190px);
}

.hero-content h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.86;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-content {
  width: 100%;
  text-align: center;
}

.hero-content h1 span {
  display: block;
}

.hero-content h1 .gradient-silver {
  font-size: 100px;
}

.hero-content h1 .gradient-gold {
  font-size: 72px;
}

.section-heading h2 span,
.block-top h3 span,
.team-content h2 span,
.final-cta h2 span {
  color: transparent;
}

.hero-text {
  margin: 24px auto 0;
  font-size: 16px;
  line-height: 1.34;
  max-width: 610px;
  text-align: center;
  color: rgba(255,255,255,0.76);
}

.bonus-strip {
  width: fit-content;
  max-width: min(100%, 430px);
  margin: 14px auto 0;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(9,13,25,0.42);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.bonus-strip p {
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.bonus-strip-icons {
  display: flex;
  align-items: center;
}

.bonus-gift {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.bonus-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.42), transparent 45%),
    linear-gradient(135deg, rgba(255,198,86,0.7), rgba(52,106,255,0.48));
  box-shadow: 0 6px 16px rgba(0,0,0,0.24);
}

.bonus-thumb + .bonus-thumb {
  margin-left: -6px;
}

.bonus-strip-light {
  background: rgba(255,255,255,0.08);
}

.bonus-strip-light p {
  color: #fff;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
}

.trust-heading {
  margin-bottom: 24px;
}

.trust-heading h2 {
  max-width: 760px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-direction: row;
  align-items: flex-start;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(17,17,17,0.24);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.trust-visual-slot {
  width: 60px;
  min-width: 60px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.16), transparent 40%),
    rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.trust-visual-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(2);
  transform-origin: center;
}

.trust-card-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.trust-card-center {
  grid-column: auto;
  max-width: none;
  margin: 0;
}

.trust-number {
  display: block;
  color: #ffc656;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.trust-card p {
  margin-top: 0;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.3;
}

.audience-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  text-decoration: none;
  color: white;
  border-radius: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.35s ease;
  backdrop-filter: blur(12px);
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,198,86,0.5);
  background: rgba(255,198,86,0.05);
}

.dot {
  min-width: 14px;
  height: 14px;
  border-radius: 999px;
  margin-top: 8px;
  background: #ffc656;
  box-shadow: 0 0 24px #ffc656;
}

.audience-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.audience-card p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

.main-btn {
  cursor: pointer;
  font-weight: 800;
  font-family: inherit;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  padding: 16px 30px;
  border-radius: 14px;
  background: var(--accent-gradient);
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 58px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 28px;
  box-shadow: 0 0 42px rgba(var(--accent-rgb),0.62), inset 0 1px 0 rgba(255,255,255,0.28);
  animation: buttonSoftPulse 2s ease-in-out infinite;
}

.main-btn:hover {
  background: var(--accent-gradient-hover);
  box-shadow: 0 0 58px rgba(var(--accent-rgb),0.72), inset 0 1px 0 rgba(255,255,255,0.32);
}

.main-btn svg {
  display: none;
}

.main-btn:hover svg {
  transform: translateX(5px);
  animation-play-state: paused;
}

.main-btn:active {
  transform: scale(0.95);
}

.main-btn:disabled {
  cursor: wait;
  opacity: 0.78;
}

@keyframes buttonSoftPulse {
  0%, 100% {
    box-shadow: 0 0 36px rgba(var(--accent-rgb),0.48), inset 0 1px 0 rgba(255,255,255,0.28);
  }
  50% {
    box-shadow: 0 0 58px rgba(var(--accent-rgb),0.72), inset 0 1px 0 rgba(255,255,255,0.28);
  }
}

@keyframes buttonArrowCycle {
  0%, 70%, 100% {
    transform: translateX(0);
  }
  82% {
    transform: translateX(5px);
  }
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  position: relative;
  z-index: 2;
}

.circle-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,0.2);
  animation: rotateText 30s linear infinite;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.audience-switch {
  display: flex;
  gap: 16px;
  max-width: 700px;
}

.audience-switch-card {
  flex: 1;
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  text-decoration: none;
  color: white;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.35s ease;
}

.audience-switch-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,198,86,0.4);
}

.audience-switch-card.active {
  background: linear-gradient(180deg, rgba(255,198,86,0.12), rgba(255,255,255,0.04));
  border-color: rgba(255,198,86,0.35);
}

.switch-dot {
  min-width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #ffc656;
  margin-top: 7px;
}

.audience-switch-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.audience-switch-card p {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,0.65);
}

.main-audience-tabs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.main-audience-buttons {
  width: fit-content;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 6px;
  margin: 0 auto;
  padding: 6px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.main-audience-btn {
  height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.main-audience-btn.active {
  background: linear-gradient(135deg, #ffc656, #e37d14);
  color: #111;
  box-shadow: 0 14px 34px rgba(227,125,20,0.2);
}

.main-audience-content {
  display: none;
  gap: 20px;
}

.main-audience-content.active {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
}

.content-block {
  min-width: 0;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.dark-block {
  background: linear-gradient(180deg, rgba(37,82,139,0.18), rgba(255,255,255,0.03));
}

.result-content-block {
  background: linear-gradient(180deg, rgba(255,198,86,0.09), rgba(255,255,255,0.03));
  border-color: rgba(255,198,86,0.16);
}

.mini-label {
  display: inline-flex;
  color: #ffc656;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.case-kicker {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.case-meta {
  color: rgba(255,255,255,0.56);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.block-top h3 {
  font-size: 32px;
  line-height: 1;
  max-width: 560px;
}

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

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 0.95;
  font-weight: 800;
}

.section-intro {
  margin-top: 18px;
  max-width: 520px;
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  line-height: 1.4;
}

.problem-layout {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 28px;
  align-items: start;
}

.problems-wrapper {
  position: relative;
  max-width: 70%;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.problems-wrapper::before {
  display: none;
}

.problems-wrapper::after {
  display: none;
}

.problems-wrapper > * {
  position: relative;
  z-index: 1;
}

.problems-wrapper .section-heading {
  position: sticky;
  top: 24px;
  padding-left: 0;
  border-left: 0;
}

.problems-wrapper .section-intro {
  color: rgba(255,255,255,0.72);
}

.problems-wrapper .section-heading h2 span,
.problems-wrapper .mini-label {
  color: var(--accent-end);
}

.problems-wrapper .content-block,
.symptoms-section .section-heading,
.symptoms-section .info-card {
  background: rgba(17,17,17,0.24);
  border-color: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

.problems-wrapper .content-block.dark-block {
  padding: 0;
  border: none;
}

.problems-wrapper .result-item {
  position: relative;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
}

.problems-wrapper .result-item::before {
  content: '';
  position: absolute;
  left: 37px;
  top: 52px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, rgba(var(--accent-rgb),0.44), rgba(var(--accent-rgb),0));
}

.problems-wrapper .result-number {
  background: var(--accent-end);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb),0.12), 0 14px 34px rgba(var(--accent-rgb),0.26);
}

.problems-section .section-heading,
.results-section .section-heading {
  position: sticky;
}

.compact-list {
  gap: 10px;
}

.compact-list .result-item {
  padding: 14px;
}

.compact-list .result-number {
  min-width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 13px;
}

.symptoms-section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(var(--accent-rgb),0.26);
}

.diagnostics-divider {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,205,205,0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.diagnostics-divider::before,
.diagnostics-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(var(--accent-rgb),0), rgba(var(--accent-rgb),0.58));
}

.diagnostics-divider::after {
  background: linear-gradient(90deg, rgba(var(--accent-rgb),0.58), rgba(var(--accent-rgb),0));
}

.diagnostics-divider span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17,17,17,0.28);
  border: 1px solid rgba(var(--accent-rgb),0.26);
}

.problem-layout.reverse {
  grid-template-columns: 0.58fr 0.42fr;
}

.problem-layout.reverse .section-heading {
  padding-left: 0;
  padding-right: 22px;
  border-left: none;
  border-right: 2px solid rgba(var(--accent-rgb),0.9);
  text-align: right;
}

.symptoms-section .section-heading {
  position: sticky;
  top: 110px;
}

.symptom-cards {
  grid-template-columns: repeat(5, 1fr);
}

.symptoms-section .info-card {
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb),0.08), rgba(255,255,255,0.035)),
    radial-gradient(circle at 80% 0%, rgba(var(--accent-rgb),0.16), transparent 38%);
}

.symptoms-section .info-card span {
  color: var(--accent-end);
}

.consequence-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 70%;
  margin: 0 auto;
  padding: 34px;
  background:
    linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px),
    #000;
  background-size: 42px 42px, 42px 42px, auto;
  border-color: rgba(var(--accent-rgb),0.3);
}

.consequence-visual-slot {
  position: absolute;
  top: 0;
  right: -24px;
  bottom: 0;
  width: min(38vw, 500px);
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.consequence-visual-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: left center;
  opacity: 0.9;
  filter: saturate(1.02) contrast(1.02);
  will-change: transform;
}

.consequence-panel .section-heading,
.consequences-grid,
.accent-strip {
  position: relative;
  z-index: 1;
}

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

.consequence-panel .section-heading h2 span,
.consequence-panel .section-label,
.consequence-panel .info-card span {
  color: var(--accent-end);
}

.consequence-panel .section-label {
  border-color: rgba(var(--accent-rgb),0.24);
  background: rgba(var(--accent-rgb),0.08);
}

.consequence-panel .info-card.dark {
  background: rgba(17,17,17,0.24);
  border-color: rgba(var(--accent-rgb),0.22);
}

.accent-strip {
  margin-top: 20px;
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--accent-end);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
}

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

.case-story {
  padding: 0 32px;
}

.case-story + .case-story {
  border-left: 1px solid rgba(255,255,255,0.12);
}

.case-story h3 {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1;
}

.case-story p {
  margin-top: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.45;
}

.case-story-block {
  margin-top: 18px;
}

.case-story-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffc656;
  font-size: 12px;
  font-weight: 700;
}

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

.case-story-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.45;
}

.case-story-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffc656;
}

.case-story-result {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
}

.result-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.result-cases-grid--diagnosis {
  gap: 12px;
}

.result-cases-grid--diagnosis .diagnosis-summary-card + .diagnosis-summary-card {
  border-left: 0;
}

.diagnosis-summary-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 16%, rgba(62,116,255,0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    rgba(8,8,8,0.92);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 24px 80px rgba(0,0,0,0.24);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.diagnosis-summary-head h3 {
  margin-top: 12px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.08;
}

.diagnosis-summary-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(53, 108, 228, 0.12);
  color: #79a6ff;
  font-size: 13px;
  border: 1px solid rgba(121, 166, 255, 0.2);
}

.diagnosis-summary-sub {
  margin-top: 8px;
  color: rgba(255,255,255,0.56);
  font-size: 13px;
}

.diagnosis-summary-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.diagnosis-summary-metric {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
}

.diagnosis-summary-metric strong {
  display: block;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1;
}

.diagnosis-summary-metric span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.2;
}

.diagnosis-summary-result {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,198,86,0.18);
}

.diagnosis-summary-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,198,86,0.78);
  font-size: 12px;
  text-transform: uppercase;
}

.diagnosis-summary-result h4 {
  font-size: 18px;
  line-height: 1.16;
}

.diagnosis-summary-result p {
  margin-top: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.4;
}

.diagnosis-summary-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,198,86,0.12);
  color: #ffc656;
  border: 1px solid rgba(255,198,86,0.18);
  font-size: 13px;
}

.diagnosis-summary-button {
  align-self: flex-start;
}

@media (hover: hover) and (pointer: fine) {
  .diagnosis-summary-card:hover {
    transform: scale(1.018);
    border-color: rgba(255,255,255,0.14);
    box-shadow: 0 28px 90px rgba(0,0,0,0.3);
    background:
      radial-gradient(circle at 88% 16%, rgba(62,116,255,0.18), transparent 34%),
      linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.03)),
      rgba(10,10,10,0.96);
  }
}

.secondary-btn {
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    rgba(11,11,11,0.86);
  box-shadow: none;
}

.secondary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}

.result-case {
  padding: 0 32px;
}

.result-case + .result-case {
  border-left: 1px solid rgba(255,255,255,0.12);
}

.result-case-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.result-case-logo {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.result-case-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.result-case-logo span {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.result-case h3 {
  font-size: clamp(20px, 2.25vw, 28px);
  line-height: 0.92;
}

.result-case-description {
  margin-top: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.35;
}

.case-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.case-point {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.case-point h4 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-point.point-a {
  border-color: rgba(255,255,255,0.12);
  background: #000;
}

.case-point.point-a h4 {
  color: #fff;
}

.case-point.point-b {
  border-color: rgba(255,255,255,0.9);
  background: #fff;
}

.case-point.point-b h4 {
  color: #111;
}

.case-point ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
  padding-left: 18px;
}

.case-point li {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.28;
}

.case-point.point-b li {
  color: rgba(17,17,17,0.72);
}

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

.results-wrapper {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 70%;
  margin: 0 auto;
  padding: 36px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255,198,86,0.22), transparent 34%),
    linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px),
    #000;
  background-size: auto, 42px 42px, 42px 42px, auto;
  border: 1px solid rgba(255,198,86,0.3);
  color: #fff;
}

.results-visual-slot {
  position: absolute;
  top: 0;
  right: -24px;
  bottom: 0;
  width: min(38vw, 500px);
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.results-visual-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: left center;
  opacity: 0.92;
  filter: saturate(1.02) contrast(1.02);
  will-change: transform;
}

.results-wrapper .problem-layout,
.results-wrapper .section-heading,
.results-grid {
  position: relative;
  z-index: 1;
}

.results-wrapper .problem-layout {
  display: block;
}

.results-wrapper .section-heading {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.results-wrapper .results-grid {
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.results-wrapper .section-label {
  border-color: rgba(255,198,86,0.24);
  background: rgba(255,198,86,0.08);
  color: #ffc656;
}

.results-wrapper .section-heading h2 span,
.results-wrapper .result-number {
  color: #ffc656;
}

.results-wrapper .result-item {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(17,17,17,0.28);
  border: 1px solid rgba(255,198,86,0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #fff;
}

.results-wrapper .result-number {
  background: rgba(255,198,86,0.12);
  box-shadow: none;
}

.results-wrapper .result-item p {
  color: rgba(255,255,255,0.72);
}

.tabs-wrapper {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 36px;
  padding: 28px;
  backdrop-filter: blur(16px);
}

.tab-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
}

.tab-btn {
  height: 54px;
  padding: 0 28px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: 0.3s ease;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
}

.tab-btn.active {
  background: linear-gradient(135deg, #ffc656, #e37d14);
  color: #111;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

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

.info-card {
  min-height: 124px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,198,86,0.1), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,198,86,0.15);
}

.info-card.dark {
  min-height: 0;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(17,17,17,0.24);
  border: 1px solid rgba(37,82,139,0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.info-card span {
  font-size: 14px;
  color: #ffc656;
  font-weight: 700;
}

.info-card p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.22;
}

.result-box {
  padding: 20px;
}

.result-top h3 {
  font-size: 48px;
  line-height: 0.95;
}

.result-top p {
  margin-top: 18px;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
}

.result-list {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(17,17,17,0.18);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.result-number,
.step-number {
  min-width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffc656, #e37d14);
  color: #111;
  font-weight: 800;
}

.step-number {
  position: absolute;
  top: 20px;
  left: 28px;
  background: #111;
  color: #ffc656;
  box-shadow: 0 0 0 10px rgba(255,198,86,0.16), 0 18px 50px rgba(17,17,17,0.18);
}

.result-item p {
  font-size: 16px;
  line-height: 1.3;
}

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

.process-section {
  position: relative;
}

.process-section .container {
  position: relative;
}

.process-wrapper {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 36px;
  border-radius: 32px;
  background: #030303;
}

.process-visual-slot {
  position: absolute;
  top: 0;
  right: -24px;
  bottom: 0;
  width: min(42vw, 520px);
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.process-wrapper .section-heading,
.steps-grid {
  position: relative;
  z-index: 1;
}

.process-visual-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: left center;
  opacity: 0.9;
  filter: saturate(1.02) contrast(1.02);
  will-change: transform;
}

.step-card {
  position: relative;
  z-index: 1;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025)),
    rgba(17,17,17,0.24);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #fff;
  box-shadow: 0 22px 70px rgba(0,0,0,0.24);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.step-card:nth-child(1) {
  margin-top: 56px;
}

.step-card:nth-child(2) {
  margin-top: 28px;
}

.step-card p {
  margin-top: 74px;
  font-size: 16px;
  line-height: 1.25;
  color: #fff;
}

.team-section {
  overflow: hidden;
}

.team-panel {
  position: relative;
  isolation: isolate;
  overflow: visible;
  border-radius: 32px;
  padding-bottom: 1px;
}

.team-photo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 0;
  padding: 0 24px;
  pointer-events: none;
}

.team-photo img {
  width: min(100%, 700px);
  max-height: 360px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 26px 62px rgba(0,0,0,0.44));
}

.team-content {
  position: relative;
  z-index: 2;
  margin: -86px auto 0;
  max-width: 900px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(5,5,5,0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 26px 90px rgba(0,0,0,0.34);
}

.team-content h2 {
  max-width: 680px;
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 0.92;
}

.team-subtitle {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(255,255,255,0.74);
  font-size: 16px;
  line-height: 1.32;
}

.team-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.team-facts p {
  margin: 0;
  padding: 14px 16px;
  min-height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.74);
  font-size: 16px;
  line-height: 1.28;
}

.team-facts strong {
  color: #fff;
  font-weight: 800;
}

.logo-marquee {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 210px;
  transform: translateX(-50%);
  width: 100vw;
  overflow: hidden;
  pointer-events: none;
  background: rgba(255,255,255,0.98);
  color: #111;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}

.logo-marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 18px 0;
  animation: logoMarquee 28s linear infinite;
  will-change: transform;
}

.logo-marquee-track img {
  height: 30px;
  width: auto;
  max-width: 148px;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: 0.9;
  filter: grayscale(1) contrast(1.05);
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

.case-card {
  padding: 32px;
  border-radius: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.case-label {
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.case-label.accent {
  color: #ffc656;
}

.case-card p {
  font-size: 16px;
  line-height: 1.25;
}

.case-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 26px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  min-height: 90px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-family: inherit;
  font-weight: 700;
  text-align: left;
}

.faq-answer {
  display: none;
  padding: 0 28px 28px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active {
  background: linear-gradient(180deg, rgba(255,198,86,0.16), rgba(255,255,255,0.04));
  border-color: rgba(255,198,86,0.38);
}

.faq-item.active .faq-question {
  color: #ffc656;
}

.final-cta {
  padding: 70px 0;
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 410px 220px rgba(37,82,139,0.3);
  top: 120px;
  right: 120px;
}

.final-cta-content {
  text-align: left;
  max-width: 980px;
}

.final-cta-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  padding: 70px 36px 64px;
  border-radius: 32px;
  background-image: url("images/bg-bot.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f2b94d;
  color: #fff;
}

.final-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 28px;
  align-items: start;
}

.final-cta-copy {
  max-width: 520px;
}

.final-cta-form-wrap {
  width: 100%;
}

.final-cta-form {
  padding: 18px;
  border-radius: 24px;
  background: rgba(4, 9, 24, 0.52);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
}

.final-cta-wrapper > * {
  position: relative;
  z-index: 1;
}

.final-cta-wrapper .section-label {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.final-cta h2 {
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 0.9;
  max-width: 480px;
  margin: 0;
}

.final-cta-wrapper h2,
.final-cta-wrapper h2 span {
  color: #fff;
}

.final-cta-text {
  max-width: 460px;
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 1.22;
  font-weight: 500;
  color: rgba(255,255,255,0.84);
}

.final-btn {
  margin-top: 38px;
}

.thanks-page-body {
  min-height: 100vh;
}

.thanks-page {
  min-height: 100vh;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-card {
  width: min(100%, 760px);
  padding: 44px 32px;
  border-radius: 32px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(41,88,181,0.2), transparent 38%),
    rgba(10,10,12,0.82);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 120px rgba(0,0,0,0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.thanks-logo {
  margin: 0 auto 28px;
}

.thanks-card .section-label {
  margin-bottom: 18px;
}

.thanks-card h1 {
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.9;
}

.thanks-card h1 span {
  color: transparent;
  background-image: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.thanks-lead,
.thanks-text {
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255,255,255,0.84);
}

.thanks-lead {
  margin-top: 22px;
}

.thanks-text {
  margin-top: 14px;
}

.thanks-btn {
  margin-top: 28px;
  gap: 10px;
  text-transform: none;
}

.thanks-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.site-footer {
  width: 100%;
  padding: 0;
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  align-items: center;
  gap: 80px;
  padding: 64px 86px 58px;
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: #000;
}

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

.footer-logo {
  display: inline-flex;
  width: 118px;
  max-width: 100%;
}

.footer-logo img {
  height: auto;
}

.footer-details {
  margin-top: 54px;
}

.footer-details p {
  color: #fff;
  font-size: 16px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 46px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.footer-links a {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #ffc656;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-link {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.74);
  backdrop-filter: blur(14px);
}

.modal-dialog {
  position: relative;
  width: min(100%, 600px);
  padding: 34px;
  border-radius: 28px;
  background: #080808;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 140px rgba(0,0,0,0.5);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.modal-dialog-compact {
  width: min(100%, 480px);
  padding: 22px;
  border-radius: 20px;
}

.modal-dialog-auto {
  width: min(100%, 460px);
}

.case-modal {
  align-items: flex-start;
  overflow-y: auto;
}

.case-modal-dialog {
  width: min(100%, 980px);
  max-height: calc(100vh - 48px);
  padding: 22px;
  border-radius: 24px;
  overflow: auto;
  background:
    radial-gradient(circle at top right, rgba(62,116,255,0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255,198,86,0.12), transparent 22%),
    #080808;
}

.case-modal-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.case-modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(53, 108, 228, 0.12);
  color: #79a6ff;
  border: 1px solid rgba(121, 166, 255, 0.2);
  font-size: 14px;
}

.case-modal-sub {
  color: rgba(255,255,255,0.56);
  font-size: 14px;
}

.case-modal-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.case-modal-metric {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
}

.case-modal-metric strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.case-modal-metric span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.2;
}

.case-modal-section,
.case-modal-result {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.case-modal-section-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,198,86,0.78);
  font-size: 12px;
  text-transform: uppercase;
}

.case-modal-request {
  padding-left: 14px;
  border-left: 3px solid rgba(121,166,255,0.8);
}

.case-modal-request p {
  color: #fff;
  font-size: 18px;
  line-height: 1.32;
}

.case-modal-request span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.45;
}

.case-modal-findings {
  display: grid;
  gap: 10px;
}

.case-modal-finding {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.case-modal-finding-number {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,198,86,0.16);
  color: #ffc656;
  font-size: 14px;
  font-weight: 700;
}

.case-modal-finding h3,
.case-modal-result h3 {
  font-size: 20px;
  line-height: 1.12;
}

.case-modal-finding p,
.case-modal-result p {
  margin-top: 6px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.4;
}

.case-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(226, 249, 197, 0.08);
  color: #b9e07d;
  border: 1px solid rgba(185,224,125,0.16);
  font-size: 14px;
}

.modal.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.modal-dialog h2 {
  max-width: 520px;
  font-size: 36px;
  line-height: 1;
}

.modal-text {
  margin-top: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.32;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.lead-form label {
  display: block;
}

.lead-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font: inherit;
  font-size: 16px;
  padding: 13px 14px;
  outline: none;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255,255,255,0.42);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(255,198,86,0.55);
  box-shadow: 0 0 0 4px rgba(255,198,86,0.08);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .iti {
  width: 100%;
}

.lead-form .iti__country-container {
  left: 10px;
}

.lead-form .iti__selected-country-primary,
.lead-form .iti__country {
  font-family: inherit;
}

.lead-form .iti__selected-country-primary {
  height: calc(100% - 6px);
  margin: 3px 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
}

.lead-form .iti input {
  padding-left: 98px !important;
}

.lead-form .iti__dropdown-content {
  background: #0f0f11;
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}

.lead-form .iti__search-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}

.form-submit {
  width: 100%;
  margin-top: 2px;
}

.form-status {
  min-height: 20px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.form-status.success {
  color: #8ff0bb;
}

.form-status.error {
  color: #ff8f8f;
}

body h1,
body h2,
body h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

body .section-heading h2,
body .team-content h2,
body .final-cta h2,
body .case-story h3,
body .block-top h3,
body .result-top h3,
body .modal-dialog h2 {
  color: transparent;
  background-image: var(--primary-gradient1);
  -webkit-background-clip: text;
  background-clip: text;
}

body .section-heading h2 span,
body .block-top h3 span,
body .team-content h2 span,
body .final-cta h2 span {
  color: transparent;
  background-image: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

body .final-cta-wrapper h2,
body .final-cta-wrapper h2 span {
  color: #fff;
  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
}

@media(max-width: 991px) {

  .section-heading {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .container > .section-heading:first-child {
    margin-bottom: 24px;
  }

  .split-heading,
  .audience-switch {
    flex-direction: column;
    align-items: stretch;
  }


  .hero-grid,
  .team-grid,
  .steps-grid,
  .cases-grid,
  .result-cases-grid,
  .grid-cards,
  .problem-layout,
  .case-story-grid,
  .results-grid,
  .consequences-grid {
    grid-template-columns: 1fr;
  }

  .main-audience-content.active {
    grid-template-columns: 1fr;
  }

  .problem-layout {
    gap: 22px;
  }

  .problems-section .section-heading,
  .symptoms-section .section-heading,
  .results-section .section-heading {
    position: static;
  }

  .problem-layout.reverse .section-heading {
    order: -1;
    padding-left: 22px;
    padding-right: 0;
    border-left: 2px solid rgba(255,255,255,0.16);
    border-right: none;
    text-align: left;
  }

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

  .problems-wrapper {
    background-size: 30px 30px, 30px 30px, auto;
  }

  .problems-wrapper .section-heading {
    padding-left: 18px;
  }

  .problems-wrapper .content-block.dark-block {
    padding: 0;
  }

  .symptoms-section {
    margin-top: 24px;
    padding-top: 24px;
  }

  .step-card,
  .step-card:nth-child(2),
  .step-card:nth-child(3) {
    min-height: auto;
    margin-top: 0;
  }

  .step-card p {
    margin-top: 72px;
  }

  .step-number {
    top: 16px;
    left: 16px;
  }

  .team-photo {
    padding: 0 18px;
  }

  .team-photo img {
    max-height: 320px;
  }

  .logo-marquee {
    top: 181px;
  }

  .team-content {
    margin-top: -62px;
    padding: 24px;
  }

  .team-subtitle {
    margin-top: 12px;
    max-width: 100%;
  }

  .team-facts {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 42px;
    padding: 48px 34px;
  }

  .footer-details {
    margin-top: 38px;
  }

  .footer-details p {
    font-size: 16px;
  }

  .footer-actions {
    width: 100%;
    justify-content: space-between;
    gap: 28px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-links a {
    font-size: 16px;
  }

  .section-heading h2,
  .team-content h2,
  .result-top h3 {
    font-size: 36px;
  }

  .final-cta h2 {
    font-size: clamp(54px, 15vw, 86px);
  }

  .final-cta-text {
    font-size: 16px;
  }

  .info-card p,
  .step-card p,
  .case-card p,
  .case-story p,
  .result-item p,
  .faq-question {
    font-size: 16px;
  }

  .block-top h3 {
    font-size: 34px;
  }

  .case-story h3 {
    font-size: 28px;
  }

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

  .circle-text {
    display: none;
  }

  .section {
    padding: 45px 0;
  }

}

@media(max-width: 640px) {

  .container {
    padding: 0 18px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 12px;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
      rgba(17,17,17,0.24);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .trust-card {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .trust-card-copy {
    gap: 6px;
  }

  .trust-card:last-child {
    border-bottom: 0;
  }

  .trust-heading {
    margin-bottom: 18px;
  }

  .trust-heading h2 {
    max-width: none;
  }

  .trust-visual-slot {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .trust-number {
    font-size: 16px;
    line-height: 1.05;
  }

  .trust-card p {
    line-height: 1.2;
  }

  .trust-card-center {
    max-width: none;
    margin: 0;
  }

  p {
    font-size: 16px !important;
  }

  .hero-text {
    font-size: 16px !important;
  }

  .info-card p {
    font-size: 16px !important;
  }

  .result-item p,
  .step-card p,
  .case-card p,
  .case-story p,
  .result-case-description,
  .case-point li,
  .faq-answer p {
    font-size: 16px !important;
  }

  .navbar {
    top: 10px;
  }

  .hero {
    min-height: 48svh;
    padding-top: 86px;
    padding-bottom: 0;
    overflow: visible;
    background-position: center top;
  }

  .hero-content h1 .gradient-silver {
    font-size: clamp(42px, 13.2vw, 68px);
  }

  .hero-content h1 .gradient-gold {
    font-size: clamp(31px, 9.6vw, 50px);
  }

  .hero-content h1 {
    line-height: 0.88;
    max-width: 100%;
  }

  .hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 20px;
  }

  .hero-text {
    max-width: 325px;
    margin-top: 12px;
  }

  .hero-content > .main-btn {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: -58px;
    transform: none;
    margin-top: 0;
  }

  .trust-section {
    padding-top: 92px;
  }

  .bonus-strip {
    max-width: 100%;
    padding: 10px 12px;
    gap: 10px;
  }

  .bonus-strip p {
    white-space: normal;
    text-align: left;
    font-size: 14px;
  }

  .hero-grid {
    min-height: calc(48svh - 114px);
    gap: 20px;
    align-items: flex-end;
  }

  .hero-visual img:first-child {
    max-width: 100% !important;
  }

  .nav-inner {
    gap: 12px;
  }

  .nav-logo {
    width: 118px;
  }

  .burger-btn {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px;
    border-radius: 14px;
    font-size: 16px;
  }

  .nav-links a:hover {
    background: rgba(255,255,255,0.05);
  }

  .tabs-wrapper,
  .content-block,
  .case-story,
  .result-case,
  .consequence-panel,
  .problems-wrapper,
  .results-wrapper,
  .final-cta-wrapper,
  .case-card,
  .step-card,
  .info-card {
    padding: 16px;
  }

  .accent-strip {
    padding: 18px;
    font-size: 16px;
  }

  .team-panel {
    border-radius: 24px;
  }

  .team-photo {
    padding: 0 6px;
  }

  .team-photo img {
    max-height: 260px;
  }

  .logo-marquee {
    top: 145px;
    bottom: auto;
  }

  .team-content {
    margin-top: -48px;
    padding: 16px;
  }

  .team-facts {
    gap: 10px;
  }

  .team-facts p {
    min-height: 0;
    padding: 16px;
    font-size: 16px;
  }

  .logo-marquee-track {
    gap: 34px;
    padding: 14px 0;
    animation-duration: 22s;
  }

  .logo-marquee-track img {
    height: 24px;
    max-width: 112px;
  }

  .footer-inner {
    padding: 36px 22px;
  }

  .footer-logo {
    width: 118px;
  }

  .footer-details {
    margin-top: 32px;
  }

  .footer-details p {
    font-size: 16px;
    line-height: 1.18;
  }

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

  .footer-links a {
    font-size: 16px;
    white-space: normal;
  }

  .social-link {
    width: 24px;
    height: 24px;
  }

  .modal {
    padding: 14px;
  }

  .modal-dialog {
    padding: 24px;
    border-radius: 22px;
  }

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

  .lead-form .iti input {
    padding-left: 92px !important;
  }

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

  .problems-wrapper::before {
    top: 18px;
    right: 18px;
    font-size: 40px;
  }

  .problems-wrapper::after {
    display: none;
  }

  .diagnostics-divider {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .diagnostics-divider::before,
  .diagnostics-divider::after {
    flex: none;
    width: 100%;
  }

  .compact-list {
    gap: 8px;
  }

  .compact-list .result-item {
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
  }

  .compact-list .result-item::before {
    display: none;
  }

  .compact-list .result-number {
    min-width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .main-audience-buttons {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 20px;
  }

  .main-audience-btn {
    width: 100%;
  }

  .content-block {
    border-radius: 22px;
  }

  .section-heading h2,
  .team-content h2,
  .result-top h3 {
    font-size: 30px;
  }

  .final-cta h2 {
    font-size: clamp(48px, 17vw, 68px);
  }

  .hero-text,
  .team-content p {
    font-size: 16px;
  }

  .final-cta-text {
    font-size: 16px;
  }

  .audience-card h3 {
    font-size: 20px;
  }

  .tab-buttons {
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
  }

  .problems-wrapper {
    max-width: 100%;
    border-radius: 30px;
    background:
      radial-gradient(circle at 20% 0%, rgba(var(--accent-rgb),0.18), transparent 34%),
      linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
      #030303;
    background-size: auto, 28px 28px, 28px 28px, auto;
  }

  .problems-wrapper .section-heading {
    padding-left: 0;
    border-left: none;
  }

  .problems-wrapper .section-heading h2 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 0.82;
  }

  .compact-list {
    gap: 12px;
  }

  .compact-list .result-item {
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.085), rgba(255,255,255,0.025)),
      rgba(255,255,255,0.035);
    border-color: rgba(255,255,255,0.1);
    opacity: 1 !important;
  }

  .compact-list .result-number {
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .consequence-panel {
    max-width: 100%;
    border-radius: 30px;
    background:
      radial-gradient(circle at 88% 10%, rgba(var(--accent-rgb),0.22), transparent 34%),
      linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
      #030303;
    background-size: auto, 28px 28px, 28px 28px, auto;
  }

  .consequence-visual-slot {
    right: 0;
    width: 40vw;
  }

  .consequence-visual-image {
    min-height: 400px;
  }

  .results-visual-slot {
    right: 0;
    width: 40vw;
  }

  .results-visual-image {
    min-height: 400px;
  }

  .results-wrapper {
    max-width: 100%;
    border-radius: 30px;
    background:
      radial-gradient(circle at 88% 10%, rgba(var(--accent-rgb),0.22), transparent 34%),
      linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
      #030303;
    background-size: auto, 28px 28px, 28px 28px, auto;
  }

  .results-wrapper .results-grid {
    margin-top: 24px;
  }

  .consequences-grid {
    gap: 10px;
  }

  .consequence-panel .info-card.dark {
    border-color: rgba(var(--accent-rgb),0.18);
    background: rgba(255,255,255,0.045);
  }

  .accent-strip {
    border-radius: 20px;
    box-shadow: 0 18px 52px rgba(var(--accent-rgb),0.28);
  }

  .consequence-visual-slot {
    display: flex;
    top: auto;
    bottom: -8px;
    right: -24px;
    width: 58vw;
    height: 62%;
    opacity: 0.96;
  }

  .consequence-visual-image {
    min-height: 100%;
    object-position: center;
    opacity: 0.82;
  }

  .results-visual-slot {
    display: flex;
    top: auto;
    bottom: -8px;
    right: -24px;
    width: 58vw;
    height: 62%;
    opacity: 0.96;
  }

  .results-visual-image {
    min-height: 100%;
    object-position: center;
    opacity: 0.84;
  }

  .case-story-grid {
    gap: 0;
  }

  .case-story {
    padding: 0 0 24px;
  }

  .case-story + .case-story {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 24px;
  }

  .steps-grid {
    position: relative;
    gap: 14px;
  }

  .process-wrapper {
    padding: 24px 16px;
    border-radius: 30px;
  }

  .process-visual-slot {
    right: 0;
    width: 44vw;
  }

  .process-visual-image {
    min-height: 520px;
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 36px;
    width: 1px;
    background: linear-gradient(180deg, rgba(255,198,86,0), rgba(255,198,86,0.8), rgba(255,198,86,0));
    opacity: 0.42;
  }

  .process-visual-slot {
    display: flex;
    top: auto;
    bottom: -6px;
    right: -18px;
    width: 52vw;
    height: 58%;
    opacity: 0.96;
  }

  .process-visual-image {
    min-height: 100%;
    object-position: center;
    opacity: 0.82;
  }

  .step-card {
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(255,198,86,0.2);
  }

  .step-card p {
    margin-top: 70px;
  }

  .team-content {
    border-radius: 26px;
    background:
      radial-gradient(circle at 12% 0%, rgba(255,198,86,0.12), transparent 34%),
      rgba(5,5,5,0.84);
  }

  .team-facts {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 18px;
  }

  .team-facts p {
    position: relative;
    padding: 13px 0 13px 18px;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    line-height: 1.32;
  }

  .team-facts p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffc656;
    box-shadow: 0 0 14px rgba(255,198,86,0.5);
  }

  .team-facts p:last-child {
    border-bottom: 0;
  }

  .team-facts strong {
    display: inline;
    margin-bottom: 0;
    color: #ffc656;
    font-size: 16px;
    line-height: inherit;
  }

  .result-case {
    padding: 0 0 24px;
  }

  .result-case + .result-case {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 24px;
  }

  .result-case-top {
    align-items: flex-start;
  }

  .result-case-logo {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #fff;
  }

  .case-points {
    gap: 0;
    margin-top: 18px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .case-point {
    border-radius: 0;
    border: none;
  }

  .faq-list {
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .faq-item {
    border-radius: 0;
    border-width: 0 0 1px;
    background: transparent;
  }

  .faq-question {
    min-height: 0;
    padding: 18px 0;
    gap: 16px;
  }

  .faq-answer {
    padding: 0 0 20px;
  }

  .faq-item.active {
    background: transparent;
    border-color: rgba(255,198,86,0.26);
  }

  .faq-item.active .faq-question {
    color: #ffc656;
  }

  .final-cta-wrapper {
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    width: calc(100% + 16px);
    margin-left: -8px;
    border-radius: 28px;
    padding: 42px 18px 24px;
    background-position: center top;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.16),
      inset 0 -1px 0 rgba(255,198,86,0.28),
      0 26px 74px rgba(0,0,0,0.34);
  }

  .final-cta-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 50% 8%, rgba(62,121,255,0.26), transparent 38%),
      radial-gradient(circle at 50% 100%, rgba(255,198,86,0.22), transparent 42%),
      linear-gradient(180deg, rgba(1,7,25,0.06) 0%, rgba(1,7,25,0.36) 38%, rgba(1,7,25,0.94) 100%);
    pointer-events: none;
  }

  .final-cta-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    width: 100%;
  }

  .final-cta-copy,
  .final-cta-form-wrap {
    width: 100%;
    max-width: 100%;
  }

  .final-cta-wrapper::after {
    display: none;
  }

  .final-cta-wrapper .section-label {
    margin: 0 auto 18px;
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 16px 46px rgba(0,0,0,0.22);
  }

  .final-cta h2 {
    max-width: 280px;
    margin: 0 auto;
    font-size: clamp(38px, 12.4vw, 52px);
    line-height: 0.9;
  }

  .final-cta-text {
    max-width: 304px;
    margin: 16px auto 0;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    color: rgba(255,255,255,0.84);
    line-height: 1.34;
  }

  .final-cta-form {
    padding: 14px;
    border-radius: 20px;
  }


  .thanks-page {
    padding: 16px;
  }

  .thanks-card {
    padding: 34px 20px;
    border-radius: 24px;
  }

  .thanks-card h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .thanks-btn {
    width: 100%;
  }

  .result-cases-grid--diagnosis,
  .diagnosis-summary-metrics,
  .case-modal-metrics {
    grid-template-columns: 1fr;
  }

  .diagnosis-summary-card,
  .case-modal-dialog,
  .case-modal-section,
  .case-modal-result {
    padding: 16px;
  }

  .diagnosis-summary-head h3,
  .case-modal-dialog h2 {
    font-size: 24px;
    line-height: 1.06;
  }

  .diagnosis-summary-result h4,
  .case-modal-finding h3,
  .case-modal-result h3 {
    font-size: 18px;
  }

  .case-modal-dialog {
    max-height: calc(100vh - 24px);
  }

  .case-modal-finding {
    padding: 16px;
  }

  .case-modal-request p {
    font-size: 18px;
  }

  .diagnosis-summary-button {
    width: 100%;
  }

}
