@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/poppins-400-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/poppins-500-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/poppins-600-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/poppins-800-latin.woff2") format("woff2");
}

:root {
  --turquoise: #25cad2;
  --button-light: #109fa6;
  --turquoise-strong: #0c9ca6;
  --turquoise-soft: #e8fafb;
  --navy: #0e2333;
  --navy-2: #163348;
  --text: #1e2a32;
  --muted: #60717c;
  --bg: #f5f7f8;
  --white: #ffffff;
  --border: #dde7ea;
  --sage: #6ea88f;
  --sage-soft: #edf7f2;
  --amber: #d99a4e;
  --amber-soft: #fff4e6;
  --rose-soft: #fff0f1;
  --shadow-soft: 0 18px 48px rgba(14, 35, 51, 0.1);
  --shadow-card: 0 10px 30px rgba(14, 35, 51, 0.08);
  --max-width: 1180px;
  --nav-max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open,
body.video-open,
body.assessment-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

a:hover {
  color: var(--button-light);
}

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

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(37, 202, 210, 0.55);
  outline-offset: 3px;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  z-index: 100;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
}

.shell {
  width: min(var(--max-width), calc(100% - 40px));
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border: 0;
}

.nav-shell {
  position: relative;
  width: min(var(--nav-max-width), calc(100% - 56px));
  max-width: var(--nav-max-width);
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 18px 10px 22px;
  border: 1px solid rgba(221, 231, 234, 0.92);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(14, 35, 51, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--navy);
  font-weight: 600;
  font-size: 1.1rem;
}

.brand img {
  width: 148px;
  height: auto;
  border-radius: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.main-nav a:not(.button):hover {
  color: var(--button-light);
}

.menu-toggle {
  --menu-line-width: 20px;
  --menu-line-offset: 6px;
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 70;
  line-height: 1;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--menu-line-width);
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - var(--menu-line-offset)));
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + var(--menu-line-offset)));
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 13px 20px;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  background: var(--button-light);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(16, 159, 166, 0.24);
}

.button-primary:hover {
  background: #0d8f96;
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
}

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  overflow: hidden;
  background: var(--white);
}

.hero-picture,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  display: block;
}

.hero-image {
  object-fit: cover;
  object-position: left center;
}

.hero-overlay {
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 92px 0 44px;
}

.hero-content > * {
  max-width: 100%;
}

.eyebrow {
  display: block;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7a8990;
  font-size: 0.98rem;
  font-weight: 500;
}

.eyebrow::before {
  display: none;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--navy);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  font-size: 4.05rem;
}

.hero-lead {
  max-width: 620px;
  margin: 20px 0 0;
  color: #314650;
  font-size: 1.28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.video-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 24px 10px 12px;
  border: 1px solid rgba(16, 159, 166, 0.28);
  border-radius: 16px;
  background: var(--button-light);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(16, 159, 166, 0.22);
  font-weight: 500;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.video-button:hover {
  transform: translateY(-1px);
  background: #0d8f96;
  color: var(--white);
  box-shadow: 0 18px 34px rgba(16, 159, 166, 0.27);
}

.play-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--turquoise);
}

.play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--white);
}

.clinical-note,
.small-note,
.section-note {
  color: var(--muted);
  font-size: 0.93rem;
}

.clinical-note {
  margin: 14px 0 0;
}

.hero-protocols {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 1;
  width: min(560px, calc(100% - 56px));
  max-width: 560px;
  margin: 56px 0 0;
  padding-bottom: 0;
}

.protocol-logo-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(16px, 1.8vw, 26px);
  padding: 0;
  border: 0;
  background: transparent;
}

.protocol-logo {
  flex: 0 0 auto;
  display: block;
  width: auto;
  max-width: min(18vw, 180px);
  object-fit: contain;
}

.logo-acp {
  height: 46px;
}

.logo-ucp {
  height: 50px;
  max-width: min(22vw, 150px);
}

.logo-cuf {
  height: 40px;
}

.logo-germano {
  height: 36px;
  max-width: min(20vw, 130px);
}

.section {
  padding: 92px 0;
}

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

.section h2 {
  font-size: 3rem;
}

.section h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.28;
}

.section p {
  color: var(--muted);
}

.section-copy {
  max-width: 620px;
}

.section-copy p {
  font-size: 1.05rem;
}

.dark-section-group .button-primary,
.section-quiz .button-primary,
.site-footer .button-primary {
  background: var(--turquoise);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37, 202, 210, 0.28);
}

.dark-section-group .button-primary:hover,
.section-quiz .button-primary:hover,
.site-footer .button-primary:hover {
  background: #2fd6de;
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading p {
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
}

.split-image {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split-loose-media {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.26fr);
  gap: clamp(30px, 4vw, 58px);
}

.media-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.media-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

#neurovida .split-image {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.05fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: center;
}

#neurovida .media-frame {
  width: min(100%, 440px);
  min-height: 680px;
  align-self: stretch;
  justify-self: center;
}

#neurovida .media-frame img {
  height: 100%;
  aspect-ratio: auto;
  object-position: center 18%;
}

#neurovida .section-copy {
  max-width: 690px;
  align-self: center;
}

#neurovida .eyebrow {
  color: var(--button-light);
  font-size: 1.08rem;
  font-weight: 500;
}

.loose-media {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.loose-media img {
  width: min(116%, 820px);
  max-width: none;
  margin-left: -3%;
  border-radius: 0;
  object-fit: contain;
}

.dark-section-group {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 46%, rgba(8, 52, 86, 0.5) 0%, rgba(5, 26, 45, 0.3) 32%, rgba(1, 4, 10, 0) 62%),
    radial-gradient(circle at 18% 18%, rgba(37, 202, 210, 0.09) 0%, rgba(37, 202, 210, 0) 34%),
    linear-gradient(135deg, #01040a 0%, #041020 50%, #01040a 100%);
  color: #d7edf4;
}

.brain-section {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: #d7edf4;
}

.brain-section .split {
  align-items: center;
  grid-template-columns: minmax(460px, 0.98fr) minmax(0, 1.12fr);
}

.brain-section .eyebrow {
  border-color: rgba(37, 202, 210, 0.5);
  background: rgba(37, 202, 210, 0.12);
  color: #baf7fb;
}

.brain-section h2 {
  color: var(--white);
  max-width: 680px;
  font-size: 3.16rem;
}

.brain-section p {
  color: #d7edf4;
}

.brain-section blockquote {
  border-left-color: var(--turquoise);
  background: rgba(37, 202, 210, 0.12);
  color: var(--white);
}

.brain-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  margin: 0;
}

.brain-visual picture {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
}

.brain-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: 760px;
  object-fit: contain;
  filter: drop-shadow(0 26px 58px rgba(37, 202, 210, 0.18));
}

.neural-animation {
  position: absolute;
  inset: 8% 5%;
  z-index: 2;
  pointer-events: none;
}

.neural-animation svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.neural-line {
  fill: none;
  stroke: rgba(95, 238, 245, 0.72);
  stroke-width: 0.28;
  stroke-linecap: round;
  stroke-dasharray: 18 90;
  filter: drop-shadow(0 0 7px rgba(37, 202, 210, 0.7));
  animation: neuralTrace 4.8s linear infinite;
}

.line-2 {
  animation-delay: 0.7s;
}

.line-3 {
  animation-delay: 1.2s;
}

.line-4 {
  animation-delay: 1.8s;
}

.line-5 {
  animation-delay: 2.4s;
}

.neural-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d9fdff;
  box-shadow: 0 0 0 7px rgba(37, 202, 210, 0.1), 0 0 24px rgba(37, 202, 210, 0.8);
  animation: pulseNode 2.6s ease-in-out infinite;
}

.dot-1 {
  left: 24%;
  top: 39%;
}

.dot-2 {
  left: 50%;
  top: 31%;
  animation-delay: 0.4s;
}

.dot-3 {
  left: 67%;
  top: 43%;
  animation-delay: 0.8s;
}

.dot-4 {
  left: 33%;
  top: 63%;
  animation-delay: 1.2s;
}

.dot-5 {
  left: 76%;
  top: 57%;
  animation-delay: 1.6s;
}

.neural-label {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(37, 202, 210, 0.44);
  border-radius: 999px;
  background: rgba(2, 18, 31, 0.74);
  color: #dffcff;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26), 0 0 22px rgba(37, 202, 210, 0.14);
  backdrop-filter: blur(8px);
  animation: labelPulse 3.6s ease-in-out infinite;
}

.neural-label::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--turquoise);
  box-shadow: 0 0 12px rgba(37, 202, 210, 0.9);
}

.label-attention {
  left: 41%;
  top: 18%;
}

.label-memory {
  left: 10%;
  top: 56%;
  animation-delay: 0.45s;
}

.label-speed {
  right: 4%;
  top: 53%;
  animation-delay: 0.9s;
}

.label-reasoning {
  right: 13%;
  top: 31%;
  animation-delay: 1.35s;
}

.label-executive {
  left: 4%;
  top: 31%;
  animation-delay: 1.8s;
}

@keyframes neuralTrace {
  0% {
    stroke-dashoffset: 110;
    opacity: 0.14;
  }
  36%,
  72% {
    opacity: 0.86;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0.14;
  }
}

@keyframes labelPulse {
  0%,
  100% {
    transform: translateY(0);
    border-color: rgba(37, 202, 210, 0.34);
  }
  50% {
    transform: translateY(-2px);
    border-color: rgba(37, 202, 210, 0.72);
  }
}

@keyframes pulseNode {
  0%,
  100% {
    transform: scale(0.72);
    opacity: 0.52;
  }
  48% {
    transform: scale(1.22);
    opacity: 1;
  }
}

blockquote {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--turquoise);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--turquoise-soft);
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 800;
}

.section-quiz {
  background: var(--navy);
  color: var(--white);
}

#como-funciona {
  background: var(--white);
}

.quick-assessment-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: transparent;
  box-shadow: none;
}

.quick-assessment-section h2,
.quick-assessment-section p {
  color: var(--white);
}

.quick-assessment-section .section-heading > p:not(.eyebrow) {
  color: #d7e5e8;
}

.assessment-heading {
  max-width: 840px;
}

.quick-start-panel {
  width: min(100%, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 26px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.quick-start-button {
  min-width: min(100%, 260px);
  justify-content: center;
}

.progress,
.form-progress {
  background: #edf3f4;
  border-radius: 999px;
}

.progress {
  height: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.progress span {
  display: block;
  width: 33.33%;
  height: 100%;
  border-radius: inherit;
  background: var(--turquoise);
  transition: width 220ms ease;
}

.step-label {
  margin: 0 0 8px;
  color: #087983;
  font-weight: 900;
  font-size: 0.9rem;
}

.quiz-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.assessment-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 22px;
}

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

.assessment-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(8, 25, 38, 0.58);
  backdrop-filter: blur(8px);
}

.assessment-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  height: min(700px, calc(100dvh - 44px));
  min-height: min(560px, calc(100dvh - 44px));
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(210, 226, 230, 0.9);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 34px 90px rgba(8, 25, 38, 0.34);
}

.assessment-form {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto auto auto minmax(0, 1fr) auto auto;
  gap: 16px;
}

.assessment-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 32px;
  padding-right: 112px;
  color: #087983;
  font-size: 0.9rem;
  font-weight: 900;
}

.assessment-progress {
  margin-bottom: 2px;
}

.assessment-form h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.75rem;
  line-height: 1.22;
}

.assessment-help {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.assessment-body {
  min-height: 0;
  display: grid;
  gap: 16px;
  align-content: start;
  overflow: auto;
  padding-right: 4px;
}

.assessment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.assessment-option {
  min-height: 60px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: #263d49;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.assessment-option input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--turquoise);
}

.assessment-option:has(input:checked) {
  border-color: rgba(37, 202, 210, 0.72);
  background: var(--turquoise-soft);
  box-shadow: 0 0 0 3px rgba(37, 202, 210, 0.12);
}

.condition-grid {
  display: grid;
  gap: 14px;
}

.condition-group {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fbfefe;
}

.condition-group legend {
  padding: 0 6px;
  color: var(--navy);
  font-weight: 900;
}

.condition-group .assessment-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.email-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fbfefe;
}

.email-panel label {
  color: var(--navy);
  font-weight: 900;
}

.email-panel input {
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  font: inherit;
}

.email-panel input[aria-invalid="true"] {
  border-color: #c24b4b;
  box-shadow: 0 0 0 3px rgba(194, 75, 75, 0.12);
}

.assessment-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.assessment-result {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: var(--white);
}

.assessment-result[hidden] {
  display: none;
}

.assessment-result h3 {
  margin: 0;
  color: var(--white);
}

.assessment-result p {
  margin: 0;
  color: #d7e5e8;
}

.assessment-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
}

.assessment-actions [data-assessment-prev] {
  grid-column: 1;
  justify-self: start;
}

.assessment-actions [data-assessment-next],
.assessment-actions [data-assessment-submit] {
  grid-column: 2;
  justify-self: end;
}

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

.domain-card,
.step-card {
  min-height: 218px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.domain-card p,
.step-card p {
  margin-bottom: 0;
}

.domain-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(37, 202, 210, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(37, 202, 210, 0.11);
  color: var(--turquoise);
}

.domain-mark img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.domain-mark svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.72;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.domain-mark .icon-fill {
  fill: currentColor;
  stroke: none;
}

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

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.process-line {
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 202, 210, 0.04), rgba(37, 202, 210, 0.16), rgba(37, 202, 210, 0.04));
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 142px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(196, 215, 222, 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(31, 55, 66, 0.78);
  text-align: left;
  box-shadow: none;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.78;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.process-step::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: var(--turquoise);
  transform: scaleX(0);
  transform-origin: left center;
}

.process-step:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 202, 210, 0.42);
  opacity: 0.94;
}

.process-step.is-active {
  background: var(--turquoise-soft);
  border-color: rgba(37, 202, 210, 0.7);
  box-shadow: 0 18px 46px rgba(8, 25, 38, 0.1);
  color: var(--text);
  opacity: 1;
}

.process-step.is-active::after {
  animation: processStepProgress 10s linear forwards;
}

.process-flow.is-paused .process-step.is-active::after {
  animation-play-state: paused;
}

.process-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 4px solid rgba(237, 243, 244, 0.9);
  border-radius: 50%;
  background: #dbe7eb;
  color: #647982;
  font-size: 1.3rem;
  font-weight: 600;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.72);
}

.process-step.is-active .process-number {
  background: var(--turquoise);
  color: var(--navy);
  box-shadow: 0 0 0 3px var(--white);
}

.process-step strong {
  color: rgba(8, 33, 51, 0.68);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.18;
}

.process-step small {
  color: rgba(65, 90, 103, 0.68);
  font-weight: 500;
}

.process-step.is-active strong {
  color: var(--navy);
}

.process-step.is-active small {
  color: #476371;
}

.process-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 30px;
  margin-top: 22px;
  padding: 30px;
  border: 1px solid rgba(37, 202, 210, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 16% 18%, rgba(37, 202, 210, 0.12), rgba(37, 202, 210, 0) 34%);
  box-shadow: var(--shadow-soft);
}

.process-detail.is-entering {
  animation: processDetailRise 460ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.process-kicker {
  margin: 0 0 8px;
  color: #087983 !important;
  font-weight: 600;
}

.process-detail h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.65rem;
  line-height: 1.22;
}

.process-detail p {
  font-size: 1.03rem;
}

.process-includes {
  padding: 22px;
  border: 1px solid rgba(203, 216, 222, 0.8);
  border-radius: var(--radius-md);
  background: #f2f5f6;
}

.process-includes strong {
  color: var(--navy);
  font-size: 1rem;
}

.process-includes ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  color: var(--text);
  list-style: none;
}

.process-includes li {
  position: relative;
  min-height: 23px;
  margin: 0;
  padding-left: 30px;
  line-height: 1.45;
}

.process-includes li::before {
  content: "";
  position: absolute;
  top: 0.18em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(37, 202, 210, 0.14);
  border: 0;
}

.process-includes li::after {
  content: "";
  position: absolute;
  top: calc(0.18em + 5px);
  left: 4px;
  width: 10px;
  height: 7px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'%3E%3Cpath d='M1.5 4.7 4.5 7.3 10.5 1.5' fill='none' stroke='%2325cad2' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@keyframes processStepProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes processDetailRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-card {
  min-height: 210px;
}

.step-card span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--turquoise);
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 950;
}

.step-featured {
  background: var(--turquoise-soft);
}

.section-note {
  margin-top: 18px;
}

.audience-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.tab-button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  font-weight: 500;
  cursor: pointer;
}

.tab-button[aria-selected="true"] {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.audience-panel {
  max-width: 1040px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 30px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid rgba(37, 202, 210, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 16% 18%, rgba(37, 202, 210, 0.12), rgba(37, 202, 210, 0) 34%);
  box-shadow: var(--shadow-soft);
}

.audience-panel ul,
.check-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
}

.audience-panel li,
.check-list li {
  margin: 10px 0;
}

.audience-check-list {
  display: grid;
  gap: 12px;
  align-self: start;
  padding: 22px !important;
  border: 1px solid rgba(203, 216, 222, 0.8);
  border-radius: var(--radius-md);
  background: #f2f5f6;
  list-style: none;
}

.audience-check-list li {
  position: relative;
  min-height: 23px;
  margin: 0;
  padding-left: 30px;
  line-height: 1.45;
}

.audience-check-list li::before {
  content: "";
  position: absolute;
  top: 0.18em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(37, 202, 210, 0.14);
}

.audience-check-list li::after {
  content: "";
  position: absolute;
  top: calc(0.18em + 5px);
  left: 4px;
  width: 10px;
  height: 7px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'%3E%3Cpath d='M1.5 4.7 4.5 7.3 10.5 1.5' fill='none' stroke='%2325cad2' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.results-section {
  overflow: clip;
  background:
    radial-gradient(circle at 50% 20%, rgba(37, 202, 210, 0.12), transparent 30%),
    var(--bg);
}

.results-heading {
  max-width: 820px;
}

.results-heading p {
  margin-inline: auto;
}

.results-showcase {
  position: relative;
  width: min(1160px, calc(100% - 36px));
  margin: 42px auto 0;
  padding: 8px 0 110px;
}

.sample-report-scroll {
  width: min(700px, 100%);
  margin: 0 auto;
  overflow-x: visible;
  padding: 8px;
}

.sample-report {
  width: 100%;
  max-width: 690px;
  min-height: 960px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #d8e4e8;
  border-radius: 10px;
  background: #fbfdfe;
  color: #304057;
  box-shadow: 0 28px 80px rgba(14, 35, 51, 0.15);
}

.sample-report-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 18px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #dfe8eb;
}

.report-logo {
  width: 104px;
  height: auto;
}

.sample-report h3 {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: #33445c;
  text-align: center;
  font-size: 1.38rem;
  line-height: 1.2;
}

.report-panel {
  margin-top: 18px;
  border: 1px solid #e0e9ec;
  background: #ffffff;
}

.report-panel h4 {
  margin: 0;
  padding: 12px 18px;
  background: #0799a7;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.report-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0;
  padding: 15px;
  background: #f3f7f8;
}

.report-meta-grid div {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 8px;
  align-items: center;
}

.report-meta-grid dt {
  color: #64728a;
  font-size: 0.78rem;
  font-weight: 500;
  text-align: right;
}

.report-meta-grid dd {
  min-height: 28px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 4px 8px;
  background: #e7e7e7;
  color: #657289;
  font-size: 0.78rem;
  font-weight: 500;
}

.report-title-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: end;
}

.report-title-row h4 {
  min-height: 48px;
  display: flex;
  align-items: center;
}

.scale-legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 32px 8px 20px;
  color: #7c8798;
  font-size: 0.68rem;
  font-weight: 800;
  text-align: center;
}

.metric-list {
  display: grid;
  gap: 15px;
  padding: 18px;
  background: #f5f8f9;
}

.metric-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.metric-row strong {
  display: block;
  color: #32435d;
  font-size: 0.95rem;
  line-height: 1.12;
}

.metric-row small {
  display: block;
  margin-top: 2px;
  color: #4e5d74;
  font-size: 0.76rem;
  font-weight: 750;
}

.metric-track {
  position: relative;
  height: 28px;
}

.metric-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 12px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f2a7a4 0%, #eadfb4 48%, #a9e4da 100%);
}

.metric-track span {
  position: absolute;
  left: var(--score);
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 4px solid #e4dfaa;
  border-radius: 50%;
  background: #ffffff;
  color: #33445c;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(14, 35, 51, 0.08);
}

.metric-track.metric-low span {
  border-color: #f1b7b1;
}

.domain-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  background: #f7fafb;
}

.domain-detail-grid article {
  min-height: 184px;
  padding: 14px;
  border: 1px solid #e0e9ec;
  background: #ffffff;
}

.range-pill {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef3bd;
  color: #40505f;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.range-pill.range-alert {
  background: #ffe0da;
}

.domain-detail-grid strong {
  display: block;
  color: #32435d;
  font-size: 0.96rem;
}

.domain-detail-grid p {
  margin: 8px 0 12px;
  color: #536277;
  font-size: 0.78rem;
  line-height: 1.4;
}

.domain-detail-grid b {
  color: #33445c;
  font-size: 0.85rem;
}

.report-recommendation-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 16px 22px 18px 38px;
  background: #f7fafb;
  color: #4e5d74;
  font-size: 0.82rem;
}

.sample-report-footer {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #dfe8eb;
  color: #7c8798;
  font-size: 0.68rem;
  text-align: center;
}

.report-callout {
  position: absolute;
  width: 230px;
  z-index: 2;
  padding: 16px;
  border: 1px solid rgba(37, 202, 210, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(14, 35, 51, 0.12);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

.report-callout::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 84px;
  height: 2px;
  background: linear-gradient(90deg, rgba(37, 202, 210, 0), var(--turquoise));
}

.report-callout::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--turquoise);
  box-shadow: 0 0 0 6px rgba(37, 202, 210, 0.13);
}

.callout-left {
  left: 0;
}

.callout-left::after {
  right: -84px;
}

.callout-left::before {
  right: -92px;
}

.callout-right {
  right: 0;
}

.callout-right::after {
  left: -84px;
  transform: rotate(180deg);
}

.callout-right::before {
  left: -92px;
}

.callout-details {
  top: 92px;
}

.callout-summary {
  top: 250px;
}

.callout-ranges {
  top: 515px;
}

.callout-domains {
  top: 820px;
}

.callout-pattern {
  top: 1190px;
}

.report-callout span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
}

.report-callout strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.15;
}

.report-callout p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.pillar-card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 26px rgba(14, 35, 51, 0.05);
}

.pillar-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.22;
  font-weight: 950;
}

.pillar-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  justify-items: center;
}

.faq-list {
  width: min(100%, 860px);
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(14, 35, 51, 0.05);
}

.faq-question {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--turquoise-soft);
  color: #087983;
  font-weight: 950;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

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

.faq-answer p {
  margin: 0;
}

.form-section {
  background: linear-gradient(180deg, var(--white), var(--bg));
}

.split-form {
  align-items: start;
}

.lead-form {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 253, 0.98));
  box-shadow: 0 24px 60px rgba(14, 35, 51, 0.12);
}

.form-progress {
  width: min(100%, 300px);
  height: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 0;
  margin: 0 auto 26px;
  position: relative;
  background: transparent !important;
  border-radius: 0;
}

.form-progress::before {
  content: "";
  position: absolute;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  top: 50%;
  height: 2px;
  background: #cbd8de;
  transform: translateY(-50%);
}

.form-progress span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  justify-self: center;
  border: 2px solid #d8e2e6;
  border-radius: 50%;
  background: #f3f7f8;
  color: #71848d;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.95);
}

.form-progress span.is-current {
  background: var(--turquoise);
  border-color: rgba(37, 202, 210, 0.86);
  color: var(--navy);
  box-shadow: 0 0 0 5px rgba(37, 202, 210, 0.14);
}

.form-progress span.is-complete {
  background: var(--button-light);
  border-color: var(--button-light);
  color: var(--white);
}

.lead-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.lead-form legend {
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 600;
  font-size: 1.28rem;
}

.lead-form label {
  display: block;
  margin: 16px 0 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
}

.lead-form label span,
.checkbox-label strong {
  color: var(--turquoise-strong);
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid #cfdee3;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(14, 35, 51, 0.03);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lead-form input:hover,
.lead-form select:hover,
.lead-form textarea:hover {
  border-color: #b7d6dc;
  background: var(--white);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 0;
  border-color: var(--turquoise);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37, 202, 210, 0.16);
}

.native-select-hidden {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
}

.custom-select-control {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid #cfdee3;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.custom-select-control::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.custom-select.is-open .custom-select-control {
  border-color: var(--turquoise);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37, 202, 210, 0.16);
}

.custom-select.is-open .custom-select-control::after {
  transform: rotate(-135deg) translateY(-1px);
}

.custom-select-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  display: none;
  max-height: 250px;
  overflow-y: auto;
  margin: 0;
  padding: 8px;
  border: 1px solid #c8dde2;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(14, 35, 51, 0.14);
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(37, 202, 210, 0.72) rgba(14, 35, 51, 0.08);
}

.custom-select.is-open .custom-select-list {
  display: grid;
  gap: 4px;
}

.custom-select-option {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
  font-weight: 400;
}

.custom-select-option:hover,
.custom-select-option.is-selected {
  background: var(--turquoise-soft);
  color: var(--button-light);
}

.lead-form textarea {
  height: 132px;
  min-height: 132px;
  max-height: 132px;
  resize: none;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(37, 202, 210, 0.72) rgba(14, 35, 51, 0.08);
}

.lead-form textarea::-webkit-scrollbar {
  width: 6px;
}

.lead-form textarea::-webkit-scrollbar-track {
  background: rgba(14, 35, 51, 0.06);
  border-radius: 999px;
}

.lead-form textarea::-webkit-scrollbar-thumb {
  background: rgba(37, 202, 210, 0.78);
  border-radius: 999px;
}

.lead-form input[aria-invalid="true"],
.lead-form select[aria-invalid="true"],
.lead-form textarea[aria-invalid="true"] {
  border-color: #c3424a;
  box-shadow: 0 0 0 3px rgba(195, 66, 74, 0.12);
}

.native-select-hidden[aria-invalid="true"] + .custom-select .custom-select-control {
  border-color: #c3424a;
  box-shadow: 0 0 0 3px rgba(195, 66, 74, 0.12);
}

.checkbox-label {
  display: grid !important;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 18px !important;
  padding: 12px 14px;
  border: 1px solid #d7e5e8;
  border-radius: 12px;
  background: rgba(232, 250, 251, 0.42);
}

.checkbox-label input {
  appearance: none;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(37, 202, 210, 0.72);
  border-radius: 6px;
  background: rgba(37, 202, 210, 0.1);
  display: grid;
  place-items: center;
}

.checkbox-label input::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--turquoise-strong);
  border-bottom: 2px solid var(--turquoise-strong);
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform 140ms ease;
}

.checkbox-label input:checked::before {
  transform: rotate(-45deg) scale(1);
}

.required-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.form-alert,
.form-error {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--rose-soft);
  color: #8d3037;
  font-weight: 800;
}

.form-alert.success {
  background: var(--sage-soft);
  color: #275b47;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.form-actions [data-form-prev] {
  grid-column: 1;
  justify-self: start;
}

.form-actions [data-form-next],
.form-actions [type="submit"] {
  grid-column: 2;
  justify-self: end;
}

.site-footer {
  padding: 56px 0 96px;
  background: var(--navy);
  color: #d7e5e8;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(190px, 0.7fr) minmax(260px, 0.9fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}

.brand-footer {
  color: var(--white);
}

.brand-footer img {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
}

.site-footer p {
  max-width: 430px;
  margin: 12px 0 0;
  color: #d7e5e8;
  font-size: 0.98rem;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

.footer-nav,
.footer-contact-list {
  display: grid;
  gap: 10px;
}

.footer-nav a,
.footer-contact-list span {
  color: #d7e5e8;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
}

.footer-nav a:hover {
  color: var(--turquoise);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--turquoise);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 202, 210, 0.56);
  background: rgba(37, 202, 210, 0.12);
  color: var(--turquoise);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}

.reveal-on-scroll.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

.domain-card,
.pillar-card,
.faq-item,
.process-step,
.tab-button,
.lead-form,
.sample-report {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.reveal-on-scroll.domain-card,
.reveal-on-scroll.pillar-card,
.reveal-on-scroll.faq-item,
.reveal-on-scroll.process-step,
.reveal-on-scroll.tab-button,
.reveal-on-scroll.lead-form,
.reveal-on-scroll.sample-report {
  transition:
    opacity 620ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms),
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.domain-card:hover,
.pillar-card:hover,
.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 202, 210, 0.36);
  box-shadow: 0 16px 34px rgba(14, 35, 51, 0.09);
}

.sticky-cta {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 45;
}

.sticky-cta .button {
  width: 100%;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: auto;
  bottom: 24px;
  z-index: 3000;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
}

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

.cookie-card {
  position: relative;
  width: min(620px, calc(100vw - 48px));
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 22px;
  border: 1px solid rgba(37, 202, 210, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 70px rgba(13, 40, 56, 0.16);
  pointer-events: auto;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1rem;
}

.cookie-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(37, 202, 210, 0.12);
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-details {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  background: var(--soft);
}

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

.cookie-details label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--navy);
  font-weight: 700;
}

.cookie-details small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 13px;
  font-size: 0.88rem;
}

.footer-cookie-link {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.footer-cookie-link:hover {
  color: var(--turquoise);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

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

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 35, 51, 0.72);
  backdrop-filter: blur(6px);
}

.video-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.video-panel h2 {
  margin: 0 96px 14px 0;
  color: var(--navy);
  font-size: 1.2rem;
}

.video-panel video {
  width: 100%;
  max-height: min(72vh, 720px);
  border-radius: var(--radius-md);
  background: var(--navy);
}

.video-close,
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

@media (min-width: 1601px) {
  .hero-image {
    width: 112%;
    max-width: none;
    transform: none;
  }

  .hero-content {
    width: min(1240px, calc(100% - 56px));
  }

  .hero h1 {
    max-width: min(800px, 48vw);
    font-size: 3.8rem;
  }

  .hero-lead {
    max-width: min(760px, 46vw);
  }
}

@media (min-width: 1201px) and (max-width: 1600px) {
  .hero-image {
    object-position: 42% center;
  }

  .hero h1 {
    max-width: min(700px, 50vw);
    font-size: 3.65rem;
  }

  .hero-lead {
    max-width: min(680px, 50vw);
  }
}

@media (min-width: 1061px) and (max-width: 1200px) {
  .hero-image {
    object-position: 46% center;
  }

  .shell {
    width: min(var(--max-width), calc(100% - 96px));
    max-width: calc(100% - 96px);
  }

  .nav-shell {
    width: min(var(--nav-max-width), calc(100% - 88px));
    max-width: calc(100% - 88px);
  }

  .hero h1 {
    max-width: min(580px, 50vw);
    font-size: 3.42rem;
  }

  .hero-lead {
    max-width: min(600px, 54vw);
  }

  .section-copy {
    max-width: 680px;
  }

  .section-heading.align-left {
    max-width: 840px;
  }

  .results-showcase {
    width: min(1080px, calc(100% - 96px));
  }
}

@media (max-width: 1060px) {
  .hero-image {
    object-position: 50% center;
  }

  .hero h1 {
    max-width: 560px;
    font-size: 3.75rem;
  }

  .section h2 {
    font-size: 2.55rem;
  }

  .section-heading {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .section-heading.align-left {
    margin-inline: auto;
    text-align: center;
  }

  .section-copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

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

  .split,
  .process-detail,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-form {
    justify-items: center;
  }

  .lead-form {
    width: min(100%, 760px);
  }

  #neurovida .split-image {
    grid-template-columns: 1fr;
    justify-items: center;
    position: relative;
    max-width: 860px;
    min-height: 680px;
    display: grid;
    align-items: center;
    padding: clamp(44px, 7vw, 78px);
    overflow: hidden;
    border: 1px solid rgba(199, 223, 229, 0.82);
    border-radius: 22px;
    background-image:
      linear-gradient(90deg, rgba(245, 247, 248, 0.9) 0%, rgba(245, 247, 248, 0.78) 44%, rgba(232, 250, 251, 0.6) 72%, rgba(245, 247, 248, 0.5) 100%),
      url("assets/neurovida-team-selected-640.webp");
    background-size: cover;
    background-position: center 20%;
    box-shadow: 0 24px 68px rgba(14, 35, 51, 0.1);
  }

  #neurovida .media-frame {
    display: none;
  }

  #neurovida .media-frame img {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  #neurovida .section-copy {
    position: relative;
    z-index: 1;
    max-width: 680px;
    text-align: left;
    margin-inline: 0 auto;
  }

  #neurovida .section-copy p {
    color: #405663;
  }

  #neurovida .pillar-grid {
    max-width: 680px;
    margin-inline: auto;
  }

  .brain-section .split {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .brain-section .section-copy {
    max-width: 760px;
    text-align: center;
  }

  .hero-protocols {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(var(--max-width), calc(100% - 40px));
    max-width: calc(100% - 40px);
    margin: 34px auto 0;
    align-self: end;
  }

  .protocol-logo-row {
    justify-content: center;
    gap: clamp(22px, 3.1vw, 46px);
    padding: 20px 8px 26px;
  }

  .logo-acp {
    height: 64px;
  }

  .logo-ucp {
    height: 70px;
    max-width: min(22vw, 230px);
  }

  .logo-cuf {
    height: 52px;
  }

  .logo-germano {
    height: 48px;
    max-width: min(20vw, 205px);
  }

  .results-showcase {
    display: block;
    width: min(900px, calc(100% - 40px));
    padding-bottom: 44px;
  }

  .report-callout {
    position: absolute;
    top: auto;
    width: min(232px, calc(100% - 24px));
    max-width: 232px;
    margin: 0;
    z-index: 6;
    padding: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(0.98);
    transition: opacity 260ms ease, transform 260ms ease;
  }

  .report-callout.is-visible {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  .report-callout.is-visible.is-mobile-active {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .callout-left {
    left: 8px;
    right: auto;
  }

  .callout-right {
    right: 8px;
    left: auto;
  }

  .report-callout::before,
  .report-callout::after {
    display: none;
  }

  .loose-media img {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .brain-visual {
    min-height: 520px;
  }

  .brain-visual img {
    width: min(100%, 520px);
    max-height: 660px;
  }

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

@media (max-width: 800px) {
  .hero-overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0.08) 82%, rgba(255, 255, 255, 0) 100%);
  }

  .hero-protocols {
    bottom: 12px;
  }

  .hero-content {
    padding-bottom: 132px;
  }
}

@media (max-width: 1020px) {
  .site-header {
    position: fixed;
    top: 10px;
  }

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

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 96px 24px 32px;
    border: 0;
    border-radius: 0;
    background: var(--white);
    box-shadow: none;
  }

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

  body.menu-open .sticky-cta {
    display: none !important;
  }

  .main-nav a {
    width: min(100%, 320px);
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 1.02rem;
  }

  .main-nav .button {
    justify-content: center;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.4);
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

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

  .shell {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }

  .nav-shell {
    min-height: 62px;
    padding: 8px 10px 8px 14px;
    border-radius: 18px;
  }

  .menu-toggle {
    --menu-line-width: 17px;
    --menu-line-offset: 5px;
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    padding: 0;
    line-height: 1;
  }

  .menu-toggle span:not(.sr-only) {
    width: 17px;
    height: 2px;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 96px 24px 32px;
    border: 0;
    border-radius: 0;
    background: var(--white);
    box-shadow: none;
  }

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

  body.menu-open .sticky-cta {
    display: none !important;
  }

  .main-nav a {
    width: min(100%, 320px);
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 1.02rem;
  }

  .main-nav .button {
    justify-content: center;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.4);
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .hero {
    min-height: max(720px, 100svh);
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0.08) 82%, rgba(255, 255, 255, 0) 100%);
  }

  .hero-content {
    padding: 112px 0 128px;
  }

  .hero h1 {
    max-width: 14ch;
    font-size: 2.35rem;
  }

  .hero-lead {
    max-width: 32ch;
    font-size: 1.05rem;
  }

  .hero-actions {
    width: auto;
    max-width: 100%;
  }

  .hero-actions .button,
  .hero-actions .video-button {
    flex: 0 0 auto;
    width: auto;
  }

  .hero-protocols {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 12px;
    width: auto;
    max-width: none;
    margin: 0;
    padding-bottom: 0;
  }

  .protocol-logo-row {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: visible;
    padding: 0;
    background: transparent;
    scrollbar-width: none;
  }

  .protocol-logo-row::-webkit-scrollbar {
    display: none;
  }

  .protocol-logo {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  .logo-acp {
    height: 34px;
  }

  .logo-ucp {
    height: 38px;
    max-width: none;
  }

  .logo-cuf {
    height: 30px;
  }

  .logo-germano {
    height: 25px;
    max-width: none;
  }

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

  .quick-start-panel {
    min-height: 0;
  }

  .assessment-modal {
    padding: 12px;
    place-items: start center;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .assessment-dialog {
    width: min(460px, 100%);
    height: auto;
    min-height: 0;
    max-height: calc(100svh - 24px);
    margin: 0 auto;
    overflow: auto;
    padding: 22px;
    border-radius: 16px;
  }

  .assessment-form {
    height: auto;
    grid-template-rows: none;
  }

  .assessment-topline {
    padding-right: 96px;
  }

  .assessment-body {
    overflow: visible;
    padding-right: 0;
  }

  .assessment-actions {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .assessment-actions .button {
    width: auto;
    min-width: 124px;
    min-height: 56px;
    padding-inline: 18px;
    white-space: normal;
  }

  .assessment-form h3 {
    font-size: 1.42rem;
  }

  .assessment-options,
  .condition-group .assessment-options,
  .domain-grid,
  .process-flow,
  .step-grid,
  .audience-panel,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .process-flow {
    gap: 12px;
    margin-top: 24px;
  }

  .process-line {
    top: 26px;
    bottom: 26px;
    left: 27px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, rgba(37, 202, 210, 0.18), var(--turquoise), rgba(37, 202, 210, 0.18));
  }

  .process-step {
    min-height: 0;
    grid-template-columns: 60px 1fr;
    column-gap: 12px;
    padding: 16px;
  }

  .process-step strong,
  .process-step small {
    grid-column: 2;
  }

  .process-number {
    grid-row: 1 / 4;
  }

  .process-detail {
    padding: 20px;
  }

  .process-detail h3 {
    font-size: 1.35rem;
  }

  .section {
    padding: 66px 0;
  }

  .section h2 {
    font-size: 2.15rem;
  }

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

  .brain-visual {
    min-height: 420px;
  }

  .brain-visual img {
    width: min(100%, 430px);
    max-height: 520px;
  }

  .neural-animation {
    inset: 7% 1%;
  }

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

  .results-showcase {
    display: block;
    width: calc(100% - 40px);
    padding-bottom: 44px;
  }

  .report-callout {
    position: absolute;
    top: auto;
    width: min(232px, calc(100% - 24px));
    max-width: 232px;
    margin: 0;
    z-index: 6;
    padding: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(0.98);
    transition: opacity 260ms ease, transform 260ms ease;
  }

  .report-callout.is-visible {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  .report-callout.is-visible.is-mobile-active {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .results-showcase:not(.report-ready) .report-callout.is-visible.is-mobile-active {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  .callout-left {
    left: 8px;
    right: auto;
  }

  .callout-right {
    right: 8px;
    left: auto;
  }

  .sample-report-scroll {
    width: 100%;
    overflow-x: visible;
    padding: 6px 0 12px;
  }

  .sample-report {
    width: 100%;
    min-height: 0;
    padding: 16px;
  }

  .sample-report-top {
    grid-template-columns: 1fr;
  }

  .report-badge {
    justify-self: start;
  }

  .sample-report h3 {
    text-align: left;
    font-size: 1.35rem;
  }

  .report-meta-grid {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .report-meta-grid div {
    grid-template-columns: 0.84fr 1fr;
  }

  .report-title-row,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .scale-legend {
    padding: 8px 16px 0;
  }

  .metric-list {
    padding: 14px;
  }

  .metric-row {
    gap: 8px;
  }

  .metric-track {
    margin: 4px 0 12px;
  }

  .domain-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .domain-card,
  .step-card {
    min-height: 0;
  }

  .lead-form {
    padding: 20px;
  }

  .sticky-cta {
    display: none !important;
  }

  .sticky-cta.is-visible {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 1.95rem;
  }

  .section h2 {
    font-size: 1.9rem;
  }

  .button {
    width: auto;
    padding-inline: 14px;
  }

  .assessment-actions .button {
    width: auto;
    min-width: 112px;
  }

  .form-actions .button {
    width: auto;
    min-width: 112px;
  }

}

@media (max-width: 760px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cookie-card {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 18px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .neural-line,
  .neural-dot,
  .neural-label,
  .reveal-on-scroll {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
