:root {
  --primary: #082a63;
  --primary-hover: #06214f;
  --accent: #b98a3d;
  --accent-hover: #9f7430;
  --success: #15803d;
  --warning: #b45309;
  --error: #b91c1c;
  --info: #2097e8;
  --btn-primary-bg: #082a63;
  --btn-primary-hover: #06214f;
  --btn-secondary-bg: #ffffff;
  --btn-secondary-hover-bg: #ffffff;
  --btn-secondary-border: #c7d1de;
  --btn-secondary-hover-border: #adbacc;
  --btn-secondary-text: #082a63;
  --btn-shadow: 0 2px 6px rgba(8, 42, 99, 0.1);

  --bg: #f3f4f6;
  --surface: #ffffff;
  --surface-alt: #f5f8fc;
  --border: #d7deea;
  --divider: #c4cfdf;
  --text-primary: #082a63;
  --text-secondary: #5e6f86;
  --text-muted: #7c8ba0;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --shadow-sm: 0 4px 14px rgba(8, 26, 58, 0.08);
  --shadow-md: 0 12px 28px rgba(8, 26, 58, 0.14);
  --transition: 180ms ease-out;
  --header-offset: 5.2rem;
  --section-space: 2.45rem;
  --section-space-mobile: 1.7rem;
  --section-shell-pad: clamp(1.6rem, 2.6vw, 2.35rem);
  --content-line-offset: clamp(1rem, 6vw, 6.5rem);

  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

section[id],
footer[id] {
  scroll-margin-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: "Open Sauce One", "Segoe UI", Tahoma, sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
strong {
  font-family: "Open Sauce One", "Segoe UI", Tahoma, sans-serif;
  letter-spacing: -0.02em;
}

.app-shell {
  position: relative;
  overflow-x: clip;
  min-height: 100vh;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(221, 227, 236, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221, 227, 236, 0.55) 1px, transparent 1px),
    linear-gradient(rgba(201, 211, 225, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 211, 225, 0.35) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px, 96px 96px, 96px 96px;
  background-attachment: fixed, fixed, fixed, fixed;
}

.app-shell::before,
.app-shell::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

.app-shell::before {
  width: 28rem;
  height: 28rem;
  top: -10rem;
  right: -7rem;
  background: radial-gradient(circle, rgba(63, 95, 209, 0.18), rgba(63, 95, 209, 0));
}

.app-shell::after {
  width: 26rem;
  height: 26rem;
  bottom: -9rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(0, 9, 90, 0.14), rgba(0, 9, 90, 0));
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(90deg, #071832, #0b2246);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(7, 24, 50, 0.3);
  transition: background-color 220ms ease-out, box-shadow 220ms ease-out, border-color 220ms ease-out;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(210, 225, 246, 0.42);
  background: linear-gradient(90deg, rgba(6, 21, 43, 0.96), rgba(10, 35, 72, 0.94));
  box-shadow: 0 12px 30px rgba(6, 20, 40, 0.42);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #53a8ff, #8fd5ff);
  transform-origin: left;
  transform: scaleX(var(--scroll-progress, 0));
  transition: transform 100ms linear;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  width: clamp(210px, 26vw, 320px);
  min-width: 190px;
}

.brand-logo {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  padding: 0;
  display: block;
}

.site-nav {
  margin-left: clamp(0.8rem, 2vw, 1.8rem);
  margin-right: clamp(0.5rem, 1.5vw, 1.4rem);
  display: flex;
  align-items: center;
  flex: 1;
  max-width: none;
  justify-content: flex-start;
  gap: 0.5rem;
}

.site-nav a {
  color: #d6e2f8;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex: 0 0 auto;
  text-align: left;
  white-space: nowrap;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  transition: background-color var(--transition), color var(--transition);
}

.site-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.site-nav a.active-link {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.26);
}

.nav-cta {
  margin-left: 0.6rem;
}

.menu-toggle {
  display: none;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  border: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  background: rgba(4, 14, 32, 0.42);
  backdrop-filter: blur(2px);
  transition: opacity 180ms ease-out;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.section {
  padding: var(--section-space) 0;
}

.section > .container {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
  padding-block: var(--section-shell-pad);
  padding-inline: calc(var(--section-shell-pad) + var(--content-line-offset));
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--info);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  max-width: 18ch;
  line-height: 1.08;
}

h1 span {
  display: block;
  color: var(--primary);
}

h2 {
  font-size: clamp(1.52rem, 2.8vw, 2.3rem);
  margin: 0 0 1.1rem;
  line-height: 1.15;
  max-width: 24ch;
}

h3 {
  margin: 0 0 0.7rem;
  font-size: 1.1rem;
}

.hero {
  padding: 0;
}

.hero > .container {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-grid {
  display: block;
}

.hero-content,
.surface-block,
.card,
.metric-card,
.steps li,
.site-footer {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.hero-content {
  position: relative;
  isolation: isolate;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-height: clamp(560px, 68vw, 860px);
  overflow: visible;
  padding: clamp(1.35rem, 2.8vw, 2.35rem);
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-image: url("assets/images/Log in.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(92deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.84) 28%, rgba(255, 255, 255, 0.58) 48%, rgba(255, 255, 255, 0.2) 64%, rgba(255, 255, 255, 0) 76%),
    radial-gradient(84% 76% at 9% 22%, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.58) 34%, rgba(255, 255, 255, 0.18) 56%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(62% 58% at 11% 58%, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0.14) 42%, rgba(255, 255, 255, 0) 66%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 56%, rgba(0, 0, 0, 0.78) 68%, rgba(0, 0, 0, 0) 84%);
  mask-image: linear-gradient(90deg, #000 0%, #000 56%, rgba(0, 0, 0, 0.78) 68%, rgba(0, 0, 0, 0) 84%);
}

.hero-content::after {
  content: "";
  position: absolute;
  left: clamp(0.4rem, 1.4vw, 1rem);
  top: clamp(0.45rem, 1.4vw, 1rem);
  bottom: clamp(0.85rem, 1.8vw, 1.45rem);
  width: min(62%, 760px);
  z-index: 2;
  pointer-events: none;
  border-radius: clamp(0.85rem, 2.2vw, 1.2rem);
  background: radial-gradient(92% 88% at 12% 30%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 82%);
  filter: blur(12px);
  opacity: 0.78;
}

.hero-content > * {
  position: relative;
  z-index: 3;
}

.hero-content > h1,
.hero-content > .hero-subheadline,
.hero-content > .hero-support,
.hero-content > .hero-actions,
.hero-content > .trust-bar {
  margin-left: var(--content-line-offset);
}

.hero-content > .hero-subheadline,
.hero-content > .hero-support,
.hero-content > .trust-bar {
  max-width: min(60ch, 56%);
}

.hero-subheadline {
  max-width: 58ch;
  color: #203352;
  font-size: 1.04rem;
  margin: 1.05rem 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82), 0 10px 24px rgba(255, 255, 255, 0.32);
}

.hero-support {
  color: #243a5d;
  border-left: 3px solid #6788b8;
  padding-left: 1rem;
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-content h1 {
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.86), 0 16px 34px rgba(255, 255, 255, 0.42);
}

.hero-support p {
  margin: 0.15rem 0;
}

.support-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(4, 16, 38, 0.58);
}

.support-modal.is-open {
  display: flex;
}

.support-modal-panel {
  width: min(840px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  border-radius: 1rem;
  border: 1px solid #cfdaea;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 22px 44px rgba(6, 29, 66, 0.28);
  padding: clamp(1.1rem, 2.6vw, 1.7rem);
}

.support-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.support-modal-head h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.support-modal-close {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.6rem;
  border: 1px solid #cad6e8;
  background: #ffffff;
  color: #1a3970;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.support-modal-intro {
  margin: 0.7rem 0 1rem;
  color: #3c5578;
}

.support-plan-form {
  display: grid;
  gap: 0.95rem;
}

.support-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.support-plan-form label {
  display: grid;
  gap: 0.38rem;
  color: #254570;
  font-size: 0.84rem;
  font-weight: 600;
}

.support-fieldset {
  margin: 0;
  border: 1px solid #d6e0ef;
  border-radius: 0.85rem;
  padding: 0.85rem 0.9rem;
  background: #ffffff;
}

.support-fieldset legend {
  padding: 0 0.35rem;
  color: #1d3d6a;
  font-size: 0.83rem;
  font-weight: 700;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.9rem;
  margin-top: 0.2rem;
}

.support-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #2d4a74;
  font-weight: 500;
}

.support-options input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin: 0;
}

.support-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.support-form-success {
  min-height: 1.1rem;
  margin: 0;
  color: #0d5e2e;
  font-size: 0.83rem;
  font-weight: 600;
}

.support-form-success.error {
  color: #a12020;
}

.support-toast {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  z-index: 360;
  background: rgba(8, 20, 42, 0.38);
  pointer-events: none;
}

.support-toast[hidden] {
  display: none;
}

.support-toast .support-confirmation {
  width: min(760px, calc(100vw - 2.4rem));
  pointer-events: auto;
  border: 1px solid #d7e4f4;
  box-shadow: 0 24px 60px rgba(6, 29, 66, 0.3);
}

.support-confirmation {
  display: none;
  gap: 0.75rem;
  padding: 0 1.35rem 1.35rem;
  border-radius: 1.1rem;
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  text-align: center;
  overflow: hidden;
}

.support-confirmation.is-visible {
  display: grid;
}

.support-confirmation-header {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  margin: 0 -1.35rem 0.75rem;
  padding: 0.95rem 1rem 0.9rem;
  background: linear-gradient(90deg, #071832, #0b2246);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.support-confirmation-logo {
  width: clamp(170px, 28vw, 240px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.support-confirmation-badge {
  width: fit-content;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(32, 151, 232, 0.12);
  color: #1a5d99;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-confirmation h3 {
  margin: 0;
  color: #f3f8ff;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
}

.support-confirmation-copy {
  margin: 0.2rem auto 0;
  max-width: 66ch;
  color: #23476f;
  line-height: 1.72;
  font-size: 1.03rem;
}

.support-confirmation-subcopy {
  margin: 0.15rem auto 0;
  padding: 0.7rem 0.85rem;
  max-width: 66ch;
  border: 1px solid #d6e4f6;
  border-radius: 0.8rem;
  background: #fbfdff;
  color: #486588;
  font-size: 0.9rem;
  line-height: 1.55;
}

.support-confirmation-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.support-confirmation-meta > div {
  padding: 0.8rem 0.85rem;
  border: 1px solid #d6e0ef;
  border-radius: 0.85rem;
  background: #ffffff;
}

.support-confirmation-meta span {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.76rem;
  color: #6b7f98;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support-confirmation-meta strong {
  color: #173963;
}

.support-confirmation-summary {
  display: grid;
  gap: 0.7rem;
  padding: 0.95rem;
  border-radius: 0.9rem;
  border: 1px solid #dce5f1;
  background: #ffffff;
}

.support-confirmation-summary .summary-row {
  display: grid;
  gap: 0.15rem;
}

.support-confirmation-summary .summary-row span {
  font-size: 0.76rem;
  color: #6b7f98;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support-confirmation-summary .summary-row strong,
.support-confirmation-summary .summary-row p {
  margin: 0;
  color: #223f67;
}

.support-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.hero-actions.stack {
  flex-direction: column;
}

.section-cta {
  margin-top: 1.15rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.76rem 1.25rem;
  border-radius: 0.9rem;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  text-decoration: none;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  box-shadow: var(--btn-shadow);
}

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

.btn:focus-visible {
  outline: 2px solid rgba(18, 59, 116, 0.35);
  outline-offset: 2px;
}

.btn-primary {
  color: #fff;
  background: var(--btn-primary-bg);
  border-color: var(--btn-primary-bg);
}

.btn-primary:hover {
  background: var(--btn-primary-hover);
  border-color: var(--btn-primary-hover);
}

.demo-btn {
  color: #ffffff;
  background: linear-gradient(180deg, #174785, #123b74);
  border-color: #123b74;
  box-shadow: 0 10px 22px rgba(10, 34, 72, 0.26);
}

.demo-btn:hover {
  color: #ffffff;
  background: linear-gradient(180deg, #123b74, #0e2f5d);
  border-color: #0e2f5d;
  box-shadow: 0 12px 24px rgba(10, 34, 72, 0.32);
}

.btn-secondary {
  color: var(--btn-secondary-text);
  background: var(--btn-secondary-bg);
  border-color: var(--btn-secondary-border);
}

.btn-secondary:hover {
  color: var(--btn-secondary-text);
  border-color: var(--btn-secondary-hover-border);
  background: var(--btn-secondary-hover-bg);
}

.trust-bar {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trust-bar li {
  position: relative;
  padding: 0.45rem 0.7rem 0.45rem 1.5rem;
  font-size: 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: #2b4061;
  background: rgba(255, 255, 255, 0.9);
}

.trust-bar li::before {
  content: "\2713";
  position: absolute;
  left: 0.6rem;
  color: var(--success);
  font-weight: 700;
}

.trust-bar .trust-row-break {
  flex-basis: 100%;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.trust-bar .trust-row-break::before {
  content: none;
}

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

.metric-card {
  border-radius: var(--radius-md);
  padding: 0.82rem;
  border-top: 2px solid rgba(15, 76, 129, 0.26);
}

.metric-card .label {
  display: block;
  color: var(--text-muted);
  font-size: 0.76rem;
}

.metric-card strong {
  display: block;
  font-size: 1.5rem;
  margin: 0.15rem 0 0.3rem;
  font-variant-numeric: tabular-nums;
}

.social-proof {
  padding-top: 1.4rem;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.logo-row {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}

.logo-set {
  display: flex;
  gap: 0.7rem;
  padding-right: 0.7rem;
}

.logo-marquee:hover .logo-row {
  animation-play-state: paused;
}

.logo-row span {
  flex: 0 0 auto;
  min-width: 10.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 600;
}

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

.section-head {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.45rem;
}

.outcomes .container {
  position: relative;
  padding: clamp(1.5rem, 2.6vw, 2.3rem);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.outcomes .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, #0f2e63, #2e5ca3, #7ea1d8);
}

.outcomes h2 {
  max-width: none;
  white-space: nowrap;
  margin-bottom: 0;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.outcome-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: var(--shadow-sm);
  padding: 1.1rem;
  display: grid;
  gap: 0.35rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.outcome-card span {
  font-size: 0.75rem;
  color: #5f79a3;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.outcome-card strong {
  display: block;
  margin: 0.2rem 0 0.15rem;
  font-size: 1.9rem;
  color: #0f2e63;
  line-height: 1;
}

.outcome-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #395170;
}

.outcome-problem {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid #d8e2f1;
}

.outcome-problem h2 {
  margin-bottom: 1rem;
  max-width: 18ch;
}

.outcome-problem .lead {
  max-width: 74ch;
  color: #3a5272;
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
}

.outcome-problem .lead + .lead {
  margin-top: 1rem;
  font-weight: 600;
  color: #223e67;
}

.trend {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.trend.up {
  color: var(--success);
}

.trend.neutral {
  color: var(--warning);
}

.lead {
  color: var(--text-secondary);
  max-width: 76ch;
}

.visibility-section .container {
  position: relative;
  padding: clamp(1.5rem, 2.6vw, 2.4rem);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.visibility-section .container::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  bottom: 1.35rem;
  left: 0;
  width: 5px;
  border-radius: 0 6px 6px 0;
  background: linear-gradient(180deg, #0f2e63, #3d70ba);
}

.visibility-section .two-col {
  gap: 1.6rem;
}

.visibility-section h2 {
  margin-bottom: 1rem;
  max-width: 20ch;
}

.visibility-section p {
  color: #3a5272;
  line-height: 1.65;
}

.visibility-section .surface-block {
  border: 1px solid #d5deed;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.15rem, 2vw, 1.5rem);
}

.visibility-section .surface-block h3 {
  margin-bottom: 0.9rem;
}

.visibility-section .gain-list {
  gap: 0.85rem;
}

.visibility-section .gain-list > div {
  border: 1px solid #dce4f1;
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 0.85rem 0.9rem;
}

.visibility-section .gain-list h4 {
  margin: 0 0 0.45rem;
  color: #1f3d66;
}

.visibility-section .gain-list li {
  color: #3e5678;
  margin-bottom: 0.2rem;
}

.mav-section .container {
  position: relative;
  padding: clamp(1.6rem, 2.8vw, 2.5rem);
  background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 38%, rgba(248, 251, 255, 0.22) 66%, rgba(248, 251, 255, 0.0) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mav-section .mav-split {
  min-height: 580px;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: clamp(1rem, 2.2vw, 1.8rem);
  align-items: stretch;
}

.mav-section .mav-visual {
  overflow: hidden;
}

.mav-section .mav-visual img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  display: block;
  object-fit: cover;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.mav-section .mav-content {
  display: flex;
  flex-direction: column;
}

.mav-section .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, #0f2e63, #2d5da4, #7da0d6);
}

.mav-section h2 {
  margin-bottom: 0.95rem;
  max-width: none;
  white-space: normal;
}

.mav-section .lead {
  color: #395171;
  line-height: 1.68;
  max-width: none;
  margin: 0;
}

.mav-section .capability-grid {
  margin-top: 1.25rem;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  align-items: stretch;
}

.mav-section .card {
  border: 1px solid #d8e1ee;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  min-height: 186px;
  display: flex;
  flex-direction: column;
}

.mav-section .card h4 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  color: #17365f;
}

.mav-icon {
  width: 1.55rem;
  height: 1.55rem;
  min-width: 1.55rem;
  border-radius: 0.45rem;
  border: 1px solid #b7c8e3;
  background: #edf4ff;
  display: inline-grid;
  place-items: center;
  color: #1e4f95;
}

.mav-icon svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mav-section .card p {
  margin: 0;
  color: #3d5678;
  line-height: 1.58;
}

.blackbox-section .container {
  position: relative;
  padding: clamp(0.6rem, 1.4vw, 1.1rem) clamp(1.55rem, 2.8vw, 2.45rem) clamp(7.6rem, 14vw, 12rem);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.blackbox-section .blackbox-feature {
  position: relative;
  isolation: isolate;
  min-height: clamp(460px, 54vw, 720px);
  background-image: url("assets/images/Samples with white background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  transition: box-shadow 220ms ease-out, transform 220ms ease-out, filter 220ms ease-out;
}

.blackbox-section .blackbox-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(96deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.66) 28%, rgba(255, 255, 255, 0.36) 44%, rgba(255, 255, 255, 0.1) 56%, rgba(255, 255, 255, 0) 68%),
    radial-gradient(84% 78% at 12% 24%, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.28) 34%, rgba(255, 255, 255, 0.08) 54%, rgba(255, 255, 255, 0) 70%),
    radial-gradient(62% 56% at 12% 70%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0) 66%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 46%, rgba(0, 0, 0, 0.66) 58%, rgba(0, 0, 0, 0) 72%);
  mask-image: linear-gradient(90deg, #000 0%, #000 46%, rgba(0, 0, 0, 0.66) 58%, rgba(0, 0, 0, 0) 72%);
}

.blackbox-section .blackbox-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.44;
  background-image: url("assets/images/Samples with white background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 22%, rgba(0, 0, 0, 0.28) 36%, rgba(0, 0, 0, 0.72) 52%, #000 64%, #000 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 22%, rgba(0, 0, 0, 0.28) 36%, rgba(0, 0, 0, 0.72) 52%, #000 64%, #000 100%);
  transition: opacity 220ms ease-out;
}

.blackbox-section .blackbox-feature:hover {
  transform: translateY(-1px);
  filter: saturate(1.02) contrast(1.01);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(7, 26, 56, 0.26),
    0 14px 28px rgba(7, 26, 56, 0.18);
}

.blackbox-section .blackbox-feature:hover::after {
  opacity: 0.52;
}

.blackbox-section .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, #163d75, #2f65b3, #7ea5dc);
}

.blackbox-section h2 {
  margin-bottom: 0.75rem;
  max-width: 18ch;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.96), 0 18px 38px rgba(255, 255, 255, 0.62);
}

.blackbox-section p {
  color: #3a5374;
  line-height: 1.64;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 24px rgba(255, 255, 255, 0.42);
}

.blackbox-section .check-list {
  margin-top: 1.05rem;
  gap: 0.62rem;
}

.blackbox-section .check-list li {
  color: #1f3f67;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 20px rgba(255, 255, 255, 0.4);
}

.blackbox-section .blackbox-main {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: min(64ch, 66%);
  padding: clamp(1.4rem, 3.6vw, 2.8rem) 0 clamp(2.4rem, 5.2vw, 4.1rem);
}

.blackbox-section .blackbox-copy-panel {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.66));
  box-shadow: 0 18px 34px rgba(8, 24, 52, 0.2);
  backdrop-filter: blur(2px);
  padding: clamp(1rem, 2vw, 1.25rem);
}

@media (min-width: 1200px) {
  .blackbox-section .blackbox-feature::before {
    background:
      linear-gradient(96deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.76) 20%, rgba(255, 255, 255, 0.52) 36%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.14) 62%, rgba(255, 255, 255, 0.04) 72%, rgba(255, 255, 255, 0) 82%),
      radial-gradient(82% 74% at 12% 24%, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.34) 30%, rgba(255, 255, 255, 0.16) 48%, rgba(255, 255, 255, 0.05) 62%, rgba(255, 255, 255, 0) 78%),
      radial-gradient(64% 56% at 12% 70%, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.12) 42%, rgba(255, 255, 255, 0.03) 56%, rgba(255, 255, 255, 0) 72%);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 54%, rgba(0, 0, 0, 0.78) 66%, rgba(0, 0, 0, 0.28) 74%, rgba(0, 0, 0, 0) 82%);
    mask-image: linear-gradient(90deg, #000 0%, #000 54%, rgba(0, 0, 0, 0.78) 66%, rgba(0, 0, 0, 0.28) 74%, rgba(0, 0, 0, 0) 82%);
  }

  .blackbox-section .blackbox-copy-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.62));
  }
}

.blackbox-section .result-box {
  border: 1px solid #d8e2f0;
  background: linear-gradient(165deg, #ffffff, #f4f8ff);
  box-shadow: var(--shadow-sm);
}

.blackbox-section .result-box h3 {
  color: #173a69;
}

.services-section .container {
  position: relative;
  padding: clamp(1.55rem, 2.8vw, 2.45rem);
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.services-section .container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4rem;
  bottom: 1.4rem;
  width: 5px;
  border-radius: 0 6px 6px 0;
  background: linear-gradient(180deg, #173f77, #2f63ae);
}
.services-section h2 {
  max-width: none;
  white-space: nowrap;
  margin-bottom: 1.05rem;
}

.outcome-count {
  display: inline-flex;
  align-items: baseline;
  min-width: 4ch;
}

.services-section .service-grid {
  gap: 1.1rem;
}

.services-section .section-cta.center {
  margin-top: 1.45rem;
}

.services-section .card {
  border: 1px solid #d8e1ef;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  min-height: 188px;
}

.services-section .card h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
  color: #153863;
}

.services-section .card .service-icon {
  display: inline-flex;
  width: 1.1rem;
  height: 1.1rem;
  align-items: center;
  justify-content: center;
  color: #173f77;
  font-size: 0.9rem;
  line-height: 1;
  font-family: "Segoe UI Symbol", "Noto Sans Symbols 2", "Open Sauce One", sans-serif;
  font-variant-emoji: text;
}

.services-section .card .service-icon-blue {
  color: #1f5aa6;
}

.services-section .card .service-icon-svg {
  font-size: 0;
}

.services-section .card .service-icon-svg svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-section .card li {
  color: #3a5477;
  margin-bottom: 0.22rem;
}

.process-section-embedded {
  margin-top: clamp(1.45rem, 3vw, 2rem);
  padding-top: clamp(1.35rem, 2.8vw, 1.95rem);
  border-top: 1px solid #d8e2f1;
}

.process-section-embedded h2 {
  margin-bottom: 0.95rem;
}

.process-section-embedded .steps {
  margin-top: 1rem;
  gap: 1rem;
}

.process-section-embedded .steps li {
  min-height: 100%;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-color: #d8e2f0;
  box-shadow: 0 10px 24px rgba(19, 45, 82, 0.07);
}

.process-section .container {
  position: relative;
  padding: clamp(1.55rem, 2.8vw, 2.4rem);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.process-section .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, #12366a, #2f62ad, #7fa5dc);
}

.process-section h2 {
  margin-bottom: 1.1rem;
}

.process-section .steps {
  counter-reset: process-step;
  gap: 1.05rem;
}

.process-section .steps li {
  position: relative;
  border: 1px solid #d9e2ef;
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  padding: 1rem 1rem 1rem 3.05rem;
}

.process-section .steps li::before {
  counter-increment: process-step;
  content: counter(process-step);
  position: absolute;
  top: 0.92rem;
  left: 1rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.78rem;
  color: #ffffff;
  background: #1f62c9;
}

.process-section .steps h3 {
  margin-bottom: 0.45rem;
  color: #183b69;
}

.process-section .steps p {
  margin: 0;
  color: #3a5477;
}

.compare-section .container {
  position: relative;
  padding: clamp(1.55rem, 2.8vw, 2.35rem);
  background: linear-gradient(180deg, #ffffff, #f9fbff);
}

.compare-section h2 {
  margin-bottom: 1.1rem;
  max-width: none;
  white-space: nowrap;
}

.compare-section .compare-grid {
  gap: 1.2rem;
}

.compare-section .surface-block {
  border: 1px solid #d6e0ee;
  background: linear-gradient(180deg, #ffffff, #f7faff);
}

.compare-section .surface-block h3 {
  color: #173a68;
  margin-bottom: 0.6rem;
}

.compare-section .surface-block li {
  color: #385273;
  margin-bottom: 0.24rem;
}

.compare-section .highlight {
  border-color: #8baad7;
  box-shadow: 0 12px 24px rgba(23, 58, 104, 0.14);
}

.closing-section .container {
  position: relative;
  padding: clamp(1.55rem, 2.8vw, 2.4rem);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.closing-section .container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4rem;
  bottom: 1.4rem;
  width: 5px;
  border-radius: 0 6px 6px 0;
  background: linear-gradient(180deg, #173f77, #3468b4);
}

.closing-section h2 {
  margin-bottom: 0.95rem;
  max-width: none;
}

.closing-section .closing-title-line {
  display: block;
  white-space: nowrap;
}

.closing-section p {
  color: #3a5375;
  line-height: 1.64;
}

.closing-section .closing-highlight {
  display: block;
  margin-top: 0.45rem;
  color: #395ce0;
  font-size: 0.72em;
  line-height: 1.3;
  font-weight: 700;
  white-space: nowrap;
}

.closing-section .closing-image {
  margin-top: 1rem;
}

.closing-section .closing-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.closing-section .surface-block {
  border: 1px solid #d6e0ef;
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
}

.closing-section .surface-block h3 {
  color: #173965;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  align-items: start;
}

.section:not(.hero) > .container {
  padding-inline: calc(var(--section-shell-pad) + var(--content-line-offset));
}

.surface-block {
  border-radius: var(--radius-lg);
  padding: 1.35rem;
}

.gain-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.gain-list ul,
.check-list,
.card ul,
.compare-grid ul,
.footer-links {
  margin: 0;
  padding-left: 1.15rem;
}

.capability-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
  margin-top: 1.2rem;
}

.card {
  border-radius: var(--radius-md);
  padding: 1.15rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover,
.surface-block:hover,
.steps li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-secondary);
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.result-box {
  background: linear-gradient(165deg, #ffffff, #f4f8ff);
}

.steps {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.95rem;
}

.steps li {
  border-radius: var(--radius-md);
  padding: 1.1rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.highlight {
  border-color: rgba(63, 95, 209, 0.42);
  box-shadow: 0 12px 24px rgba(0, 9, 90, 0.12);
}

.testimonial {
  padding-top: 1.1rem;
}

.testimonial h2 {
  max-width: none;
  white-space: nowrap;
}

.testimonial-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: testimonial-scroll 64s linear infinite;
  will-change: transform;
}

.testimonial-set {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.quote-card {
  flex: 0 0 clamp(300px, 24vw, 360px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #ffffff, #f7faff);
  box-shadow: var(--shadow-sm);
  padding: 1.35rem;
}

.quote-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.quote-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #d5e2f4;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ecf2ff, #dbe7fb);
  box-shadow: 0 6px 14px rgba(12, 43, 92, 0.16);
}

.quote-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d5e2f4;
  box-shadow: 0 6px 14px rgba(12, 43, 92, 0.16);
}

.quote-logo::before {
  content: "";
  position: absolute;
  width: 84%;
  height: 84%;
  inset: 8%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.quote-logo::after {
  content: "PX";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #17427a;
}

.testimonial-set .quote-card:nth-child(4n + 1) .quote-logo {
  background: linear-gradient(145deg, #eaf4ff, #d5e6ff);
}

.testimonial-set .quote-card:nth-child(4n + 1) .quote-logo::after {
  content: "AX";
}

.testimonial-set .quote-card:nth-child(4n + 2) .quote-logo {
  background: linear-gradient(145deg, #eef7f4, #d5ebe5);
}

.testimonial-set .quote-card:nth-child(4n + 2) .quote-logo::after {
  content: "QN";
}

.testimonial-set .quote-card:nth-child(4n + 3) .quote-logo {
  background: linear-gradient(145deg, #f4f0ff, #dfd7f8);
}

.testimonial-set .quote-card:nth-child(4n + 3) .quote-logo::after {
  content: "VR";
}

.testimonial-set .quote-card:nth-child(4n + 4) .quote-logo {
  background: linear-gradient(145deg, #fff3ea, #f8dfc9);
}

.testimonial-set .quote-card:nth-child(4n + 4) .quote-logo::after {
  content: "LM";
}

.quote-stars {
  color: #f2c94c;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.quote-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.58;
  color: var(--text-primary);
}

.quote-meta {
  display: grid;
  gap: 0.08rem;
}

.quote-meta strong {
  color: #153b6e;
  font-size: 0.9rem;
}

.quote-meta span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

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

.closing {
  padding-bottom: 1rem;
}

.closing-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: start;
}

.statement {
  margin: 0.6rem 0;
  color: var(--text-secondary);
}

.statement.strong {
  font-weight: 700;
  color: var(--text-primary);
}

.form-intro {
  margin: 0 0 1rem;
  color: var(--text-secondary);
}

.lead-form {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.lead-form-success {
  min-height: 1.1rem;
  margin: 0.1rem 0 0;
  color: #0d5e2e;
  font-size: 0.82rem;
  font-weight: 600;
}

.lead-form-success.error {
  color: #a12020;
}

.calendar-booking {
  border: 1px solid #d5e0ee;
  border-radius: 1rem;
  background: #ffffff;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.demo-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}

.demo-calendar-month {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 700;
  color: #15345e;
}

.demo-calendar-nav {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  border: 1px solid #c3d3e9;
  background: #f8fbff;
  color: #244a79;
  cursor: pointer;
}

.demo-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.demo-calendar-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #5a7294;
}

.demo-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.demo-calendar-day {
  border: 1px solid #d4dfef;
  border-radius: 0.58rem;
  background: #ffffff;
  color: #203f68;
  font-size: 0.8rem;
  min-height: 2.1rem;
  cursor: pointer;
}

.demo-calendar-day:hover {
  border-color: #8ea9cd;
  background: #f4f9ff;
}

.demo-calendar-day.is-selected {
  border-color: #15437c;
  background: #174785;
  color: #ffffff;
}

.demo-calendar-day.is-disabled {
  opacity: 0.44;
  cursor: not-allowed;
  background: #f7f9fc;
}

.demo-calendar-day.is-placeholder {
  border: 0;
  background: transparent;
  min-height: 2.1rem;
}

.demo-calendar-timezone {
  margin: 0 0 0.6rem;
  padding: 0.38rem 0.7rem;
  border: 1px solid #d4e1f5;
  border-radius: 999px;
  background: #f2f8ff;
  color: #2d5190;
  font-size: 0.76rem;
  font-weight: 600;
  display: inline-block;
}

.demo-calendar-times-label {
  margin: 0 0 0.4rem;
  font-size: 0.76rem;
  color: #5b7292;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.demo-calendar-times {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.demo-calendar-custom {
  margin-top: 0.75rem;
}

.demo-calendar-custom label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.76rem;
  color: #5b7292;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.demo-calendar-custom input {
  font-size: 0.86rem;
  text-transform: none;
  letter-spacing: 0;
}

.demo-calendar-custom-note {
  margin: 0.35rem 0 0;
  color: #607896;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.demo-calendar-time {
  border: 1px solid #cedcf0;
  border-radius: 0.6rem;
  background: #f9fbff;
  color: #264b78;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.44rem 0.3rem;
  cursor: pointer;
}

.demo-calendar-time:hover {
  border-color: #8ea9cd;
}

.demo-calendar-time.is-selected {
  border-color: #15437c;
  background: #174785;
  color: #ffffff;
}

.demo-calendar-time:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.demo-calendar-selection {
  margin: 0.65rem 0 0;
  padding: 0.62rem 0.72rem;
  border: 1px solid #dbe5f4;
  border-radius: 0.66rem;
  background: #f7fbff;
  color: #2b4f7b;
  font-size: 0.83rem;
}

.demo-booking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: -1.6rem -1.6rem 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 1.15rem 1.15rem 0 0;
  background: linear-gradient(90deg, #071832, #0b2246);
  color: #e8f0ff;
}

.demo-booking-head-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.demo-booking-head-logo {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.demo-booking-head h2 {
  margin: 0;
  color: #f4f8ff;
  font-size: clamp(1.1rem, 2.3vw, 1.42rem);
}

.demo-booking-head-close {
  color: #f4f8ff;
  border-color: rgba(255, 255, 255, 0.28);
}

.demo-booking-head-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.demo-booking-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.demo-booking-contact-grid label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.demo-booking-status {
  min-height: 1.1rem;
  margin: 0.25rem 0 0.55rem;
  color: #0d5e2e;
  font-size: 0.82rem;
  font-weight: 600;
}

.demo-booking-status.error {
  color: #a12020;
}

.demo-booking-confirmation {
  margin: 0.35rem 0 0.8rem;
  padding: 0.88rem 0.95rem;
  border: 1px solid #d8e5f6;
  border-radius: 0.78rem;
  background: #f7fbff;
  color: #23476f;
  font-size: 0.88rem;
  line-height: 1.55;
}

.demo-booking-modal-panel {
  width: min(920px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
}

@media (max-width: 760px) {
  .demo-booking-head {
    margin: -1.1rem -1.1rem 0.9rem;
    padding: 0.8rem 0.9rem;
  }

  .demo-booking-head-brand {
    gap: 0.55rem;
  }

  .demo-booking-head-logo {
    width: 118px;
  }

  .demo-booking-head h2 {
    font-size: 1.05rem;
  }

  .demo-booking-contact-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .demo-calendar-times {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem 1.25rem 0 0;
  border-bottom: 0;
  margin-top: 0.95rem;
  background:
    radial-gradient(circle at top left, rgba(73, 120, 180, 0.18), transparent 34%),
    linear-gradient(135deg, #061427 0%, #0a1f3f 54%, #071022 100%);
  color: #d6e2f8;
  box-shadow: 0 18px 40px rgba(7, 24, 50, 0.34);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.75fr) minmax(0, 0.75fr) minmax(0, 0.95fr);
  gap: 1.3rem;
  align-items: start;
  padding: 1.55rem 0 1.1rem;
}

.footer-brand {
  max-width: 34rem;
}

.footer-eyebrow,
.footer-column-title {
  margin: 0 0 0.55rem;
  color: #91b1db;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-brand strong {
  display: block;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.footer-brand p {
  margin: 0.45rem 0 0;
  color: #d8e4f7;
  line-height: 1.55;
}

.footer-summary {
  max-width: 30rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.footer-badges span {
  border: 1px solid rgba(145, 177, 219, 0.26);
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  background: rgba(255, 255, 255, 0.04);
  color: #eef4ff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  padding-top: 0.1rem;
}

.footer-links a {
  color: #d6e2f8;
  text-decoration: none;
  font-size: 0.86rem;
  width: fit-content;
}

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

.footer-contact {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.footer-contact .footer-email-btn {
  width: fit-content;
}

.footer-note {
  margin: 0;
  max-width: 16rem;
  color: rgba(214, 226, 248, 0.82);
  font-size: 0.84rem;
  line-height: 1.45;
}

.site-footer p,
.site-footer strong {
  color: #e7efff;
}

.site-footer .btn-primary {
  background: #174785;
  border-color: #174785;
}

.site-footer .btn-primary:hover {
  background: #123b74;
  border-color: #123b74;
}

.site-footer .footer-email-btn {
  color: #123b74;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.site-footer .footer-email-btn:hover {
  color: #0e2f5d;
  background: #f5f8ff;
  border-color: #f5f8ff;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0 1.2rem;
  border-top: 1px solid rgba(214, 226, 248, 0.12);
}

.footer-bar p,
.footer-bar a {
  margin: 0;
  color: rgba(231, 239, 255, 0.78);
  font-size: 0.8rem;
}

.footer-bar a {
  text-decoration: none;
}

.footer-bar a:hover {
  color: #ffffff;
}

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

html.js .reveal {
  opacity: 0;
  filter: blur(4px) saturate(0.92);
  transform: translateY(24px) scale(0.992);
}

html.js .reveal.in-view {
  opacity: 1;
  filter: blur(0) saturate(1);
  transform: translateY(0) scale(1);
  transition: opacity 360ms ease-out, transform 360ms ease-out, filter 360ms ease-out;
}

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

  .reveal,
  html.js .reveal,
  html.js .reveal.in-view,
  .site-header,
  .site-header::after,
  .site-nav,
  .menu-toggle,
  .menu-toggle span,
  .nav-backdrop {
    transition: none !important;
    animation: none !important;
  }

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

@media (max-width: 1080px) {
  :root {
    --content-line-offset: clamp(0.65rem, 3vw, 2rem);
  }

  .hero-grid,
  .two-col,
  .closing-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .support-toast {
    padding: 0.7rem;
  }

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

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

  .hero-content > h1,
  .hero-content > .hero-subheadline,
  .hero-content > .hero-support,
  .hero-content > .hero-actions,
  .hero-content > .trust-bar {
    margin-left: clamp(0.65rem, 3vw, 2rem);
  }

  .hero-content > .hero-subheadline,
  .hero-content > .hero-support,
  .hero-content > .trust-bar {
    max-width: min(62ch, 72%);
  }

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

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

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

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

  .visibility-section .container::before {
    top: 1rem;
    bottom: 1rem;
  }

  .mav-section .mav-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mav-section .mav-visual img {
    min-height: 320px;
    max-height: 420px;
  }

  .mav-section .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mav-section .card {
    min-height: 0;
  }

  .services-section .card {
    min-height: 0;
  }

}

@media (min-width: 1280px) {
  .hero-content {
    background-position: 62% center;
  }

  .hero-content::before {
    background:
      linear-gradient(92deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.62) 21%, rgba(255, 255, 255, 0.3) 34%, rgba(255, 255, 255, 0.08) 46%, rgba(255, 255, 255, 0) 56%),
      radial-gradient(72% 64% at 8% 20%, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.24) 32%, rgba(255, 255, 255, 0.05) 48%, rgba(255, 255, 255, 0) 62%),
      radial-gradient(46% 42% at 10% 56%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.05) 40%, rgba(255, 255, 255, 0) 62%);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 38%, rgba(0, 0, 0, 0.66) 48%, rgba(0, 0, 0, 0) 60%);
    mask-image: linear-gradient(90deg, #000 0%, #000 38%, rgba(0, 0, 0, 0.66) 48%, rgba(0, 0, 0, 0) 60%);
  }

  .hero-content::after {
    width: min(38%, 460px);
    opacity: 0.36;
    filter: blur(8px);
  }

  .hero-content > .hero-subheadline,
  .hero-content > .hero-support,
  .hero-content > .trust-bar {
    max-width: min(56ch, 48%);
  }
}

@media (max-width: 860px) {
  .nav-cta {
    display: none;
  }

  .nav-wrap {
    position: relative;
    z-index: 110;
  }

  .site-nav {
    display: grid;
    position: fixed;
    top: 4.85rem;
    right: 0.9rem;
    width: min(20rem, calc(100% - 1.8rem));
    margin-left: 0;
    margin-right: 0;
    flex: none;
    gap: 0.2rem;
    padding: 0.55rem;
    background: #ffffff;
    border: 1px solid #c8d6ea;
    border-radius: var(--radius-md);
    box-shadow: 0 18px 34px rgba(5, 18, 40, 0.28);
    backdrop-filter: none;
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top right;
    transition: opacity 180ms ease-out, transform 180ms ease-out, visibility 180ms ease-out;
    margin: 0;
  }

  .site-nav a {
    color: #143a6b;
    flex: 0 0 auto;
    text-align: left;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    padding: 0.72rem 0.82rem;
    border-radius: 0.5rem;
    background: #f3f8ff;
  }

  .site-nav a:hover,
  .site-nav a.active-link {
    color: #0f315d;
    background: #e2eeff;
  }

  .hero-content::before {
    background:
      linear-gradient(92deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.7) 56%, rgba(255, 255, 255, 0.34) 74%, rgba(255, 255, 255, 0.05) 90%, rgba(255, 255, 255, 0) 98%),
      radial-gradient(92% 84% at 9% 22%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0.28) 66%, rgba(255, 255, 255, 0) 86%),
      radial-gradient(68% 62% at 11% 58%, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0.2) 46%, rgba(255, 255, 255, 0) 72%);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 76%, rgba(0, 0, 0, 0.8) 88%, rgba(0, 0, 0, 0) 98%);
    mask-image: linear-gradient(90deg, #000 0%, #000 76%, rgba(0, 0, 0, 0.8) 88%, rgba(0, 0, 0, 0) 98%);
  }

  .hero-content::after {
    width: 90%;
    opacity: 0.94;
  }

  .hero-content h1 {
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.92), 0 18px 34px rgba(255, 255, 255, 0.5);
  }

  .hero-subheadline,
  .hero-support {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 18px rgba(255, 255, 255, 0.36);
  }

  .blackbox-section h2,
  .blackbox-section p,
  .blackbox-section .check-list li {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.98), 0 14px 26px rgba(255, 255, 255, 0.56);
  }

  .blackbox-section .blackbox-feature::before {
    background:
      linear-gradient(96deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 34%, rgba(255, 255, 255, 0.68) 56%, rgba(255, 255, 255, 0.28) 74%, rgba(255, 255, 255, 0.02) 90%, rgba(255, 255, 255, 0) 98%),
      radial-gradient(92% 84% at 12% 24%, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.64) 38%, rgba(255, 255, 255, 0.24) 64%, rgba(255, 255, 255, 0) 84%),
      radial-gradient(68% 62% at 12% 70%, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.16) 44%, rgba(255, 255, 255, 0) 70%);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 76%, rgba(0, 0, 0, 0.8) 88%, rgba(0, 0, 0, 0) 98%);
    mask-image: linear-gradient(90deg, #000 0%, #000 76%, rgba(0, 0, 0, 0.8) 88%, rgba(0, 0, 0, 0) 98%);
  }

  .blackbox-section .blackbox-feature::after {
    opacity: 0.24;
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.04) 56%, rgba(0, 0, 0, 0.22) 70%, rgba(0, 0, 0, 0.6) 82%, #000 92%, #000 100%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.04) 56%, rgba(0, 0, 0, 0.22) 70%, rgba(0, 0, 0, 0.6) 82%, #000 92%, #000 100%);
  }

  .blackbox-section .blackbox-main::before {
    top: -0.65rem;
    bottom: -0.45rem;
    left: -0.55rem;
    right: -0.75rem;
    filter: blur(14px);
    opacity: 1;
  }

  .menu-toggle {
    margin-left: auto;
    display: inline-flex;
    position: relative;
    z-index: 125;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.2rem;
    cursor: pointer;
    transition: background-color 160ms ease-out, border-color 160ms ease-out;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 1.1rem;
    height: 2px;
    background: #ffffff;
    border-radius: 99px;
    transition: transform 180ms ease-out, opacity 180ms ease-out;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  body.nav-open .site-nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  :root {
    --content-line-offset: 0px;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .section > .container {
    padding-inline: clamp(1.1rem, 5vw, 1.35rem);
  }

  .section {
    padding: var(--section-space-mobile) 0;
  }

  .capability-grid,
  .service-grid,
  .gain-list,
  .steps,
  .metric-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .brand {
    width: min(72vw, 290px);
  }

  .visibility-section .container,
  .mav-section .container {
    padding: 1.2rem clamp(1.1rem, 5vw, 1.35rem);
  }

  .visibility-section .container::before {
    width: 4px;
    top: 1.1rem;
    bottom: 1.1rem;
  }

  .services-section .container,
  .process-section .container,
  .compare-section .container,
  .closing-section .container,
  .blackbox-section .container {
    padding: 1.3rem clamp(1.1rem, 5vw, 1.35rem);
  }

  .blackbox-section .container {
    padding-top: 0.8rem;
    padding-bottom: clamp(5.2rem, 14vw, 7.4rem);
  }

  .services-section .container::before,
  .closing-section .container::before {
    width: 4px;
    top: 1.15rem;
    bottom: 1.15rem;
  }

  .process-section .steps li {
    padding-left: 2.85rem;
  }

  .compare-section h2 {
    white-space: normal;
  }

  .mav-section h2 {
    white-space: normal;
  }

  .mav-section .container {
    min-height: 0;
  }

  .mav-section .mav-visual img {
    min-height: 220px;
    max-height: 320px;
  }

  .blackbox-section .blackbox-feature {
    min-height: clamp(380px, 110vw, 560px);
    background-position: 62% center;
  }

  .blackbox-section .blackbox-main {
    max-width: 100%;
  }

  .blackbox-section .blackbox-copy-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.82));
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 28px rgba(8, 24, 52, 0.22);
    padding: 0.95rem;
  }

  .blackbox-section .blackbox-feature::before {
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 76%, rgba(0, 0, 0, 0.78) 88%, rgba(0, 0, 0, 0) 98%);
    mask-image: linear-gradient(90deg, #000 0%, #000 76%, rgba(0, 0, 0, 0.78) 88%, rgba(0, 0, 0, 0) 98%);
  }

  .mav-section .capability-grid {
    grid-template-columns: 1fr;
  }

  .outcomes h2 {
    white-space: normal;
  }

  .services-section h2 {
    white-space: normal;
  }

  .closing-section .closing-title-line,
  .closing-section .closing-highlight {
    white-space: normal;
  }

  .hero-content {
    min-height: clamp(540px, 136vw, 780px);
    background-position: center;
    background-size: cover;
  }

  .hero-content > h1,
  .hero-content > .hero-subheadline,
  .hero-content > .hero-support,
  .hero-content > .hero-actions,
  .hero-content > .trust-bar {
    margin-left: 0;
  }

  .testimonial-track {
    animation: testimonial-scroll 92s linear infinite;
  }

  .quote-card {
    flex-basis: min(88vw, 320px);
  }

  .hero-content > .hero-subheadline,
  .hero-content > .hero-support,
  .hero-content > .trust-bar {
    max-width: 100%;
  }

}

input,
textarea,
select {
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  padding: 0.65rem 0.8rem;
  background: #fff;
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 9, 90, 0.25);
}

.cookie-consent-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(94vw, 980px);
  z-index: 1300;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  background: linear-gradient(135deg, #081d3b, #0f315f);
  box-shadow: 0 16px 38px rgba(6, 22, 45, 0.35);
  color: #eef5ff;
  padding: 1rem 1.1rem;
}

.cookie-consent-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.95rem;
  align-items: center;
}

.cookie-consent-copy strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.98rem;
}

.cookie-consent-copy p {
  margin: 0;
  color: rgba(231, 241, 255, 0.94);
  font-size: 0.88rem;
  line-height: 1.48;
}

.cookie-consent-copy a {
  color: #ffffff;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.auth-shell-section {
  padding-top: 1.6rem;
}

.auth-shell-section > .container {
  padding: clamp(1.4rem, 2.4vw, 2rem);
}

.auth-shell-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.25fr);
  gap: 1rem;
}

.auth-info-panel,
.auth-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow-sm);
}

.auth-info-panel {
  padding: clamp(1.25rem, 2.8vw, 2rem);
  background:
    radial-gradient(circle at top right, rgba(61, 112, 186, 0.18), transparent 38%),
    linear-gradient(180deg, #ffffff, #f6f9ff);
}

.auth-info-panel h1 {
  max-width: 12ch;
  margin-bottom: 0.9rem;
}

.auth-intro {
  margin: 0 0 1rem;
  color: #385271;
}

.auth-guidance {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.auth-guidance article {
  border: 1px solid #d9e3f2;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.95rem 1rem;
}

.auth-guidance h2 {
  max-width: none;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.auth-guidance p,
.auth-guidance li,
.auth-info-panel p {
  color: #425b7a;
}

.auth-guidance ul {
  margin: 0.55rem 0 0;
  padding-left: 1rem;
}

.auth-stack {
  display: grid;
  gap: 1rem;
}

.auth-card {
  padding: 1.15rem 1.2rem;
}

.auth-card h2 {
  max-width: none;
  margin-bottom: 0.5rem;
  font-size: 1.18rem;
}

.auth-card p {
  margin-top: 0;
}

.auth-form {
  display: grid;
  gap: 0.8rem;
}

.auth-form label {
  display: grid;
  gap: 0.35rem;
  color: #23446f;
  font-size: 0.87rem;
  font-weight: 600;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.auth-status,
.auth-inline-note {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
}

.auth-status {
  color: #24426b;
}

.auth-status.is-success {
  color: #0d5e2e;
}

.auth-status.is-error {
  color: #a12020;
}

.auth-inline-note {
  color: #5c6f87;
  font-weight: 500;
}

.auth-config-warning {
  border: 1px solid rgba(180, 83, 9, 0.22);
  border-radius: var(--radius-md);
  background: rgba(251, 191, 36, 0.12);
  color: #7c4a03;
  padding: 0.85rem 0.95rem;
}

.auth-config-warning strong {
  color: #7c4a03;
}

.auth-session-summary {
  border: 1px solid #d9e3f2;
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 0.95rem 1rem;
}

.auth-session-summary strong {
  display: block;
  margin-bottom: 0.3rem;
}

.auth-session-summary p {
  margin: 0;
  color: #45607f;
}

.auth-card[hidden],
.auth-config-warning[hidden] {
  display: none;
}

@media (max-width: 920px) {
  .auth-shell-grid {
    grid-template-columns: 1fr;
  }
}

.cookie-consent-actions .btn {
  min-height: 2.25rem;
  font-size: 0.83rem;
  padding: 0.5rem 0.8rem;
  border-radius: 0.7rem;
}

.cookie-preferences-panel {
  position: fixed;
  inset: 0;
  z-index: 1350;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 19, 38, 0.58);
  padding: 1rem;
}

.cookie-preferences-panel.is-open {
  display: flex;
}

.cookie-preferences-dialog {
  width: min(100%, 600px);
  border: 1px solid #d4deed;
  border-radius: 1rem;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 22px 48px rgba(8, 25, 51, 0.3);
  padding: 1.15rem;
}

.cookie-preferences-dialog h2 {
  margin: 0;
  font-size: 1.25rem;
}

.cookie-preferences-dialog > p {
  margin: 0.55rem 0 1rem;
  color: var(--text-secondary);
}

.cookie-preference-list {
  display: grid;
  gap: 0.75rem;
}

.cookie-preference-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid #dce4f2;
  border-radius: 0.8rem;
  background: #ffffff;
  padding: 0.75rem;
}

.cookie-preference-row strong {
  display: block;
  margin-bottom: 0.15rem;
  color: #163a69;
}

.cookie-preference-row p {
  margin: 0;
  color: #4a6282;
  font-size: 0.85rem;
}

.cookie-preference-row input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
}

.cookie-preferences-actions {
  display: flex;
  gap: 0.55rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.cookie-settings-trigger {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1280;
  border: 1px solid #a8bcda;
  border-radius: 999px;
  background: #ffffff;
  color: #133b71;
  box-shadow: 0 10px 24px rgba(12, 41, 78, 0.2);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.58rem 0.9rem;
  cursor: pointer;
}

.cookie-settings-trigger:hover {
  background: #f4f8ff;
}

@media (max-width: 760px) {
  .cookie-consent-banner {
    width: calc(100vw - 1rem);
    bottom: 0.5rem;
    padding: 0.9rem;
  }

  .cookie-consent-content {
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions,
  .cookie-preferences-actions {
    justify-content: flex-start;
  }

  .cookie-settings-trigger {
    right: 0.65rem;
    bottom: 0.65rem;
  }
}
