*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple-900: #2D1B69;
  --purple-800: #3A2281;
  --purple-700: #4A2D9A;
  --purple-600: #5B37B7;
  --purple-500: #6C3FC5;
  --purple-400: #8B6CD6;
  --purple-300: #A78FE2;
  --purple-200: #C9B8F0;
  --purple-100: #E8E0F7;
  --purple-50: #F5F0FF;
  --text-primary: #1A1A2E;
  --text-secondary: #4A4A6A;
  --text-muted: #7A7A9A;
  --white: #FFFFFF;
  --off-white: #FAFAFE;
  --red-500: #E74C3C;
  --green-500: #27AE60;
  --green-dim: rgba(39,174,96,0.1);
  --amber-500: #F39C12;
  --amber-dim: rgba(243,156,18,0.12);
  --border: #E5E5EE;
  --shadow-sm: 0 1px 3px rgba(44,27,105,0.06);
  --shadow-md: 0 4px 16px rgba(44,27,105,0.08);
  --shadow-lg: 0 8px 32px rgba(44,27,105,0.12);
  --shadow-xl: 0 16px 48px rgba(44,27,105,0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; line-height: 1.2; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ──────────── HEADER (identical to landing) ──────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(108,63,197,0.08);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-area img { flex-shrink: 0; width: 38px; height: auto; }
.logo-text {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.35rem;
  color: var(--purple-700); letter-spacing: -0.02em;
}

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-size: 0.9rem; font-weight: 500; color: var(--text-secondary);
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.nav-link:hover { color: var(--purple-600); background: var(--purple-50); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 8px;
  min-width: 280px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.2s ease; z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  transition: background 0.15s ease; font-size: 0.88rem;
}
.dropdown-item:hover { background: var(--purple-50); }
.dropdown-item-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--purple-50); flex-shrink: 0;
}
.dropdown-item-icon svg { width: 18px; height: 18px; color: var(--purple-600); }
.dropdown-item-text strong { display: block; font-weight: 600; color: var(--text-primary); font-size: 0.88rem; }
.dropdown-item-text span { font-size: 0.78rem; color: var(--text-muted); }

.nav-caret {
  display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor; margin-left: 4px; vertical-align: middle;
  opacity: 0.6;
}

.header-right { display: flex; align-items: center; gap: 8px; }
.btn-text {
  font-size: 0.88rem; font-weight: 500; color: var(--text-secondary);
  padding: 8px 16px; border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.btn-text:hover { color: var(--purple-600); background: var(--purple-50); }
.btn-primary-nav {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; font-weight: 600; color: var(--white);
  background: var(--purple-600); padding: 9px 22px;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary-nav:hover { background: var(--purple-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle svg { width: 24px; height: 24px; color: var(--text-primary); }

/* ──────────── HERO ──────────── */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--purple-50) 0%, var(--white) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.hero::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(108,63,197,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--purple-200);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; color: var(--purple-700);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge svg { width: 14px; height: 14px; color: var(--purple-500); }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800; letter-spacing: -0.03em;
  max-width: 720px; margin: 0 auto 20px;
  color: var(--text-primary);
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem; color: var(--text-secondary);
  max-width: 620px; margin: 0 auto 36px; line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  padding: 14px 32px; border-radius: var(--radius-sm); text-decoration: none;
  transition: all 0.25s ease; cursor: pointer; border: none;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--purple-600); color: var(--white);
}
.btn-primary:hover { background: var(--purple-700); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline {
  background: var(--white); color: var(--purple-700);
  border: 2px solid var(--purple-200);
}
.btn-outline:hover { border-color: var(--purple-400); background: var(--purple-50); transform: translateY(-2px); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ──────────── TRANSPARENCY STRIP ──────────── */
.gradient-bg {
  background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-600) 50%, var(--purple-500) 100%);
  position: relative; overflow: hidden;
}
.gradient-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.transparency-strip {
  padding: 0 24px;
}
.transparency-strip-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  position: relative; z-index: 1;
}
.ts-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 36px 20px; text-align: center;
  position: relative;
}
.ts-item + .ts-item::before {
  content: '';
  position: absolute; left: 0; top: 20%; height: 60%;
  width: 1px; background: rgba(255,255,255,0.1);
}
.ts-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  margin-bottom: 12px;
}
.ts-icon svg { width: 20px; height: 20px; }
.ts-item h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 4px;
}
.ts-item p {
  color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.5;
}

/* ──────────── SECTION UTILITIES ──────────── */
.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--purple-500);
  margin-bottom: 14px;
}
.section-header {
  text-align: center; max-width: 620px; margin: 0 auto 16px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 12px; color: var(--text-primary);
}
.section-header p {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7;
}

/* ──────────── PRICING SECTION ──────────── */
.pricing-section {
  padding: 100px 24px;
  background: var(--white);
}
.licensing-note {
  max-width: 720px; margin: 0 auto 48px;
  background: var(--purple-50);
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7;
  text-align: center;
}
.licensing-note strong { color: var(--text-primary); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.enterprise {
  border: 2px solid var(--purple-500);
  box-shadow: 0 0 0 1px rgba(108,63,197,0.15), 0 8px 32px rgba(108,63,197,0.12);
  background: linear-gradient(180deg, var(--purple-50) 0%, var(--white) 40%);
}
.pricing-card.enterprise:hover {
  box-shadow: 0 0 0 1px rgba(108,63,197,0.25), 0 12px 40px rgba(108,63,197,0.18);
}

.card-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--purple-600); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px;
  white-space: nowrap;
}

.card-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 8px;
}
.card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px;
}
.card-best-for {
  font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55;
  margin-bottom: 20px;
  min-height: 40px;
}

.price-row {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 4px;
}
.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem; font-weight: 800; color: var(--purple-600); line-height: 1;
}
.price-unit {
  font-size: 0.85rem; color: var(--text-muted); font-weight: 500;
}
.price-sub {
  font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; font-weight: 600; 
}

.price-plus {
  background: var(--purple-50);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 24px;
}
.price-plus-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted); margin-bottom: 4px;
}
.price-plus-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem; font-weight: 700; color: var(--text-primary);
}
.price-plus-value span { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); }

.card-features {
  list-style: none; margin-bottom: 28px;
}
.card-features li {
  font-size: 0.85rem; color: var(--text-secondary); padding: 7px 0;
  display: flex; align-items: flex-start; gap: 10px;
}
.card-features li svg {
  flex-shrink: 0; margin-top: 2px;
  color: var(--green-500);
}

.card-example {
  background: var(--amber-dim);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 24px;
}
.card-example-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted); margin-bottom: 4px;
}
.card-example p {
  font-size: 0.82rem; color: var(--text-primary); line-height: 1.55;
}
.card-example strong { font-weight: 700; }

.card-cta {
  display: block; width: 100%; text-align: center;
  padding: 13px 20px; border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 600;
  text-decoration: none; transition: all 0.25s; cursor: pointer; border: none;
}
.card-cta-primary {
  background: var(--purple-600); color: var(--white);
}
.card-cta-primary:hover { background: var(--purple-700); }
.card-cta-enterprise {
  background: var(--purple-600); color: var(--white);
}
.card-cta-enterprise:hover { background: var(--purple-700); }
.card-cta-outline {
  background: transparent; color: var(--purple-600);
  box-shadow: inset 0 0 0 2px var(--purple-200);
}
.card-cta-outline:hover { box-shadow: inset 0 0 0 2px var(--purple-400); background: var(--purple-50); }

/* ── PROJECT SIZE TABLE ── */
.project-sizes { margin-bottom: 24px; }
.project-sizes table {
  width: 100%; border-collapse: collapse; font-size: 0.82rem;
}
.project-sizes th {
  text-align: left; font-weight: 600; color: var(--text-muted);
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 6px 8px; border-bottom: 1px solid var(--border);
}
.project-sizes td {
  padding: 6px 8px; color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.project-sizes td:last-child { font-weight: 600; color: var(--text-primary); }

/* ──────────── CALCULATOR ──────────── */
.calculator-section {
  padding: 100px 24px;
  background: var(--white);
}
.calculator-card {
  max-width: 700px; margin: 48px auto 0;
  background: var(--purple-50);
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.calc-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.calc-row:last-of-type { margin-bottom: 0; }
.calc-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--text-primary);
}
.calc-label span {
  display: block; font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 400; color: var(--text-muted); margin-top: 2px;
}
.calc-input-group { display: flex; align-items: center; gap: 8px; }
.calc-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  border: 1px solid var(--purple-200); background: var(--white);
  font-size: 18px; font-weight: 600; color: var(--purple-600);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.calc-btn:hover { border-color: var(--purple-500); background: var(--purple-600); color: var(--white); }
/* Editable number input */
.calc-input {
  width: 72px; text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem; font-weight: 700; color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--purple-200);
  border-radius: var(--radius-sm);
  padding: 6px 4px;
  transition: border-color 0.2s ease;
  -moz-appearance: textfield;
}
.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.calc-input:focus {
  outline: none;
  border-color: var(--purple-400);
  box-shadow: 0 0 0 3px rgba(108,63,197,0.1);
}

.calc-divider {
  height: 1px; background: var(--purple-200); margin: 28px 0;
}
.calc-results {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.calc-result-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}
/* Dimmed / greyed-out state (inactive tier) */
.calc-result-item.calc-result-dimmed {
  background: #F5F5F8;
  border-color: #E0E0E8;
}
.calc-result-item.calc-result-dimmed .calc-result-label {
  color: #B0B0C0;
}
.calc-result-item.calc-result-dimmed .calc-result-amount {
  color: #B0B0C0;
}
.calc-result-item.calc-result-dimmed .calc-result-note {
  color: #C0C0CC;
}
.calc-result-item.calc-result-dimmed .calc-result-breakdown {
  color: #C0C0CC;
}
 
/* Active / highlighted state (applied tier) */
.calc-result-item.calc-result-active {
  background: rgba(108,63,197,0.07);
  border-color: var(--purple-300);
  box-shadow: 0 0 0 2px rgba(108,63,197,0.1), 0 4px 16px rgba(108,63,197,0.1);
  transform: scale(1.02);
}
.calc-result-item.calc-result-active .calc-result-amount {
  color: var(--purple-600);
}
.calc-result-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--text-muted); margin-bottom: 6px;
}
.calc-result-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem; font-weight: 800; color: var(--purple-600); line-height: 1;
  margin-bottom: 4px;
}
.calc-result-note {
  font-size: 0.78rem; color: var(--text-muted);
}
.calc-enterprise-badge {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px;
  font-size: 0.82rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
}
.calc-enterprise-badge.active {
  background: var(--green-dim); color: var(--green-500);
}
.calc-enterprise-badge.inactive {
  background: var(--off-white); color: var(--text-muted);
}
.calc-enterprise-center {
  text-align: center;
  grid-column: 1 / -1;
}

/* ──────────── ON PREMISES ──────────── */
.onprem-section {
  padding: 80px 24px;
  background: var(--white);
}
.onprem-card {
  max-width: 800px; margin: 0 auto;
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex; gap: 40px; align-items: center;
}
.onprem-card::after {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(108,63,197,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.onprem-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.onprem-icon svg { width: 28px; height: 28px; color: var(--purple-300); }
.onprem-text {
  position: relative; z-index: 1;
}
.onprem-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 10px;
}
.onprem-text p {
  font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px;
}
.onprem-price {
  font-size: 0.88rem; color: var(--purple-300); font-weight: 600;
}
.onprem-text a {
  color: var(--purple-300); text-decoration: underline; text-underline-offset: 3px;
}

/* ──────────── INVEST SECTION ──────────── */
.invest-section {
  padding: 100px 24px;
  background: var(--purple-50);
  text-align: center;
}
.invest-section .section-header { margin-bottom: 48px; }
.invest-features {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  max-width: 840px; margin: 0 auto;
}
.invest-feature { text-align: center; max-width: 220px; }
.invest-feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--white); border: 1px solid var(--purple-100);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.invest-feature-icon svg { width: 22px; height: 22px; color: var(--purple-600); }
.invest-feature h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px;
}
.invest-feature p {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.6;
}

/* ──────────── COMPARISON TABLE ──────────── */
.compare-section {
  padding: 100px 24px;
  background: var(--white);
}
.compare-table-wrap {
  max-width: var(--max-w);
  margin: 48px auto 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.compare-table thead th {
  padding: 20px;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--off-white);
  border-bottom: 2px solid var(--border);
  color: var(--text-primary);
  vertical-align: bottom;
}
.compare-table thead th:first-child {
  width: 28%;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.compare-table thead th.tc-col {
  background: var(--purple-900);
  color: var(--white);
  border-bottom-color: var(--purple-900);
}
.compare-table thead th.tc-col::after {
  content: '★ Recommended';
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-300);
  margin-top: 4px;
}
.compare-table tbody tr { border-bottom: 1px solid var(--border); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(108,63,197,0.02); }
.compare-table tbody td {
  padding: 16px 20px;
  color: var(--text-secondary);
  line-height: 1.55;
  vertical-align: top;
}
.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}
.compare-table tbody td.tc-col {
  background: rgba(108,63,197,0.04);
  color: var(--text-primary);
  font-weight: 500;
}
.compare-table .section-row td {
  background: var(--purple-50);
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-500);
  padding: 10px 20px;
}
.cmp-yes { color: var(--green-500); font-weight: 600; }
.cmp-no { color: var(--red-500); font-weight: 600; }
.cmp-partial { color: var(--amber-500); font-weight: 600; }
.compare-table .summary-row td {
  padding: 20px;
  font-size: 0.82rem;
  line-height: 1.6;
  background: var(--off-white);
  border-top: 2px solid var(--border);
}
.compare-table .summary-row td.tc-col {
  background: rgba(108,63,197,0.06);
}

/* ──────────── BENEFITS STRIP ──────────── */
.benefits-section {
  padding: 100px 24px;
}
.benefits-header {
  text-align: center; margin-bottom: 48px;
  position: relative; z-index: 1;
}
.benefits-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.benefits-header p {
  font-size: 1rem; color: rgba(255,255,255,0.55);
}
.benefits-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: relative; z-index: 1;
}
.benefit-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.25s;
  flex: 0 1 calc(33.333% - 14px);
  min-width: 280px;
  max-width: 280px;
}
.benefit-item:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.15); }
.benefit-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--white);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.benefit-item h4 svg { color: var(--purple-300); flex-shrink: 0; }
.benefit-item p {
  font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.65;
}

/* ──────────── GUARANTEES ──────────── */
.guarantees-section {
  padding: 100px 24px;
  background: var(--off-white);
}
.guarantees-grid {
  max-width: var(--max-w); margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.guarantee-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--white);
}
.guarantee-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.guarantee-card .g-number {
  position: absolute; top: -14px; left: 24px;
  width: 28px; height: 28px;
  background: var(--purple-600); color: var(--white);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.guarantee-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem; font-weight: 700; color: var(--text-primary);
  margin: 6px 0 10px; display: flex; align-items: center; gap: 8px;
}
.guarantee-card h3 .g-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.guarantee-card h3 .g-icon svg { width: 18px; height: 18px; }
.guarantee-card p {
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7;
}
.guarantee-card .g-highlight {
  font-weight: 700; color: var(--purple-600);
}

/* ──────────── CTA BANNER ──────────── */
.cta-banner {
  padding: 100px 24px;
  text-align: center;
  color: var(--white);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 20px; position: relative;
}
.cta-banner p {
  font-size: 1.05rem; opacity: 0.85;
  max-width: 640px; margin: 0 auto 48px;
  line-height: 1.7; position: relative;
}
.cta-banner .hero-ctas { position: relative; }
.btn-white {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--purple-700);
  background: var(--white); padding: 14px 32px;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  transition: all 0.25s ease; display: inline-flex; align-items: center; gap: 8px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.btn-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--white);
  background: transparent; padding: 14px 32px;
  border-radius: var(--radius-sm); border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer; transition: all 0.25s ease; display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }

/* ──────────── FOOTER (matching landing) ──────────── */
.footer {
  padding: 48px 0 32px;
  background: var(--purple-900); color: rgba(255,255,255,0.7);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo-text {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.85rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 0.8rem; width: 100%; text-align: center; margin-top: 24px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
}

/* ──────────── MODAL ──────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(26,26,46,0.55); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 24px; opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { display: flex; opacity: 1; }
.modal-overlay.fade-in { opacity: 1; }

.modal-content {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 44px 40px; max-width: 580px; width: 100%;
  box-shadow: 0 24px 64px rgba(44,27,105,0.25);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}
.modal-overlay.fade-in .modal-content {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--off-white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s ease;
}
.modal-close:hover { background: var(--purple-50); border-color: var(--purple-200); }
.modal-close svg { width: 18px; height: 18px; color: var(--text-secondary); }
.modal-title {
  font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700;
  margin-bottom: 6px; color: var(--text-primary);
}
.modal-subtitle { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 28px; }

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text-primary); margin-bottom: 6px;
}
.form-row input, .form-row select {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--text-primary);
  transition: border-color 0.2s ease; background: var(--white);
}
.form-row input:focus, .form-row select:focus {
  outline: none; border-color: var(--purple-400);
  box-shadow: 0 0 0 3px rgba(108,63,197,0.1);
}
.form-row input::placeholder { color: var(--text-muted); }
.form-row textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--text-primary); resize: vertical;
  min-height: 80px; transition: border-color 0.2s ease; background: var(--white);
}
.form-row textarea:focus {
  outline: none; border-color: var(--purple-400);
  box-shadow: 0 0 0 3px rgba(108,63,197,0.1);
}
.form-row textarea::placeholder { color: var(--text-muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 14px; margin-top: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--white); background: var(--purple-600);
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  transition: all 0.25s ease;
}
.form-submit:hover { background: var(--purple-700); }

/* ──────────── RESPONSIVE ──────────── */
@media (max-width: 1024px) {
  .benefit-item { width: calc(50% - 10px); }
}
@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .guarantees-grid { grid-template-columns: 1fr; }
  .onprem-card { flex-direction: column; text-align: center; padding: 36px 28px; }
  .transparency-strip-inner { grid-template-columns: 1fr; gap: 0; }
  .ts-item + .ts-item::before { display: none; }
  .compare-table-wrap { overflow-x: auto; }
  .compare-table { min-width: 720px; }
  .calc-results { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .header-inner { height: 60px; }
  .hero { padding: 110px 0 60px; }
  .form-grid { grid-template-columns: 1fr; }
  .btn-text.hide-mobile { display: none; }
  .benefit-item { width: 100%; min-width: 0; }
  .invest-features { flex-direction: column; align-items: center; }
  .modal-content { padding: 32px 24px; }
}
@media (max-width: 540px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
