:root {
  --color-bg: #fcfbff;
  --color-surface: #ffffff;
  --color-surface-soft: #f7f2ff;
  --color-text: #17141f;
  --color-muted: #625f6d;
  --color-primary: #6c4eff;
  --color-primary-dark: #4f2bf7;
  --color-secondary: #8b5ccb;
  --color-accent: #a85a9c;
  --color-success: #147a58;
  --color-border: rgba(43, 31, 84, 0.1);
  --color-border-strong: rgba(108, 78, 255, 0.16);
  --gradient-brand: linear-gradient(135deg, #4f2bf7 0%, #8b5ccb 55%, #a85a9c 100%);
  --gradient-header: linear-gradient(135deg, #4b2dc2 0%, #7a54b8 52%, #a85a9c 100%);
  --gradient-soft: linear-gradient(180deg, #ffffff 0%, #f8f3ff 100%);
  --gradient-section: linear-gradient(180deg, #faf7ff 0%, #f1e8ff 100%);
  --shadow-soft: 0 14px 40px rgba(28, 19, 61, 0.07);
  --shadow-medium: 0 18px 44px rgba(41, 27, 92, 0.12);
  --shadow-strong: 0 22px 60px rgba(79, 43, 247, 0.18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 32px;
  --max-width: 1180px;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--color-text);
  background:
    radial-gradient(circle at top right, rgba(108, 78, 255, 0.08), transparent 24%),
    radial-gradient(circle at left top, rgba(168, 90, 156, 0.05), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
}

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

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

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

button {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  background: #111111;
  color: #ffffff;
  border-radius: 999px;
  z-index: 2000;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gradient-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(21, 16, 43, 0.14);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo__image {
  display: block;
  height: 40px;
  width: auto;
}

.footer__logo .site-logo__image {
  height: 42px;
}

.language-switch,
.mobile-language-switch {
  display: inline-flex;
  align-items: center;
}

.language-switch {
  gap: 0.2rem;
  margin-left: 0.35rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 24px rgba(22, 16, 46, 0.1);
  flex-shrink: 0;
}

.language-switch__option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 34px;
  padding: 0 0.72rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.86);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

a.language-switch__option:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.language-switch__option--active {
  background: rgba(255, 255, 255, 0.96);
  color: #4f2bf7;
  box-shadow: 0 8px 18px rgba(21, 16, 43, 0.14);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: auto;
  padding: 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 10px 26px rgba(22, 16, 46, 0.1);
}

.nav__item {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.nav__item::after {
  content: "";
  position: absolute;
  inset: 100% 0 auto;
  height: 16px;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1rem;
  border: 0;
  background: transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav__link:hover,
.nav__link--active {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.nav__link--cta {
  background: rgba(255, 255, 255, 0.96);
  color: #4f2bf7;
  box-shadow: 0 12px 24px rgba(21, 16, 43, 0.14);
}

.nav__link--cta:hover,
.nav__link--cta.nav__link--active {
  background: #ffffff;
  color: #4f2bf7;
  transform: translateY(-1px);
}

.nav__dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  min-width: 250px;
  padding: 0.7rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
  border: 1px solid rgba(108, 78, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 24px 46px rgba(30, 20, 60, 0.18);
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
}

.nav__item:hover > .nav__dropdown,
.nav__item:focus-within > .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 0s;
}

.nav__dropdown a {
  display: block;
  padding: 0.82rem 0.95rem;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--color-text);
}

.nav__dropdown a:hover {
  background: linear-gradient(135deg, rgba(108, 78, 255, 0.12), rgba(108, 78, 255, 0.05));
  color: var(--color-primary);
}

.nav__dropdown--wide {
  min-width: 540px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1rem;
}

.nav__dropdown-col {
  display: flex;
  flex-direction: column;
}

.nav__dropdown-title {
  display: block;
  padding: 0.35rem 0.95rem 0.2rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b6583;
}

.nav-toggle {
  display: none;
  background: linear-gradient(135deg, #ffffff, #f6f0ff);
  border: 1px solid rgba(108, 78, 255, 0.16);
  border-radius: 14px;
  padding: 0.75rem;
  box-shadow: 0 8px 20px rgba(30, 20, 60, 0.06);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle__bar + .nav-toggle__bar {
  margin-top: 5px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(17, 12, 34, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.mobile-nav__inner {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 100vw);
  height: 100dvh;
  background: linear-gradient(180deg, #ffffff 0%, #f7f2ff 100%);
  padding: 1.25rem 1.1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  box-shadow: -18px 0 40px rgba(30, 20, 60, 0.18);
}

.mobile-nav__close {
  align-self: flex-end;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(108, 78, 255, 0.16);
  border-radius: 12px;
  background: #ffffff;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mobile-nav__link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(108, 78, 255, 0.1);
  background: rgba(255, 255, 255, 0.78);
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(30, 20, 60, 0.04);
}

.mobile-nav__link--cta {
  background: var(--gradient-brand);
  color: #ffffff;
  border: 0;
  box-shadow: 0 14px 28px rgba(79, 43, 247, 0.22);
}

.mobile-nav__icon {
  width: 24px;
  text-align: center;
  color: var(--color-primary);
}

.mobile-nav__sublist {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: -0.1rem;
  margin-bottom: 0.25rem;
  padding: 0.35rem 0 0.35rem 0.9rem;
  border-left: 2px solid rgba(108, 78, 255, 0.14);
}

.mobile-nav__sublist a {
  display: block;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(108, 78, 255, 0.08);
  background: rgba(255, 255, 255, 0.56);
  color: var(--color-muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.mobile-nav__group-title {
  display: block;
  padding: 0.35rem 0.7rem 0.18rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b6583;
}

.mobile-nav__link--expanded {
  color: var(--color-primary);
  background: rgba(108, 78, 255, 0.1);
}

.mobile-nav__link--expanded + .mobile-nav__sublist {
  display: flex;
}

.mobile-language-switch {
  gap: 0.55rem;
  align-self: flex-start;
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(108, 78, 255, 0.14);
}

.mobile-language-switch__option {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--color-muted);
  transition: color 180ms ease;
}

a.mobile-language-switch__option:hover {
  color: var(--color-primary);
}

.mobile-language-switch__option--active {
  color: var(--color-text);
}

.mobile-language-switch__separator {
  color: rgba(98, 95, 109, 0.6);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 6rem;
  background:
    radial-gradient(circle at top right, rgba(108, 78, 255, 0.16), transparent 28%),
    radial-gradient(circle at left center, rgba(141, 114, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8f3ff 100%);
}

.hero__inner {
  display: block;
}

.hero__content {
  max-width: 820px;
}

.hero__eyebrow,
.section-intro__eyebrow,
.comparison__eyebrow,
.trust-block__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(108, 78, 255, 0.1);
  color: var(--color-primary);
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
}

.hero h1,
.section-intro h2,
.comparison__intro h2,
.trust-block h2,
.cta-panel h2 {
  margin: 0 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3rem, 5.4vw, 5.15rem);
  max-width: 18ch;
}

.hero p,
.section-intro p,
.comparison__text,
.trust-block__text,
.cta-panel p,
.card__text,
.pathway-step p,
.footer__text,
.hero-panel p {
  margin: 0;
  color: var(--color-muted);
}

.hero__cta,
.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.75rem;
}

.hero__meta span,
.hero-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: #f2ebff;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.hero-panel__card,
.hero-panel__item,
.hero-card,
.card,
.trust-block,
.form-card,
.cta-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaff 100%);
  border: 1px solid rgba(108, 78, 255, 0.14);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.hero-panel__card {
  padding: 1.75rem;
}

.hero-panel__card--primary {
  background: linear-gradient(135deg, rgba(79, 43, 247, 0.96), rgba(168, 90, 156, 0.9));
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.hero-panel__card--primary p,
.hero-panel__card--primary h2,
.hero-panel__card--primary .hero-panel__label {
  color: #ffffff;
}

.hero-panel__label,
.hero-card__label {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-panel__card h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.hero-panel__stack {
  display: grid;
  gap: 0.9rem;
}

.hero-panel__item {
  padding: 1.15rem 1.2rem;
}

.hero-panel__item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.hero-card {
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(79, 43, 247, 0.12);
}

.hero-card__message {
  padding: 1rem;
  border-radius: 18px;
  margin-bottom: 0.85rem;
}

.hero-card__message--light {
  background: linear-gradient(135deg, #f4f1ff, #ede7ff);
}

.hero-card__message--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #ffffff;
}

.hero-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero--home {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.06), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.04), transparent 20%),
    linear-gradient(135deg, #4b2dc2 0%, #6e49d2 38%, #8b5ccb 68%, #a85a9c 100%);
}

.hero--home .hero__inner {
  min-height: 0;
}

.hero--home .container,
.hero--home .hero__inner,
.hero--home .hero__content {
  position: relative;
  z-index: 1;
}

.hero__content--home {
  max-width: 760px;
}

.hero--home {
  padding: 4.35rem 0 4.85rem;
}

.hero__content--home h1,
.hero__content--home p {
  color: #ffffff;
}

.hero__content--home h1 {
  max-width: 14ch;
}

.hero__content--home p {
  max-width: 60ch;
}

.hero--home .hero__eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero--home .hero__meta span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.hero--oversite {
  --oversite-accent-rgb: 108, 78, 255;
  --oversite-panel-shadow: rgba(20, 15, 48, 0.28);
  --oversite-surface-shadow: rgba(11, 9, 28, 0.2);
  position: relative;
  padding: 0;
  background: linear-gradient(135deg, #102143 0%, #274d88 52%, #4877bd 100%);
  isolation: isolate;
}

.hero--oversite::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.16), transparent 20%),
    radial-gradient(circle at 68% 62%, rgba(var(--oversite-accent-rgb), 0.28), transparent 28%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 18%);
  pointer-events: none;
}

.hero--oversite > .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-oversite__inner {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: flex;
  align-items: stretch;
}

.hero-oversite__content {
  position: relative;
  z-index: 2;
  margin-right: auto;
  width: min(50%, 760px);
  min-height: 560px;
  padding: 4rem 4rem 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(135deg, #4f2bf7 0%, #8b5ccb 55%, #a85a9c 100%);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  box-shadow: 24px 0 48px var(--oversite-panel-shadow);
}

.hero-oversite__content h1 {
  margin: 0 0 1rem;
  max-width: 18ch;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  line-height: 1.01;
  letter-spacing: -0.05em;
  color: #ffffff;
  text-wrap: balance;
}

.hero-oversite__content p {
  max-width: 66ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
  line-height: 1.72;
}

.hero--oversite .hero__cta {
  margin-top: 2rem;
}

.hero--oversite .hero__meta {
  margin-top: 1.5rem;
}

.hero--oversite .hero__meta span {
  background: rgba(var(--oversite-accent-rgb), 0.2);
  border: 1px solid rgba(var(--oversite-accent-rgb), 0.34);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero__eyebrow--on-dark {
  align-self: flex-start;
  width: fit-content;
  min-height: 34px;
  padding: 0 0.78rem;
  background: rgba(var(--oversite-accent-rgb), 0.22);
  border: 1px solid rgba(var(--oversite-accent-rgb), 0.34);
  color: rgba(255, 255, 255, 0.9);
}

.btn--hero-dark {
  background: #111111;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.22);
}

.btn--hero-dark:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.btn--hero-light {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 28px rgba(8, 10, 28, 0.16);
}

.btn--hero-light:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero--oversite-products .btn--hero-light {
  background: rgba(255, 255, 255, 0.96);
  color: #7a3f2a;
  border-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 30px rgba(46, 20, 8, 0.18);
}

.hero--oversite-products .btn--hero-light:hover {
  background: #ffffff;
  color: #5b2e20;
  border-color: #ffffff;
}

.hero--subpage {
  background:
    radial-gradient(circle at 82% 18%, rgba(108, 78, 255, 0.16), transparent 24%),
    radial-gradient(circle at 15% 82%, rgba(168, 90, 156, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f2ff 58%, #fdfbff 100%);
}

.hero--subpage .hero__content {
  max-width: 860px;
}

.hero-oversite__visual {
  position: relative;
  flex: 1;
  min-height: 620px;
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero-oversite__glow,
.hero-oversite__mesh,
.hero-oversite__panel {
  position: absolute;
}

.hero-oversite__glow {
  border-radius: 999px;
  filter: blur(2px);
  animation: oversite-float-glow 13s ease-in-out infinite;
}

.hero-oversite__glow--primary {
  top: 5%;
  right: 6%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(var(--oversite-accent-rgb), 0.56) 0%, rgba(var(--oversite-accent-rgb), 0) 74%);
}

.hero-oversite__glow--secondary {
  right: 24%;
  bottom: 6%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(var(--oversite-accent-rgb), 0.22) 0%, rgba(var(--oversite-accent-rgb), 0) 74%);
  animation-delay: -5.5s;
}

.hero-oversite__mesh {
  inset: 12% 8% 11% 18%;
  border-radius: 42px;
  border: 1px solid rgba(var(--oversite-accent-rgb), 0.34);
  background:
    linear-gradient(rgba(var(--oversite-accent-rgb), 0.14) 1px, transparent 1px) 0 0 / 100% 38px,
    linear-gradient(90deg, rgba(var(--oversite-accent-rgb), 0.14) 1px, transparent 1px) 0 0 / 38px 100%,
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(var(--oversite-accent-rgb), 0.14));
  transform: skewX(-12deg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  opacity: 0.92;
  animation: oversite-float-mesh 14s ease-in-out infinite;
}

.hero-oversite__panel {
  border-radius: 28px;
  border: 1px solid rgba(var(--oversite-accent-rgb), 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(var(--oversite-accent-rgb), 0.1));
  box-shadow: 0 18px 42px var(--oversite-surface-shadow);
  backdrop-filter: blur(4px);
  animation: oversite-float-panel 11s ease-in-out infinite;
  transition: transform 300ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.hero-oversite__panel--a {
  top: 16%;
  right: 10%;
  width: 34%;
  height: 28%;
  transform: rotate(8deg);
}

.hero-oversite__panel--b {
  right: 18%;
  bottom: 14%;
  width: 28%;
  height: 20%;
  transform: rotate(-7deg);
  animation-delay: -3.4s;
}

.hero-oversite__panel--c {
  top: 48%;
  left: 12%;
  width: 22%;
  height: 15%;
  transform: rotate(11deg);
  animation-delay: -1.8s;
}

.hero-oversite__visual:hover .hero-oversite__panel {
  box-shadow: 0 22px 48px var(--oversite-surface-shadow);
}

.hero-oversite__visual:hover .hero-oversite__panel--a {
  transform: rotate(9deg) translate3d(0, -5px, 16px);
}

.hero-oversite__visual:hover .hero-oversite__panel--b {
  transform: rotate(-8deg) translate3d(0, -4px, 12px);
}

.hero-oversite__visual:hover .hero-oversite__panel--c {
  transform: rotate(12deg) translate3d(0, -4px, 10px);
}

@keyframes oversite-float-glow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.03);
    opacity: 0.86;
  }
}

@keyframes oversite-float-mesh {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 4px -6px;
  }
}

@keyframes oversite-float-panel {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

.hero--oversite-platform {
  --oversite-accent-rgb: 78, 163, 255;
  --oversite-panel-shadow: rgba(7, 17, 42, 0.34);
  --oversite-surface-shadow: rgba(7, 17, 42, 0.22);
  background: linear-gradient(135deg, #081a33 0%, #133661 52%, #2364b8 100%);
}

.hero--oversite-platform .hero-oversite__content {
  background: linear-gradient(135deg, #245ea8 0%, #347bd7 55%, #4ea3ff 100%);
}

.hero--oversite-platform .hero-oversite__panel--a {
  top: 14%;
  right: 9%;
  width: 36%;
  height: 30%;
}

.hero--oversite-platform .hero-oversite__panel--b {
  right: 22%;
  bottom: 15%;
  width: 24%;
  height: 18%;
}

.hero--oversite-platform .hero-oversite__panel--c {
  top: 50%;
  left: 14%;
  width: 18%;
  height: 14%;
}

.hero--oversite-solutions {
  --oversite-accent-rgb: 30, 167, 161;
  --oversite-panel-shadow: rgba(5, 31, 29, 0.32);
  --oversite-surface-shadow: rgba(5, 31, 29, 0.22);
  background: linear-gradient(135deg, #072120 0%, #0e5754 52%, #14857f 100%);
}

.hero--oversite-solutions .hero-oversite__content {
  background: linear-gradient(135deg, #117c76 0%, #1d9f98 55%, #1ea7a1 100%);
}

.hero--oversite-solutions .hero-oversite__mesh {
  inset: 14% 11% 13% 22%;
  border-radius: 52px 36px 64px 28px;
  transform: rotate(-9deg);
}

.hero--oversite-solutions .hero-oversite__panel--a {
  top: 18%;
  right: 13%;
  width: 28%;
  height: 26%;
  border-radius: 999px 32px 999px 40px;
}

.hero--oversite-solutions .hero-oversite__panel--b {
  right: 24%;
  bottom: 13%;
  width: 26%;
  height: 18%;
  border-radius: 36px 999px 42px 999px;
}

.hero--oversite-solutions .hero-oversite__panel--c {
  top: 52%;
  left: 16%;
  width: 20%;
  height: 13%;
  border-radius: 999px;
}

.hero--oversite-products {
  --oversite-accent-rgb: 184, 115, 51;
  --oversite-panel-shadow: rgba(138, 90, 43, 0.18);
  --oversite-surface-shadow: rgba(138, 90, 43, 0.12);
  background: linear-gradient(135deg, #f7eee3 0%, #f2e4d5 52%, #ead7c0 100%);
}

.hero--oversite-products .hero-oversite__content {
  background: linear-gradient(135deg, #f3e6d8 0%, #ecdac6 55%, #e3ccb1 100%);
}

.hero--oversite-products .hero-oversite__content h1 {
  color: #2f2218;
}

.hero--oversite-products .hero-oversite__content p {
  color: rgba(47, 34, 24, 0.82);
}

.hero--oversite-products .hero__meta span {
  color: #6f4724;
}

.hero--oversite-products .hero__eyebrow--on-dark {
  background: rgba(184, 115, 51, 0.12);
  border-color: rgba(184, 115, 51, 0.16);
  color: #8a5a2b;
}

.hero--oversite-products .hero__meta span {
  background: rgba(184, 115, 51, 0.1);
  border: 1px solid rgba(184, 115, 51, 0.16);
  color: #8a5a2b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero--oversite-products .hero-oversite__mesh {
  inset: 11% 8% 10% 20%;
  border-radius: 36px;
  transform: skewX(-14deg);
  border-color: rgba(184, 115, 51, 0.16);
  background:
    linear-gradient(rgba(184, 115, 51, 0.1) 1px, transparent 1px) 0 0 / 100% 38px,
    linear-gradient(90deg, rgba(184, 115, 51, 0.1) 1px, transparent 1px) 0 0 / 38px 100%,
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(234, 215, 192, 0.35));
}

.hero--oversite-products .hero-oversite__glow--primary {
  background: radial-gradient(circle, rgba(184, 115, 51, 0.28) 0%, rgba(184, 115, 51, 0) 74%);
}

.hero--oversite-products .hero-oversite__glow--secondary {
  background: radial-gradient(circle, rgba(184, 115, 51, 0.16) 0%, rgba(184, 115, 51, 0) 74%);
}

.hero--oversite-products .hero-oversite__panel {
  border-color: rgba(184, 115, 51, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(234, 215, 192, 0.3));
  box-shadow: 0 18px 42px rgba(138, 90, 43, 0.12);
}

.hero--oversite-products .hero-oversite__panel--a {
  top: 17%;
  right: 11%;
  width: 32%;
  height: 24%;
  transform: rotate(10deg);
}

.hero--oversite-products .hero-oversite__panel--b {
  right: 16%;
  bottom: 17%;
  width: 30%;
  height: 18%;
  transform: rotate(-9deg);
}

.hero--oversite-products .hero-oversite__panel--c {
  top: 50%;
  left: 15%;
  width: 19%;
  height: 14%;
  transform: rotate(13deg);
}

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

.section--bg {
  background: var(--gradient-section);
  border-top: 1px solid rgba(108, 78, 255, 0.08);
  border-bottom: 1px solid rgba(108, 78, 255, 0.08);
}

.section-intro,
.comparison__intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.overview-embed-block {
  margin-top: 0;
}

.overview-embed {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfaff 100%);
  border: 1px solid rgba(108, 78, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.overview-embed__intro {
  max-width: 46ch;
}

.overview-embed__intro h3 {
  margin: 0 0 0.75rem;
}

.overview-embed__intro p {
  margin: 0;
  color: var(--color-muted);
}

.overview-embed__example-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.overview-embed__example {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(108, 78, 255, 0.04);
  border: 1px solid rgba(108, 78, 255, 0.1);
}

.overview-embed__example strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-text);
  font-size: 0.95rem;
}

.overview-embed__example p {
  margin: 0;
  line-height: 1.6;
}

.overview__visual {
  display: flex;
  align-items: stretch;
}

.overview__visual .overview-embed__shell {
  width: 100%;
}

.overview-embed__shell {
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(108, 78, 255, 0.1);
  box-shadow: 0 20px 50px rgba(79, 43, 247, 0.1);
}

.overview-embed__topbar {
  display: flex;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(108, 78, 255, 0.08);
  background: rgba(108, 78, 255, 0.04);
}

.overview-embed__topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(108, 78, 255, 0.18);
}

.overview-embed__body {
  padding: 1.1rem;
}

.overview-embed__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.overview-embed__header strong {
  color: var(--color-text);
  font-size: 1rem;
}

.overview-embed__header span {
  color: var(--color-muted);
  font-size: 0.85rem;
}

.overview-embed__live-stage {
  min-height: 560px;
  border-radius: 18px;
  background: rgba(108, 78, 255, 0.03);
  border: 1px solid rgba(108, 78, 255, 0.1);
  overflow: hidden;
}

#aic-chat-widget-id {
  width: 100%;
  min-height: 560px;
}

#aic-chat-widget-id > * {
  width: 100%;
  min-height: 560px;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.card {
  padding: 1.45rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.card__title {
  margin: 0 0 0.75rem;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.card--feature {
  padding: 1.8rem;
}

.card--platform-intro {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(108, 78, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
  border-color: rgba(108, 78, 255, 0.16);
}

.card--platform-intro::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, rgba(79, 43, 247, 0.45), rgba(168, 90, 156, 0.28));
}

.card--solution-context {
  display: grid;
  gap: 0.8rem;
  padding: 1.6rem;
}

.solution-context__eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  min-height: 32px;
  padding: 0 0.72rem;
  border-radius: 999px;
  background: rgba(108, 78, 255, 0.08);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
  white-space: nowrap;
}

.solution-context__list {
  display: grid;
  gap: 0.95rem;
}

.solution-context__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: flex-start;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(108, 78, 255, 0.12);
}

.solution-context__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.solution-context__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 14px;
  background: rgba(108, 78, 255, 0.07);
  border: 1px solid rgba(108, 78, 255, 0.12);
  color: var(--color-primary);
  flex-shrink: 0;
}

.solution-context__icon svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-context__label {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 800;
}

.solution-context__text {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.58;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 50px;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  transition: all 180ms ease;
}

.btn--small {
  min-height: 44px;
  padding: 0 1rem;
  font-size: 0.92rem;
}

.btn--primary {
  background: var(--gradient-brand);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(79, 43, 247, 0.22);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(79, 43, 247, 0.28);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  border-color: var(--color-border-strong);
}

.btn--secondary:hover {
  background: rgba(108, 78, 255, 0.05);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.text-link {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  margin-top: 1.15rem;
  color: var(--color-primary);
  font-weight: 700;
}

#industry-orientation .grid,
#solution-next-steps .grid {
  align-items: stretch;
}

#industry-orientation .card,
#solution-next-steps .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#industry-orientation .card > .btn,
#industry-orientation .card > .text-link,
#solution-next-steps .card > .btn,
#solution-next-steps .card > .text-link {
  margin-top: auto;
  align-self: flex-start;
}

#information-access .btn,
#request-qualification .btn,
#next-step-activation .btn,
#process-relief .btn,
#specialized-solutions .btn {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 0 !important;
}

.section-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.features-intro + .grid {
  margin-top: 1.9rem;
}

.overview-system-block {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
  border: 1px solid rgba(108, 78, 255, 0.14);
  box-shadow: var(--shadow-soft);
}

.overview-system {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.overview-system__group {
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(108, 78, 255, 0.1);
}

.overview-system__group h3 {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
}

.overview-system__group ul,
.trust-block__list,
.comparison__list {
  display: grid;
  gap: 0.7rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--color-muted);
}

.overview-system__group li,
.trust-block__list li,
.comparison__list li {
  position: relative;
  padding-left: 1.15rem;
  line-height: 1.6;
}

.overview-system__group li::before,
.trust-block__list li::before,
.comparison__list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(108, 78, 255, 0.48);
  transform: translateY(-50%);
}

.overview-system__group li + li,
.trust-block__list li + li,
.comparison__list li + li {
  margin-top: 0;
}

.overview-system__center {
  display: flex;
  justify-content: center;
}

.overview-system__ring {
  display: grid;
  place-items: center;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  padding: 22px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.9), rgba(108, 78, 255, 0.1));
  border: 1px solid rgba(108, 78, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), var(--shadow-medium);
}

.overview-system__core {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 1.4rem;
  text-align: center;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #ffffff;
}

.overview-system__label {
  font-size: 1.2rem;
  font-weight: 800;
}

.overview-system__subline {
  margin-top: 0.4rem;
  font-size: 0.92rem;
  opacity: 0.92;
}

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

.comparison__card {
  padding: 1.5rem;
  border-radius: 24px;
}

.comparison__card--muted {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(108, 78, 255, 0.1);
}

.comparison__card--primary {
  background: linear-gradient(135deg, #4f2bf7 0%, #8b5ccb 100%);
  border: 1px solid transparent;
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.comparison__card--primary .comparison__list,
.comparison__card--primary h3 {
  color: #ffffff;
}

.comparison__card h3,
.pathway-step h3,
.trust-block h2,
.cta-panel h2 {
  margin-top: 0;
}

.features-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(108, 78, 255, 0.1);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.features-intro__text {
  margin: 0;
  color: var(--color-muted);
}

.card--module {
  position: relative;
  padding-top: 1.9rem;
}

.card__icon--module {
  position: absolute;
  top: 1.25rem;
  right: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 14px;
  background: rgba(108, 78, 255, 0.08);
  border: 1px solid rgba(108, 78, 255, 0.12);
  color: var(--color-primary);
}

.card__icon--module svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card--module .card__title {
  padding-right: 2.6rem;
}

.pathway {
  display: grid;
  gap: 2rem;
}

.pathway-step {
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(108, 78, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.pathway-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: #f2ebff;
  color: var(--color-primary);
  font-weight: 800;
}

.pathway__grid--roadmap {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.pathway-step--roadmap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  align-items: start;
  padding: 1.55rem 1.6rem;
}

.pathway-step--roadmap::after {
  content: "";
  position: absolute;
  left: 2rem;
  top: calc(100% + 0.12rem);
  width: 1px;
  height: 1rem;
  background: rgba(108, 78, 255, 0.16);
}

.pathway-step--roadmap:last-child::after {
  display: none;
}

.pathway-step--roadmap .pathway-step__index {
  margin-bottom: 0;
  grid-row: 1 / span 2;
}

.pathway-step--roadmap h3,
.pathway-step--roadmap p {
  margin: 0;
}

.trust-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.8rem;
}

.about-teaser,
.cta-banner {
  gap: 1.4rem;
}

.about-teaser__content p + p {
  margin-top: 0.95rem;
}

.cta-banner__actions {
  margin-top: 0.3rem;
}

.trust-block__intro {
  max-width: 100%;
}

.trust-block__text + .trust-block__list,
.card__text + .text-link,
.trust-block__list + .btn,
.trust-block__list + .text-link,
.comparison__list + .btn,
.comparison__list + .text-link,
.integration-aside + .btn,
.integration-aside + .text-link {
  margin-top: 1.35rem;
}

.trust-block--with-footer {
  display: grid;
  gap: 1.5rem;
}

.trust-block--booking-flow .trust-block__details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.integration-aside {
  margin-top: 1.35rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(108, 78, 255, 0.06);
  border: 1px solid rgba(108, 78, 255, 0.12);
}

.integration-aside__label {
  display: inline-flex;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-primary);
}

#ai-concierge .section-intro + .grid {
  margin-top: 2.35rem;
}

#ai-concierge .grid + .grid {
  margin-top: 2rem;
}

#ai-concierge .trust-block {
  padding: 2rem;
}

#ai-concierge .card {
  padding: 1.65rem;
}

.product-summary-grid {
  margin-top: 2.25rem;
}

.product-split {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
  gap: 1.35rem;
  align-items: start;
}

.product-split .product-summary-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

.product-split__visual {
  display: flex;
  justify-content: flex-end;
}

#product-model .grid.grid--3 {
  align-items: stretch;
}

.product-link-card,
.product-cta-block {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-section__actions {
  margin-top: auto;
  padding-top: 1.5rem;
}

#voice .product-summary-grid,
#voice .screenshot-stack,
#voice .screenshot-pile,
#voice .grid.grid--2 {
  margin-top: 2.1rem;
}

#email-pipeline .product-summary-grid,
#email-pipeline .grid.grid--2 {
  margin-top: 2.1rem;
}

.product-pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 1.2rem;
  align-items: start;
}

.trust-block--addon-pricing {
  max-width: 440px;
  justify-self: end;
  padding: 1.4rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.992);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-order, 0) * 35ms);
  will-change: opacity, transform;
}

.reveal-on-scroll[data-reveal-tier="soft"] {
  transform: translate3d(0, 14px, 0);
  transition-duration: 420ms, 520ms;
}

.reveal-on-scroll[data-reveal-tier="strong"] {
  transform: translate3d(0, 24px, 0) scale(0.985);
  transition-duration: 580ms, 700ms;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.anchor-extension {
  margin-top: 1.6rem;
  padding: 1.25rem 1.3rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(252, 248, 255, 0.94) 100%);
  border: 1px solid rgba(108, 78, 255, 0.14);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.anchor-extension__lead {
  margin: 0;
  color: var(--color-muted);
}

.anchor-extension__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.15rem;
  margin-top: 1rem;
}

.anchor-extension__title {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(108, 78, 255, 0.2);
  background: rgba(108, 78, 255, 0.08);
  color: #5b3de6;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.anchor-extension__outcomes,
.anchor-extension__faq {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--color-muted);
}

.anchor-extension__outcomes {
  display: grid;
  gap: 0.5rem;
}

.anchor-extension__faq {
  display: grid;
  gap: 0.72rem;
}

.anchor-extension__faq strong {
  color: var(--color-text);
  font-size: 0.92rem;
}

.anchor-extension__faq span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.anchor-extension__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.05rem;
}

.screenshot-stack {
  position: relative;
  max-width: 920px;
  margin: 1.5rem auto 0;
  padding: 0.15rem 0 0.7rem;
}

.screenshot-stack__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.5fr);
  gap: 0.45rem;
  align-items: start;
}

.screenshot-stack__side {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding-top: 1.3rem;
  margin-left: -4.2rem;
}

.screenshot-stack__item {
  position: relative;
  overflow: visible;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.screenshot-stack__item--main {
  z-index: 3;
}

.screenshot-stack__item--secondary {
  z-index: 2;
  transform: translate(-1rem, 0.95rem) scale(0.91);
}

.screenshot-stack__item--tertiary {
  z-index: 1;
  transform: translate(-2.35rem, -0.2rem) scale(0.87);
}

.screenshot-stack__frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(130, 96, 255, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.78) inset;
  padding: 0.55rem;
}

.screenshot-stack__item--secondary .screenshot-stack__frame,
.screenshot-stack__item--tertiary .screenshot-stack__frame {
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
  padding: 0.5rem;
}

.screenshot-stack img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  margin: 0 auto;
}

.screenshot-stack__item--secondary img,
.screenshot-stack__item--tertiary img {
  max-height: 132px;
}

.screenshot-stack__caption {
  display: grid;
  gap: 0.22rem;
  margin-top: 0.55rem;
  padding: 0.72rem 0.82rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(130, 96, 255, 0.14);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.screenshot-stack__caption strong {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--color-text);
}

.screenshot-stack__caption span {
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.product-shot-list {
  position: relative;
  max-width: 940px;
  margin: 1.65rem auto 0;
  padding: 0.2rem 0 0.4rem;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.68fr);
  gap: 0.95rem;
  align-items: start;
}

.product-split__visual .product-shot-list {
  margin: 0;
  width: 100%;
  max-width: 330px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  padding: 0;
}

.product-split__visual .product-shot-list__secondary {
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.product-split__visual .product-shot--featured {
  width: 100%;
}

.product-split__visual .product-shot-list__secondary .product-shot:first-child,
.product-split__visual .product-shot-list__secondary .product-shot:last-child {
  margin-top: 0;
  margin-left: 0;
  transform: none;
}

.product-split__visual .product-shot__frame,
.product-split__visual .product-shot--featured .product-shot__frame {
  border-radius: 16px;
  padding: 0.48rem;
}

.product-split__visual .product-shot img,
.product-split__visual .product-shot--featured img {
  width: 100%;
  height: 156px;
  min-height: 156px;
  max-height: 156px;
  object-fit: contain;
}

.product-split__visual .product-shot__caption {
  padding: 0.66rem 0.72rem;
}

.product-split__visual .product-shot__caption strong {
  font-size: 0.8rem;
}

.product-split__visual .product-shot__caption span {
  font-size: 0.84rem;
}

.product-shot-list__secondary {
  position: static;
  width: auto;
  display: grid;
  gap: 0.95rem;
}

.product-shot {
  position: relative;
  display: grid;
  gap: 0.65rem;
  z-index: 1;
  transition: transform 220ms ease, box-shadow 220ms ease, z-index 0ms linear 120ms;
}

.product-shot--featured {
  width: 100%;
  z-index: 2;
}

.product-shot-list__secondary .product-shot:first-child {
  z-index: 1;
  transform: none;
}

.product-shot-list__secondary .product-shot:last-child {
  margin-top: 0;
  margin-left: 0;
  z-index: 1;
  transform: none;
}

.product-shot__frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(130, 96, 255, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.78) inset;
  padding: 0.55rem;
  transition: box-shadow 240ms ease, border-color 240ms ease;
}

.product-shot--featured .product-shot__frame {
  border-radius: 20px;
  padding: 0.65rem;
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  max-height: 220px;
}

.product-shot--featured img {
  max-height: 300px;
}

.product-shot__caption {
  display: grid;
  gap: 0.22rem;
  padding: 0.72rem 0.82rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(130, 96, 255, 0.14);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.product-shot__caption strong {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--color-text);
}

.product-shot__caption span {
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.screenshot-pile {
  position: relative;
  max-width: 980px;
  margin: 1.65rem auto 0;
  padding: 0.4rem 0 1.2rem;
}

.screenshot-pile__canvas {
  position: relative;
  min-height: 620px;
}

.screenshot-pile__item {
  position: absolute;
  display: grid;
  gap: 0.72rem;
}

.screenshot-pile__item--main {
  top: 5%;
  left: 0;
  width: 68%;
  z-index: 3;
}

.screenshot-pile__item--top {
  top: 0;
  right: 0;
  width: 42%;
  z-index: 4;
}

.screenshot-pile__item--bottom {
  right: 3%;
  bottom: 0;
  width: 44%;
  z-index: 2;
}

.screenshot-pile__frame {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(130, 96, 255, 0.16);
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
  padding: 0.62rem;
}

.screenshot-pile__item--top .screenshot-pile__frame,
.screenshot-pile__item--bottom .screenshot-pile__frame {
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
  padding: 0.55rem;
}

.screenshot-pile img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  margin: 0 auto;
}

.screenshot-pile__item--top img,
.screenshot-pile__item--bottom img {
  max-height: 235px;
}

.screenshot-pile__caption {
  display: grid;
  gap: 0.24rem;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(130, 96, 255, 0.14);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.screenshot-pile__caption strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-text);
}

.screenshot-pile__caption span {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.card--supporting-panel {
  position: relative;
  overflow: hidden;
  padding: 1.8rem;
  background:
    radial-gradient(circle at top right, rgba(108, 78, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
}

.card--supporting-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(108, 78, 255, 0.03), transparent 45%);
  pointer-events: none;
}

.card--supporting-panel .section-intro__eyebrow {
  margin-bottom: 0.9rem;
}

.cta-panel--dentconnect {
  display: block;
  padding: 2rem;
}

.cta-panel--dentconnect > div {
  max-width: 920px;
}

.dentconnect-points {
  margin-top: 1.2rem;
}

#solution-next-steps .grid,
#next-steps .cta-panel__actions {
  margin-top: 1.15rem;
}

@media (hover: hover) {
  .screenshot-stack:hover .screenshot-stack__item {
    opacity: 0.88;
  }

  .screenshot-stack:hover .screenshot-stack__item:hover {
    opacity: 1;
    z-index: 10;
    transform: translateY(-6px) scale(1.05);
  }

  .product-shot:hover {
    z-index: 20;
    transform: translateY(-4px) scale(1.01);
    transition-delay: 0ms;
  }

  .product-shot:hover .product-shot__frame {
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
  }

  .product-split__visual .product-shot:hover {
    transform: translateY(-2px);
  }

  .product-split__visual .product-shot:hover .product-shot__frame {
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.13);
    border-color: rgba(130, 96, 255, 0.28);
  }
}

@media (max-width: 900px) {
  .anchor-extension__grid {
    grid-template-columns: 1fr;
  }

  .screenshot-stack__layout {
    grid-template-columns: 1fr;
  }

  .screenshot-stack__side {
    grid-template-columns: 1fr 1fr;
    padding-top: 0.4rem;
    margin-left: 0;
  }

  .screenshot-stack__item--secondary,
  .screenshot-stack__item--tertiary {
    transform: none;
  }

  .screenshot-stack img {
    max-height: 300px;
  }

  .screenshot-stack__item--secondary img,
  .screenshot-stack__item--tertiary img {
    max-height: 180px;
  }

  .product-shot-list {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }

  .product-shot--featured {
    width: 100%;
  }

  .product-split {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-split__visual {
    justify-content: flex-start;
  }

  .product-split__visual .product-shot-list {
    max-width: 100%;
    margin-top: 0;
  }

  .product-split__visual .product-shot-list__secondary {
    grid-template-columns: 1fr;
  }

  .product-shot-list__secondary {
    position: static;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
  }

  .product-shot img,
  .product-shot--featured img {
    max-height: 280px;
  }

  .product-split__visual .product-shot img,
  .product-split__visual .product-shot--featured img {
    height: 170px;
    min-height: 170px;
    max-height: 170px;
  }

  .product-shot-list__secondary .product-shot:first-child,
  .product-shot-list__secondary .product-shot:last-child {
    margin-top: 0;
    margin-left: 0;
    transform: none;
  }

  .screenshot-pile__canvas {
    min-height: 0;
    display: grid;
    gap: 1rem;
  }

  .screenshot-pile__item,
  .screenshot-pile__item--main,
  .screenshot-pile__item--top,
  .screenshot-pile__item--bottom {
    position: static;
    width: 100%;
  }

  .screenshot-pile__item--top,
  .screenshot-pile__item--bottom {
    max-width: 72%;
  }

  .screenshot-pile__item--top {
    justify-self: end;
  }

  .screenshot-pile__item--bottom {
    justify-self: start;
  }

  .product-pricing-grid {
    grid-template-columns: 1fr;
  }

  .trust-block--addon-pricing {
    max-width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  .screenshot-stack {
    margin-top: 1.25rem;
  }

  .screenshot-stack__side {
    grid-template-columns: 1fr;
  }

  .product-section__actions .btn {
    width: 100%;
  }

  .screenshot-stack__frame,
  .screenshot-stack__item--secondary .screenshot-stack__frame,
  .screenshot-stack__item--tertiary .screenshot-stack__frame {
    padding: 0.45rem;
  }

  .screenshot-stack img,
  .screenshot-stack__item--secondary img,
  .screenshot-stack__item--tertiary img {
    max-height: none;
  }

  .product-shot-list {
    margin-top: 1.25rem;
  }

  .product-shot-list__secondary {
    grid-template-columns: 1fr;
  }

  .product-shot__frame,
  .product-shot--featured .product-shot__frame {
    padding: 0.45rem;
  }

  .product-shot img,
  .product-shot--featured img {
    max-height: none;
  }

  .product-split__visual .product-shot img,
  .product-split__visual .product-shot--featured img {
    height: 156px;
    min-height: 156px;
    max-height: 156px;
  }

  .screenshot-pile {
    margin-top: 1.25rem;
  }

  .screenshot-pile__canvas {
    gap: 0.85rem;
  }

  .screenshot-pile__item--top,
  .screenshot-pile__item--bottom {
    max-width: 100%;
  }

  .screenshot-pile__frame,
  .screenshot-pile__item--top .screenshot-pile__frame,
  .screenshot-pile__item--bottom .screenshot-pile__frame {
    padding: 0.45rem;
  }

  .screenshot-pile img,
  .screenshot-pile__item--top img,
  .screenshot-pile__item--bottom img {
    max-height: none;
  }
}

.showcase-stage {
  --showcase-accent-rgb: 108, 78, 255;
  margin-top: 2rem;
  padding: 1.45rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fdfcff 100%);
  border: 1px solid rgba(var(--showcase-accent-rgb), 0.14);
  box-shadow: var(--shadow-soft);
}

.showcase-stage__intro {
  display: grid;
  gap: 0.65rem;
  max-width: 54ch;
  margin-bottom: 1rem;
}

.showcase-stage__eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 32px;
  padding: 0 0.82rem;
  border-radius: 999px;
  background: rgba(var(--showcase-accent-rgb), 0.1);
  color: rgb(var(--showcase-accent-rgb));
  font-size: 0.82rem;
  font-weight: 800;
}

.showcase-stage__intro p {
  margin: 0;
  color: var(--color-muted);
}

.showcase-stage__shell {
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(var(--showcase-accent-rgb), 0.1);
  box-shadow: 0 16px 34px rgba(var(--showcase-accent-rgb), 0.06);
}

.showcase-stage__bar {
  display: flex;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(var(--showcase-accent-rgb), 0.1);
  background: rgba(var(--showcase-accent-rgb), 0.04);
}

.showcase-stage__bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(var(--showcase-accent-rgb), 0.16);
}

.showcase-stage__canvas {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(var(--showcase-accent-rgb), 0.09), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(var(--showcase-accent-rgb), 0.06), transparent 24%),
    linear-gradient(180deg, rgba(var(--showcase-accent-rgb), 0.03), rgba(255, 255, 255, 0.985));
}

.showcase-stage__canvas--compact {
  min-height: 250px;
}

.showcase-stage__layer,
.showcase-stage__frame {
  position: absolute;
  border-radius: 24px;
}

.showcase-stage__layer {
  background: linear-gradient(135deg, rgba(var(--showcase-accent-rgb), 0.09), rgba(var(--showcase-accent-rgb), 0.025));
  filter: blur(0.4px);
}

.showcase-stage__layer--primary {
  inset: 12% 12% auto auto;
  width: 36%;
  height: 44%;
}

.showcase-stage__layer--secondary {
  inset: auto auto 14% 10%;
  width: 28%;
  height: 30%;
}

.showcase-stage__frame {
  inset: 12% 11% 10% 11%;
  border: 1px solid rgba(var(--showcase-accent-rgb), 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.38));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.showcase-stage__frame--secondary {
  inset: 22% 54% 18% 16%;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(var(--showcase-accent-rgb), 0.07), rgba(255, 255, 255, 0.32));
}

.showcase-stage--platform {
  --showcase-accent-rgb: 78, 163, 255;
}

.showcase-stage--solutions {
  --showcase-accent-rgb: 30, 167, 161;
}

.showcase-stage--products {
  --showcase-accent-rgb: 108, 78, 255;
}

.showcase-stage--voice {
  --showcase-accent-rgb: 78, 163, 255;
}

.logo-slider {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(108, 78, 255, 0.1);
  border-bottom: 1px solid rgba(108, 78, 255, 0.1);
}

.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(248, 243, 255, 1) 0%, rgba(248, 243, 255, 0) 100%);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(248, 243, 255, 1) 0%, rgba(248, 243, 255, 0) 100%);
}

.logo-slider__track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: logo-scroll 38s linear infinite;
}

.logo-slider:hover .logo-slider__track {
  animation-play-state: paused;
}

.logo-slider__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 96px;
  padding: 0.5rem 1rem;
}

.logo-slider__item img {
  display: block;
  max-width: 100%;
  max-height: 96px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-slider--reverse .logo-slider__track {
  animation-name: logo-scroll-reverse;
}

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

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

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field--hp {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.form-field span {
  font-size: 0.92rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(108, 78, 255, 0.16);
  border-radius: 16px;
  background: #ffffff;
  color: var(--color-text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(108, 78, 255, 0.12);
}

.form-status {
  margin: 0 0 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(108, 78, 255, 0.12);
  background: rgba(108, 78, 255, 0.06);
  line-height: 1.6;
}

.form-status--error {
  border-color: rgba(202, 77, 77, 0.18);
  background: rgba(202, 77, 77, 0.08);
  color: #7a1f1f;
}

.form-status--info {
  border-color: rgba(108, 78, 255, 0.12);
  background: rgba(108, 78, 255, 0.06);
  color: var(--color-text);
}

.form-disclaimer {
  margin: 0.95rem 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.form-disclaimer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

#demo-booking-trigger[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.booking-panel {
  margin-top: 2rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.booking-panel h2 {
  margin: 0 0 0.75rem;
}

.booking-panel__notice {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(108, 78, 255, 0.06);
  border: 1px solid rgba(108, 78, 255, 0.1);
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.booking-panel__frame {
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(108, 78, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.booking-panel__frame iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  background: #ffffff;
}

.trust-block--booking-flow-full {
  grid-template-columns: 1fr;
}

.trust-block--booking-flow-full .booking-panel {
  margin-top: 2rem;
}

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

.legal-card {
  padding: 1.75rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfaff 100%);
  border: 1px solid rgba(108, 78, 255, 0.14);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin: 0 0 1rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.legal-card p {
  margin: 0;
  color: var(--color-muted);
}

.legal-meta {
  display: grid;
  gap: 1rem;
}

.legal-meta__item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(108, 78, 255, 0.05);
  border: 1px solid rgba(108, 78, 255, 0.1);
  color: var(--color-text);
  line-height: 1.65;
}

.legal-meta__item strong {
  display: block;
  margin-bottom: 0.3rem;
}

.footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #4b2dc2 0%, #7a54b8 52%, #a85a9c 100%);
  padding: 3rem 0 2rem;
  color: rgba(255, 255, 255, 0.88);
}

.footer__logo {
  width: fit-content;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer__brand p,
.footer__text {
  margin: 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.footer__nav {
  display: none;
}

.footer__links {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer__links h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}

.footer__links p,
.footer__links a {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.6;
}

.footer__links button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.6;
  text-align: left;
  cursor: pointer;
}

.footer__links a:hover,
.footer__links button:hover {
  color: #f3eaff;
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.text-link:hover {
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .hero__inner,
  .overview-system,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .grid--4 {
    display: grid;
  }

  .overview-system__center {
    order: -1;
  }

  .cta-panel {
    flex-direction: column;
  }

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

  .overview-embed {
    grid-template-columns: 1fr;
  }

  .overview-embed__intro {
    max-width: 100%;
  }

  .hero-oversite__content h1 {
    max-width: 17ch;
  }
}

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

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .header .language-switch {
    display: none;
  }

  .hero {
    padding: 4.5rem 0;
  }

  .hero h1 {
    max-width: none;
  }

  .hero--oversite {
    padding: 0;
  }

  .hero-oversite__inner {
    min-height: auto;
    flex-direction: column;
  }

  .hero-oversite__content,
  .hero-oversite__visual {
    min-height: auto;
  }

  .hero-oversite__content {
    width: 100%;
    min-height: auto;
    margin-right: 0;
    padding: 2.5rem 1.5rem;
    align-items: flex-start;
    clip-path: none;
    box-shadow: none;
    border-radius: 0;
  }

  .hero-oversite__content h1 {
    max-width: 18ch;
  }

  .hero-oversite__visual {
    min-height: 300px;
  }

  .hero-oversite__mesh {
    inset: 12% 10% 14% 10%;
    transform: none;
  }

  .hero-oversite__panel--a {
    top: 16%;
    right: 12%;
    width: 34%;
    height: 30%;
  }

  .hero-oversite__panel--b {
    right: 26%;
    bottom: 14%;
    width: 26%;
    height: 18%;
  }

  .hero-oversite__panel--c {
    top: 48%;
    left: 12%;
    width: 20%;
    height: 16%;
  }

  .grid--2,
  .grid--3,
  .comparison__grid,
  .pathway__grid,
  .form-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .pathway-step--roadmap {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .pathway-step--roadmap::after {
    left: 1.3rem;
  }

  .pathway-step--roadmap .pathway-step__index {
    grid-row: auto;
  }

  .booking-panel__frame iframe {
    min-height: 640px;
  }
}

@media (max-width: 760px) {
  .header__inner {
    min-height: 78px;
  }

  .site-logo__image {
    height: 34px;
  }

  .footer__logo .site-logo__image {
    height: 36px;
  }

  .hero {
    padding: 4rem 0 4.5rem;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .hero-oversite__content {
    padding: 2.5rem 1.5rem;
  }

  .hero-oversite__content h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 3.6rem);
  }

  .hero-oversite__content p {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero-oversite__visual {
    min-height: 210px;
  }

  .hero--oversite .hero__cta .btn {
    width: 100%;
  }

  .hero--oversite .hero__meta {
    gap: 0.55rem;
  }

  .section {
    padding: 3.3rem 0;
  }

  .overview-system-block,
  .trust-block,
  .cta-panel,
  .card {
    padding: 1.25rem;
  }

  .showcase-stage {
    padding: 1.2rem;
  }

  .showcase-stage__canvas {
    min-height: 260px;
  }

  .showcase-stage__canvas--compact {
    min-height: 220px;
  }

  .overview-system__ring {
    width: 220px;
    height: 220px;
  }

  .overview-embed__live-stage,
  #aic-chat-widget-id,
  #aic-chat-widget-id > * {
    min-height: 520px;
  }

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

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

  .logo-slider__item {
    min-width: 160px;
    height: 82px;
    padding: 0.4rem 0.8rem;
  }

  .logo-slider__item img {
    max-height: 82px;
  }

  .logo-slider::before,
  .logo-slider::after {
    width: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-oversite__glow,
  .hero-oversite__mesh,
  .hero-oversite__panel {
    animation: none;
  }

  .hero-oversite__visual:hover .hero-oversite__panel,
  .hero-oversite__visual:hover .hero-oversite__panel--a,
  .hero-oversite__visual:hover .hero-oversite__panel--b,
  .hero-oversite__visual:hover .hero-oversite__panel--c {
    transform: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== New Landing Pages (Tourism / SME / Public Sector / Reseller) ===== */

/* Photo hero layout for tourism, sme and public-sector */
.hero--image-left {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
}

.hero-photo__inner {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: stretch;
}

.hero-photo__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-photo__content {
  position: relative;
  z-index: 2;
  margin-right: auto;
  width: min(50%, 760px);
  min-height: 560px;
  padding: 4rem 4rem 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #4f2bf7 0%, #8b5ccb 55%, #a85a9c 100%);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  box-shadow: 24px 0 48px rgba(39, 24, 110, 0.18);
}

.hero-photo__content h1 {
  margin: 0 0 1rem;
  max-width: 15ch;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.hero-photo__content p {
  margin: 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.72;
}

.hero--image-left .hero__eyebrow.hero__eyebrow--on-dark {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 36px;
  padding: 0 0.9rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.88rem;
  font-weight: 800;
}

/* Hero background images */
.hero--tourism-photo .hero-photo__media {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 30%, rgba(255, 255, 255, 0) 52%),
    url("../img/hero/tourism-hero.jpg");
}

.hero--public-photo .hero-photo__media {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 30%, rgba(255, 255, 255, 0) 52%),
    url("../img/hero/public-sector-hero.jpg");
}

.hero--sme-photo .hero-photo__media {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 30%, rgba(255, 255, 255, 0) 52%),
    url("../img/hero/sme-hero.jpg");
}

/* Page accents for tourism / public-sector / sme */
.page--tourism {
  --tourism-accent: #1ea7a1;
  --tourism-accent-dark: #14857f;
  --tourism-accent-soft: rgba(30, 167, 161, 0.10);
  --tourism-accent-line: rgba(30, 167, 161, 0.22);
}

.page--tourism .hero {
  background:
    radial-gradient(circle at top right, rgba(30, 167, 161, 0.16), transparent 28%),
    radial-gradient(circle at left center, rgba(30, 167, 161, 0.10), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f5fcfb 100%);
}

.page--tourism .section--bg {
  background: linear-gradient(180deg, #f7fcfb 0%, #edf8f6 100%);
  border-top: 1px solid rgba(30, 167, 161, 0.10);
  border-bottom: 1px solid rgba(30, 167, 161, 0.10);
}

.page--tourism .hero__eyebrow,
.page--tourism .features-intro__eyebrow,
.page--tourism .overview__eyebrow,
.page--tourism .comparison__eyebrow,
.page--tourism .trust-block__eyebrow,
.page--tourism .security-intro__eyebrow {
  background: var(--tourism-accent-soft);
  color: var(--tourism-accent-dark);
}

.page--tourism .integration-aside {
  border-left-color: var(--tourism-accent-line);
  background: rgba(30, 167, 161, 0.06);
}

.page--tourism .integration-aside__label {
  color: var(--tourism-accent-dark);
}

.tourism-points {
  display: grid;
  gap: 0.85rem;
}

.tourism-points__item {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(30, 167, 161, 0.06);
  border: 1px solid rgba(30, 167, 161, 0.10);
  color: var(--color-text);
  line-height: 1.6;
}

.page--public-sector {
  --public-sector-accent: #b87333;
  --public-sector-accent-dark: #8b5a2b;
  --public-sector-accent-soft: rgba(184, 115, 51, 0.10);
  --public-sector-accent-line: rgba(184, 115, 51, 0.22);
}

.page--public-sector .hero {
  background:
    radial-gradient(circle at top right, rgba(184, 115, 51, 0.16), transparent 28%),
    radial-gradient(circle at left center, rgba(184, 115, 51, 0.10), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fdf9f5 100%);
}

.page--public-sector .section--bg {
  background: linear-gradient(180deg, #fbf8f4 0%, #f5f0e8 100%);
  border-top: 1px solid rgba(184, 115, 51, 0.10);
  border-bottom: 1px solid rgba(184, 115, 51, 0.10);
}

.page--public-sector .hero__eyebrow,
.page--public-sector .features-intro__eyebrow,
.page--public-sector .overview__eyebrow,
.page--public-sector .comparison__eyebrow,
.page--public-sector .trust-block__eyebrow,
.page--public-sector .security-intro__eyebrow {
  background: var(--public-sector-accent-soft);
  color: var(--public-sector-accent-dark);
}

.page--public-sector .integration-aside {
  border-left-color: var(--public-sector-accent-line);
  background: rgba(184, 115, 51, 0.06);
}

.page--public-sector .integration-aside__label {
  color: var(--public-sector-accent-dark);
}

.public-points {
  display: grid;
  gap: 0.85rem;
}

.public-points__item {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(184, 115, 51, 0.06);
  border: 1px solid rgba(184, 115, 51, 0.10);
  color: var(--color-text);
  line-height: 1.6;
}

.page--sme {
  --sme-accent: #4ea3ff;
  --sme-accent-dark: #2f78c9;
  --sme-accent-soft: rgba(78, 163, 255, 0.10);
  --sme-accent-line: rgba(78, 163, 255, 0.22);
}

.page--sme .hero {
  background:
    radial-gradient(circle at top right, rgba(78, 163, 255, 0.16), transparent 28%),
    radial-gradient(circle at left center, rgba(78, 163, 255, 0.10), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
}

.page--sme .section--bg {
  background: linear-gradient(180deg, #f7fbff 0%, #edf5fd 100%);
  border-top: 1px solid rgba(78, 163, 255, 0.10);
  border-bottom: 1px solid rgba(78, 163, 255, 0.10);
}

.page--sme .hero__eyebrow,
.page--sme .features-intro__eyebrow,
.page--sme .overview__eyebrow,
.page--sme .comparison__eyebrow,
.page--sme .trust-block__eyebrow,
.page--sme .security-intro__eyebrow {
  background: var(--sme-accent-soft);
  color: var(--sme-accent-dark);
}

.page--sme .integration-aside {
  border-left-color: var(--sme-accent-line);
  background: rgba(78, 163, 255, 0.06);
}

.page--sme .integration-aside__label {
  color: var(--sme-accent-dark);
}

.page--reseller {
  --reseller-accent: #6c4eff;
  --reseller-accent-dark: #4f33d6;
  --reseller-accent-soft: rgba(108, 78, 255, 0.11);
  --reseller-accent-line: rgba(108, 78, 255, 0.22);
}

.page--reseller .hero {
  background:
    radial-gradient(circle at top right, rgba(108, 78, 255, 0.2), transparent 28%),
    radial-gradient(circle at left center, rgba(108, 78, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f6f2ff 100%);
}

.page--reseller .section--bg {
  background: linear-gradient(180deg, #f8f4ff 0%, #f1ebff 100%);
  border-top: 1px solid rgba(108, 78, 255, 0.1);
  border-bottom: 1px solid rgba(108, 78, 255, 0.1);
}

.page--reseller .hero__eyebrow,
.page--reseller .features-intro__eyebrow,
.page--reseller .overview__eyebrow,
.page--reseller .comparison__eyebrow,
.page--reseller .trust-block__eyebrow,
.page--reseller .security-intro__eyebrow {
  background: var(--reseller-accent-soft);
  color: var(--reseller-accent-dark);
}

.page--reseller .integration-aside {
  border-left-color: var(--reseller-accent-line);
  background: rgba(108, 78, 255, 0.06);
}

.page--reseller .integration-aside__label {
  color: var(--reseller-accent-dark);
}

.page--reseller .card:hover {
  border-color: rgba(108, 78, 255, 0.24);
}

.page--reseller .hero__inner--subpage {
  display: block;
}

.page--reseller .hero__content--subpage {
  max-width: 860px;
}

.page--reseller .logo-slider {
  border-top-color: var(--reseller-accent-line);
  border-bottom-color: var(--reseller-accent-line);
}

.page--reseller .logo-slider::before {
  background: linear-gradient(90deg, rgba(248, 244, 255, 1) 0%, rgba(248, 244, 255, 0) 100%);
}

.page--reseller .logo-slider::after {
  background: linear-gradient(270deg, rgba(248, 244, 255, 1) 0%, rgba(248, 244, 255, 0) 100%);
}

.sme-points {
  display: grid;
  gap: 0.85rem;
}

.sme-points__item {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(78, 163, 255, 0.06);
  border: 1px solid rgba(78, 163, 255, 0.10);
  color: var(--color-text);
  line-height: 1.6;
}

.reseller-points {
  display: grid;
  gap: 0.85rem;
}

.reseller-points__item {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(108, 78, 255, 0.06);
  border: 1px solid rgba(108, 78, 255, 0.1);
  color: var(--color-text);
  line-height: 1.6;
}

.reseller-collab-grid {
  margin-top: 1.75rem;
}

.reseller-collab-card {
  padding: 1.45rem;
}

.reseller-collab-card .trust-block__eyebrow {
  margin-bottom: 0.8rem;
}

@media (max-width: 1180px) {
  .hero-photo__content {
    width: min(56%, 720px);
    padding: 3.5rem 2.5rem 3.5rem 3.5rem;
  }

  .hero-photo__content h1 {
    max-width: 16ch;
  }
}

@media (max-width: 980px) {
  .hero-photo__inner {
    min-height: auto;
    flex-direction: column;
  }

  .hero-photo__media {
    position: relative;
    min-height: 300px;
  }

  .hero-photo__content {
    width: 100%;
    min-height: auto;
    margin-right: 0;
    padding: 2.5rem 1.5rem;
    clip-path: none;
    box-shadow: none;
  }

  .hero-photo__content h1 {
    max-width: 15ch;
  }

  .hero-photo__content p {
    max-width: 100%;
  }
}
