/* ============================================
   SPARK TECHNOLOGIES – Enterprise AI Theme
   ============================================ */

:root {
  --navy: #0A0B30;
  --navy-80: #1A1C4A;
  --purple: #4F32FF;
  --purple-dark: #3D1FDB;
  --blue: #2563EB;
  --white: #FFFFFF;
  --off-white: #F7F8FC;
  --lavender: #EEF0FF;
  --lavender-border: #D8DCFF;
  --gray-50: #F4F5FA;
  --gray-100: #EAECF4;
  --gray-300: #B0B7CC;
  --gray-500: #6B7394;
  --gray-700: #3A4060;
  --gradient-primary: linear-gradient(135deg, #4F32FF 0%, #2563EB 100%);
  --gradient-icon: linear-gradient(145deg, #5B3FFF 0%, #2B6AFF 100%);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 50px;
  --shadow-xs: 0 1px 3px rgba(10, 11, 48, 0.06);
  --shadow-sm: 0 2px 12px rgba(10, 11, 48, 0.07);
  --shadow-btn: 0 4px 20px rgba(79, 50, 255, 0.35);
  --shadow-btn-hover: 0 8px 32px rgba(79, 50, 255, 0.45);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(79, 50, 255, 0.12);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --booth-max: 1320px;
  --col-side: 300px;
  --col-gap: 36px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  background: linear-gradient(180deg, #FAFBFF 0%, #F4F6FC 40%, #FFFFFF 100%);
  color: var(--navy);
  line-height: 1.5;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.02em;
  overflow: hidden;
  isolation: isolate;
}

.btn:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.btn__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.btn:hover .btn__icon {
  transform: translateX(3px);
}

.btn__icon--left {
  transition: transform var(--transition);
}

.btn:hover .btn__icon--left {
  transform: none;
}

.btn--sm { padding: 11px 20px; font-size: 0.8125rem; min-height: 42px; }
.btn--lg { padding: 16px 32px; font-size: 0.9375rem; min-height: 52px; }
.btn--hero { padding: 14px 28px; min-height: 48px; font-size: 0.875rem; }
.btn--full { width: 100%; }

/* Primary – gradient with glow */
.btn--primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}

.btn--primary > * {
  position: relative;
  z-index: 1;
}

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

.btn--primary:hover::before {
  opacity: 1;
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-btn);
}

/* Outline – navy border */
.btn--outline {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-xs);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 11, 48, 0.2);
}

.btn--outline:active {
  transform: translateY(0);
}

/* Glass – theme accent */
.btn--glass {
  background: var(--glass-bg);
  color: var(--navy);
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xs);
}

.btn--glass:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--lavender);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(79, 50, 255, 0.15);
}

/* Submit button */
.btn--submit {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 18px 32px;
  min-height: 56px;
  border-radius: var(--radius-md);
}

.btn--submit .btn__icon {
  width: 20px;
  height: 20px;
}

/* ============================================
   BOOTH – Exhibition Layout
   ============================================ */
.booth {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(79, 50, 255, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 45% at 0% 60%, rgba(107, 82, 255, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #FCFCFF 0%, #F8F9FE 45%, #FFFFFF 100%);
  overflow: hidden;
}

/* Ambient soft background layers */
.booth__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.booth__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: orbFloat 18s ease-in-out infinite;
}

.booth__orb--1 {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(79, 50, 255, 0.18) 0%, rgba(79, 50, 255, 0) 70%);
}

.booth__orb--2 {
  width: min(400px, 55vw);
  height: min(400px, 55vw);
  bottom: 18%;
  right: -8%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, rgba(37, 99, 235, 0) 70%);
  animation-delay: -6s;
}

.booth__orb--3 {
  width: min(360px, 50vw);
  height: min(360px, 50vw);
  bottom: 25%;
  left: -10%;
  background: radial-gradient(circle, rgba(139, 120, 255, 0.12) 0%, rgba(139, 120, 255, 0) 70%);
  animation-delay: -12s;
}

.booth__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 50, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 50, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 10%, transparent 75%);
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(12px, -16px) scale(1.04); }
  66% { transform: translate(-10px, 10px) scale(0.98); }
}

.booth__orb--1 {
  animation-name: orbFloatCenter;
}

@keyframes orbFloatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-50%) translateY(-20px) scale(1.05); }
}

.booth__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.35;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.booth__watermark {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(460px, 58vw);
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  filter: blur(0.5px);
}

.booth__watermark-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 60px rgba(79, 50, 255, 0.15));
}

.booth__mesh {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: min(280px, 35vh);
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}

.booth__mesh svg { width: 100%; height: 100%; }

/* Main layout wrapper */
.booth__layout {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: var(--booth-max);
  width: 100%;
  margin: 0 auto;
  padding: 40px 32px 0;
}

/* Three-column grid */
.booth__columns {
  display: grid;
  grid-template-columns: var(--col-side) 1fr var(--col-side);
  gap: var(--col-gap);
  align-items: start;
  flex: 1;
}

/* Column base */
.booth-col {
  display: flex;
  flex-direction: column;
}

.booth-col--center {
  align-items: center;
  justify-content: center;
  padding-top: 8px;
}

/* Section labels (navy pills) */
.booth-col__label,
.booth-col__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  line-height: 1;
  border: none;
  font-family: inherit;
  cursor: default;
}

.booth-col__chevron {
  display: none;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.booth-col__toggle[aria-expanded="true"] .booth-col__chevron {
  transform: rotate(180deg);
}

.booth-col__panel[hidden] {
  display: none;
}

/* ---- Product / Solution Lists ---- */
.booth-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.booth-list__item {
  display: grid;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--gray-100);
  min-height: 58px;
}

.booth-list__item:last-child { border-bottom: none; }

.booth-list__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-icon);
  border-radius: var(--radius-xs);
  color: var(--white);
  flex-shrink: 0;
}

.booth-list__icon svg {
  width: 18px;
  height: 18px;
}

.booth-list__content {
  min-width: 0;
}

.booth-list__name {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.booth-list__desc {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1.35;
  margin-top: 2px;
}

.booth-list__desc--spacer {
  display: none;
}

/* Products: gradient icon + text */
.booth-list--products .booth-list__item {
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  min-height: 58px;
  padding: 11px 0;
}

/* Solutions: outline icon + name (no numbers) */
.booth-list--solutions .booth-list__item {
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  min-height: 48px;
  padding: 10px 0;
  align-items: start;
}

.booth-list__sol-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.booth-list__sol-icon svg {
  width: 18px;
  height: 18px;
}

.booth-list--solutions .booth-list__name {
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.35;
  align-self: start;
  padding-top: 2px;
}

/* ---- Center Hero ---- */
.booth-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.booth-hero__logo {
  display: block;
  margin-bottom: 32px;
  line-height: 0;
}

.booth-hero__logo-img {
  height: clamp(80px, 16vw, 120px);
  width: auto;
  max-width: min(560px, 96vw);
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

.booth-hero__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.booth-hero__subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 14px;
  text-align: center;
}

.booth-hero__title-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.booth-hero__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-bottom: 28px;
}

.booth-hero__tagline-line {
  flex: 1;
  max-width: 56px;
  height: 1px;
  background: var(--gray-100);
}

.booth-hero__tagline-text {
  font-size: clamp(0.8125rem, 2.5vw, 0.9375rem);
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.45;
  text-align: center;
  max-width: 100%;
}

.booth-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  justify-content: center;
  width: 100%;
  max-width: 400px;
}

.hero-qr-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  border: 2px solid rgba(79, 50, 255, 0.35);
  box-shadow:
    0 8px 32px rgba(10, 11, 48, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  width: 100%;
  max-width: 200px;
}

.hero-qr-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 50, 255, 0.55);
  box-shadow:
    0 12px 40px rgba(79, 50, 255, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.hero-qr-btn:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.hero-qr-btn__img {
  width: 140px;
  height: 140px;
  display: block;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.hero-qr-btn__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.3;
}

.hero-mobile-contact {
  display: none;
  width: 100%;
  text-align: center;
}

.hero-mobile-contact__text {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 12px;
}

.hero-quick-nav {
  display: none;
  width: 100%;
  gap: 8px;
  margin-top: 20px;
}

.hero-quick-nav__link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
}

.hero-quick-nav__link--accent {
  background: var(--lavender);
  border-color: rgba(79, 50, 255, 0.2);
  color: var(--purple);
}

/* ---- Booth CTAs ---- */
.booth-ctas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 28px;
}

.booth-cta {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(79, 50, 255, 0.06);
  border: 1px solid rgba(216, 220, 255, 0.55);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-width: 0;
}

.booth-cta__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.booth-cta__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(248, 249, 254, 0.75);
  padding: 14px 20px;
  min-width: 0;
}

.booth-cta__heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 3px;
}

.booth-cta__sub {
  font-size: 0.6875rem;
  color: var(--gray-500);
  line-height: 1.45;
}

/* ---- Stats Bar ---- */
.stats-bar {
  position: relative;
  z-index: 3;
  background: var(--navy);
  margin-top: auto;
  padding-bottom: env(safe-area-inset-bottom);
}

.stats-bar__inner {
  max-width: var(--booth-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  gap: 20px;
}

.stats-bar__group {
  display: flex;
  align-items: center;
  gap: 0;
}

.stats-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  padding: 0 16px;
}

.stats-bar__item:first-child { padding-left: 0; }

.stats-bar__item svg {
  opacity: 0.65;
  flex-shrink: 0;
}

.stats-bar__item strong {
  color: var(--white);
  font-weight: 700;
}

.stats-bar__item a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

.stats-bar__item a:hover { color: var(--white); }

.stats-bar__sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.stats-bar__qr {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: var(--radius-xs);
  flex-shrink: 0;
  padding: 3px;
  overflow: hidden;
}

.stats-bar__qr img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* ============================================
   SCROLL SECTIONS
   ============================================ */
.section { padding: 88px 0; }

.section--partnership {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(79, 50, 255, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, #F4F6FC 0%, #FAFBFF 100%);
}

.section--contact {
  background:
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(37, 99, 235, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(79, 50, 255, 0.03) 0%, transparent 55%),
    linear-gradient(180deg, #FFFFFF 0%, #F8F9FE 100%);
}

.section--book {
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(79, 50, 255, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #EEF0FF 0%, #E8EBFF 50%, #F4F6FC 100%);
  padding-bottom: 88px;
}

.section__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 48px;
}

.section__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple);
  margin-bottom: 10px;
}

.section__title {
  font-size: clamp(1.625rem, 2.5vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.section--who {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F7F8FC 100%);
  border-bottom: 1px solid rgba(216, 220, 255, 0.55);
}

.who-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: start;
}

.who-copy {
  position: relative;
  min-width: 0;
  padding-top: 8px;
}

.who-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
}

.who-title {
  max-width: 12.5em;
  margin: 22px 0 18px;
  font-size: 2.55rem;
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
  color: var(--navy);
}

.who-lead {
  max-width: 62ch;
  margin: 0 0 18px;
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--gray-700);
}

.who-text {
  max-width: 62ch;
  margin: 0;
  font-size: 0.975rem;
  line-height: 1.78;
  color: var(--gray-500);
}

.who-proof {
  position: relative;
  min-width: 0;
  display: grid;
  gap: 16px;
}

.who-proof-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.who-proof-card,
.who-expertise {
  position: relative;
  min-width: 0;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(216, 220, 255, 0.82);
  box-shadow: 0 8px 28px rgba(10, 11, 48, 0.06);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.who-proof-card:hover,
.who-expertise:hover {
  transform: translateY(-2px);
  border-color: var(--lavender-border);
  box-shadow: 0 12px 34px rgba(79, 50, 255, 0.1);
}

.who-proof-card {
  padding: 24px;
}

.who-proof-card--location {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(238, 240, 255, 0.9) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.who-proof-card__icon,
.who-expertise__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  box-shadow: 0 8px 20px rgba(79, 50, 255, 0.24);
}

.who-proof-card__icon {
  margin-bottom: 18px;
}

.who-proof-card--location .who-proof-card__icon {
  margin-bottom: 0;
}

.who-proof-card__icon--teal {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.who-proof-card__icon--amber {
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(10, 11, 48, 0.18);
}

.who-proof-card__kicker {
  display: block;
  margin-bottom: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
}

.who-proof-card__title,
.who-proof-card__value {
  display: block;
  margin: 0 0 8px;
  font-size: 1.0625rem;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--navy);
}

.who-proof-card__label {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-500);
}

.who-expertise {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(238, 240, 255, 0.74) 100%);
}

.who-expertise__icon {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  box-shadow: 0 8px 20px rgba(79, 50, 255, 0.22);
}

.who-expertise__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--gray-700);
}

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

.partnership-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 254, 0.9) 100%);
  border: 1px solid rgba(216, 220, 255, 0.55);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(79, 50, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.partnership-card:hover {
  border-color: var(--lavender-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.partnership-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lavender);
  border-radius: 50%;
  color: var(--purple);
}

.partnership-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.partnership-card__description {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.partnership-card .btn {
  margin-top: auto;
}

.partnership-card .btn--primary {
  min-width: 160px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
  min-width: 0;
}

.contact-info .section__header { text-align: left; margin: 0 0 32px; }

.contact-info__items { display: flex; flex-direction: column; gap: 20px; }

.contact-info__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--lavender-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}

.contact-info__item:hover {
  border-color: var(--purple);
  box-shadow: 0 4px 16px rgba(79, 50, 255, 0.08);
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(79, 50, 255, 0.25);
}

.contact-info__item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 3px;
}

.contact-info__item p { font-size: 0.8125rem; color: var(--gray-500); }

.lead-form {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 254, 0.92) 100%);
  border: 1px solid rgba(216, 220, 255, 0.7);
  border-radius: var(--radius-xl);
  padding: 0;
  box-shadow: 0 8px 40px rgba(79, 50, 255, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
  min-width: 0;
  width: 100%;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow-anchor: none;
}

.lead-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.lead-form__header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--gray-100);
  background: linear-gradient(135deg, rgba(79, 50, 255, 0.04) 0%, rgba(37, 99, 235, 0.03) 100%);
}

.lead-form__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--lavender);
  border: 1px solid var(--lavender-border);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.lead-form__title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.25;
}

.lead-form__subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.55;
  max-width: 420px;
}

.form-section {
  margin: 0;
  padding: 24px 36px 4px;
  border-bottom: 1px solid var(--gray-100);
}

.form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 12px;
}

.form-section__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 18px;
  padding: 0;
  width: 100%;
  line-height: 1;
}

.form-section__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--lavender-border) 0%, transparent 100%);
}

.form-steps {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 20px 20px;
  border-bottom: 1px solid var(--gray-100);
}

.form-steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 72px;
  opacity: 0.45;
  transition: opacity var(--transition);
}

.form-steps__item.is-active,
.form-steps__item.is-complete {
  opacity: 1;
}

.form-steps__num {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 0.75rem;
  font-weight: 700;
  transition: all var(--transition);
}

.form-steps__item.is-active .form-steps__num,
.form-steps__item.is-complete .form-steps__num {
  background: var(--gradient-primary);
  color: var(--white);
}

.form-steps__label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}

.form-steps__item.is-active .form-steps__label {
  color: var(--navy);
}

.form-steps__line {
  width: 28px;
  height: 2px;
  background: var(--gray-100);
  margin: 0 4px 18px;
  flex-shrink: 0;
}

.form-mobile-nav {
  display: none;
  gap: 10px;
  padding: 0 20px 16px;
}

.form-mobile-nav .btn {
  flex: 1;
  min-height: 48px;
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.92) 24%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(110%);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.mobile-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 24px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 28px rgba(79, 50, 255, 0.35);
  text-decoration: none;
}

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

.form-group {
  margin-bottom: 16px;
  min-width: 0;
}

.form-group > label,
.form-group__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}

.form-group > label span,
.form-group__label span {
  color: var(--purple);
  font-weight: 700;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  display: block;
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-family: var(--font);
  font-size: 0.875rem;
  line-height: 1.4;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  outline: none;
  box-shadow: 0 1px 2px rgba(10, 11, 48, 0.04);
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
  font-weight: 400;
}

.form-group input[type="text"]:hover,
.form-group input[type="email"]:hover,
.form-group input[type="tel"]:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--lavender-border);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(79, 50, 255, 0.12), 0 1px 2px rgba(10, 11, 48, 0.04);
  background: var(--white);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234F32FF' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}

.form-group select:invalid {
  color: var(--gray-500);
}

.form-group select option {
  color: var(--navy);
  background: var(--white);
}

.form-group select option[value=""][disabled] {
  color: var(--gray-500);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.55;
}

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

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 1px 2px rgba(10, 11, 48, 0.03);
  margin: 0;
  line-height: 1.35;
  user-select: none;
}

.checkbox-item span {
  flex: 1;
  padding-top: 1px;
}

.checkbox-item:hover {
  border-color: var(--purple);
  background: var(--lavender);
  color: var(--navy);
}

.checkbox-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  padding: 0;
  border: 2px solid var(--gray-300);
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  box-shadow: none;
}

.checkbox-item input[type="checkbox"]:checked {
  background: var(--gradient-primary);
  border-color: var(--purple);
  box-shadow: 0 2px 8px rgba(79, 50, 255, 0.35);
}

.checkbox-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-item input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}

.checkbox-item:has(input:checked) {
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(79, 50, 255, 0.06) 0%, rgba(37, 99, 235, 0.04) 100%);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(79, 50, 255, 0.1);
}

.checkbox-item:has(input:checked) span {
  color: var(--navy);
  font-weight: 600;
}

.form-group.error .checkbox-grid {
  padding: 10px;
  margin: -10px;
  border-radius: var(--radius-sm);
  background: rgba(239, 68, 68, 0.04);
  outline: 1.5px solid rgba(239, 68, 68, 0.35);
}

.lead-form__submit {
  padding: 8px 36px 32px;
  border-top: 1px solid var(--gray-100);
  background: var(--off-white);
}

.lead-form__note {
  text-align: center;
  font-size: 0.6875rem;
  color: var(--gray-400);
  margin-top: 14px;
  line-height: 1.5;
}

.form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  margin-top: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(79, 50, 255, 0.08) 0%, rgba(37, 99, 235, 0.06) 100%);
  border: 1.5px solid rgba(79, 50, 255, 0.25);
  border-radius: var(--radius-md);
  color: var(--purple-dark);
  font-weight: 600;
  font-size: 0.875rem;
}

.lead-form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 36px 40px;
  animation: formSuccessIn 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.lead-form.is-submitted .lead-form__success {
  display: flex;
  flex: 1;
  justify-content: center;
}

.lead-form.is-submitted {
  display: flex;
  flex-direction: column;
}

.lead-form.is-submitted .form-steps,
.lead-form.is-submitted .form-section,
.lead-form.is-submitted .form-mobile-nav,
.lead-form.is-submitted .lead-form__submit {
  display: none !important;
}

.lead-form.is-highlight {
  animation: formHighlight 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.lead-form__success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79, 50, 255, 0.12) 0%, rgba(37, 99, 235, 0.08) 100%);
  color: var(--purple);
}

.lead-form__success-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.lead-form__success-text {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

.lead-form__success .btn {
  min-width: 200px;
}

@keyframes formSuccessIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes formHighlight {
  0%, 100% {
    box-shadow: 0 8px 40px rgba(79, 50, 255, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  }
  40% {
    box-shadow: 0 12px 48px rgba(79, 50, 255, 0.14), 0 0 0 3px rgba(79, 50, 255, 0.22);
  }
}

.form-success svg {
  flex-shrink: 0;
  color: var(--purple);
}

.form-group.error input[type="text"],
.form-group.error input[type="email"],
.form-group.error input[type="tel"],
.form-group.error select,
.form-group.error textarea {
  border-color: #EF4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-error {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #DC2626;
  margin-top: 6px;
}

.form-error::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background: #FEE2E2;
  border-radius: 50%;
  font-size: 0.625rem;
  font-weight: 700;
}

.book-cta {
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 254, 0.85) 100%);
  border: 1px solid rgba(216, 220, 255, 0.65);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(79, 50, 255, 0.06);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.book-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.book-cta__title {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.book-cta__description {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.book-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 56px 0 28px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 14px;
  line-height: 0;
}

.site-footer__logo-img {
  height: 52px;
  width: auto;
  max-width: 260px;
  display: block;
  object-fit: contain;
}

.site-footer__brand p { font-size: 0.875rem; line-height: 1.6; max-width: 280px; }

.site-footer__links h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 14px;
}

.site-footer__links ul { list-style: none; }
.site-footer__links li { margin-bottom: 8px; }
.site-footer__links a { font-size: 0.875rem; transition: color var(--transition); }
.site-footer__links a:hover { color: var(--white); }

.site-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  text-align: center;
}

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

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

/* ---- Brochure Modal ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 48, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border: 1px solid var(--lavender-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 24px 64px rgba(10, 11, 48, 0.25);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s ease;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
}

.modal__dialog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  color: var(--gray-500);
  cursor: pointer;
  transition: all var(--transition);
  z-index: 1;
}

.modal__close:hover {
  background: var(--lavender);
  color: var(--navy);
  border-color: var(--lavender-border);
}

.modal__header {
  margin-bottom: 24px;
  padding-right: 32px;
}

.modal__title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.25;
}

.modal__subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin: 0;
}

.modal__form .form-group {
  margin-bottom: 18px;
}

.modal__form .lead-form__note {
  margin-top: 12px;
}

/* Brochure modal panels */
.modal__panels {
  position: relative;
}

.brochure-modal__panel {
  transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.brochure-modal__panel.is-exiting {
  opacity: 0;
  transform: translateY(-14px) scale(0.98);
  pointer-events: none;
}

.brochure-modal__panel--viewer.is-entering {
  animation: brochureViewerIn 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

#brochureModal.brochure-modal--viewer .modal__dialog {
  max-width: min(1120px, 94vw);
  width: 100%;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFF 55%, #F3F5FF 100%);
  box-shadow:
    0 28px 80px rgba(10, 11, 48, 0.28),
    0 0 0 1px rgba(79, 50, 255, 0.08) inset;
}

#brochureModal.brochure-modal--viewer .modal__dialog::before {
  height: 5px;
  background: linear-gradient(90deg, #4F32FF 0%, #6B52FF 35%, #2563EB 100%);
}

.brochure-viewer {
  padding: 4px 2px 2px;
}

.brochure-viewer__header {
  margin-bottom: 20px;
}

.brochure-viewer__title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 10px 0 6px;
}

.brochure-viewer__subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.5;
  max-width: 520px;
}

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

.brochure-viewer__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 220, 255, 0.75);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(79, 50, 255, 0.06);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.brochure-viewer__card .brochure-viewer__scroll {
  touch-action: auto;
}

.brochure-viewer.is-active .brochure-viewer__item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.brochure-viewer.is-active .brochure-viewer__item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}

.brochure-viewer__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--gray-100);
  background: linear-gradient(135deg, rgba(79, 50, 255, 0.04) 0%, rgba(37, 99, 235, 0.03) 100%);
}

.brochure-viewer__card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.brochure-viewer__card-meta {
  font-size: 0.6875rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.brochure-viewer__download {
  flex-shrink: 0;
  gap: 6px;
  padding: 8px 12px;
  font-size: 0.6875rem;
}

.brochure-viewer__scroll {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f8f9fd 0%, #f1f4fa 100%);
  height: 58vh;
  min-height: 420px;
  max-height: 58vh;
  overflow: hidden;
  padding: 12px;
  box-sizing: border-box;
}

#brochureModal.brochure-modal--viewer .modal__dialog {
  scrollbar-width: thin;
  scrollbar-color: rgba(79, 50, 255, 0.5) rgba(216, 220, 255, 0.35);
}

#brochureModal.brochure-modal--viewer .modal__dialog::-webkit-scrollbar {
  width: 9px;
}

#brochureModal.brochure-modal--viewer .modal__dialog::-webkit-scrollbar-track {
  background: rgba(216, 220, 255, 0.25);
  border-radius: 999px;
}

#brochureModal.brochure-modal--viewer .modal__dialog::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8b7aff 0%, #4f32ff 100%);
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
}

.brochure-pdf__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  min-height: 360px;
  color: var(--gray-500);
  font-size: 0.8125rem;
}

.brochure-pdf__loading .btn__spinner {
  border-color: rgba(79, 50, 255, 0.2);
  border-top-color: var(--purple);
}

.brochure-pdf__pages {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.brochure-pdf__page-wrap {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow:
    0 4px 20px rgba(10, 11, 48, 0.08),
    0 0 0 1px rgba(216, 220, 255, 0.5);
  overflow: hidden;
  line-height: 0;
  flex-shrink: 0;
}

.brochure-pdf__page {
  display: block;
  width: auto;
  height: auto;
}

.brochure-pdf__error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 24px;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.8125rem;
  line-height: 1.5;
}

@keyframes brochureViewerIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  #brochureModal.brochure-modal--viewer .modal__dialog {
    max-width: min(640px, 94vw);
    max-height: calc(100dvh - 16px);
    overflow-y: auto;
  }

  .brochure-viewer__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brochure-viewer__scroll {
    height: min(34vh, 300px);
    min-height: 240px;
    max-height: min(34vh, 300px);
    padding: 10px;
    overflow: hidden;
  }

  .brochure-pdf__loading {
    min-height: 220px;
  }
}

@media (max-width: 600px) {
  #brochureModal.brochure-modal--viewer .modal__dialog {
    max-width: 100%;
    max-height: calc(100dvh - 12px);
    padding: 20px 14px 16px;
    border-radius: var(--radius-lg);
  }

  .brochure-viewer__header {
    margin-bottom: 14px;
  }

  .brochure-viewer__title {
    font-size: 1.125rem;
  }

  .brochure-viewer__subtitle {
    font-size: 0.8125rem;
  }

  .brochure-viewer__grid {
    gap: 12px;
  }

  .brochure-viewer__card-head {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }

  .brochure-viewer__download {
    width: 100%;
    justify-content: center;
  }

  .brochure-viewer__scroll {
    height: min(30vh, 260px);
    min-height: 200px;
    max-height: min(30vh, 260px);
    padding: 8px;
    overflow: hidden;
  }

  .brochure-pdf__loading {
    min-height: 180px;
  }
}

#brochureModal .modal__dialog {
  overflow: hidden;
}

#brochureModal.brochure-modal--viewer .modal__dialog {
  overflow-x: visible;
  overflow-y: auto;
  max-height: calc(100dvh - 20px);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

body.brochure-modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

/* Submit button loader */
.btn--submit .btn__loader {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn--submit.is-loading .btn__loader {
  display: inline-flex;
}

.btn--submit.is-loading .btn__label,
.btn--submit.is-loading .btn__icon,
.btn--submit.is-loading .btn__icon--download {
  display: none;
}

.btn--submit.is-loading {
  pointer-events: none;
  opacity: 0.92;
}

.btn__spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

/* Download ready view */
.download-ready {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 2px 6px;
  overflow: hidden;
}

.download-ready__glow {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 50, 255, 0.18) 0%, rgba(37, 99, 235, 0.06) 45%, transparent 70%);
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.download-ready.is-active .download-ready__glow {
  opacity: 1;
  animation: downloadGlowPulse 3s ease-in-out infinite;
}

.download-ready__visual {
  position: relative;
  width: 132px;
  height: 132px;
  margin-bottom: 24px;
}

.download-ready__progress-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.download-ready.is-active .download-ready__progress-ring {
  opacity: 1;
}

.download-ready__progress-track,
.download-ready__progress-value {
  fill: none;
  stroke-width: 3;
}

.download-ready__progress-track {
  stroke: rgba(79, 50, 255, 0.12);
}

.download-ready__progress-value {
  stroke: url(#downloadProgressGrad);
  stroke: #4F32FF;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-ready.is-downloading .download-ready__progress-value {
  stroke-dashoffset: 0;
}

.download-ready.is-complete .download-ready__progress-value {
  stroke: #22C55E;
  stroke-dashoffset: 0;
}

.download-ready__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  opacity: 0;
}

.download-ready.is-active .download-ready__ring {
  opacity: 1;
}

.download-ready__ring--1 {
  border-color: rgba(79, 50, 255, 0.2);
  animation: downloadRingPulse 2.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.download-ready__ring--2 {
  inset: 12px;
  border-color: rgba(79, 50, 255, 0.3);
  animation: downloadRingPulse 2.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s infinite;
}

.download-ready__ring--3 {
  inset: 24px;
  border-color: rgba(37, 99, 235, 0.38);
  animation: downloadRingPulse 2.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s infinite;
}

.download-ready__icon {
  position: absolute;
  inset: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, background 0.5s ease, box-shadow 0.5s ease;
}

.download-ready__icon--doc {
  background: var(--gradient-primary);
  box-shadow: 0 14px 36px rgba(79, 50, 255, 0.38);
  opacity: 1;
  transform: scale(1);
  animation: downloadIconFloat 3s ease-in-out infinite;
}

.download-ready__icon--success {
  background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
  box-shadow: 0 14px 36px rgba(34, 197, 94, 0.35);
  opacity: 0;
  transform: scale(0.6);
}

.download-ready.is-complete .download-ready__icon--doc {
  opacity: 0;
  transform: scale(0.75);
  animation: none;
}

.download-ready.is-complete .download-ready__icon--success {
  opacity: 1;
  transform: scale(1);
  animation: downloadSuccessPop 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.download-ready__item {
  opacity: 0;
  transform: translateY(14px);
}

.download-ready.is-active .download-ready__item {
  animation: downloadItemIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.download-ready.is-active .download-ready__title { animation-delay: 0.08s; }
.download-ready.is-active .download-ready__text { animation-delay: 0.14s; }
.download-ready.is-active .download-ready__file { animation-delay: 0.2s; }
.download-ready.is-active .download-ready__progress-bar { animation-delay: 0.26s; }
.download-ready.is-active .download-ready__status { animation-delay: 0.32s; }

.download-ready__badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  margin-bottom: 16px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(79, 50, 255, 0.12) 0%, rgba(37, 99, 235, 0.08) 100%);
  border: 1px solid rgba(79, 50, 255, 0.22);
  color: var(--purple-dark);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.download-ready.is-active .download-ready__badge {
  opacity: 1;
  transform: translateY(0);
}

.download-ready.is-complete .download-ready__badge {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(22, 163, 74, 0.08) 100%);
  border-color: rgba(34, 197, 94, 0.28);
  color: #15803D;
}

.download-ready__title {
  font-size: 1.5625rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  line-height: 1.15;
}

.download-ready__text {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0 0 22px;
  line-height: 1.55;
}

.download-ready__file {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 17px 18px;
  margin-bottom: 20px;
  text-align: left;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--lavender) 100%);
  border: 1.5px solid var(--lavender-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(79, 50, 255, 0.08);
  overflow: hidden;
}

.download-ready.is-downloading .download-ready__file {
  border-color: rgba(79, 50, 255, 0.35);
  box-shadow: 0 10px 28px rgba(79, 50, 255, 0.14);
}

.download-ready.is-complete .download-ready__file {
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.1);
}

.download-ready__file-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.65) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: downloadShimmer 2.4s ease-in-out infinite;
}

.download-ready.is-complete .download-ready__file-shimmer {
  animation: none;
  opacity: 0;
}

.download-ready__file-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--purple);
  border: 1px solid var(--lavender-border);
  transition: color 0.4s ease, border-color 0.4s ease;
}

.download-ready.is-complete .download-ready__file-icon {
  color: #16A34A;
  border-color: rgba(34, 197, 94, 0.25);
}

.download-ready__file strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
  word-break: break-word;
}

.download-ready__file span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
}

.download-ready__progress-bar {
  width: 100%;
  height: 6px;
  margin-bottom: 16px;
  border-radius: var(--radius-pill);
  background: rgba(79, 50, 255, 0.1);
  overflow: hidden;
}

.download-ready__progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--gradient-primary);
  transition: width 0.35s linear;
}

.download-ready.is-active .download-ready__progress-fill {
  width: 35%;
  transition-duration: 0.9s;
}

.download-ready.is-downloading .download-ready__progress-fill {
  width: 88%;
  transition-duration: 0.8s;
}

.download-ready.is-complete .download-ready__progress-fill {
  width: 100%;
  background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
  transition-duration: 0.35s;
}

.download-ready__status {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
  min-height: 1.35em;
  transition: color 0.35s ease;
}

.download-ready.is-downloading .download-ready__status {
  color: var(--purple-dark);
}

.download-ready.is-complete .download-ready__status {
  color: #15803D;
}

.download-ready__again {
  margin-top: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.download-ready.is-complete .download-ready__again:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
  animation: downloadItemIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@keyframes downloadReadyIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes downloadItemIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes downloadRingPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.06);
    opacity: 0;
  }
  100% {
    transform: scale(1.06);
    opacity: 0;
  }
}

@keyframes downloadIconFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-7px) scale(1.02); }
}

@keyframes downloadSuccessPop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes downloadGlowPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.85; }
  50% { transform: translateX(-50%) scale(1.08); opacity: 1; }
}

@keyframes downloadShimmer {
  0% { transform: translateX(-120%); }
  45%, 100% { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
  .download-ready__ring,
  .download-ready__icon--doc,
  .download-ready__glow,
  .download-ready__file-shimmer,
  .brochure-modal__panel--viewer.is-entering,
  .brochure-viewer__card,
  .download-ready__item {
    animation: none !important;
  }

  .download-ready__item,
  .download-ready__badge,
  .brochure-viewer__card {
    opacity: 1;
    transform: none;
  }

  .btn__spinner {
    animation-duration: 1.2s;
  }
}

@media (max-width: 480px) {
  .modal__dialog {
    padding: 24px 20px;
  }

  .modal__header {
    padding-right: 28px;
  }
}

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

  .who-title {
    max-width: 15em;
  }
}

@media (max-width: 768px) {
  .who-shell {
    gap: 26px;
  }

  .who-copy {
    padding-top: 8px;
  }

  .who-copy::before {
    width: 64px;
  }

  .who-title {
    font-size: 2rem;
    line-height: 1.12;
    max-width: 14em;
  }

  .who-lead {
    font-size: 0.9375rem;
    line-height: 1.62;
  }

  .who-text {
    font-size: 0.875rem;
    line-height: 1.68;
  }

  .who-proof {
    gap: 12px;
  }

  .who-proof-card--location,
  .who-expertise {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 18px;
  }

  .who-proof-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .who-proof-card {
    padding: 18px;
  }

  .who-proof-card__icon,
  .who-expertise__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .who-proof-card__icon {
    margin-bottom: 12px;
  }

  .who-proof-card__title,
  .who-proof-card__value {
    font-size: 1rem;
  }

  .who-proof-card__label,
  .who-expertise__text {
    font-size: 0.8125rem;
    line-height: 1.58;
  }
}

@media (max-width: 480px) {
  .who-copy {
    padding-top: 6px;
  }

  .who-copy::before {
    width: 56px;
  }

  .who-title {
    font-size: 1.72rem;
  }

  .who-proof-card--location,
  .who-expertise {
    grid-template-columns: 1fr;
  }

  .who-proof-card__icon,
  .who-expertise__icon {
    margin-bottom: 10px;
  }
}

#products,
#solutions,
#contact,
#book {
  scroll-margin-top: 32px;
}

@media (max-width: 768px) {
  .lead-form__success {
    padding: 40px 24px 32px;
  }

  #products,
  #solutions,
  #contact,
  #book {
    scroll-margin-top: 24px;
  }
}

/* Large desktop → compact 3-column */
@media (max-width: 1200px) {
  :root {
    --col-side: 260px;
    --col-gap: 28px;
    --booth-max: 100%;
  }

  .booth__layout {
    padding: 32px 24px 0;
  }

  .stats-bar__inner {
    padding: 14px 24px;
  }
}

/* Tablet landscape – hero on top, sidebars side-by-side */
@media (max-width: 1024px) {
  :root {
    --col-side: 1fr;
    --col-gap: 24px;
  }

  .booth {
    min-height: auto;
  }

  .booth__columns {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "hero hero"
      "products solutions";
    gap: 28px 20px;
  }

  .booth-col--center {
    grid-area: hero;
    order: unset;
    padding-top: 0;
  }

  .booth-col--left {
    grid-area: products;
  }

  .booth-col--right {
    grid-area: solutions;
  }

  .booth-col__label {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .booth-list {
    max-width: none;
    margin: 0;
  }

  .booth-hero {
    max-width: 640px;
    padding-bottom: 8px;
  }

  .booth-hero__tagline-line {
    max-width: 40px;
  }

  .booth__watermark {
    width: min(360px, 70vw);
    opacity: 0.05;
  }

  .partnership-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .partnership-grid .partnership-card:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
    width: auto;
  }
}

/* Tablet portrait – single column stack */
@media (max-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .container {
    padding: 0 20px;
  }

  .booth__layout {
    padding: 24px 16px 0;
  }

  .booth__columns {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "hero hero"
      "products solutions";
    gap: 16px 10px;
    align-items: start;
  }

  .booth-col--left {
    grid-area: products;
  }

  .booth-col--right {
    grid-area: solutions;
  }

  .booth-col--left,
  .booth-col--right {
    min-width: 0;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(216, 220, 255, 0.6);
    box-shadow: 0 4px 24px rgba(79, 50, 255, 0.04);
    overflow: hidden;
  }

  .booth-col--left .booth-col__panel {
    flex: 0 0 auto;
    padding: 0 10px 10px;
    display: block;
    min-height: 0;
  }

  .booth-col--right .booth-col__panel {
    flex: 1;
    padding: 0 10px 10px;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .booth-col--left .booth-col__toggle,
  .booth-col--right .booth-col__toggle {
    flex-shrink: 0;
    border-radius: 0;
    margin-bottom: 0;
  }

  .booth-col__toggle {
    font-size: 0.5625rem;
    letter-spacing: 0.05em;
    padding: 8px 6px;
    line-height: 1.2;
    white-space: normal;
    text-wrap: balance;
    margin-bottom: 0;
    min-height: 38px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    gap: 4px;
  }

  .booth-col--center {
    grid-area: hero;
  }

  .booth-col {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(216, 220, 255, 0.6);
    border-radius: var(--radius-md);
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(79, 50, 255, 0.04);
  }

  .booth-col--center {
    background: transparent;
    border: none;
    padding: 0 8px;
    overflow: visible;
    box-shadow: none;
    border-radius: 0;
  }

  .booth-col__chevron {
    display: block;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }

  .booth-list--products {
    width: 100%;
  }

  .booth-list--solutions {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    min-height: 0;
    padding-top: 6px;
    padding-bottom: 2px;
    box-sizing: border-box;
  }

  .booth-list--products .booth-list__item {
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 8px;
    row-gap: 0;
    padding: 6px 0;
    margin: 0;
    align-items: start;
    box-sizing: border-box;
    border-bottom: 1px solid var(--gray-100);
    min-height: 0;
  }

  .booth-list--solutions .booth-list__item {
    grid-template-columns: 14px minmax(0, 1fr);
    column-gap: 6px;
    row-gap: 0;
    padding: 0;
    margin: 0;
    align-items: start;
    box-sizing: border-box;
    border-bottom: none;
    min-height: 0;
    flex: 1;
  }

  .booth-list--products .booth-list__item:last-child,
  .booth-list--solutions .booth-list__item:last-child {
    border-bottom: none;
  }

  .booth-list--products .booth-list__icon {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    justify-self: start;
    align-self: start;
    margin-top: 0;
  }

  .booth-list--products .booth-list__icon svg {
    width: 14px;
    height: 14px;
  }

  .booth-list--solutions .booth-list__sol-icon {
    width: 14px;
    height: 14px;
    justify-self: start;
    align-self: start;
    margin-top: 1px;
  }

  .booth-list--solutions .booth-list__sol-icon svg {
    width: 12px;
    height: 12px;
    display: block;
  }

  .booth-list--products .booth-list__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1px;
  }

  .booth-list--products .booth-list__name {
    font-size: 0.6875rem;
    line-height: 1.2;
    font-weight: 700;
  }

  .booth-list--solutions .booth-list__name {
    font-size: 0.5625rem;
    line-height: 1.15;
    font-weight: 600;
    align-self: start;
    padding-top: 1px;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .booth-list--products .booth-list__desc {
    display: block;
    font-size: 0.5625rem;
    line-height: 1.2;
    margin-top: 0;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .booth-list__item {
    min-height: 0;
  }

  .booth-hero__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .booth-hero__tagline {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-qr-btn {
    display: none;
  }

  .hero-mobile-contact {
    display: block;
  }

  .hero-quick-nav {
    display: flex;
  }

  .booth-hero__tagline-line {
    display: none;
  }

  .booth-ctas {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 12px;
    align-items: stretch;
  }

  .booth-cta {
    flex-direction: column;
    border-radius: var(--radius-md);
    min-width: 0;
    height: 100%;
  }

  .booth-cta__badge {
    min-height: 28px;
    padding: 7px 8px;
    justify-content: center;
    white-space: normal;
    text-align: center;
    font-size: 0.4375rem;
    letter-spacing: 0.05em;
    gap: 4px;
    line-height: 1.25;
  }

  .booth-cta__badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .booth-cta__body {
    text-align: center;
    padding: 9px 8px 10px;
    flex: 1;
    justify-content: center;
  }

  .booth-cta__heading {
    font-size: 0.625rem;
    line-height: 1.25;
    margin-bottom: 4px;
  }

  .booth-cta__sub {
    font-size: 0.5rem;
    line-height: 1.35;
  }

  .stats-bar__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    padding: 12px 14px 14px;
    gap: 8px;
  }

  .stats-bar__group {
    display: contents;
  }

  .stats-bar__group:last-of-type {
    display: contents;
  }

  .stats-bar__sep {
    display: none;
  }

  .stats-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 10px;
    margin: 0;
    white-space: normal;
    font-size: 0.6875rem;
    line-height: 1.35;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    min-width: 0;
  }

  .stats-bar__item svg {
    width: 14px;
    height: 14px;
    margin-top: 1px;
    opacity: 0.85;
  }

  .stats-bar__item span,
  .stats-bar__item a {
    min-width: 0;
    word-break: break-word;
  }

  .stats-bar__qr {
    display: none;
  }

  .booth__mesh {
    height: min(200px, 28vh);
    opacity: 0.85;
  }

  .booth__canvas {
    opacity: 0.18;
  }

  .booth__orb {
    filter: blur(60px);
    opacity: 0.35;
  }

  .section {
    padding: 56px 0;
  }

  .section--partnership {
    padding-bottom: 24px;
  }

  .section--contact {
    padding-top: 24px;
  }

  .section__header {
    margin-bottom: 32px;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .section__subtitle {
    font-size: 0.9375rem;
  }

  .section--partnership .section__header {
    margin-bottom: 24px;
  }

  .section--partnership .section__title {
    font-size: 1.25rem;
  }

  .section--partnership .section__subtitle {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .partnership-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    margin: 0;
    gap: 8px;
  }

  .partnership-grid .partnership-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .partnership-card {
    padding: 14px 8px 12px;
    min-width: 0;
    border-radius: var(--radius-md);
  }

  .partnership-card__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
    flex-shrink: 0;
  }

  .partnership-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .partnership-card__title {
    font-size: 0.6875rem;
    margin-bottom: 4px;
    line-height: 1.25;
    flex-shrink: 0;
  }

  .partnership-card__description {
    font-size: 0.5625rem;
    line-height: 1.35;
    margin-bottom: 8px;
    flex: 1;
  }

  .partnership-card .btn {
    width: 100%;
    min-width: 0;
    padding: 8px 6px;
    font-size: 0.5625rem;
    min-height: 32px;
    white-space: normal;
    line-height: 1.2;
    margin-top: auto;
    flex-shrink: 0;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info .section__header,
  .contact-info .section__tag,
  .contact-info .section__title,
  .contact-info .section__subtitle {
    text-align: center;
  }

  .contact-info .section__title {
    font-size: 1.25rem;
  }

  .contact-info .section__subtitle {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .contact-info__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .contact-info__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 12px 6px;
    min-width: 0;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(216, 220, 255, 0.5);
  }

  .contact-info__icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(79, 50, 255, 0.2);
  }

  .contact-info__icon svg {
    width: 16px;
    height: 16px;
  }

  .contact-info__item strong {
    font-size: 0.625rem;
    line-height: 1.25;
    margin-bottom: 2px;
  }

  .contact-info__item p {
    font-size: 0.5rem;
    line-height: 1.35;
  }

  .lead-form__header {
    padding: 24px 20px 16px;
  }

  .form-steps {
    display: flex;
  }

  .form-section[data-form-step]:not(.is-active) {
    display: none;
  }

  .form-section[data-form-step].is-active {
    display: block;
  }

  .form-mobile-nav {
    display: flex;
  }

  .lead-form__submit {
    display: none;
  }

  .lead-form__submit.is-active {
    display: block;
    padding: 0 20px 24px;
  }

  .form-section {
    padding: 20px 20px 4px;
  }

  .form-group input:not([type="checkbox"]),
  .form-group select,
  .form-group textarea {
    min-height: 48px;
    font-size: 1rem;
  }

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

  .checkbox-item {
    min-height: 48px;
    padding: 12px;
    font-size: 0.75rem;
    align-items: center;
  }

  .checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    margin-top: 0;
  }

  .mobile-cta {
    display: block;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

/* Desktop – keep booth panels always open */
@media (min-width: 769px) {
  .booth-col__chevron {
    display: none;
  }

  .booth-col__toggle {
    pointer-events: none;
    cursor: default;
  }

  .booth-col__panel[hidden] {
    display: block !important;
  }

  .form-section[data-form-step] {
    display: block;
  }

  .lead-form__submit {
    display: block;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .booth__layout {
    padding: 16px 12px 0;
  }

  .booth-hero__logo-img {
    height: clamp(72px, 20vw, 96px);
    max-width: 96vw;
  }

  .booth-hero__logo {
    margin-bottom: 20px;
  }

  .booth-hero__title {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }

  .booth-hero__subtitle {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }

  .booth-hero__tagline-text {
    font-size: 0.875rem;
    padding: 0 4px;
    line-height: 1.5;
  }

  .booth-hero__actions {
    flex-direction: column;
    max-width: 100%;
    gap: 12px;
  }

  .booth-hero__actions .btn {
    width: 100%;
    min-height: 52px;
    font-size: 0.9375rem;
  }

  .booth-col--left .booth-col__panel,
  .booth-col--right .booth-col__panel {
    padding: 0 8px 8px;
  }

  .booth-col__panel {
    padding: 0 8px 8px;
  }

  .booth-col__toggle {
    min-height: 36px;
    font-size: 0.5rem;
    padding: 7px 5px;
  }

  .booth-list--products .booth-list__item {
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 7px;
    padding: 5px 0;
  }

  .booth-list--solutions {
    padding-top: 5px;
    padding-bottom: 2px;
  }

  .booth-list--solutions .booth-list__item {
    grid-template-columns: 12px minmax(0, 1fr);
    column-gap: 5px;
    padding: 0;
    align-items: start;
    flex: 1;
  }

  .booth-list--products .booth-list__icon {
    width: 28px;
    height: 28px;
    justify-self: start;
    align-self: start;
  }

  .booth-list--products .booth-list__icon svg {
    width: 13px;
    height: 13px;
  }

  .booth-list--solutions .booth-list__sol-icon {
    width: 12px;
    height: 12px;
    align-self: start;
    margin-top: 1px;
  }

  .booth-list--solutions .booth-list__sol-icon svg {
    width: 11px;
    height: 11px;
    display: block;
  }

  .booth-list--products .booth-list__name {
    font-size: 0.625rem;
    line-height: 1.2;
  }

  .booth-list--solutions .booth-list__name {
    font-size: 0.5rem;
    line-height: 1.15;
    align-self: start;
    padding-top: 1px;
  }

  .booth-list--products .booth-list__desc {
    font-size: 0.5rem;
    line-height: 1.2;
  }

  .booth-ctas {
    gap: 6px;
    margin-top: 14px;
    margin-bottom: 12px;
  }

  .booth-cta__badge {
    padding: 8px 6px;
    font-size: 0.375rem;
  }

  .booth-cta__badge svg {
    width: 12px;
    height: 12px;
  }

  .booth-cta__body {
    padding: 8px 6px 10px;
  }

  .booth-cta__heading {
    font-size: 0.5625rem;
  }

  .booth-cta__sub {
    font-size: 0.4375rem;
    line-height: 1.3;
  }

  .partnership-grid {
    gap: 6px;
  }

  .partnership-card {
    padding: 12px 6px 14px;
  }

  .partnership-card__icon {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
  }

  .partnership-card__icon svg {
    width: 15px;
    height: 15px;
  }

  .partnership-card__title {
    font-size: 0.625rem;
  }

  .partnership-card__description {
    font-size: 0.5rem;
    margin-bottom: 8px;
  }

  .partnership-card .btn {
    padding: 7px 4px;
    font-size: 0.5rem;
    min-height: 28px;
  }

  .contact-info__items {
    gap: 6px;
  }

  .contact-info__item {
    padding: 10px 4px;
    gap: 6px;
  }

  .contact-info__icon {
    width: 28px;
    height: 28px;
  }

  .contact-info__icon svg {
    width: 14px;
    height: 14px;
  }

  .contact-info__item strong {
    font-size: 0.5625rem;
  }

  .contact-info__item p {
    font-size: 0.4375rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lead-form__header {
    padding: 20px 16px 12px;
  }

  .form-steps {
    padding: 0 16px 16px;
  }

  .form-section {
    padding: 16px 16px 4px;
  }

  .form-mobile-nav {
    padding: 0 16px 12px;
  }

  .lead-form__submit.is-active {
    padding: 0 16px 20px;
  }

  .btn--submit {
    font-size: 0.9375rem;
    min-height: 52px;
  }

  .book-cta {
    padding: 28px 16px;
  }

  .book-cta__title {
    font-size: 1.375rem;
  }

  .book-cta__description {
    font-size: 0.9375rem;
  }

  .book-cta__actions {
    flex-direction: column;
    gap: 10px;
  }

  .book-cta__actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .site-footer {
    padding: 40px 0 24px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .site-footer__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer__brand p {
    max-width: none;
    margin: 0 auto;
  }

  .site-footer__logo-img {
    height: 44px;
    margin: 0 auto;
  }

  .section {
    padding: 40px 0;
  }

  .section--partnership {
    padding-bottom: 16px;
  }

  .section--contact {
    padding-top: 16px;
  }

  .section--book {
    padding-bottom: 48px;
  }

  .btn {
    font-size: 0.875rem;
  }
}

/* Small phones & safe areas */
@media (max-width: 380px) {
  .stats-bar__inner {
    padding: 12px 12px 10px;
    gap: 6px;
  }

  .stats-bar__item {
    padding: 8px;
    font-size: 0.625rem;
    gap: 6px;
  }

  .stats-bar__item svg {
    width: 13px;
    height: 13px;
  }

  .stats-bar__item span {
    font-size: 0.625rem;
  }

  .booth-cta__badge {
    font-size: 0.375rem;
    letter-spacing: 0.04em;
  }
}

/* Touch devices – disable hover lift */
@media (hover: none) {
  .btn--primary:hover,
  .btn--outline:hover,
  .btn--glass:hover,
  .partnership-card:hover {
    transform: none;
  }

  .btn:hover .btn__icon {
    transform: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lead-form.is-highlight {
    animation: none;
  }

  .lead-form__success {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }

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

  .btn,
  .partnership-card {
    transition: none;
  }

  .booth__orb {
    animation: none;
  }
}
