/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #171a42;
  --navy-light: #1e2158;
  --purple: #7246c1;
  --purple-light: #8b6cd4;
  --purple-dark: #5c35a8;
  --teal: #3ea7ab;
  --blue: #3d61d0;
  --green: #22c55e;
  --yellow: #f59e0b;
  --coral: #f97316;
  --pink: #ec4899;
  --dark-bg: #11122b;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --red: #ef4444;
  --bg-purple: #f8f5ff;
  --bg-teal: #f0fafa;
  --bg-blue: #f0f4ff;
  --bg-warm: #fafafa;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --max-width: 1440px;
  --header-height: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }

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

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

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

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

.section--gray {
  background: var(--bg-purple);
}

/* Alternating light section backgrounds */
.section--alt-teal {
  background: var(--bg-teal);
}

.section--alt-blue {
  background: var(--bg-blue);
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--purple);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--navy);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.7;
}

.section--dark .section-label {
  color: var(--purple-light);
}

.section--dark .section-title {
  color: var(--white);
}

.section--dark .section-subtitle {
  color: var(--gray-400);
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--purple);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(114, 70, 193, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
}

.btn--secondary:hover {
  background: rgba(114, 70, 193, 0.06);
  border-color: var(--purple-dark);
  transform: translateY(-1px);
}

/* Secondary on dark backgrounds */
.section--dark .btn--secondary,
.cta-section .btn--secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.section--dark .btn--secondary:hover,
.cta-section .btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}

.btn--outline:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-1px);
}

.btn--large {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: 12px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo img {
  height: 52px;
}

.header__logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--purple);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__actions .btn {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

/* Login button = outline purple */
.header__actions .btn--outline {
  border-color: var(--purple);
  color: var(--purple);
}

.header__actions .btn--outline:hover {
  background: rgba(114, 70, 193, 0.06);
}

/* Language switcher */
.lang-switcher {
  position: relative;
}

.lang-switcher__current {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.2s;
}

.lang-switcher__current:hover {
  border-color: var(--purple);
}

.lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  overflow: hidden;
  z-index: 1001;
}

.lang-switcher__dropdown.open {
  display: block;
}

.lang-switcher__dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  transition: background 0.15s;
}

.lang-switcher__dropdown a:hover {
  background: var(--gray-50);
  color: var(--purple);
}

.lang-switcher__dropdown a.active {
  color: var(--purple);
  font-weight: 700;
  background: rgba(114, 70, 193, 0.04);
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown__trigger svg {
  transition: transform 0.2s ease;
  opacity: 0.5;
}

.nav-dropdown:hover .nav-dropdown__trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  z-index: 100;
}

.nav-dropdown__menu-inner {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 240px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.nav-dropdown__menu.open {
  display: block;
}

.nav-dropdown__menu-inner a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.15s ease;
}

.nav-dropdown__menu-inner a:hover {
  background: var(--gray-50);
  color: var(--purple);
}

/* ===== VERTICAL FEATURE PAGES ===== */
.vertical-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(114, 70, 193, 0.08);
  border: 1px solid rgba(114, 70, 193, 0.15);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 24px;
}

.vertical-hero__badge svg {
  width: 16px;
  height: 16px;
}

.pain-points__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.25s ease;
}

.pain-card:nth-child(1) { border-top: 3px solid var(--coral); }
.pain-card:nth-child(2) { border-top: 3px solid var(--yellow); }
.pain-card:nth-child(3) { border-top: 3px solid var(--blue); }
.pain-card:nth-child(4) { border-top: 3px solid var(--purple); }

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.pain-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pain-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.features-detail__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

/* ===== VERTICALS HUB PAGE ===== */
.verticals-hub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.vertical-hub-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.vertical-hub-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(114, 70, 193, 0.1);
}

.vertical-hub-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.vertical-hub-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.vertical-hub-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Mobile menu toggle */
.header__menu-btn {
  display: none;
  background: rgba(23, 26, 66, 0.06);
  border: 1px solid rgba(23, 26, 66, 0.1);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
}

.header__menu-btn:active {
  background: rgba(23, 26, 66, 0.12);
}

.header__menu-btn span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--navy);
  margin: 4px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: min(85vh, 780px);
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
  padding: calc(var(--header-height) + 20px) 0 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Colorful gradient blobs */
.hero__bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(114, 70, 193, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  animation: blob-float 20s ease-in-out infinite;
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(62, 167, 171, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  animation: blob-float 25s ease-in-out infinite reverse;
}

/* Third blob via the grid element */
.hero__grid {
  position: absolute;
  top: 10%;
  left: 30%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(61, 97, 208, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  animation: blob-float 18s ease-in-out infinite 5s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Decorative dot motif */
.hero::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 8%;
  width: 200px;
  height: 200px;
  background-image:
    radial-gradient(circle, rgba(114, 70, 193, 0.15) 3px, transparent 3px),
    radial-gradient(circle, rgba(62, 167, 171, 0.12) 3px, transparent 3px),
    radial-gradient(circle, rgba(61, 97, 208, 0.1) 3px, transparent 3px),
    radial-gradient(circle, rgba(249, 115, 22, 0.1) 2px, transparent 2px),
    radial-gradient(circle, rgba(236, 72, 153, 0.08) 2px, transparent 2px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px, 10px 30px, 30px 10px, 5px 15px;
  z-index: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(114, 70, 193, 0.08);
  border: 1px solid rgba(114, 70, 193, 0.15);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 32px;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__verticals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.hero__vertical {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hero__vertical svg {
  flex-shrink: 0;
}

.hero__vertical:nth-child(1) svg { color: var(--purple); }
.hero__vertical:nth-child(2) svg { color: var(--blue); }
.hero__vertical:nth-child(3) svg { color: var(--teal); }
.hero__vertical:nth-child(4) svg { color: var(--navy); }
.hero__vertical:nth-child(5) svg { color: var(--coral); }
.hero__vertical:nth-child(6) svg { color: #ec4899; }
.hero__vertical:nth-child(7) svg { color: var(--yellow); }
.hero__vertical:nth-child(8) svg { color: #f59e0b; }
.hero__vertical:nth-child(9) svg { color: var(--green); }

.hero__vertical--more {
  background: transparent;
  border-color: transparent;
  color: var(--gray-400);
  font-style: italic;
  box-shadow: none;
}

.hero__vertical:hover {
  border-color: var(--purple);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(114, 70, 193, 0.12);
}

.hero__vertical--more:hover {
  border-color: transparent;
  transform: none;
  box-shadow: none;
}

.hero__title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__title span {
  background: linear-gradient(135deg, var(--purple), var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 560px;
}

.hero__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.4;
}

.hero__feature svg {
  flex-shrink: 0;
  color: var(--green);
}

.hero__feature--highlight {
  background: rgba(62, 167, 171, 0.06);
  border: 1px solid rgba(62, 167, 171, 0.15);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 4px;
}

.hero__feature--highlight svg {
  color: var(--teal);
}

.hero__feature--highlight span {
  font-size: 0.9375rem;
  color: var(--navy);
  line-height: 1.5;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__legal {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-400);
}
.hero__legal a {
  color: var(--gray-600);
  text-decoration: underline;
}
.hero__legal a:hover {
  color: var(--purple);
}

.hero__proof {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
}

.hero__proof-value {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__proof-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.hero__proof-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* ===== PROBLEM SECTION ===== */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem__levels {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.problem__level {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.problem__level:last-child {
  border-bottom: none;
}

.problem__level-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
}

.problem__level--stuck .problem__level-num {
  background: rgba(239, 68, 68, 0.1);
  color: var(--red);
}

.problem__level--target .problem__level-num {
  background: rgba(114, 70, 193, 0.1);
  color: var(--purple);
}

.problem__level--dim .problem__level-num {
  background: var(--gray-100);
  color: var(--gray-400);
}

.problem__level-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
}

.problem__level--dim .problem__level-name {
  color: var(--gray-400);
}

.problem__level-desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-left: auto;
}

.problem__level-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-left: auto;
  white-space: nowrap;
}

.problem__level--stuck .problem__level-tag {
  background: rgba(239, 68, 68, 0.1);
  color: var(--red);
}

.problem__level--target .problem__level-tag {
  background: rgba(114, 70, 193, 0.1);
  color: var(--purple);
}

/* ===== INSIGHT / HOW IT WORKS ===== */
.insight__card {
  background: linear-gradient(135deg, var(--bg-purple), #ede5ff);
  border: 1px solid rgba(114, 70, 193, 0.12);
  border-radius: 20px;
  padding: 56px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}

.insight__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--teal), var(--blue), var(--coral));
}

/* Decorative dots on insight card */
.insight__card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background-image:
    radial-gradient(circle, rgba(114, 70, 193, 0.12) 4px, transparent 4px),
    radial-gradient(circle, rgba(62, 167, 171, 0.08) 3px, transparent 3px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  pointer-events: none;
}

.insight__card-quote {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 20px;
}

.insight__card-text {
  font-size: 1.0625rem;
  color: var(--gray-600);
  max-width: 100%;
  line-height: 1.7;
}

/* ===== AGENTS SECTION ===== */
.agents__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.agent-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
}

.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Card accent colors via nth-child */
.agents__grid .agent-card:nth-child(1) { border-top-color: var(--purple); }
.agents__grid .agent-card:nth-child(1):hover { border-color: var(--purple); border-top-color: var(--purple); }

.agents__grid .agent-card:nth-child(2) { border-top-color: var(--green); }
.agents__grid .agent-card:nth-child(2):hover { border-color: var(--green); border-top-color: var(--green); }

.agents__grid .agent-card:nth-child(3) { border-top-color: var(--coral); }
.agents__grid .agent-card:nth-child(3):hover { border-color: var(--coral); border-top-color: var(--coral); }

.agents__grid .agent-card:nth-child(4) { border-top-color: var(--blue); }
.agents__grid .agent-card:nth-child(4):hover { border-color: var(--blue); border-top-color: var(--blue); }

.agents__grid .agent-card:nth-child(5) { border-top-color: var(--pink); }
.agents__grid .agent-card:nth-child(5):hover { border-color: var(--pink); border-top-color: var(--pink); }

.agents__grid .agent-card:nth-child(6) { border-top-color: var(--teal); }
.agents__grid .agent-card:nth-child(6):hover { border-color: var(--teal); border-top-color: var(--teal); }

.agents__grid .agent-card:nth-child(7) { border-top-color: var(--yellow); }
.agents__grid .agent-card:nth-child(7):hover { border-color: var(--yellow); border-top-color: var(--yellow); }

.agent-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Icon backgrounds with brand colors */
.agent-card__icon--comms { background: rgba(114, 70, 193, 0.1); }
.agent-card__icon--financial { background: rgba(245, 158, 11, 0.1); }
.agent-card__icon--technical { background: rgba(62, 167, 171, 0.1); }
.agent-card__icon--legal { background: rgba(236, 72, 153, 0.1); }
.agent-card__icon--desktop { background: rgba(34, 197, 94, 0.1); }
.agent-card__icon--gong { background: rgba(249, 115, 22, 0.1); }

.agent-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.agent-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
}

.agent-card__monitors {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.agent-card__tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--bg-purple);
  border-radius: 6px;
  color: var(--gray-600);
}

/* ===== RESPONSE MODES ===== */
.response__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.response-card {
  padding: 36px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all 0.3s ease;
}

.response-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* On dark backgrounds */
.section--dark .response-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.response-card__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.response-card__indicator--red { background: var(--red); box-shadow: 0 0 16px rgba(239, 68, 68, 0.3); }
.response-card__indicator--yellow { background: var(--yellow); box-shadow: 0 0 16px rgba(245, 158, 11, 0.3); }
.response-card__indicator--green { background: var(--green); box-shadow: 0 0 16px rgba(34, 197, 94, 0.3); }

.response-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.response-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.section--dark .response-card__title {
  color: var(--white);
}

.section--dark .response-card__desc {
  color: var(--gray-400);
}

/* ===== WEEK TIMELINE ===== */
.week-timeline {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.week-timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}

.week-timeline__day {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--day-color, var(--purple));
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  z-index: 1;
}

.week-timeline__line {
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: -8px;
  width: 2px;
  background: var(--gray-200);
}

.week-timeline__item:last-child .week-timeline__line {
  display: none;
}

.week-timeline__story {
  padding: 8px 0 32px;
  flex: 1;
}

.week-timeline__story h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.week-timeline__story p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .week-timeline__day {
    width: 40px;
    height: 40px;
    font-size: 0.6875rem;
  }

  .week-timeline__line {
    left: 19px;
    top: 40px;
  }

  .week-timeline__item {
    gap: 16px;
  }

  .week-timeline__story h3 {
    font-size: 1rem;
  }

  .week-timeline__story p {
    font-size: 0.875rem;
  }
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  position: relative;
  border-radius: 20px;
  padding: 40px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  overflow: hidden;
  background: linear-gradient(135deg, color-mix(in srgb, var(--card-color) 8%, white), color-mix(in srgb, var(--card-color) 3%, white));
  border: 1px solid color-mix(in srgb, var(--card-color) 15%, white);
}

.benefit-card::before {
  content: '\201C';
  position: absolute;
  top: 2px;
  left: 20px;
  font-size: 6rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: var(--card-color, var(--purple));
  opacity: 0.1;
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--card-color) 20%, transparent);
  border-color: color-mix(in srgb, var(--card-color) 30%, white);
}

.benefit-card h3 {
  position: relative;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
}

.benefit-card p {
  position: relative;
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
}

.benefit-card__author {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--card-color) 12%, white);
}

.benefit-card__author::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--card-color, var(--purple));
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== AHA MOMENT / DEMO ===== */
.demo__examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.demo-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: all 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.demo-card__channel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 16px;
  padding: 4px 10px;
  background: var(--bg-purple);
  border-radius: 6px;
}

.demo-card__message {
  font-size: 0.9375rem;
  color: var(--navy);
  line-height: 1.6;
  font-style: italic;
  padding-left: 16px;
  border-left: 3px solid var(--purple);
}

.demo-card__req {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ===== COMPARISON TABLE ===== */
.comparison {
  overflow-x: auto;
  margin-top: 56px;
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.comparison th {
  text-align: left;
  padding: 16px 20px;
  font-weight: 700;
  border-bottom: 2px solid var(--gray-200);
  color: var(--navy);
}

.comparison th:last-child {
  color: var(--purple);
}

.comparison td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}

.comparison tr:hover td {
  background: var(--bg-purple);
}

.comparison .check {
  color: var(--green);
  font-weight: 700;
}

.comparison .cross {
  color: var(--gray-300);
}

.comparison .partial {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 600;
}

.comparison td:last-child {
  font-weight: 600;
}

/* ===== DIFFERENTIATORS ===== */
.diff__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.diff-card {
  padding: 36px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all 0.3s ease;
}

.diff-card:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(114, 70, 193, 0.08);
}

/* On dark sections */
.section--dark .diff-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.section--dark .diff-card:hover {
  border-color: rgba(114, 70, 193, 0.4);
}

.diff-card__number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
  background: rgba(114, 70, 193, 0.08);
  color: var(--purple);
}

/* Colorful diff card numbers */
.diff__grid .diff-card:nth-child(1) .diff-card__number { background: rgba(114, 70, 193, 0.1); color: var(--purple); }
.diff__grid .diff-card:nth-child(2) .diff-card__number { background: rgba(62, 167, 171, 0.1); color: var(--teal); }
.diff__grid .diff-card:nth-child(3) .diff-card__number { background: rgba(61, 97, 208, 0.1); color: var(--blue); }
.diff__grid .diff-card:nth-child(4) .diff-card__number { background: rgba(34, 197, 94, 0.1); color: var(--green); }

.section--dark .diff-card__number {
  background: rgba(114, 70, 193, 0.15);
}

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

.section--dark .diff-card__title {
  color: var(--white);
}

.diff-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.section--dark .diff-card__desc {
  color: var(--gray-400);
}

/* ===== PRICING ===== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: all 0.3s;
  border-top: 4px solid var(--gray-200);
}

/* Colorful top borders */
.pricing__grid .pricing-card:nth-child(1) { border-top-color: var(--teal); }
.pricing__grid .pricing-card:nth-child(2) { border-top-color: var(--blue); }
.pricing__grid .pricing-card:nth-child(3) { border-top-color: var(--purple); }
.pricing__grid .pricing-card:nth-child(4) { border-top-color: var(--coral); }

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card--featured {
  border: 2px solid var(--purple);
  border-top: 4px solid var(--purple);
  box-shadow: 0 8px 40px rgba(114, 70, 193, 0.12);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.pricing-card__price span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-400);
}

.pricing-card__period {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.pricing-card__features {
  margin-bottom: 32px;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.pricing-card__feature::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2322c55e'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(114, 70, 193, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

/* Decorative colored dots in CTA */
.cta-section::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background-image:
    radial-gradient(circle, rgba(62, 167, 171, 0.2) 3px, transparent 3px),
    radial-gradient(circle, rgba(236, 72, 153, 0.15) 2px, transparent 2px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  pointer-events: none;
}

.cta-section__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-section__text {
  font-size: 1.125rem;
  color: var(--gray-400);
  margin-bottom: 40px;
  position: relative;
}

.cta-section__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
}

.cta-section__legal {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
.cta-section__legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}
.cta-section__legal a:hover {
  color: #fff;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trust-strip__items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.trust-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-strip__value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}

.trust-strip__label {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-top: 2px;
}

.trust-strip__divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

@media (max-width: 768px) {
  .trust-strip__items {
    flex-wrap: wrap;
    gap: 24px;
  }
  .trust-strip__divider {
    display: none;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #11122b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-desc {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 280px;
}

.footer__col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer__links a {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-400);
  padding: 6px 0;
  transition: color 0.2s;
}

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

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 0.8125rem;
  color: var(--gray-500);
  transition: color 0.2s;
}

.footer__bottom-links a:hover {
  color: var(--gray-300);
}

/* ===== PAGE HERO (for inner pages) ===== */
.page-hero {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-purple) 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative dots on page hero */
.page-hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 5%;
  width: 100px;
  height: 100px;
  background-image:
    radial-gradient(circle, rgba(114, 70, 193, 0.1) 3px, transparent 3px),
    radial-gradient(circle, rgba(62, 167, 171, 0.08) 2px, transparent 2px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 80px;
  height: 80px;
  background-image:
    radial-gradient(circle, rgba(61, 97, 208, 0.08) 3px, transparent 3px),
    radial-gradient(circle, rgba(236, 72, 153, 0.06) 2px, transparent 2px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  pointer-events: none;
}

.page-hero__title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.vision__quote {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  border-left: 4px solid var(--purple);
  padding-left: 24px;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Colorful value cards */
.values__grid .value-card:nth-child(1) { border-top: 3px solid var(--purple); }
.values__grid .value-card:nth-child(2) { border-top: 3px solid var(--teal); }
.values__grid .value-card:nth-child(3) { border-top: 3px solid var(--coral); }

.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.value-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== FRAMEWORK LOGOS ===== */
.frameworks__logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.framework-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  min-width: 120px;
  transition: all 0.3s ease;
}

.framework-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(114, 70, 193, 0.08);
  border-color: var(--purple);
}

.framework-badge__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
}

.framework-badge__type {
  font-size: 0.6875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== ARCHITECTURE DIAGRAM ===== */
.arch__diagram {
  margin-top: 48px;
  padding: 48px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.arch__core {
  text-align: center;
  padding: 32px;
  border: 1px solid rgba(114, 70, 193, 0.2);
  border-radius: 16px;
  background: var(--bg-purple);
  margin-bottom: 32px;
}

.arch__core-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 8px;
}

.arch__core-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.arch__core-desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

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

.arch__agent {
  text-align: center;
  padding: 20px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: var(--bg-teal);
  transition: all 0.2s ease;
}

.arch__agent:hover {
  border-color: var(--teal);
  transform: translateY(-1px);
}

.arch__agent-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.arch__agent-desc {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Hide mobile menu on desktop */
.mobile-menu-overlay {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

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

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

  /* Hide desktop nav, show hamburger */
  .header__nav,
  .header__actions {
    display: none;
  }

  .header__menu-btn {
    display: block;
  }

  .header__inner {
    padding: 0 24px;
  }

  /* Mobile menu overlay -- WHITE background */
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
  }

  .mobile-menu-overlay.open {
    display: flex;
  }

  .mobile-menu-overlay__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }

  .mobile-menu-overlay__nav a {
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.2s;
  }

  .mobile-menu-overlay__nav a:hover {
    color: var(--purple);
  }

  .mobile-menu-overlay__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0 calc(20px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--gray-200);
  }

  .mobile-menu-overlay__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.9375rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header__inner {
    padding: 0 20px;
  }

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

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 40px) 0 60px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__proof {
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 20px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__buttons .btn {
    justify-content: center;
  }

  .problem__grid,
  .vision__grid,
  .demo__examples {
    grid-template-columns: 1fr;
  }

  .agents__grid,
  .response__grid,
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pain-points__grid,
  .features-detail__grid,
  .verticals-hub__grid {
    grid-template-columns: 1fr;
  }

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

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

  .insight__card {
    padding: 32px;
  }

  .insight__card-quote {
    font-size: 1.375rem;
  }

  .cta-section {
    padding: 64px 0;
  }

  .cta-section__title {
    font-size: 1.5rem;
  }

  .cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-section__buttons .btn {
    width: 100%;
    justify-content: center;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .page-hero {
    padding: 120px 0 56px;
  }

  .page-hero__title {
    font-size: 1.75rem;
  }

  .page-hero__subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .frameworks__logos {
    gap: 16px;
  }

  .framework-badge {
    min-width: 100px;
    padding: 16px 20px;
  }

  /* Hide hero decorative dots on mobile */
  .hero::after {
    display: none;
  }
}

/* ===== TEAM ===== */
.team__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  text-align: center;
  padding: 16px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.team-card:hover {
  background: var(--bg-purple);
}

.team-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--gray-100);
  transition: border-color 0.3s ease;
}

.team-card:hover .team-card__avatar {
  border-color: var(--purple);
}

.team-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

@media (max-width: 1024px) {
  .team__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ===== INTEGRATIONS / BRAND LOGOS ===== */
.integrations {
  margin-top: 56px;
}

.integrations__label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.section--dark .integrations__label {
  color: var(--gray-500);
}

.integrations__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.integration-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.integration-chip:hover {
  border-color: var(--purple);
  box-shadow: 0 6px 20px rgba(114, 70, 193, 0.1);
  transform: translateY(-2px);
}

.section--dark .integration-chip {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.section--dark .integration-chip:hover {
  border-color: rgba(114, 70, 193, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.integration-chip__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.integration-chip__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

.section--dark .integration-chip__name {
  color: var(--gray-300);
}

/* ===== NAME WORDPLAY ===== */
.wordplay {
  text-align: center;
  padding: 48px 0;
}

.wordplay__text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.02em;
}

.wordplay__text strong {
  color: var(--navy);
}

.wordplay__text .wp-blue {
  background: linear-gradient(135deg, var(--purple), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wordplay__sub {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-top: 8px;
}

/* On dark background */
.section--dark .wordplay__text {
  color: var(--gray-500);
}

.section--dark .wordplay__text strong {
  color: var(--white);
}

/* Hero integrations strip */
.hero__integrations {
  margin-top: 48px;
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid var(--gray-200);
}

.hero__integrations-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.hero__integrations-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__int-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  transition: all 0.2s;
}

.hero__int-chip:hover {
  background: var(--bg-purple);
  border-color: var(--purple);
  transform: translateY(-1px);
}

.hero__int-chip svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero__int-chip span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-600);
}

@media (max-width: 768px) {
  .integrations__grid {
    gap: 10px;
  }

  .integration-chip {
    padding: 8px 14px;
  }

  .integration-chip__name {
    font-size: 0.8125rem;
  }

  .wordplay__text {
    font-size: 1.125rem;
  }

  .hero__integrations-logos {
    gap: 8px;
  }
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-content p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content strong {
  color: var(--navy);
}

.legal-content a {
  color: var(--purple);
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ===== SPLIT HERO ===== */
.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__visual {
  position: relative;
  z-index: 1;
  transform: scale(0.92);
  transform-origin: top center;
}

/* Mock Dashboard -- LIGHT & COLORFUL */
.mock-dashboard {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(114, 70, 193, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
}

.mock-dashboard__topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.mock-dashboard__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dashboard__dot--red { background: #ef4444; }
.mock-dashboard__dot--yellow { background: #f59e0b; }
.mock-dashboard__dot--green { background: #22c55e; }

.mock-dashboard__url {
  flex: 1;
  text-align: center;
  font-size: 0.625rem;
  color: var(--gray-400);
  background: var(--white);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--gray-200);
  margin-left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-dashboard__body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 340px;
}

.mock-dashboard__sidebar {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-right: 1px solid var(--gray-100);
  padding: 12px 8px;
  gap: 2px;
}

.mock-sidebar__logo {
  padding: 4px 10px 12px;
  margin-bottom: 4px;
}

.mock-sidebar__search {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  margin: 0 2px 8px;
  border-radius: 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  font-size: 0.6rem;
  color: var(--gray-400);
}

.mock-sidebar__section {
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: 0.08em;
  padding: 8px 10px 4px;
}

.mock-sidebar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: all 0.2s;
}

.mock-sidebar__item svg {
  flex-shrink: 0;
  opacity: 0.5;
}

.mock-sidebar__item--active {
  background: rgba(114, 70, 193, 0.08);
  color: var(--purple);
  font-weight: 600;
}

.mock-sidebar__item--active svg {
  opacity: 1;
  color: var(--purple);
}

.mock-sidebar__count {
  margin-left: auto;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 1px 6px;
  border-radius: 10px;
}

.mock-sidebar__badge-new {
  margin-left: auto;
  font-size: 0.5rem;
  font-weight: 700;
  color: white;
  background: var(--purple);
  padding: 1px 5px;
  border-radius: 10px;
  min-width: 16px;
  text-align: center;
}

.mock-sidebar__user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 10px;
  border-top: 1px solid var(--gray-100);
}

.mock-sidebar__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  color: white;
  font-size: 0.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-sidebar__username {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--navy);
}

.mock-sidebar__role {
  font-size: 0.5rem;
  color: var(--gray-400);
}

.mock-dashboard__main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--gray-50);
}

.mock-dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2px;
}

.mock-dashboard__greeting {
  display: block;
  font-size: 0.6rem;
  color: var(--gray-400);
  margin-bottom: 2px;
}

.mock-dashboard__title {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
}

.mock-dashboard__badge {
  font-size: 0.5rem;
  font-weight: 600;
  padding: 3px 8px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  border-radius: 100px;
}

.mock-dashboard__date {
  font-size: 0.55rem;
  color: var(--gray-400);
}

/* Mock stat cards */
.mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mock-stat {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.mock-stat__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.mock-stat--purple .mock-stat__icon { background: var(--purple); }
.mock-stat--blue .mock-stat__icon { background: var(--blue); }
.mock-stat--teal .mock-stat__icon { background: var(--teal); }
.mock-stat--green .mock-stat__icon { background: var(--green); }

.mock-stat__value {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.mock-stat__label {
  font-size: 0.5rem;
  color: var(--gray-400);
  margin-top: 1px;
}

.mock-stat__trend {
  font-size: 0.5rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 6px;
  margin-left: auto;
  flex-shrink: 0;
  align-self: center;
}

.mock-stat__trend--up {
  color: #15803d;
  background: rgba(34, 197, 94, 0.1);
}

.mock-stat__trend--neutral {
  color: var(--gray-400);
  background: var(--gray-100);
}

/* Dashboard bottom row: chart + activity */
.mock-dashboard__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
}

/* Mini bar chart */
.mock-chart {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.mock-chart__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mock-chart__title {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--navy);
}

.mock-chart__legend {
  font-size: 0.5rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 3px;
}

.mock-chart__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.mock-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex: 1;
  padding-top: 4px;
}

.mock-chart__bar-group {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 100%;
  position: relative;
}

.mock-chart__bar-group span {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.45rem;
  color: var(--gray-400);
}

.mock-chart__bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  min-height: 4px;
}

/* Mock incident rows */
.mock-incidents {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mock-incidents__header {
  padding: 8px 12px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-incidents__viewall {
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--purple);
  cursor: pointer;
}

.mock-incident {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-bottom: 1px solid var(--gray-50);
  font-size: 0.6rem;
}

.mock-incident:last-child { border-bottom: none; }

.mock-incident__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-incident__dot--red { background: var(--red); }
.mock-incident__dot--yellow { background: var(--yellow); }
.mock-incident__dot--green { background: var(--green); }

.mock-incident__text {
  color: var(--gray-600);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-incident__tag {
  font-size: 0.5rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.mock-incident__tag--intervene {
  background: rgba(239, 68, 68, 0.1);
  color: var(--red);
}

.mock-incident__tag--alert {
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
}

.mock-incident__tag--log {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

.mock-incident__time {
  font-size: 0.5rem;
  color: var(--gray-300);
  white-space: nowrap;
}

/* ===== MOCK CHAT / INTERVENTION UI ===== */
.demo-visual {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.demo-visual:hover {
  border-color: var(--purple);
  box-shadow: 0 8px 32px rgba(114, 70, 193, 0.1);
  transform: translateY(-2px);
}

.demo-visual__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.demo-visual__header-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.demo-visual__header-channel {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
}

.demo-visual__header-badge {
  margin-left: auto;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.demo-visual__header-badge--intervene {
  background: rgba(239, 68, 68, 0.1);
  color: var(--red);
}

.demo-visual__header-badge--alert {
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
}

.demo-visual__header-badge--log {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

.demo-visual__body {
  padding: 16px 20px;
}

/* Chat-style messages -- WhatsApp style */
.demo-msg {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.demo-msg:last-child { margin-bottom: 0; }

.demo-msg__avatar {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.demo-msg__avatar--user {
  background: var(--gray-300);
}

.demo-msg__avatar--govantic {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
}

.demo-msg__avatar--govantic img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.demo-msg__content {
  flex: 1;
  min-width: 0;
}

.demo-msg__meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.demo-msg__name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
}

.demo-msg__name--govantic {
  color: var(--purple);
}

.demo-msg__time {
  font-size: 0.6875rem;
  color: var(--gray-400);
}

.demo-msg__text {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 0 12px 12px 12px;
  background: var(--gray-50);
  display: inline-block;
}

/* Outgoing messages (alinaflow/bot responses) */
.demo-msg__avatar--govantic + .demo-msg__content .demo-msg__text {
  background: rgba(114, 70, 193, 0.06);
  border-radius: 12px 0 12px 12px;
}

.demo-msg__text code {
  background: rgba(114, 70, 193, 0.08);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--purple);
  font-family: var(--font-mono);
}

.demo-msg__text--violation {
  background: rgba(239, 68, 68, 0.06);
  border-left: 3px solid var(--red);
  padding: 8px 12px;
  border-radius: 0 8px 8px 0;
  margin-top: 6px;
}

.demo-msg__text--violation p {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.demo-msg__text--violation strong {
  color: var(--navy);
}

.demo-visual__footer {
  padding: 10px 20px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  font-size: 0.6875rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 6px;
}

.demo-visual__footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse 2s infinite;
}

@media (max-width: 1024px) {
  .hero__split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mock-dashboard__body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mock-dashboard__sidebar {
    display: none;
  }

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

  .mock-dashboard__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mock-dashboard {
    display: none;
  }
}

/* ===== CONTACT PAGE ===== */
.contact__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-card:hover {
  border-color: var(--purple);
  box-shadow: 0 8px 32px rgba(114, 70, 193, 0.08);
  transform: translateY(-2px);
}

.contact-card:hover .contact-card__arrow {
  transform: translateX(4px);
  color: var(--purple);
}

.contact-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.contact-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-card__arrow {
  color: var(--gray-400);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.contact-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}

.contact-card__email {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--purple);
}

.contact-card:hover .contact-card__email {
  text-decoration: underline;
}

/* Office section */
.contact__office {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.contact__office-info .section-title {
  margin-bottom: 24px;
}

.contact__office-details {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.contact__office-details a {
  color: var(--purple);
  font-weight: 500;
  transition: color 0.2s;
}

.contact__office-details a:hover {
  color: var(--purple-dark);
  text-decoration: underline;
}

.contact__office-hours {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-top: 2px;
}

.contact__office-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__office-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .contact__office {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact__cards {
    grid-template-columns: 1fr;
  }

  .contact__office-photos {
    grid-template-columns: 1fr;
  }

  .contact__office-photo {
    height: 180px;
  }
}

/* ===== BLOG ===== */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.section--gray .blog-card {
  background: var(--white);
}

.blog-card:hover {
  border-color: var(--purple);
  box-shadow: 0 8px 32px rgba(114, 70, 193, 0.08);
  transform: translateY(-2px);
}

.blog-card__category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}

.blog-card__category--pillar {
  background: rgba(114, 70, 193, 0.1);
  color: var(--purple);
}

.blog-card__category--guide {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

.blog-card__category--comparison {
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
}

.blog-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.blog-card__date {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.blog-card__read {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--purple);
  transition: color 0.2s;
}

.blog-card:hover .blog-card__read {
  color: var(--purple-dark);
}

@media (max-width: 1024px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog__grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .diff__grid {
    margin-top: 32px;
  }

  .btn--large {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }
}

/* ===== RELEASES ===== */
.releases__rss-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--purple);
  transition: color 0.2s;
}

.releases__rss-link:hover {
  color: var(--purple-dark);
}

.releases {
  max-width: 100%;
}

.release {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}

.release:first-of-type {
  padding-top: 0;
}

.release:last-of-type {
  border-bottom: none;
}

.release__date-col {
  text-align: right;
  padding-top: 4px;
}

.release__date {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-400);
  white-space: nowrap;
}

.release__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.release__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 100px;
}

.release__tag--feature {
  background: rgba(114, 70, 193, 0.1);
  color: var(--purple);
}

.release__tag--improve {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

.release__tag--fix {
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
}

.release__tag--security {
  background: rgba(239, 68, 68, 0.1);
  color: var(--red);
}

.release__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}

.release__body {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.release__body p {
  margin-bottom: 12px;
}

.release__body ul {
  margin: 12px 0 12px 0;
  list-style: none;
  padding: 0;
}

.release__body li {
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.release__body li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--purple);
  opacity: 0.5;
}

.release__body a {
  color: var(--purple);
  font-weight: 500;
}

.release__body a:hover {
  color: var(--purple-dark);
}

@media (max-width: 768px) {
  .release {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .release__date-col {
    text-align: left;
  }
}

/* ===== HELP CENTER ===== */
.help__search-wrap {
  position: relative;
  max-width: 480px;
  margin: 20px auto 0;
}

.help__search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}

.help__search {
  width: 100%;
  padding: 14px 16px 14px 44px;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
  color: var(--gray-800);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.help__search:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(114, 70, 193, 0.1);
}

.help__search::placeholder {
  color: var(--gray-400);
}

.help-section {
  padding-top: 48px;
}

.help__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.help__sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  max-height: calc(100vh - var(--header-height) - 48px);
  overflow-y: auto;
  padding-right: 16px;
}

.help__sidebar::-webkit-scrollbar {
  width: 4px;
}

.help__sidebar::-webkit-scrollbar-thumb {
  background: var(--gray-200);
  border-radius: 4px;
}

.help__nav-group {
  margin-bottom: 20px;
}

.help__nav-title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  margin-bottom: 8px;
  padding-left: 12px;
}

.help__nav-link {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-500);
  padding: 5px 12px;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all 0.15s;
}

.help__nav-link:hover {
  color: var(--gray-800);
  background: var(--gray-50);
}

.help__nav-link.active {
  color: var(--purple);
  border-left-color: var(--purple);
  background: rgba(114, 70, 193, 0.05);
  font-weight: 500;
}

.help__content {
  min-width: 0;
}

.help__article {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
}

.help__article:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.help__article .section-label {
  margin-bottom: 12px;
}

.help__article h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.35;
}

.help__article p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 12px;
}

.help__article ul,
.help__article ol {
  margin: 12px 0 16px 0;
  padding: 0;
  list-style: none;
}

.help__article ol {
  counter-reset: help-ol;
}

.help__article li {
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.help__article ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--purple);
  opacity: 0.5;
}

.help__article ol li::before {
  counter-increment: help-ol;
  content: counter(help-ol);
  position: absolute;
  left: 2px;
  top: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--purple);
  opacity: 0.6;
}

.help__article strong {
  color: var(--gray-800);
  font-weight: 600;
}

.help__no-results {
  text-align: center;
  padding: 64px 0;
}

.help__no-results p {
  font-size: 1rem;
  color: var(--gray-400);
}

@media (max-width: 1024px) {
  .help__layout {
    grid-template-columns: 200px 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .help__layout {
    grid-template-columns: 1fr;
  }

  .help__sidebar {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 24px;
  }

  .help__nav-group {
    margin-bottom: 12px;
  }
}

/* ===== MOCK DASHBOARD ENTRANCE ===== */
@keyframes mock-rise {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes mock-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mock-dashboard {
  animation: mock-rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.mock-dashboard__topbar {
  animation: mock-fade-in 0.5s ease 0.5s both;
}

.mock-sidebar__item {
  opacity: 0;
  animation: mock-fade-in 0.4s ease both;
}
.mock-sidebar__item:nth-child(1) { animation-delay: 0.6s; }
.mock-sidebar__item:nth-child(2) { animation-delay: 0.68s; }
.mock-sidebar__item:nth-child(3) { animation-delay: 0.76s; }
.mock-sidebar__item:nth-child(4) { animation-delay: 0.84s; }
.mock-sidebar__item:nth-child(5) { animation-delay: 0.92s; }
.mock-sidebar__item:nth-child(6) { animation-delay: 1.0s; }
.mock-sidebar__item:nth-child(7) { animation-delay: 1.08s; }

.mock-dashboard__header {
  animation: mock-fade-in 0.4s ease 0.7s both;
}

.mock-stat {
  opacity: 0;
  animation: mock-fade-in 0.4s ease both;
}
.mock-stat:nth-child(1) { animation-delay: 0.85s; }
.mock-stat:nth-child(2) { animation-delay: 0.95s; }
.mock-stat:nth-child(3) { animation-delay: 1.05s; }

.mock-incidents__header {
  animation: mock-fade-in 0.4s ease 1.1s both;
}

.mock-incident {
  opacity: 0;
  animation: mock-fade-in 0.35s ease both;
}
.mock-incident:nth-child(1) { animation-delay: 1.2s; }
.mock-incident:nth-child(2) { animation-delay: 1.3s; }
.mock-incident:nth-child(3) { animation-delay: 1.4s; }
.mock-incident:nth-child(4) { animation-delay: 1.5s; }
.mock-incident:nth-child(5) { animation-delay: 1.6s; }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LOGO MARQUEE ===== */
.marquee {
  min-height: calc((100vh - min(85vh, 780px)) * 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  text-align: center;
}

.marquee--navy {
  background: var(--bg-purple);
}

.marquee__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.marquee__label--dark {
  color: var(--gray-500);
}

.marquee__track {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee__inner {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee__inner img {
  height: 32px;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
  flex-shrink: 0;
}

.marquee__inner img:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

.marquee--light .marquee__inner img {
  filter: grayscale(100%);
  opacity: 0.35;
}

.marquee--light .marquee__inner img:hover {
  filter: grayscale(0%);
  opacity: 0.7;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}
