/* ═══════════════════════════════════════════
   GLOBAL STYLES (design tokens, reset, nav, shared components)
═══════════════════════════════════════════ */
:root {
  --white: #FFFFFF;
  --off-white: #F7F6F2;
  --cream: #FFF8F3;
  --text: #1A1A1A;
  --text-2: #3D3D3D;
  --text-3: #6B6B6B;
  --text-4: #999999;
  --border: #E8E4DF;
  --border-2: #D4CEC7;

  /* Brand orange-red — HubSpot-inspired */
  --orange: #FF5C28;
  --orange-dark: #E04A1C;
  --orange-light: #FFF0EB;
  --orange-mid: #FFCBB8;

  /* Industry accents */
  --con: #D97706;
  /* amber - construction */
  --con-bg: #FFFBEB;
  --man: #0891B2;
  /* cyan - manufacturing */
  --man-bg: #ECFEFF;
  --wea: #7C3AED;
  /* violet - wealth */
  --wea-bg: #F5F3FF;
  --evt: #059669;
  /* emerald - events */
  --evt-bg: #ECFDF5;
  --ins: #0F4C81;
  /* navy - insurance */
  --ins-bg: #EFF6FF;
  --acc: #0D7D62;
  /* teal-green - accounting */
  --acc-bg: #EDFAF5;
  --hea: #0E7490;
  /* medical teal - healthcare */
  --hea-bg: #ECFEFF;
  --yel: #803b27;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 68px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-logo {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  cursor: pointer;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-logo .dot {
  color: var(--orange);
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-center a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
  padding: 6px 14px;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.nav-center a:hover {
  color: var(--text);
  background: var(--off-white);
}

.nav-center a.active {
  color: var(--text);
  background: var(--off-white);
}

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

.nav-right>a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.nav-right>a:hover {
  background: var(--off-white);
  color: var(--text);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  margin-left: 6px !important;
  padding: 8px 18px !important;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 92, 40, 0.3) !important;
}

/* Dropdown */
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item>.nav-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  white-space: nowrap;
}

.nav-item>.nav-trigger:hover {
  color: var(--text);
  background: var(--off-white);
}

.nav-item>.nav-trigger.active {
  color: var(--text);
  background: var(--off-white);
}

.nav-chevron {
  font-size: 10px;
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s;
}

/* chevron rotation handled by JS dd-open class */

.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13), 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 16px;
  min-width: 560px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 2000;
}

/* invisible bridge so mouse can travel from trigger to dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-item.dd-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-item.dd-open>.nav-trigger {
  color: var(--text);
  background: var(--off-white);
}

.nav-item.dd-open>.nav-trigger .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.nav-dd-item:hover {
  background: var(--off-white);
}

.nav-dd-item:hover .nav-dd-title {
  color: var(--orange);
}

.nav-dd-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.nav-dd-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.nav-dd-sub {
  font-size: 11px;
  color: var(--text-4);
  line-height: 1.35;
}

.nav-dd-footer {
  border-top: 1px solid var(--border);
  margin-top: 12px;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-dd-footer-text {
  font-size: 12px;
  color: var(--text-3);
}

.nav-dd-footer-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-light);
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  transition: var(--transition);
}

.nav-dd-footer-cta:hover {
  background: var(--orange-mid);
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 2px;
}

/* ═══════════════════════════════════════════
   PAGE SYSTEM
═══════════════════════════════════════════ */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ═══════════════════════════════════════════
   SHARED COMPONENTS
═══════════════════════════════════════════ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-sm {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 96px 0;
}

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

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

.section-cream {
  background: var(--cream);
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.eyebrow-orange {
  color: var(--orange);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 20px;
}

.section-heading em {
  font-style: normal;
  color: var(--orange);
  font-weight: 800;
}

.section-sub {
  font-size: 18px;
  color: var(--text-3);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 92, 40, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-2);
}

.btn-ghost:hover {
  border-color: var(--text-2);
  background: var(--off-white);
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--text);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

/* Pill badge */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid;
}

/* ═══════════════════════════════════════════
   HOME — HERO
═══════════════════════════════════════════ */
.home-hero {
  padding: 160px 0 96px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at center, #FFE8DF 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-pill {
  background: var(--orange-light);
  border-color: var(--orange-mid);
  color: var(--orange);
  margin-bottom: 28px;
}

.hero-pill .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 820px;
}

.hero-h1 em {
  font-style: normal;
  color: var(--orange);
  font-weight: 800;
}

.hero-h1 .u {
  text-decoration: underline;
  text-decoration-color: var(--orange-mid);
  text-underline-offset: 6px;
}

.hero-sub {
  font-size: 20px;
  color: var(--text-3);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 13px;
  color: var(--text-4);
  font-weight: 500;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

.trust-item svg {
  color: var(--orange);
}

/* No per-user banner — homepage highlight */
.no-per-user-banner {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  border-radius: var(--r-xl);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin: 0 0 96px;
  position: relative;
  overflow: hidden;
}

.no-per-user-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 92, 40, 0.15), transparent 65%);
  border-radius: 50%;
}

.npub-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 10px;
}

.npub-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.npub-heading .strike {
  color: rgba(255, 255, 255, 0.35);
  font-style: normal;
  text-decoration: line-through;
}

.npub-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

/* Pricing diff widget */
.price-diff {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 24px 32px;
  text-align: center;
  min-width: 220px;
  flex-shrink: 0;
}

.price-diff .them {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.price-diff .them-price {
  font-size: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.price-diff .us {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.price-diff .us-price {
  font-size: 40px;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-display);
  letter-spacing: -1px;
}

.price-diff .us-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

/* Stats row */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--off-white);
}

.stat-item {
  padding: 32px 28px;
  background: var(--white);
  border-right: 1px solid var(--border);
  text-align: left;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num em {
  color: var(--orange);
  font-style: normal;
}

/* stat-num mobile override is inside the full 640px block below */
.stat-lbl {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   PAIN POINTS
═══════════════════════════════════════════ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.pain-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #FF9068);
  opacity: 0;
  transition: var(--transition);
}

.pain-card:hover::after {
  opacity: 1;
}

.pain-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.pain-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.pain-card p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   INDUSTRY CARDS
═══════════════════════════════════════════ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ind-card {
  border-radius: var(--r-xl);
  padding: 40px 36px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.ind-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ind-card.construction {
  background: var(--con-bg);
  border-color: #FDE68A;
}

.ind-card.manufacturing {
  background: var(--man-bg);
  border-color: #A5F3FC;
}

.ind-card.wealth {
  background: var(--wea-bg);
  border-color: #DDD6FE;
}

.ind-card.events {
  background: var(--evt-bg);
  border-color: #A7F3D0;
}

.ind-card.insurance {
  background: var(--ins-bg);
  border-color: #BFDBFE;
}

.ind-card.accounting {
  background: var(--acc-bg);
  border-color: #A7F3D0;
}

.ind-card.healthcare {
  background: var(--hea-bg);
  border-color: #A5F3FC;
}

.ind-card:hover.construction {
  border-color: var(--con);
}

.ind-card:hover.manufacturing {
  border-color: var(--man);
}

.ind-card:hover.wealth {
  border-color: var(--wea);
}

.ind-card:hover.events {
  border-color: var(--evt);
}

.ind-card:hover.insurance {
  border-color: var(--ins);
}

.ind-card:hover.accounting {
  border-color: var(--acc);
}

.ind-card:hover.healthcare {
  border-color: var(--hea);
}

.ind-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.construction .ind-icon {
  background: #FEF3C7;
}

.manufacturing .ind-icon {
  background: #CFFAFE;
}

.wealth .ind-icon {
  background: #EDE9FE;
}

.events .ind-icon {
  background: #D1FAE5;
}

.insurance .ind-icon {
  background: #DBEAFE;
}

.accounting .ind-icon {
  background: #CCFBEF;
}

.healthcare .ind-icon {
  background: #CFFAFE;
}

.ind-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.construction h3 {
  color: var(--con);
}

.manufacturing h3 {
  color: var(--man);
}

.wealth h3 {
  color: var(--wea);
}

.events h3 {
  color: var(--evt);
}

.insurance h3 {
  color: var(--ins);
}

.accounting h3 {
  color: var(--acc);
}

.healthcare h3 {
  color: var(--hea);
}

.ind-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 20px;
}

.ind-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.ind-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid;
}

.construction .ind-tag {
  color: var(--con);
  border-color: #FDE68A;
  background: #FFFBEB;
}

.manufacturing .ind-tag {
  color: var(--man);
  border-color: #A5F3FC;
  background: #ECFEFF;
}

.wealth .ind-tag {
  color: var(--wea);
  border-color: #DDD6FE;
  background: #F5F3FF;
}

.events .ind-tag {
  color: var(--evt);
  border-color: #A7F3D0;
  background: #ECFDF5;
}

.insurance .ind-tag {
  color: var(--ins);
  border-color: #BFDBFE;
  background: #EFF6FF;
}

.accounting .ind-tag {
  color: var(--acc);
  border-color: #6EE7B7;
  background: var(--acc-bg);
}

.healthcare .ind-tag {
  color: var(--hea);
  border-color: #67E8F9;
  background: var(--hea-bg);
}

.ind-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}

.ind-link .arr {
  transition: var(--transition);
}

.ind-card:hover .arr {
  transform: translateX(4px);
}

.construction .ind-link {
  color: var(--con);
}

.manufacturing .ind-link {
  color: var(--man);
}

.wealth .ind-link {
  color: var(--wea);
}

.events .ind-link {
  color: var(--evt);
}

.insurance .ind-link {
  color: var(--ins);
}

.accounting .ind-link {
  color: var(--acc);
}

.healthcare .ind-link {
  color: var(--hea);
}

/* ═══════════════════════════════════════════
   AI SECTION
═══════════════════════════════════════════ */
.ai-section-wrap {
  background: #1A1A1A;
  border-radius: var(--r-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.ai-section-wrap::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 92, 40, 0.12), transparent 65%);
  border-radius: 50%;
}

.ai-text-side {
  position: relative;
  z-index: 1;
}

.ai-text-side .eyebrow {
  color: var(--orange);
}

.ai-text-side h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 16px;
}

.ai-text-side h2 em {
  font-style: normal;
  color: var(--orange);
  font-weight: 800;
}

.ai-text-side p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  line-height: 1.7;
}

.ai-features {
  list-style: none;
}

.ai-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 500;
}

.ai-features li:last-child {
  border-bottom: none;
}

.ai-features li .ck {
  color: var(--orange);
  font-size: 16px;
}

/* Chat mockup */
.chat-mockup {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-xl);
  padding: 24px;
  position: relative;
  z-index: 1;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.chat-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.chat-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.chat-dot {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  margin-left: auto;
}

.chat-msg {
  margin-bottom: 12px;
  display: flex;
}

.chat-msg.user {
  justify-content: flex-end;
}

.chat-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.55;
}

.chat-msg.user .chat-bubble {
  background: rgba(255, 92, 40, 0.18);
  border: 1px solid rgba(255, 92, 40, 0.25);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 14px 14px 4px 14px;
}

.chat-msg.bot .chat-bubble {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 14px 14px 14px 4px;
}

.chat-msg.bot .chat-bubble strong {
  color: #fff;
}

.voice-bar-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 92, 40, 0.1);
  border: 1px solid rgba(255, 92, 40, 0.2);
  border-radius: 12px;
  margin-top: 4px;
}

.v-bars {
  display: flex;
  gap: 3px;
  align-items: center;
}

.v-bar {
  width: 3px;
  border-radius: 3px;
  background: var(--orange);
  animation: vba 0.8s ease-in-out infinite alternate;
}

.v-bar:nth-child(1) {
  height: 7px;
}

.v-bar:nth-child(2) {
  height: 13px;
  animation-delay: .1s;
}

.v-bar:nth-child(3) {
  height: 9px;
  animation-delay: .2s;
}

.v-bar:nth-child(4) {
  height: 16px;
  animation-delay: .15s;
}

.v-bar:nth-child(5) {
  height: 7px;
  animation-delay: .05s;
}

@keyframes vba {
  from {
    opacity: .4;
    transform: scaleY(.6);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

.voice-bar-wrap span {
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════════ */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table th {
  padding: 16px 20px;
  background: var(--off-white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-3);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th.bunch-col {
  color: var(--orange);
}

.compare-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tr:hover td {
  background: var(--off-white);
}

.compare-table td.feature-name {
  font-weight: 600;
  color: var(--text);
}

.compare-table td.bunch-val {
  color: var(--orange);
  font-weight: 700;
}

.check-icon {
  color: #16A34A;
  font-size: 16px;
}

.cross-icon {
  color: #DC2626;
  font-size: 16px;
}

.partial-icon {
  color: #D97706;
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}

.price-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-2);
}

.price-card.featured {
  background: #1A1A1A;
  border-color: #1A1A1A;
}

.price-card.featured:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 18px;
  border-radius: 100px;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.price-card.featured h4 {
  color: #fff;
}

.price-tag-line {
  font-size: 13px;
  color: var(--text-4);
  margin-bottom: 20px;
}

.price-card.featured .price-tag-line {
  color: rgba(255, 255, 255, 0.4);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.price-card.featured .price-amount {
  color: #fff;
}

.price-amount .currency {
  font-size: 24px;
  vertical-align: super;
  letter-spacing: 0;
}

.price-amount .per {
  font-size: 16px;
  color: var(--text-3);
  font-weight: 400;
  letter-spacing: 0;
}

.price-card.featured .price-amount .per {
  color: rgba(255, 255, 255, 0.4);
}

.price-note {
  font-size: 13px;
  color: #16A34A;
  font-weight: 600;
  margin-bottom: 24px;
  margin-top: 6px;
}

.price-card.featured .price-note {
  color: #4ADE80;
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.price-card.featured .price-divider {
  background: rgba(255, 255, 255, 0.08);
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li::before {
  content: '✓';
  color: #16A34A;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-card.featured .price-features li {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.07);
}

.price-card.featured .price-features li::before {
  color: #4ADE80;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border-2);
}

.t-stars {
  color: #F59E0B;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.t-quote {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

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

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.t-name {
  font-size: 14px;
  font-weight: 700;
}

.t-role {
  font-size: 12px;
  color: var(--text-4);
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-list {
  max-width: 720px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 8px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.faq-item:hover {
  border-color: var(--border-2);
}

.faq-item.open {
  border-color: var(--orange);
}

.faq-q {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 20px;
  color: var(--text-4);
  transition: var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--orange);
}

.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}

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

.footer-brand .footer-logo {
  height: 36px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-contact {
  font-size: 13px;
  color: var(--text-3);
}

.footer-contact a {
  color: var(--text-2);
  font-weight: 500;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-4);
}

/* ═══════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #FF8C5A 100%);
  border-radius: var(--r-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.12;
  position: relative;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  position: relative;
}

.cta-banner .btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-banner small {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
}

/* ═══════════════════════════════════════════
   INDUSTRY LANDING PAGES
═══════════════════════════════════════════ */
.ind-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.ind-hero-pill {
  margin-bottom: 24px;
}

.ind-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 22px;
  max-width: 800px;
}

.ind-hero h1 em {
  font-style: normal;
  font-weight: 800;
}

.ind-hero-sub {
  font-size: 19px;
  color: var(--text-3);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.ind-hero-metrics {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.ind-metric .im-val {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

.ind-metric .im-lbl {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  margin-top: 4px;
}

/* Hero BG shapes */
.ind-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.ind-hero-bg.con-bg::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 65%);
  border-radius: 50%;
}

.ind-hero-bg.man-bg::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.08) 0%, transparent 65%);
  border-radius: 50%;
}

.ind-hero-bg.wea-bg::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 65%);
  border-radius: 50%;
}

.ind-hero-bg.evt-bg::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 65%);
  border-radius: 50%;
}

.ind-hero-bg.ins-bg::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(15, 76, 129, 0.08) 0%, transparent 65%);
  border-radius: 50%;
}

.ind-hero-bg.acc-bg::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 125, 98, 0.08) 0%, transparent 65%);
  border-radius: 50%;
}

.ind-hero-bg.hea-bg::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 116, 144, 0.08) 0%, transparent 65%);
  border-radius: 50%;
}

/* Prob-Sol split */
.prob-sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.prob-col,
.sol-col {
  border-radius: var(--r-xl);
  padding: 36px;
}

.prob-col {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}

.sol-col {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}

.prob-col h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #DC2626;
  margin-bottom: 20px;
}

.sol-col h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #16A34A;
  margin-bottom: 20px;
}

.prob-item,
.sol-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid;
}

.prob-item {
  color: #7F1D1D;
  border-color: #FECACA;
}

.sol-item {
  color: #14532D;
  border-color: #BBF7D0;
}

.prob-item:last-child,
.sol-item:last-child {
  border-bottom: none;
}

.prob-item .icon {
  flex-shrink: 0;
  font-size: 15px;
  margin-top: 1px;
}

/* Features grid */
.features-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

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

.f-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.65;
}

/* Who is it for grid */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.usecase-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: var(--transition);
}

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

.uc-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.usecase-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.usecase-card p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
}

/* Back button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 0;
  transition: var(--transition);
  margin-bottom: 16px;
}

.back-btn:hover {
  color: var(--text);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  background: transparent;
  border: none;
}

.nav-hamburger:hover {
  background: var(--off-white);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.mobile-nav-overlay.open {
  display: block;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 850;
  width: 300px;
  background: #fff;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav-panel.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-logo {
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}

.mobile-nav-logo .dot {
  color: var(--orange);
}

.mobile-nav-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--off-white);
  cursor: pointer;
  font-size: 18px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-nav-close:hover {
  background: var(--border);
}

.mobile-nav-body {
  padding: 16px 0;
  flex: 1;
}

.mobile-nav-section-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-4);
  padding: 12px 24px 6px;
  display: block;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.mobile-nav-link:hover {
  background: var(--off-white);
  color: var(--text);
}

.mobile-nav-link .ml-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.mobile-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 10px 16px;
}

.mobile-nav-footer {
  padding: 16px 16px 24px;
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-nav-cta:hover {
  background: var(--orange-dark);
}

@media (max-width: 960px) {
  nav {
    padding: 0 20px;
  }

  .nav-center {
    display: none;
  }

  .nav-right .nav-divider {
    display: none;
  }

  .nav-right>a:not(.nav-cta) {
    display: none;
  }

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

  .nav-hamburger {
    display: flex;
  }

  .container,
  .container-sm {
    padding: 0 20px;
  }

  .section,
  .section-sm {
    padding: 60px 0;
  }

  .home-hero {
    padding: 120px 0 60px;
  }

  .hero-h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 17px;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

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

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

  .ai-section-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 24px;
  }

  .no-per-user-banner {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }

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

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

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

  .prob-sol-grid {
    grid-template-columns: 1fr;
  }

  .features-grid-2,
  .features-grid-3 {
    grid-template-columns: 1fr;
  }

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

  .ind-hero {
    padding: 100px 0 60px;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  .section-heading {
    font-size: 28px;
  }

  /* Healthcare page responsive overrides */
  #page-healthcare .ind-hero-metrics {
    gap: 20px;
  }

  #page-healthcare .is-0425,
  #page-healthcare .is-0435 {
    grid-template-columns: 1fr 1fr !important;
  }

  #page-healthcare .is-0430 {
    grid-template-columns: 1fr 1fr !important;
  }

  #page-healthcare .is-0439 {
    grid-template-columns: 1fr !important;
  }

  #page-healthcare .ind-hero-metrics {
    flex-direction: row;
    flex-wrap: wrap;
  }

  #page-healthcare .is-0431 {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   TABLET — max 900px
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }

  .nav-center {
    display: none;
  }

  .nav-right .nav-divider {
    display: none;
  }

  .nav-right>a:not(.nav-cta) {
    display: none;
  }

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

  .nav-hamburger {
    display: flex;
  }

  .container,
  .container-sm {
    padding: 0 20px;
  }

  .section,
  .section-sm {
    padding: 60px 0;
  }

  .home-hero {
    padding: 110px 0 56px;
  }

  .hero-h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 17px;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

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

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

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

  .ai-section-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 24px;
  }

  .no-per-user-banner {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }

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

  .section-heading {
    font-size: 28px;
  }

  .ind-hero {
    padding: 100px 0 56px;
  }

  .cta-banner {
    padding: 40px 28px;
  }

  /* Inline-style grid overrides */
  .wa-hero-banner {
    grid-template-columns: 1fr !important;
    padding: 36px 28px !important;
    gap: 24px !important;
  }

  .wa-hero-banner>div:last-child {
    min-width: unset !important;
  }

  .integration-grid-cards {
    grid-template-columns: 1fr 1fr !important;
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr !important;
  }

  .pricing-guarantee-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }

  .about-mission-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .about-journey-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .ind-testimonial-grid {
    grid-template-columns: 1fr !important;
  }

  .hea-specialties-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ═══════════════════════════════════════════
   MOBILE — max 640px
═══════════════════════════════════════════ */
@media (max-width: 640px) {

  /* Layout */
  .container,
  .container-sm {
    padding: 0 16px;
  }

  .section,
  .section-sm {
    padding: 40px 0;
  }

  .site-footer {
    padding: 48px 0 28px;
  }

  /* Hero */
  .home-hero {
    padding: 88px 0 40px;
  }

  .hero-h1 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .hero-trust {
    gap: 10px;
  }

  .home-hero::before {
    display: none;
  }

  /* Typography */
  .section-heading {
    font-size: 22px;
  }

  .section-sub {
    font-size: 15px;
    margin-bottom: 32px;
  }

  /* Stats */
  .stat-num {
    font-size: 24px;
    letter-spacing: -1px;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    padding: 20px 16px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .stat-item:last-child,
  .stat-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  /* No-per-user banner */
  .no-per-user-banner {
    padding: 28px 20px;
    margin: 0 0 48px;
    gap: 20px;
  }

  .npub-heading {
    font-size: 20px;
  }

  .price-diff {
    min-width: unset;
    width: 100%;
    padding: 20px 24px;
  }

  /* Grids — single column on mobile */
  .pain-grid {
    grid-template-columns: 1fr;
  }

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

  .ind-card {
    padding: 28px 20px;
  }

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

  .ai-section-wrap {
    padding: 24px 20px;
    gap: 24px;
  }

  /* Inline-style grid overrides */
  .wa-hero-banner {
    grid-template-columns: 1fr !important;
    padding: 24px 20px !important;
    gap: 16px !important;
  }

  .wa-hero-banner>div:last-child {
    min-width: unset !important;
  }

  .integration-grid-cards {
    grid-template-columns: 1fr !important;
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr !important;
  }

  .pricing-guarantee-bar {
    padding: 24px 20px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .pricing-guarantee-bar>div:last-child {
    gap: 16px !important;
    justify-content: flex-start !important;
  }

  /* Pricing hours — single column on mobile */
  .pricing-hours-grid {
    grid-template-columns: 1fr !important;
  }

  /* CTA banner */
  .cta-banner {
    padding: 36px 20px;
  }

  .cta-banner p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .cta-banner .btn-row {
    flex-direction: column;
    gap: 10px;
  }

  .cta-banner .btn-row .btn {
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Mobile nav panel */
  .mobile-nav-panel {
    width: min(300px, 100%);
  }

  /* Healthcare — stack all multi-column grids on mobile */
  #page-healthcare .hea-specialties-grid,
  #page-healthcare .is-0425,
  #page-healthcare .is-0430,
  #page-healthcare .is-0435,
  #page-healthcare .is-0439 {
    grid-template-columns: 1fr !important;
  }

  /* Industry pages */
  .ind-hero {
    padding: 80px 0 40px;
  }

  .ind-hero h1 {
    font-size: 28px;
  }

  .ind-hero-sub {
    font-size: 15px;
  }

  .ind-hero-metrics {
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
  }

  /* Demo modal form — mobile responsive */
  #demo-modal {
    padding: 10px !important;
    align-items: flex-start !important;
    overflow-y: auto !important;
  }

  #demo-modal>div {
    padding: 28px 18px !important;
    border-radius: 18px !important;
    max-height: none !important;
    margin: auto 0 !important;
  }

  #demo-modal h2 {
    font-size: 22px !important;
  }

  #demo-modal .btn-row {
    flex-direction: column;
  }

  #demo-form-view>div>div:first-child {
    grid-template-columns: 1fr !important;
  }
}

/* ═══════════════════════════════════════════
   STYLE GUIDE PAGE
═══════════════════════════════════════════ */
.sg-hero {
  padding: 120px 0 64px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.sg-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F0F0FF;
  border: 1px solid #DDDDFB;
  color: #4B4ACF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.sg-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

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

.sg-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-4);
  margin-bottom: 6px;
}

.sg-section-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sg-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Color swatches */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.swatch-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.swatch {
  height: 80px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

.swatch-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.swatch-hex {
  font-size: 12px;
  color: var(--text-4);
  font-family: monospace;
}

.swatch-use {
  font-size: 11px;
  color: var(--text-4);
  margin-top: 2px;
}

/* Type specimens */
.type-specimen {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.type-specimen:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.type-meta {
  display: flex;
  gap: 24px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.type-meta span {
  font-size: 12px;
  color: var(--text-4);
}

.type-meta span strong {
  color: var(--text-3);
  font-weight: 600;
}

/* Spacing scale */
.space-scale {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.space-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.space-bar {
  background: var(--orange);
  border-radius: 4px;
  width: 40px;
}

.space-val {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 600;
}

.space-name {
  font-size: 11px;
  color: var(--text-4);
}

/* Component preview */
.sg-component-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sg-component-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}

.sg-component-box.dark {
  background: #111;
}

.sg-component-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-4);
  margin-bottom: 20px;
}

.sg-component-box.dark .sg-component-label {
  color: rgba(255, 255, 255, 0.3);
}

/* Do / Don't */
.do-dont-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.do-box,
.dont-box {
  border-radius: var(--r-lg);
  padding: 24px;
}

.do-box {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}

.dont-box {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}

.do-box .label {
  font-size: 12px;
  font-weight: 800;
  color: #16A34A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dont-box .label {
  font-size: 12px;
  font-weight: 800;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.do-box p,
.dont-box p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
}

/* Icon grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-align: center;
}

.icon-item .ico {
  font-size: 24px;
}

.icon-item span {
  font-size: 11px;
  color: var(--text-4);
}

/* Gradient palette */
.gradient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gradient-swatch {
  height: 100px;
  border-radius: 14px;
  display: flex;
  align-items: flex-end;
  padding: 12px 14px;
}

.gradient-swatch span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* Motion tokens */
.motion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.motion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
}

.motion-demo {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 8px;
  margin-bottom: 14px;
  cursor: pointer;
}

.motion-item h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.motion-item p {
  font-size: 13px;
  color: var(--text-3);
}

.motion-item code {
  font-size: 12px;
  color: var(--orange);
  background: var(--orange-light);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  display: inline-block;
  margin-top: 6px;
}

/* Elevation */
.elevation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.elevation-item {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
}

.elevation-item h5 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.elevation-item code {
  font-size: 11px;
  color: var(--text-4);
  font-family: monospace;
}

/* ═══════════════════════════════════════════
   PRICING PAGE
═══════════════════════════════════════════ */
.pr-hero {
  padding: 120px 0 72px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.pr-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #FFE8DF 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* Configurator card */
.configurator {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.config-header {
  background: #1A1A1A;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.config-header h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}

.config-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.config-total-badge {
  background: rgba(255, 92, 40, 0.15);
  border: 1px solid rgba(255, 92, 40, 0.3);
  border-radius: var(--r-lg);
  padding: 16px 28px;
  text-align: center;
  flex-shrink: 0;
}

.config-total-badge .ctb-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.config-total-badge .ctb-amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1px;
  line-height: 1;
}

.config-total-badge .ctb-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.config-body {
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}

/* Step blocks */
.config-step {}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  margin-right: 10px;
}

.step-title {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
  padding-left: 38px;
  line-height: 1.6;
}

/* Hour selector */
.hour-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 38px;
}

.hour-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hour-option:hover {
  border-color: var(--orange-mid);
  background: var(--orange-light);
}

.hour-option.selected {
  border-color: var(--orange);
  background: var(--orange-light);
}

.hour-option.selected::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
}

.ho-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ho-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border-2);
  flex-shrink: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hour-option.selected .ho-radio {
  border-color: var(--orange);
  background: var(--orange);
}

.hour-option.selected .ho-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.ho-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.ho-sublabel {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}

.ho-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  align-items: flex-end;
}

.ho-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.hour-option.selected .ho-price {
  color: var(--orange);
}

.ho-original {
  font-size: 13px;
  color: var(--text-4);
  text-decoration: line-through;
}

.ho-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 100px;
  background: #F0FDF4;
  color: #16A34A;
  border: 1px solid #BBF7D0;
}

.ho-badge.popular {
  background: var(--orange-light);
  color: var(--orange);
  border-color: var(--orange-mid);
}

/* Maintenance slider */
.maintenance-section {
  padding-left: 38px;
}

.maint-range-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 16px;
}

.maint-display {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.maint-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
}

.maint-amount span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-3);
}

.maint-label {
  font-size: 12px;
  color: var(--text-4);
  font-weight: 500;
}

/* Custom range input */
.maint-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--orange) 0%, var(--orange) 50%, var(--border-2) 50%, var(--border-2) 100%);
  outline: none;
  cursor: pointer;
}

.maint-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(255, 92, 40, 0.35);
  cursor: pointer;
}

.maint-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(255, 92, 40, 0.35);
  cursor: pointer;
}

.maint-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-4);
  font-weight: 600;
}

.complexity-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.ctag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-3);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.ctag:hover {
  border-color: var(--orange-mid);
  color: var(--orange);
  background: var(--orange-light);
}

.ctag.active {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
}

/* Summary panel */
.summary-panel {
  background: #1A1A1A;
  border-radius: var(--r-xl);
  padding: 32px;
  position: sticky;
  top: 100px;
}

.sp-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.sp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.sp-row-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.sp-row-val {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.sp-row-val.orange {
  color: var(--orange);
}

.sp-row-val.green {
  color: #4ADE80;
}

.sp-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 16px 0;
}

.sp-total-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.sp-total-impl {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}

.sp-total-impl .discount-applied {
  font-size: 16px;
  color: #4ADE80;
  font-weight: 600;
}

.sp-total-monthly {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.sp-total-monthly strong {
  color: var(--orange);
  font-size: 16px;
  font-family: var(--font-display);
  font-weight: 800;
}

.sp-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* What's included section */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.inc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  transition: var(--transition);
}

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

.inc-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.inc-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.inc-card p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
}

/* Process timeline */
.timeline {
  display: flex;
  gap: 0;
  margin-top: 16px;
}

.tl-step {
  flex: 1;
  position: relative;
  padding: 20px 16px 20px 0;
}

.tl-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--border-2);
  font-size: 18px;
}

.tl-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange-light);
  border: 2px solid var(--orange-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 10px;
}

.tl-step h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.tl-step p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
}

/* FAQ pricing */
.pr-faq {
  max-width: 740px;
}

/* Pricing — Tablet */
@media(max-width:900px) {
  .config-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .timeline {
    flex-direction: column;
    gap: 12px;
  }

  .tl-step::after {
    display: none;
  }

  .hour-selector {
    padding-left: 0;
  }

  .step-desc {
    padding-left: 0;
  }

  .maintenance-section {
    padding-left: 0;
  }
}

/* Pricing — Mobile */
@media(max-width:640px) {
  .config-header {
    padding: 24px 20px;
  }

  .config-header h2 {
    font-size: 18px;
  }

  .config-total-badge {
    width: 100%;
    padding: 14px 20px;
  }

  .config-total-badge .ctb-amount {
    font-size: 26px;
  }

  .config-body {
    padding: 24px 16px;
    gap: 28px;
  }

  .step-title {
    font-size: 15px;
  }

  .hour-option {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }

  .ho-right {
    align-items: flex-start !important;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
  }

  .maint-amount {
    font-size: 28px;
  }

  .summary-panel {
    padding: 24px 20px;
    position: static;
  }

  .sp-total-impl {
    font-size: 30px;
  }

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

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-hero {
  padding: 130px 0 80px;
  background: var(--white);
  position: relative;
  overflow: hidden
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #FFE8DF 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none
}

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

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition)
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px)
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800
}

.team-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px
}

.team-role {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 10px
}

.team-bio {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.65
}

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

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: var(--transition)
}

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

.value-icon {
  font-size: 36px;
  margin-bottom: 14px
}

.value-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px
}

.value-card p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.65
}

.milestone-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px
}

.milestone {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border)
}

.milestone:last-child {
  border-bottom: none
}

.milestone-year {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
  width: 60px;
  flex-shrink: 0;
  padding-top: 2px
}

.milestone-content h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px
}

.milestone-content p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6
}

.stat-highlight {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #1A1A1A;
  border-radius: var(--r-xl);
  overflow: hidden
}

.sh-item {
  padding: 36px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.06)
}

.sh-item:last-child {
  border-right: none
}

.sh-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px
}

.sh-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500
}

@media(max-width:960px) {

  .team-grid,
  .value-grid {
    grid-template-columns: 1fr
  }

  .stat-highlight {
    grid-template-columns: 1fr 1fr
  }
}

/* ═══════════════════════════════════════════
   BLOG LISTING PAGE
═══════════════════════════════════════════ */
.blog-hero {
  padding: 130px 0 72px;
  background: var(--white);
  position: relative;
  overflow: hidden
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #FFE8DF 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none
}

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px)
}

.blog-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px
}

.blog-card-body {
  padding: 24px
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid;
  margin-bottom: 12px
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  line-height: 1.35
}

.blog-card p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 16px
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-4);
  font-weight: 500;
  flex-wrap: wrap
}

.blog-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border-2)
}

.blog-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr
}

.blog-card.featured .blog-card-img {
  height: auto;
  min-height: 260px;
  font-size: 80px
}

.blog-card.featured .blog-card-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.blog-card.featured h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px
}

.blog-card.featured p {
  font-size: 15px;
  margin-bottom: 20px
}

.blog-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px
}

.bf-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--text-3);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition)
}

.bf-btn:hover {
  border-color: var(--orange-mid);
  color: var(--orange)
}

.bf-btn.active {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light)
}

.blog-newsletter {
  background: #1A1A1A;
  border-radius: var(--r-xl);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

.bn-input {
  flex: 1;
  padding: 13px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none
}

.bn-input::placeholder {
  color: rgba(255, 255, 255, 0.3)
}

.bn-input:focus {
  border-color: var(--orange)
}

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

  .blog-card.featured {
    grid-column: 1;
    display: block
  }

  .blog-card.featured .blog-card-img {
    height: 180px
  }

  .blog-newsletter {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 24px
  }
}

@media(max-width:640px) {
  .blog-newsletter {
    padding: 28px 20px;
    gap: 20px;
    margin-top: 48px !important
  }

  .blog-newsletter h3 {
    font-size: 20px !important
  }

  .blog-newsletter .bn-input {
    min-width: 0
  }

  .blog-newsletter div[style*="display:flex;gap:10px"] {
    flex-direction: column
  }

  .blog-newsletter .btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box
  }
}

/* ═══════════════════════════════════════════
   SINGLE BLOG POST PAGE
═══════════════════════════════════════════ */
.post-hero {
  padding: 120px 0 56px;
  background: var(--white);
  border-bottom: 1px solid var(--border)
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start
}

.post-body h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin: 40px 0 14px;
  letter-spacing: -0.3px;
  line-height: 1.2
}

.post-body h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 12px
}

.post-body p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 20px
}

.post-body ul,
.post-body ol {
  padding-left: 20px;
  margin-bottom: 20px
}

.post-body li {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 8px
}

.post-body strong {
  color: var(--text);
  font-weight: 700
}

.post-callout {
  background: var(--orange-light);
  border: 1px solid var(--orange-mid);
  border-left: 4px solid var(--orange);
  border-radius: var(--r);
  padding: 20px 24px;
  margin: 28px 0
}

.post-callout p {
  font-size: 15px;
  color: var(--text-2);
  margin: 0;
  font-weight: 500
}

.post-divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0
}

.post-img-placeholder {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  margin: 32px 0
}

.post-sidebar {
  position: sticky;
  top: 100px
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 16px
}

.sidebar-card h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px
}

.toc-link {
  display: block;
  font-size: 13px;
  color: var(--text-3);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition)
}

.toc-link:last-child {
  border-bottom: none
}

.toc-link:hover,
.toc-link.active {
  color: var(--orange)
}

.toc-link.active {
  font-weight: 600
}

.related-post {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer
}

.related-post:last-child {
  border-bottom: none
}

.rp-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px
}

.rp-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4
}

.rp-meta {
  font-size: 11px;
  color: var(--text-4);
  margin-top: 3px
}

.author-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-top: 40px
}

.author-av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0
}

.post-cta {
  background: #1A1A1A;
  border-radius: var(--r-xl);
  padding: 40px;
  text-align: center;
  margin-top: 48px
}

.post-cta h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.3px
}

.post-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
  line-height: 1.65
}

@media(max-width:960px) {
  .post-layout {
    grid-template-columns: 1fr
  }

  .post-sidebar {
    position: static
  }
}

/* ═══════════════════════════════════════════
   PRIVACY / TERMS (LEGAL) PAGES
═══════════════════════════════════════════ */
.legal-hero {
  background: linear-gradient(160deg, var(--off-white) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
  padding: 110px 0 52px;
  position: relative;
  z-index: 2;
}

.legal-hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.8px;
  margin-bottom: 12px
}

.legal-hero p {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 520px
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm)
}

.legal-page-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: baseline;
  padding: 60px 0 96px
}

/* TOC sidebar */
.legal-toc {
  position: sticky;
  top: 88px;
  z-index: 1
}

.legal-toc-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  max-height: calc(100vh - 108px);
  overflow-y: auto
}

.legal-toc h5 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-4);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border)
}

.legal-toc a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 2px;
  line-height: 1.35;
}

.legal-toc a:hover {
  color: var(--orange);
  background: var(--orange-light)
}

.legal-toc a.toc-active {
  color: var(--orange);
  background: var(--orange-light);
  font-weight: 600
}

/* Body */
.legal-body {
  min-width: 0
}

.legal-section {
  margin-bottom: 52px;
  scroll-margin-top: 100px
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  padding: 16px 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--r) var(--r) 0;
}

.legal-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 8px
}

.legal-section p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 14px
}

.legal-section ul {
  padding-left: 0;
  margin-bottom: 14px;
  list-style: none
}

.legal-section li {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.legal-section li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700
}

.legal-section strong {
  color: var(--text);
  font-weight: 700
}

.legal-section a {
  color: var(--orange)
}

/* Highlight box */
.legal-highlight {
  background: var(--orange-light);
  border: 1px solid var(--orange-mid);
  border-left: 4px solid var(--orange);
  border-radius: var(--r);
  padding: 20px 24px;
  margin-bottom: 36px;
}

.legal-highlight p {
  margin: 0;
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  line-height: 1.7
}

/* Contact card */
.legal-contact-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-top: 20px
}

@media(max-width:960px) {
  .legal-page-wrap {
    grid-template-columns: 1fr
  }

  .legal-toc {
    display: none
  }

  .legal-hero-inner {
    flex-direction: column;
    gap: 16px
  }
}

/* ═══════════════════════════════════════════
   WHY BUNCHCRM PAGE
═══════════════════════════════════════════ */
.why-hero {
  padding: 130px 0 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.why-hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #FFE8DF 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.why-hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #FFF0EB 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* Stat banner */
.why-stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--off-white);
  margin-top: 56px;
}

.why-stat-cell {
  padding: 28px 24px;
  background: var(--white);
  border-right: 1px solid var(--border);
  text-align: center;
}

.why-stat-cell:last-child {
  border-right: none;
}

.why-stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
}

.why-stat-label {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

/* VS comparison */
.why-vs-section {
  background: var(--off-white);
}

.vs-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-xl);
}

.vs-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 640px;
}

.vs-table thead tr th {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  border-bottom: 1.5px solid var(--border);
}

.vs-table thead th:first-child {
  width: 36%;
  background: var(--off-white);
}

.vs-table thead th.col-them {
  background: var(--off-white);
  color: var(--text-3);
}

.vs-table thead th.col-us {
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
}

.vs-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.vs-table tbody tr:last-child {
  border-bottom: none;
}

.vs-table tbody tr:nth-child(odd) td {
  background: var(--white);
}

.vs-table tbody tr:nth-child(even) td {
  background: #fafaf8;
}

.vs-table tbody td {
  padding: 14px 24px;
  font-size: 14px;
  color: var(--text-2);
  vertical-align: middle;
}

.vs-table tbody td:first-child {
  font-weight: 600;
  color: var(--text);
}

.vs-table tbody td.col-us {
  background: #FFF8F5 !important;
}

.vs-yes {
  color: #059669;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vs-no {
  color: #DC2626;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.8;
}

.vs-yes::before {
  content: '✓';
  font-size: 15px;
}

.vs-no::before {
  content: '✗';
  font-size: 15px;
}

/* Pillars */
.why-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-pill-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.why-pill-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #FF9068);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.why-pill-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--orange-mid);
}

.why-pill-card:hover::after {
  transform: scaleX(1);
}

.pill-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  background: var(--orange-light);
  border: 1px solid var(--orange-mid);
}

.why-pill-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.why-pill-card p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.72;
  margin-bottom: 16px;
}

.pill-proof {
  background: var(--off-white);
  border-radius: var(--r);
  padding: 12px 14px;
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.55;
  border-left: 3px solid var(--orange);
}

.pill-proof strong {
  color: var(--orange);
  font-weight: 700;
}

/* Pricing comparison */
.price-comp-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.price-comp-them {
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--white);
  overflow: hidden;
}

.price-comp-us {
  border: 2px solid var(--orange);
  border-radius: var(--r-xl);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 0 0 4px rgba(255, 92, 40, 0.08);
}

.price-comp-head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}

.price-comp-them .price-comp-head {
  background: var(--off-white);
}

.price-comp-us .price-comp-head {
  background: linear-gradient(135deg, var(--orange), #FF8040);
}

.price-comp-head-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}

.price-comp-them .price-comp-head-label {
  color: var(--text-4);
}

.price-comp-us .price-comp-head-label {
  color: rgba(255, 255, 255, 0.7);
}

.price-comp-head-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.price-comp-them .price-comp-head-name {
  color: var(--text);
}

.price-comp-us .price-comp-head-name {
  color: #fff;
}

.price-calc {
  padding: 24px 28px;
}

.price-calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.price-calc-row:last-child {
  border-bottom: none;
}

.price-calc-label {
  color: var(--text-2);
}

.price-calc-val {
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-display);
}

.price-calc-val.red {
  color: #DC2626;
}

.price-calc-val.green {
  color: #059669;
}

.price-calc-val.orange {
  color: var(--orange);
}

.price-total {
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: var(--r-lg);
  text-align: center;
}

.price-comp-them .price-total {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}

.price-comp-us .price-total {
  background: var(--orange-light);
  border: 1px solid var(--orange-mid);
}

.price-total-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.price-comp-them .price-total-label {
  color: #DC2626;
}

.price-comp-us .price-total-label {
  color: var(--orange);
}

.price-total-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}

.price-comp-them .price-total-num {
  color: #DC2626;
}

.price-comp-us .price-total-num {
  color: var(--orange);
}

.price-total-sub {
  font-size: 12px;
  color: var(--text-4);
  margin-top: 4px;
}

/* Testimonials */
.why-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-testi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.why-testi-stars {
  color: #F59E0B;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.why-testi-quote {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}

.why-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}

.why-testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.why-testi-role {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}

/* FAQ */
.why-faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.why-faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 10px;
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}

.why-faq-item.open {
  border-color: var(--orange-mid);
  box-shadow: var(--shadow-sm);
}

.why-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
}

.why-faq-q-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.why-faq-item.open .why-faq-q-text {
  color: var(--orange);
}

.why-faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-3);
  flex-shrink: 0;
  transition: var(--transition);
}

.why-faq-item.open .why-faq-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}

.why-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
  padding: 0 22px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  border-top: 1px solid transparent;
}

.why-faq-item.open .why-faq-a {
  max-height: 300px;
  padding: 16px 22px 20px;
  border-top-color: var(--border);
}

@media(max-width:960px) {
  .why-stat-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-stat-cell:nth-child(2) {
    border-right: none;
  }

  .vs-table {
    font-size: 13px;
  }

  .vs-table thead th,
  .vs-table tbody td {
    padding: 12px 14px;
  }

  .why-pillars-grid {
    grid-template-columns: 1fr;
  }

  .price-comp-wrap {
    grid-template-columns: 1fr;
  }

  .why-testi-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   PROBLEMS PAGE
═══════════════════════════════════════════ */
.prob-hero {
  padding: 120px 0 72px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}

.prob-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 92, 40, 0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.prob-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 92, 40, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.prob-hero-inner {
  position: relative;
  z-index: 1;
}

.prob-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 92, 40, 0.15);
  border: 1px solid rgba(255, 92, 40, 0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 24px;
}

.prob-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 20px;
  max-width: 800px;
}

.prob-h1 em {
  font-style: normal;
  color: var(--orange);
}

.prob-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.prob-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.prob-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.prob-stat strong {
  color: #fff;
  font-weight: 700;
}

.prob-stat-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

/* Filter bar */
.prob-filter-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 68px;
  z-index: 100;
}

.prob-filter-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.prob-filter-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 4px;
  flex-shrink: 0;
}

.pfbtn {
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  cursor: pointer;
  transition: var(--transition);
}

.pfbtn:hover {
  border-color: var(--orange-mid);
  color: var(--orange);
  background: var(--orange-light);
}

.pfbtn.active {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
}

.prob-count-badge {
  margin-left: auto;
  font-size: 13px;
  color: var(--text-3);
  font-weight: 600;
}

.prob-count-badge span {
  color: var(--orange);
  font-weight: 800;
}

/* Grid */
.prob-section {
  padding: 64px 0 96px;
}

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

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

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

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

/* Problem card */
.prob-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.prob-card:hover {
  border-color: var(--orange-mid);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.prob-card.open {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 92, 40, 0.12);
}

.prob-card-head {
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prob-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.prob-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--text-4);
  letter-spacing: 0.5px;
  line-height: 1;
  flex-shrink: 0;
}

.prob-card.open .prob-num {
  color: var(--orange);
}

.prob-toggle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-3);
  flex-shrink: 0;
  transition: var(--transition);
}

.prob-card.open .prob-toggle {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}

.prob-tag {
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid;
  margin-bottom: 2px;
  align-self: flex-start;
}

.prob-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
}

.prob-card.open .prob-title {
  color: var(--orange);
}

/* Expandable body */
.prob-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.2s ease;
  padding: 0 20px;
  border-top: 1px solid transparent;
}

.prob-card.open .prob-body {
  max-height: 260px;
  padding: 16px 20px 20px;
  border-top-color: var(--border);
}

.prob-body-text {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 12px;
}

.prob-solution {
  background: var(--orange-light);
  border: 1px solid var(--orange-mid);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-dark);
  line-height: 1.5;
}

.prob-solution::before {
  content: "✓ BunchCRM solves this: ";
  font-weight: 800;
}

/* Category tag colors */
.tag-crm {
  background: #FFF0EB;
  border-color: #FFCBB8;
  color: #E04A1C;
}

.tag-erp {
  background: #EFF6FF;
  border-color: #BFDBFE;
  color: #1D4ED8;
}

.tag-data {
  background: #F5F3FF;
  border-color: #DDD6FE;
  color: #6D28D9;
}

.tag-team {
  background: #ECFDF5;
  border-color: #A7F3D0;
  color: #059669;
}

.tag-finance {
  background: #FFFBEB;
  border-color: #FDE68A;
  color: #D97706;
}

.tag-tech {
  background: #ECFEFF;
  border-color: #A5F3FC;
  color: #0E7490;
}

/* CTA banner */
.prob-cta-banner {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  border-radius: var(--r-xl);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}

.prob-cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 92, 40, 0.2), transparent 65%);
  border-radius: 50%;
}

.prob-cta-inner {
  position: relative;
  z-index: 1;
}

.prob-cta-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.prob-cta-h {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.prob-cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.prob-cta-right {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

@media(max-width:760px) {
  .prob-cta-banner {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }

  .prob-filter-inner {
    gap: 6px;
  }
}


/* ═══════════════════════════════════════════
   EXTRACTED INLINE STYLES
   Auto-generated from style="..." attributes in index.html.
   478 unique rules, 1356 total replacements.
═══════════════════════════════════════════ */

.is-0001 {
  height: 32px;
  display: block;
}

.is-0002 {
  background: #FFFBEB;
}

.is-0003 {
  background: #ECFEFF;
}

.is-0004 {
  background: #F5F3FF;
}

.is-0005 {
  background: #EFF6FF;
}

.is-0006 {
  background: #EDFAF5;
}

.is-0007 {
  background: #ECFDF5;
}

.is-0008 {
  cursor: pointer;
}

.is-0009 {
  background: #FFFBEB;
}

.is-0010 {
  background: #ECFEFF;
}

.is-0011 {
  background: #F5F3FF;
}

.is-0012 {
  background: #EFF6FF;
}

.is-0013 {
  background: #EDFAF5;
}

.is-0014 {
  background: #ECFDF5;
}

.is-0015 {
  font-size: 14px;
  font-weight: 400;
}

.is-0016 {
  font-size: 18px;
  font-weight: 400;
}

.is-0017 {
  background: linear-gradient(135deg,#075E54 0%,#128C7E 100%);
  border-radius: var(--r-xl);
  padding: 48px 56px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.is-0018 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.is-0019 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.is-0020 {
  font-family: var(--font-display);
  font-size: clamp(24px,3vw,38px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.is-0021 {
  font-style: italic;
  color: #25D366;
}

.is-0022 {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 0;
}

.is-0023 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

.is-0024 {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.is-0025 {
  font-size: 20px;
}

.is-0026 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.is-0027 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

.is-0028 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.is-0029 {
  width: 44px;
  height: 44px;
  background: #EA4335;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.is-0030 {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.is-0031 {
  font-size: 12px;
  color: var(--text-4);
  font-weight: 500;
}

.is-0032 {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 12px;
}

.is-0033 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #16A34A;
  background: #F0FDF4;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid #BBF7D0;
}

.is-0034 {
  width: 44px;
  height: 44px;
  background: #4285F4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.is-0035 {
  width: 44px;
  height: 44px;
  background: #FF6B35;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.is-0036 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #D97706;
  background: #FFFBEB;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid #FDE68A;
}

.is-0037 {
  width: 44px;
  height: 44px;
  background: #0066CC;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.is-0038 {
  width: 44px;
  height: 44px;
  background: #1A1A2E;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.is-0039 {
  background: linear-gradient(135deg,var(--off-white),var(--cream));
  border: 2px dashed var(--border-2);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.is-0040 {
  font-size: 36px;
}

.is-0041 {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
}

.is-0042 {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: var(--orange-mid);
}

.is-0043 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.is-0044 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
}

.is-0045 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.is-0046 {
  font-size: 13px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.is-0047 {
  color: #16A34A;
  font-weight: 700;
}

.is-0048 {
  overflow-x: auto;
}

.is-0049 {
  min-width: 820px;
}

.is-0050 {
  min-width: 200px;
}

.is-0051 {
  min-width: 130px;
}

.is-0052 {
  min-width: 110px;
}

.is-0053 {
  color: #D97706;
}

.is-0054 {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--orange-light);
  border: 1px solid var(--orange-mid);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  gap: 16px;
}

.is-0055 {
  font-size: 28px;
}

.is-0056 {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.is-0057 {
  font-size: 14px;
  color: var(--text-3);
}

.is-0058 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.is-0059 {
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.is-0060 {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--orange-light);
  border-radius: 50%;
}

.is-0061 {
  position: relative;
}

.is-0062 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  border: 1px solid var(--orange-mid);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.is-0063 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.is-0064 {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 20px;
}

.is-0065 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.is-0066 {
  background: var(--off-white);
  border-radius: var(--r);
  padding: 14px 16px;
}

.is-0067 {
  font-size: 11px;
  color: var(--text-4);
  font-weight: 600;
  margin-bottom: 4px;
}

.is-0068 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.is-0069 {
  color: #16A34A;
}

.is-0070 {
  background: var(--off-white);
  border-radius: var(--r);
  padding: 14px 16px;
  border: 1.5px solid var(--orange);
}

.is-0071 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
}

.is-0072 {
  width: 100%;
  justify-content: center;
  cursor: pointer;
}

.is-0073 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.is-0074 {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: #F0FDF4;
  border-radius: 50%;
}

.is-0075 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #16A34A;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.is-0076 {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.is-0077 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.is-0078 {
  font-size: 13px;
  color: var(--text-3);
}

.is-0079 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.is-0080 {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
}

.is-0081 {
  height: 6px;
  background: linear-gradient(to right,var(--orange),#16A34A);
  border-radius: 3px;
  margin-bottom: 8px;
}

.is-0082 {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-4);
  font-weight: 600;
}

.is-0083 {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.is-0084 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
}

.is-0085 {
  background: #1A1A1A;
  border-radius: var(--r-xl);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.is-0086 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 8px;
}

.is-0087 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.is-0088 {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.is-0089 {
  text-align: center;
}

.is-0090 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1px;
}

.is-0091 {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.is-0092 {
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.is-0093 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.is-0094 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #4ADE80;
  letter-spacing: -1px;
}

.is-0095 {
  background: #FEF3C7;
  color: #D97706;
}

.is-0096 {
  background: #ECFEFF;
  color: #0891B2;
}

.is-0097 {
  background: #F5F3FF;
  color: #7C3AED;
}

.is-0098 {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.is-0099 {
  cursor: pointer;
  font-weight: 700;
  color: var(--orange);
}

.is-0100 {
  cursor: pointer;
  color: inherit;
}

.is-0101 {
  display: flex;
  margin-top: 80px;
  padding-top: 16px;
}

.is-0102 {
  padding-top: 40px;
}

.is-0103 {
  background: #FFFBEB;
  border-color: #FDE68A;
  color: var(--con);
}

.is-0104 {
  color: var(--con);
}

.is-0105 {
  background: var(--con);
  cursor: pointer;
}

.is-0106 {
  background: #FEF3C7;
}

.is-0107 {
  margin: 0;
}

.is-0108 {
  margin-top: 20px;
}

.is-0109 {
  text-align: center;
  margin-bottom: 40px;
}

.is-0110 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.is-0111 {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.is-0112 {
  color: #F59E0B;
  font-size: 14px;
  letter-spacing: 2px;
}

.is-0113 {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

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

.is-0115 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFBEB;
  color: #D97706;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.is-0116 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.is-0117 {
  font-size: 12px;
  color: var(--text-3);
}

.is-0118 {
  background: linear-gradient(135deg,var(--con) 0%,#F59E0B 100%);
}

.is-0119 {
  cursor: pointer;
  font-weight: 700;
  color: var(--con);
}

.is-0120 {
  background: #ECFEFF;
  border-color: #A5F3FC;
  color: var(--man);
}

.is-0121 {
  color: var(--man);
}

.is-0122 {
  background: var(--man);
  cursor: pointer;
}

.is-0123 {
  background: #CFFAFE;
}

.is-0124 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ECFEFF;
  color: #0891B2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.is-0125 {
  background: linear-gradient(135deg,var(--man) 0%,#22D3EE 100%);
}

.is-0126 {
  cursor: pointer;
  font-weight: 700;
  color: var(--man);
}

.is-0127 {
  background: #F5F3FF;
  border-color: #DDD6FE;
  color: var(--wea);
}

.is-0128 {
  color: var(--wea);
}

.is-0129 {
  background: var(--wea);
  cursor: pointer;
}

.is-0130 {
  background: #EDE9FE;
}

.is-0131 {
  background: linear-gradient(135deg,var(--wea) 0%,#A78BFA 100%);
}

.is-0132 {
  cursor: pointer;
  font-weight: 700;
  color: var(--wea);
}

.is-0133 {
  background: #ECFDF5;
  border-color: #A7F3D0;
  color: var(--evt);
}

.is-0134 {
  color: var(--evt);
}

.is-0135 {
  background: var(--evt);
  cursor: pointer;
}

.is-0136 {
  background: #D1FAE5;
}

.is-0137 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.is-0138 {
  background: linear-gradient(135deg,var(--evt) 0%,#34D399 100%);
}

.is-0139 {
  cursor: pointer;
  font-weight: 700;
  color: var(--evt);
}

.is-0140 {
  background: #EFF6FF;
  border-color: #BFDBFE;
  color: var(--ins);
}

.is-0141 {
  color: var(--ins);
}

.is-0142 {
  background: var(--ins);
  cursor: pointer;
}

.is-0143 {
  background: #DBEAFE;
}

.is-0144 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #EFF6FF;
  color: #0F4C81;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.is-0145 {
  background: linear-gradient(135deg,var(--ins) 0%,#3B82F6 100%);
}

.is-0146 {
  cursor: pointer;
  font-weight: 700;
  color: var(--ins);
}

.is-0147 {
  margin-bottom: 24px;
  display: flex;
}

.is-0148 {
  font-family: var(--font-display);
  font-size: clamp(36px,5vw,64px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 700px;
}

.is-0149 {
  color: var(--orange);
}

.is-0150 {
  font-size: 18px;
  color: var(--text-3);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.is-0151 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.is-0152 {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-2);
}

.is-0153 {
  background: linear-gradient(135deg,#F8F7FF,#EFF6FF);
  border: 1px solid #DDD6FE;
  border-radius: var(--r-xl);
  padding: 32px 36px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.is-0154 {
  font-size: 12px;
  font-weight: 700;
  color: #7C3AED;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.is-0155 {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

.is-0156 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.is-0157 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}

.is-0158 {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.is-0159 {
  width: 10px;
  height: 10px;
  background: #1A1A1A;
  border-radius: 50%;
  flex-shrink: 0;
}

.is-0160 {
  width: 10px;
  height: 10px;
  background: #F7F6F2;
  border-radius: 50%;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.is-0161 {
  margin-bottom: 16px;
}

.is-0162 {
  margin-bottom: 40px;
}

.is-0163 {
  background: #FF5C28;
}

.is-0164 {
  background: #E04A1C;
}

.is-0165 {
  background: #FFF0EB;
  border: 1px solid #FFCBB8;
}

.is-0166 {
  background: #FFCBB8;
}

.is-0167 {
  background: #1A1A1A;
}

.is-0168 {
  background: #3D3D3D;
}

.is-0169 {
  background: #6B6B6B;
}

.is-0170 {
  background: #999999;
}

.is-0171 {
  background: #F7F6F2;
  border: 1px solid #E8E4DF;
}

.is-0172 {
  background: var(--con);
}

.is-0173 {
  background: var(--man);
}

.is-0174 {
  background: var(--wea);
}

.is-0175 {
  background: var(--evt);
}

.is-0176 {
  background: var(--ins);
}

.is-0177 {
  background: #16A34A;
}

.is-0178 {
  background: #DC2626;
}

.is-0179 {
  background: #D97706;
}

.is-0180 {
  background: #0891B2;
}

.is-0181 {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}

.is-0182 {
  margin-bottom: 16px;
  margin-top: 40px;
}

.is-0183 {
  background: linear-gradient(135deg,#FF5C28,#FF8C5A);
}

.is-0184 {
  font-size: 12px;
  color: var(--text-4);
  margin-top: 8px;
}

.is-0185 {
  background: linear-gradient(135deg,#1A1A1A,#2D2D2D);
}

.is-0186 {
  background: linear-gradient(135deg,#7C3AED,#A78BFA);
}

.is-0187 {
  background: linear-gradient(135deg,#075E54,#128C7E);
}

.is-0188 {
  background: linear-gradient(135deg,#0891B2,#22D3EE);
}

.is-0189 {
  background: linear-gradient(135deg,#0F4C81,#3B82F6);
}

.is-0190 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.is-0191 {
  background: #F8F7FF;
  border: 1px solid #DDD6FE;
  border-radius: var(--r-xl);
  padding: 32px;
}

.is-0192 {
  font-size: 11px;
  font-weight: 700;
  color: #7C3AED;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.is-0193 {
  font-family: 'Sora',sans-serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.is-0194 {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.65;
}

.is-0195 {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.is-0196 {
  background: white;
  border: 1px solid #DDD6FE;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  color: #7C3AED;
  font-weight: 600;
}

.is-0197 {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
}

.is-0198 {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.is-0199 {
  font-family: 'Plus Jakarta Sans',sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 16px;
}

.is-0200 {
  margin-bottom: 24px;
}

.is-0201 {
  font-size: 11px;
  color: var(--text-4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.is-0202 {
  font-family: var(--font-display);
  font-size: clamp(42px,6vw,72px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.06;
  color: var(--text);
}

.is-0203 {
  font-family: var(--font-display);
  font-size: clamp(38px,5.5vw,62px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  color: var(--text);
}

.is-0204 {
  font-family: var(--font-display);
  font-size: clamp(30px,4vw,50px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.12;
  color: var(--text);
}

.is-0205 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
}

.is-0206 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.is-0207 {
  font-size: 20px;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 8px;
}

.is-0208 {
  font-size: 18px;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 8px;
}

.is-0209 {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 8px;
}

.is-0210 {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 8px;
}

.is-0211 {
  font-size: 13px;
  color: var(--text-4);
  line-height: 1.6;
}

.is-0212 {
  font-size: 11px;
  color: var(--text-4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.is-0213 {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.is-0214 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 4px;
}

.is-0215 {
  font-size: 11px;
  color: var(--text-4);
}

.is-0216 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ins);
  margin-bottom: 4px;
}

.is-0217 {
  font-size: 12px;
  background: #D1FAE5;
  padding: 2px 6px;
  border-radius: 4px;
}

.is-0218 {
  margin-bottom: 48px;
}

.is-0219 {
  height: 4px;
}

.is-0220 {
  height: 8px;
}

.is-0221 {
  height: 12px;
}

.is-0222 {
  height: 16px;
}

.is-0223 {
  height: 20px;
}

.is-0224 {
  height: 24px;
}

.is-0225 {
  height: 28px;
}

.is-0226 {
  height: 32px;
}

.is-0227 {
  height: 40px;
}

.is-0228 {
  height: 48px;
}

.is-0229 {
  height: 64px;
}

.is-0230 {
  height: 80px;
}

.is-0231 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.is-0232 {
  width: 60px;
  height: 60px;
  background: var(--orange-light);
  border: 2px solid var(--orange-mid);
  border-radius: 4px;
  margin: 0 auto 8px;
}

.is-0233 {
  font-size: 12px;
  font-weight: 700;
}

.is-0234 {
  width: 60px;
  height: 60px;
  background: var(--orange-light);
  border: 2px solid var(--orange-mid);
  border-radius: 8px;
  margin: 0 auto 8px;
}

.is-0235 {
  width: 60px;
  height: 60px;
  background: var(--orange-light);
  border: 2px solid var(--orange-mid);
  border-radius: 12px;
  margin: 0 auto 8px;
}

.is-0236 {
  width: 60px;
  height: 60px;
  background: var(--orange-light);
  border: 2px solid var(--orange-mid);
  border-radius: 20px;
  margin: 0 auto 8px;
}

.is-0237 {
  width: 60px;
  height: 60px;
  background: var(--orange-light);
  border: 2px solid var(--orange-mid);
  border-radius: 28px;
  margin: 0 auto 8px;
}

.is-0238 {
  width: 60px;
  height: 60px;
  background: var(--orange-light);
  border: 2px solid var(--orange-mid);
  border-radius: 100px;
  margin: 0 auto 8px;
}

.is-0239 {
  box-shadow: none;
  border: 1px solid var(--border);
}

.is-0240 {
  font-size: 12px;
  color: var(--text-4);
  margin-bottom: 6px;
}

.is-0241 {
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.is-0242 {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.is-0243 {
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

.is-0244 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.is-0245 {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.is-0246 {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.is-0247 {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}

.is-0248 {
  grid-column: 1/-1;
}

.is-0249 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.is-0250 {
  background: var(--orange-light);
  border-color: var(--orange-mid);
  color: var(--orange);
}

.is-0251 {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

.is-0252 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--ins-bg);
  border: 1px solid #BFDBFE;
  color: var(--ins);
}

.is-0253 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #16A34A;
}

.is-0254 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  color: #D97706;
}

.is-0255 {
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  background: var(--orange);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.is-0256 {
  margin-bottom: 12px;
}

.is-0257 {
  margin-bottom: 0;
  font-size: 15px;
}

.is-0258 {
  max-width: 320px;
}

.is-0259 {
  max-width: 700px;
}

.is-0260 {
  padding: 24px;
}

.is-0261 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #DC2626;
  margin-bottom: 14px;
}

.is-0262 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #16A34A;
  margin-bottom: 14px;
}

.is-0263 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  max-width: 800px;
}

.is-0264 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 6px;
}

.is-0265 {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
}

.is-0266 {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 6px;
}

.is-0267 {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--orange);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,92,40,0.1);
}

.is-0268 {
  font-size: 12px;
  font-weight: 700;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 6px;
}

.is-0269 {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #DC2626;
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
}

.is-0270 {
  font-size: 12px;
  color: #DC2626;
  margin-top: 5px;
  font-weight: 600;
}

.is-0271 {
  font-size: 15px;
  color: var(--text-3);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.is-0272 {
  margin-bottom: 32px;
}

.is-0273 {
  border-radius: 50%;
}

.is-0274 {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.is-0275 {
  width: 3px;
  background: var(--orange);
  border-radius: 3px;
  animation: vba 0.8s ease-in-out infinite alternate;
  height: 9px;
}

.is-0276 {
  width: 3px;
  background: var(--orange);
  border-radius: 3px;
  animation: vba 0.8s ease-in-out 0.1s infinite alternate;
  height: 16px;
}

.is-0277 {
  width: 3px;
  background: var(--orange);
  border-radius: 3px;
  animation: vba 0.8s ease-in-out 0.2s infinite alternate;
  height: 11px;
}

.is-0278 {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
}

.is-0279 {
  font-size: 14px;
  color: var(--orange);
  background: var(--orange-light);
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  font-family: monospace;
}

.is-0280 {
  font-size: 14px;
  color: var(--text-3);
  margin-top: 12px;
  line-height: 1.65;
}

.is-0281 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.is-0282 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}

.is-0283 {
  font-size: 28px;
  margin-bottom: 12px;
}

.is-0284 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.is-0285 {
  background: linear-gradient(135deg,#1A1A1A,#2D2D2D);
  border-radius: var(--r-xl);
  padding: 40px 48px;
}

.is-0286 {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.is-0287 {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px;
}

.is-0288 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.is-0289 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.is-0290 {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.is-0291 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.is-0292 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.is-0293 {
  font-size: 13px;
  color: var(--text-4);
}

.is-0294 {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.is-0295 {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  padding: 48px 44px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

.is-0296 {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--off-white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
}

.is-0297 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  border: 1px solid var(--orange-mid);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.is-0298 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.15;
}

.is-0299 {
  color: var(--orange);
  font-style: italic;
}

.is-0300 {
  font-size: 15px;
  color: var(--text-3);
  margin-bottom: 28px;
  line-height: 1.6;
}

.is-0301 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.is-0302 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.is-0303 {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: 0.2s;
}

.is-0304 {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  background: #fff;
  transition: 0.2s;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%228%22 viewBox=%220 0 12 8%22><path d=%22M1 1l5 5 5-5%22 stroke=%22%236B6B6B%22 stroke-width=%221.5%22 fill=%22none%22/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.is-0305 {
  display: none;
  color: #DC2626;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  background: #FEF2F2;
  border-radius: 8px;
  border: 1px solid #FECACA;
}

.is-0306 {
  width: 100%;
  padding: 15px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: 0.2s;
  margin-top: 4px;
}

.is-0307 {
  font-size: 12px;
  color: var(--text-4);
  text-align: center;
  margin-top: 16px;
}

.is-0308 {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.is-0309 {
  font-size: 64px;
  margin-bottom: 20px;
}

.is-0310 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.is-0311 {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 28px;
}

.is-0312 {
  background: var(--off-white);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 28px;
  text-align: left;
}

.is-0313 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.is-0314 {
  color: var(--orange);
  font-weight: 700;
  width: 20px;
}

.is-0315 {
  padding: 13px 32px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
}

.is-0316 {
  position: relative;
  z-index: 1;
}

.is-0317 {
  max-width: 520px;
}

.is-0318 {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.is-0319 {
  background: var(--off-white);
  padding-bottom: 80px;
}

.is-0320 {
  margin-bottom: 8px;
}

.is-0321 {
  font-size: 16px;
  color: var(--text-3);
  margin-bottom: 32px;
  max-width: 480px;
}

.is-0322 {
  margin-bottom: 36px;
}

.is-0323 {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  margin-left: 8px;
}

.is-0324 {
  text-align: right;
  font-size: 13px;
  color: var(--text-3);
  font-weight: 600;
}

.is-0325 {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 10px;
  font-weight: 600;
}

.is-0326 {
  margin-top: 20px;
  padding: 16px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--r-lg);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.is-0327 {
  font-size: 18px;
}

.is-0328 {
  font-size: 13px;
  font-weight: 700;
  color: #14532D;
  margin-bottom: 4px;
}

.is-0329 {
  font-size: 12px;
  color: #166534;
  line-height: 1.65;
}

.is-0330 {
  display: none;
}

.is-0331 {
  width: 100%;
  padding: 15px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 12px;
}

.is-0332 {
  width: 100%;
  padding: 13px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
}

.is-0333 {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 10px;
  display: none;
}

.is-0334 {
  font-size: 12px;
  color: #4ADE80;
  font-weight: 700;
  margin-bottom: 3px;
}

.is-0335 {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.is-0336 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
}

.is-0337 {
  min-width: 600px;
}

.is-0338 {
  color: var(--text-3);
}

.is-0339 {
  font-size: 12px;
  color: var(--text-4);
  margin-top: 12px;
}

.is-0340 {
  max-width: 720px;
}

.is-0341 {
  max-width: 560px;
}

.is-0342 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.is-0343 {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: 20px;
}

.is-0344 {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: 32px;
}

.is-0345 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.is-0346 {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

.is-0347 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.is-0348 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,var(--orange),#FF9068);
}

.is-0349 {
  font-size: 48px;
  margin-bottom: 16px;
}

.is-0350 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

.is-0351 {
  background: #FFF0EB;
  color: var(--orange);
}

.is-0352 {
  background: #F5F3FF;
  color: var(--wea);
}

.is-0353 {
  background: #ECFDF5;
  color: var(--evt);
}

.is-0354 {
  background: #EFF6FF;
  color: var(--ins);
}

.is-0355 {
  background: #FFFBEB;
  color: var(--con);
}

.is-0356 {
  background: #ECFEFF;
  color: var(--man);
}

.is-0357 {
  background: #ECFEFF;
  color: var(--yel);
}

.is-0358 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.is-0359 {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.75;
}

.is-0360 {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
}

.is-0361 {
  max-width: 680px;
}

.is-0362 {
  padding-top: 0;
}

.is-0363 {
  color: var(--orange);
  border-color: var(--orange-mid);
  background: var(--orange-light);
}

.is-0364 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--orange);
}

.is-0365 {
  background: linear-gradient(135deg,#FFFBEB,#FEF3C7);
}

.is-0366 {
  color: var(--con);
  border-color: #FDE68A;
  background: #FFFBEB;
}

.is-0367 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FEF3C7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--con);
}

.is-0368 {
  background: linear-gradient(135deg,#F5F3FF,#EDE9FE);
}

.is-0369 {
  color: var(--wea);
  border-color: #DDD6FE;
  background: #F5F3FF;
}

.is-0370 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F5F3FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--wea);
}

.is-0371 {
  background: linear-gradient(135deg,#ECFEFF,#CFFAFE);
}

.is-0372 {
  color: var(--man);
  border-color: #A5F3FC;
  background: #ECFEFF;
}

.is-0373 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #CFFAFE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--man);
}

.is-0374 {
  background: linear-gradient(135deg,#FFF0EB,#FFCBB8);
}

.is-0375 {
  background: linear-gradient(135deg,#EFF6FF,#DBEAFE);
}

.is-0376 {
  color: var(--ins);
  border-color: #BFDBFE;
  background: #EFF6FF;
}

.is-0377 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #DBEAFE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--ins);
}

.is-0378 {
  background: linear-gradient(135deg,#ECFDF5,#D1FAE5);
}

.is-0379 {
  color: var(--evt);
  border-color: #A7F3D0;
  background: #ECFDF5;
}

.is-0380 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #D1FAE5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--evt);
}

.is-0381 {
  color: var(--text-3);
  border-color: var(--border-2);
  background: var(--off-white);
}

.is-0382 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-3);
}

.is-0383 {
  text-align: center;
  margin-top: 48px;
}

.is-0384 {
  padding: 13px 36px;
}

.is-0385 {
  margin-top: 80px;
}

.is-0386 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 12px;
}

.is-0387 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.is-0388 {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.is-0389 {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.is-0390 {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.is-0391 {
  margin-bottom: 20px;
}

.is-0392 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.is-0393 {
  color: var(--orange);
  border-color: var(--orange-mid);
  background: var(--orange-light);
  margin: 0;
}

.is-0394 {
  font-family: var(--font-display);
  font-size: clamp(28px,4.5vw,50px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1.1;
  max-width: 840px;
  margin-bottom: 20px;
}

.is-0395 {
  font-size: 18px;
  color: var(--text-3);
  max-width: 680px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.is-0396 {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

.is-0398 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
}

.is-0399 {
  font-size: 12px;
  color: var(--text-4);
}

.is-0400 {
  width: 1px;
  height: 28px;
  background: var(--border);
}

.is-0401 {
  padding-top: 56px;
}

.is-0402 {
  background: var(--orange-light);
  color: var(--orange);
}

.is-0403 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.is-0404 {
  font-size: 12px;
  color: var(--text-4);
  margin-top: 2px;
}

.is-0405 {
  margin: 0 auto;
}

.is-0406 {
  background: #1A1A1A;
  border-color: #1A1A1A;
  text-align: center;
}

.is-0407 {
  font-size: 36px;
  margin-bottom: 12px;
}

.is-0408 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.is-0409 {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  line-height: 1.6;
}

.is-0410 {
  width: 100%;
  justify-content: center;
}

.is-0411 {
  background: var(--orange-light);
}

.is-0412 {
  display: flex;
  gap: 8px;
}

.is-0413 {
  flex: 1;
  padding: 9px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  cursor: pointer;
}

.is-0414 {
  background: var(--acc-bg);
  border-color: #6EE7B7;
  color: var(--acc);
}

.is-0415 {
  color: var(--acc);
}

.is-0416 {
  background: var(--acc);
  cursor: pointer;
}

.is-0417 {
  background: var(--acc-bg);
}

.is-0418 {
  min-width: 680px;
}

.is-0419 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #EDFAF5;
  color: #0D7D62;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.is-0420 {
  background: linear-gradient(135deg,var(--acc) 0%,#34D399 100%);
}

.is-0421 {
  cursor: pointer;
  font-weight: 700;
  color: var(--acc);
}

.is-0422 {
  background: var(--hea-bg);
  border-color: #67E8F9;
  color: var(--hea);
}

.is-0423 {
  color: var(--hea);
}

.is-0424 {
  background: var(--hea);
  cursor: pointer;
}

.is-0425 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-top: 8px;
}

.is-0426 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.is-0427 {
  font-size: 32px;
  margin-bottom: 10px;
}

.is-0428 {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
}

.is-0429 {
  background: var(--hea-bg);
}

.is-0430 {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 0;
  position: relative;
}

.is-0431 {
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,var(--hea),#67E8F9);
  border-radius: 2px;
  z-index: 0;
}

.is-0432 {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.is-0433 {
  width: 88px;
  height: 88px;
  background: var(--hea-bg);
  border: 2px solid #67E8F9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px;
}

.is-0434 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hea);
  margin-bottom: 6px;
}

.is-0435 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}

.is-0436 {
  background: var(--hea-bg);
  border: 1px solid #A5F3FC;
  border-radius: var(--r-lg);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.is-0437 {
  font-size: 22px;
}

.is-0438 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

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

.is-0440 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}

.is-0441 {
  width: 44px;
  height: 44px;
  background: #25D366;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.is-0442 {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
}

.is-0443 {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #16A34A;
  background: #F0FDF4;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid #BBF7D0;
}

.is-0444 {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #D97706;
  background: #FFFBEB;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid #FDE68A;
}

.is-0445 {
  background: #CFFAFE;
  color: var(--hea);
}

.is-0446 {
  background: linear-gradient(135deg,var(--hea) 0%,#22D3EE 100%);
}

.is-0447 {
  cursor: pointer;
  font-weight: 700;
  color: var(--hea);
}

.is-0448 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 8px;
}

.is-0449 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  text-align: center;
  min-width: 110px;
}

.is-0450 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
}

.is-0451 {
  font-size: 11px;
  color: var(--text-4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.is-0452 {
  color: var(--orange);
  font-weight: 600;
}

.is-0453 {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-top: 8px;
}

.is-0454 {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
}

.is-0455 {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.9;
}

.is-0456 {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-top: 20px;
}

.is-0457 {
  max-width: 800px;
}

.is-0458 {
  max-width: 600px;
}

.is-0459 {
  text-align: center;
  margin-bottom: 48px;
}

.is-0460 {
  margin: 0 auto 0;
}

.is-0461 {
  font-size: 15px;
  font-weight: 800;
}

.is-0462 {
  text-align: center;
  margin-top: 32px;
}

.is-0463 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #F0FDF4;
  border: 1.5px solid #BBF7D0;
  border-radius: var(--r-lg);
  padding: 16px 28px;
}

.is-0464 {
  font-size: 24px;
}

.is-0465 {
  font-size: 16px;
  font-weight: 700;
  color: #059669;
}

.is-0466 {
  font-size: 22px;
  font-family: var(--font-display);
}

.is-0467 {
  background: #EFF6FF;
  color: #0F4C81;
}

.is-0468 {
  background: #FFFBEB;
  color: #D97706;
}

.is-0469 {
  background: #ECFDF5;
  color: #059669;
}

.is-0470 {
  background: linear-gradient(135deg,#1A1A1A 0%,#2D2D2D 100%);
  border-radius: var(--r-xl);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.is-0471 {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,rgba(255,92,40,0.15),transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.is-0472 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,92,40,0.15);
  border: 1px solid rgba(255,92,40,0.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.is-0473 {
  color: #fff;
  max-width: 640px;
  margin: 0 auto 16px;
}

.is-0474 {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.is-0475 {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.is-0476 {
  font-size: 16px;
  padding: 16px 40px;
}

.is-0477 {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.is-0478 {
  font-size: 16px;
  padding: 16px 32px;
}

