/* ─────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}

/* ─── Brand Palette ───
   Primary:   #6C3CE1  (vibrant purple)
   Secondary: #00C896  (teal/green)
   Accent:    #FF6B35  (orange)
   Dark:      #0A0E1A
   Mid:       #1E2A4A
───────────────────────────────────────────── */

/* ─────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #6C3CE1, #9b5de5);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108, 60, 225, 0.38);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Visible outline for light/gradient backgrounds (hero section) */
.btn-hero-outline {
  background: #fff;
  color: #6C3CE1;
  border: 2px solid #6C3CE1;
  font-weight: 700;
}

.btn-hero-outline:hover {
  background: #6C3CE1;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108, 60, 225, 0.28);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 13px;
  white-space: nowrap;
}

.btn-outline-dark {
  background: #fff;
  color: #1a1a2e;
  border-color: #e0e0e0;
}

.btn-outline-dark:hover {
  border-color: #6C3CE1;
  color: #6C3CE1;
}

.btn-white-cta {
  background: #fff;
  color: #0A0E1A;
  font-weight: 800;
}

.btn-white-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-ghost-cta {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost-cta:hover {
  background: rgba(255, 255, 255, 0.10);
}

.btn-white {
  background: #fff;
  color: #6C3CE1;
  font-weight: 800;
  border: 2px solid #fff;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ─────────────────────────────────────────────
   SECTION LABELS
───────────────────────────────────────────── */
.section-badge {
  display: inline-block;
  background: rgba(108, 60, 225, 0.10);
  color: #6C3CE1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(108, 60, 225, 0.22);
}

.badge-light {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.25);
}

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  color: #0A0E1A;
  margin-bottom: 16px;
  text-align: center;
}

.section-title.left {
  text-align: left;
}

.section-sub {
  font-size: 16px;
  color: #6b7280;
  max-width: 620px;
  margin: 0 auto 52px;
  text-align: center;
  line-height: 1.75;
}

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  height: 68px;
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 28px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon-wrap {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #6C3CE1, #00C896);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-wrap.small {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.logo-icon-ar {
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-size: 17px;
  font-weight: 900;
  color: #0A0E1A;
  letter-spacing: -0.5px;
}

.logo-accent {
  color: #6C3CE1;
}

.logo-sub {
  font-size: 9px;
  color: #9ca3af;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-top: 2px;
}

.footer-logo .logo-text {
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: #6C3CE1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-login {
  font-size: 13px;
  font-weight: 600;
  color: #6C3CE1;
  border-bottom: 1px dashed rgba(108, 60, 225, 0.35);
  padding-bottom: 1px;
}

.nav-login:hover {
  border-bottom-style: solid;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #374151;
  cursor: pointer;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  padding-top: 100px;
  padding-bottom: 0;
  background: linear-gradient(155deg,
      #f3eeff 0%, #e8f4fd 25%, #eafaf5 50%,
      #f5f3ff 75%, #ffffff 100%);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.hero-bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.blob1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
  background: #6C3CE1;
}

.blob2 {
  width: 400px;
  height: 400px;
  top: -50px;
  right: -50px;
  background: #00C896;
}

.blob3 {
  width: 300px;
  height: 300px;
  bottom: 80px;
  left: 50%;
  background: #FF6B35;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.hero-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #0A0E1A;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.hero-highlight {
  background: linear-gradient(135deg, #6C3CE1, #9b5de5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-highlight-alt {
  background: linear-gradient(135deg, #00C896, #0070f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-emoji {
  -webkit-text-fill-color: initial;
}

.hero-sub {
  font-size: 16px;
  color: #6b7280;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 60px;
}

/* Hero Mockup Cards */
.hero-mockup {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  padding: 0 16px;
  max-width: 940px;
  margin: 0 auto;
}

.mockup-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mockup-left {
  width: 228px;
  flex-shrink: 0;
  align-self: center;
  transform: translateY(10px);
}

.mockup-center {
  width: 320px;
  flex-shrink: 0;
}

.mockup-right {
  width: 228px;
  flex-shrink: 0;
  align-self: center;
  transform: translateY(10px);
}

.mcard-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.mcard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mcard-dot.green {
  background: #00C896;
}

.mcard-dot.teal {
  background: #0070f3;
}

.mcard-dot.purple {
  background: #6C3CE1;
}

.mcard-title {
  font-size: 12px;
  font-weight: 800;
  color: #0A0E1A;
}

.mcard-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #374151;
  padding: 5px 0;
  border-bottom: 1px solid #f3f4f6;
}

.mcard-item:last-of-type {
  border-bottom: none;
}

.mitem-check {
  font-size: 10px;
  font-weight: 800;
}

.mitem-check.green {
  color: #00C896;
}

.mitem-check.orange {
  color: #f59e0b;
}

.mcard-footer {
  margin-top: 12px;
  font-size: 10px;
  font-weight: 700;
  color: #6C3CE1;
  text-align: right;
}

.chart-area {
  height: 80px;
  display: flex;
  align-items: flex-end;
  background: #f8fafc;
  border-radius: 8px;
  padding: 8px 10px 0;
  margin-bottom: 8px;
}

.chart-bar-group {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  width: 100%;
  height: 100%;
}

.chart-bar {
  flex: 1;
  background: #e5e7eb;
  border-radius: 3px 3px 0 0;
}

.chart-bar.active {
  background: linear-gradient(180deg, #6C3CE1, #00C896);
}

.chart-legend {
  display: flex;
  justify-content: space-between;
  font-size: 8.5px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.mcard-stat {
  font-size: 11px;
  font-weight: 700;
  color: #6C3CE1;
}

.team-status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid #f3f4f6;
}

.team-status-item:last-child {
  border-bottom: none;
}

.avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
}

.av-edu {
  background: linear-gradient(135deg, #6C3CE1, #9b5de5);
}

.av-health {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.av-govt {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
}

.av-ecom {
  background: linear-gradient(135deg, #10b981, #059669);
}

.av-info {
  flex: 1;
}

.av-name {
  font-size: 10.5px;
  font-weight: 700;
  color: #0A0E1A;
}

.av-role {
  font-size: 9.5px;
  color: #9ca3af;
}

.status-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
}

.status-badge.on-track {
  background: #d1fae5;
  color: #059669;
}

.status-badge.at-risk {
  background: #fef3c7;
  color: #d97706;
}

/* ─────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────── */
.stats-bar {
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 36px 0;
}

.stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0 24px;
}

.stat-value {
  font-size: 30px;
  font-weight: 900;
  color: #0A0E1A;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 12.5px;
  color: #9ca3af;
  font-weight: 500;
  margin-top: 3px;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: #e5e7eb;
}

/* ─────────────────────────────────────────────
   LOGO STRIP
───────────────────────────────────────────── */
.logo-strip {
  padding: 28px 0;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
}

.strip-label {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  margin-bottom: 20px;
}

.strip-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.brand-logo {
  font-size: 13.5px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.brand-logo:hover {
  color: #6C3CE1;
}

/* ─────────────────────────────────────────────
   PRODUCTS / FEATURES
───────────────────────────────────────────── */
.features {
  background: #fff;
  text-align: center;
}

.product-group-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 900;
  color: #0A0E1A;
  background: linear-gradient(90deg, rgba(108, 60, 225, 0.06) 0%, rgba(108, 60, 225, 0.01) 100%);
  border: none;
  border-left: 4px solid transparent;
  border-image: linear-gradient(180deg, #6C3CE1, #00C896) 1;
  border-radius: 0;
  padding: 14px 20px;
  margin: 52px 0 24px;
  text-align: left;
  letter-spacing: 0.1px;
  position: relative;
}

.product-group-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(108, 60, 225, 0.15), transparent);
}

.group-icon {
  font-size: 22px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(108, 60, 225, 0.12), rgba(0, 200, 150, 0.10));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.group-label-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.group-title {
  font-size: 15px;
  font-weight: 900;
  color: #0A0E1A;
  letter-spacing: -0.2px;
}

.group-desc {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
}

.group-count {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #6C3CE1, #00C896);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}


.features-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card {
  background: #f9fafb;
  border: 1.5px solid #f0f0f0;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  border-color: #6C3CE1;
}

.highlight-card {
  background: linear-gradient(135deg, #6C3CE1, #9b5de5);
  border-color: transparent;
  color: #fff;
}

.highlight-card h3,
.highlight-card p,
.highlight-card p em,
.highlight-card p strong,
.highlight-card p a {
  color: #fff !important;
}

.highlight-card .feat-icon {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.highlight-card .card-tags .tag {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* ── Flagship card extras ── */
.flagship-card {
  position: relative;
}

.flagship-badge-wrap {
  margin-bottom: 10px;
}

.flagship-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.40);
  border-radius: 20px;
  padding: 3px 10px;
}

.btn-play-store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: #fff;
  color: #6C3CE1;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-play-store:hover {
  background: #0A0E1A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.play-icon {
  font-size: 10px;
  background: #0A0E1A;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1px;
}

.btn-play-store:hover .play-icon {
  background: #6C3CE1;
}

.highlight-card-blue {
  background: linear-gradient(135deg, #0070f3, #00C896);
  border-color: transparent;
}

.highlight-card-blue h3,
.highlight-card-blue p,
.highlight-card-blue p em,
.highlight-card-blue p strong,
.highlight-card-blue p a {
  color: #fff !important;
}

.highlight-card-blue .feat-icon {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.highlight-card-blue .card-tags .tag {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.highlight-card-dark {
  background: linear-gradient(135deg, #0f2044, #1e3a6e);
  border-color: transparent;
}

.highlight-card-dark h3,
.highlight-card-dark p,
.highlight-card-dark p em,
.highlight-card-dark p a {
  color: rgba(255, 255, 255, 0.88) !important;
}

.highlight-card-dark p strong {
  color: #fbbf24 !important;
}

.highlight-card-dark .feat-icon {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.highlight-card-dark .card-tags .tag.tag-gold {
  background: rgba(251, 191, 36, 0.18);
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.35);
}

.feat-icon {
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: #0A0E1A;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 14px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(108, 60, 225, 0.08);
  color: #6C3CE1;
  border: 1px solid rgba(108, 60, 225, 0.18);
}

.tag-blue {
  background: rgba(0, 112, 243, 0.10);
  color: #0070f3;
  border-color: rgba(0, 112, 243, 0.2);
}

/* ─────────────────────────────────────────────
   TRUSTONE / IMPACT
───────────────────────────────────────────── */
.impact {
  background: #f9fafb;
}

.impact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.impact-text .section-badge {
  display: block;
}

.impact-lead {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 28px;
}

.impact-points {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.impact-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.check-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6C3CE1, #9b5de5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.impact-point strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #0A0E1A;
  margin-bottom: 3px;
}

.impact-point p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

/* Health card stack */
.impact-image {
  display: flex;
  justify-content: center;
}

.impact-img-placeholder {
  width: 100%;
  max-width: 480px;
  min-height: 340px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.health-bg {
  background: linear-gradient(135deg, #0f2044 0%, #1a3a6e 50%, #0d2d40 100%);
}

.health-card-stack {
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 0;
  position: relative;
}

.health-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}

.health-card:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hc-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.hc-content {
  flex: 1;
}

.hc-title {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.hc-stat {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1px;
}

.hc-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
}

.green-b {
  background: rgba(0, 200, 150, 0.18);
  color: #00C896;
  border: 1px solid rgba(0, 200, 150, 0.3);
}

.health-total {
  margin-top: 6px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #6C3CE1, #9b5de5);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ht-num {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.ht-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
}

/* ─────────────────────────────────────────────
   SECTORS / TEAM TYPES
───────────────────────────────────────────── */
.team-types {
  background: #fff;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.team-card {
  background: #f9fafb;
  border: 1.5px solid #f0f0f0;
  border-radius: 18px;
  padding: 24px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

.team-img {
  width: 100%;
  height: 96px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 36px;
}

.team-img-1 {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}

.team-img-2 {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
}

.team-img-3 {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.team-img-4 {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.team-img-5 {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.team-3d-icon {
  font-size: 36px;
}

.team-card h4 {
  font-size: 14px;
  font-weight: 800;
  color: #0A0E1A;
  margin-bottom: 7px;
}

.team-card p {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.65;
}

.team-cta-card {
  background: linear-gradient(135deg, #0f2044, #1e3a6e);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.team-cta-card h4 {
  color: #fff;
}

.team-cta-card p {
  color: rgba(255, 255, 255, 0.65);
}

.team-cta-icon {
  font-size: 36px;
}

/* ─────────────────────────────────────────────
   HOW WE WORK / TRANSPARENCY STEPS
───────────────────────────────────────────── */
.transparency {
  background: #f9fafb;
  text-align: center;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 52px;
  justify-content: center;
}

.step-item {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.step-teal {
  background: linear-gradient(135deg, #00C896, #0070f3);
}

.step-pink {
  background: linear-gradient(135deg, #f472b6, #ec4899);
}

.step-purple {
  background: linear-gradient(135deg, #6C3CE1, #9b5de5);
}

.step-dark {
  background: linear-gradient(135deg, #374151, #1f2937);
}

.step-item h4 {
  font-size: 14px;
  font-weight: 800;
  color: #0A0E1A;
  margin-bottom: 9px;
}

.step-item p {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.65;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #6C3CE1, #00C896);
  margin-top: 26px;
  flex-shrink: 0;
  opacity: 0.25;
}

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
.testimonials {
  background: linear-gradient(145deg, #0A0E1A 0%, #111827 60%, #0d1f3c 100%);
  padding: 88px 0;
  text-align: center;
}

.testimonials .section-title {
  color: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 28px;
  text-align: left;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(108, 60, 225, 0.3);
}

.testi-stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.testi-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 22px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ta1 {
  background: linear-gradient(135deg, #6C3CE1, #9b5de5);
}

.ta2 {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.ta3 {
  background: linear-gradient(135deg, #10b981, #0070f3);
}

.testi-author strong {
  display: block;
  font-size: 13px;
  color: #fff;
  font-weight: 800;
}

.testi-author span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.dot.active {
  background: #6C3CE1;
}

/* ─────────────────────────────────────────────
   ABOUT / WHY US
───────────────────────────────────────────── */
.pricing {
  background: #fff;
  text-align: center;
}

/* re-used section class */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.about-card {
  background: #f9fafb;
  border: 1.5px solid #f0f0f0;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  border-color: #6C3CE1;
}

.about-card-featured {
  background: linear-gradient(135deg, #6C3CE1, #9b5de5);
  border-color: transparent;
}

.about-card-featured h4,
.about-card-featured p {
  color: #fff;
}

.about-icon {
  font-size: 30px;
  margin-bottom: 14px;
}

.about-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: #0A0E1A;
  margin-bottom: 8px;
}

.about-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.65;
}

.about-card-featured p {
  color: rgba(255, 255, 255, 0.85);
}

/* ─────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0A0E1A 0%, #150d2e 50%, #0d1f3c 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(108, 60, 225, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 200, 150, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.cta-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #6C3CE1;
  background: rgba(108, 60, 225, 0.12);
  border: 1px solid rgba(108, 60, 225, 0.28);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -1px;
  line-height: 1.15;
}

.cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}

.cta-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.3px;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: #06080f;
  color: #9ca3af;
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.40);
  margin: 12px 0 22px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition: background 0.2s, color 0.2s;
}

.social-icon:hover {
  background: #6C3CE1;
  color: #fff;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-col a {
  display: block;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.40);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #6C3CE1;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #6C3CE1;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 960px) {

  .nav-links,
  .nav-login {
    display: none;
  }

  .nav-burger {
    display: block;
  }

  /* Mobile nav drawer */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding: 12px 24px 20px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open a {
    padding: 13px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
  }

  .nav-links.open a:last-child {
    border-bottom: none;
  }

  .hero-mockup {
    gap: 10px;
  }

  .mockup-left,
  .mockup-right {
    width: 170px;
  }

  .mockup-center {
    width: 240px;
  }

  .stats-inner {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 50%;
    padding: 16px;
  }

  .stat-divider {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid-2 {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-row {
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
  }

  .step-connector {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .hero-mockup {
    flex-direction: column;
    align-items: center;
  }

  .mockup-left,
  .mockup-right,
  .mockup-center {
    width: 88%;
    transform: none;
  }

  .features-grid,
  .team-grid,
  .testimonials-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
  }
}

/* ═══════════════════════════════════════════════
   KHAALIKAGAZ POPUP
═══════════════════════════════════════════════ */

/* Keyframes */
@keyframes kkFadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes kkSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

@keyframes kkBounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes kkPulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.08)
  }
}

@keyframes kkRotate {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

/* Overlay */
.kk-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 14, 26, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.kk-overlay.kk-visible {
  opacity: 1;
  pointer-events: all;
  animation: kkFadeIn 0.4s ease;
}

.kk-overlay.kk-closing {
  opacity: 0;
  pointer-events: none;
}

/* Modal container */
.kk-modal {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: linear-gradient(145deg, #0f1c3d 0%, #1a1040 50%, #0d2040 100%);
  border-radius: 24px;
  border: 1px solid rgba(108, 60, 225, 0.30);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.60), 0 0 0 1px rgba(255, 255, 255, 0.05);
  padding: 40px 36px 36px;
  animation: kkSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(108, 60, 225, 0.5) transparent;
}

.kk-modal::-webkit-scrollbar {
  width: 5px;
}

.kk-modal::-webkit-scrollbar-thumb {
  background: rgba(108, 60, 225, 0.5);
  border-radius: 4px;
}

/* Decorative blobs */
.kk-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 24px;
}

.kk-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.kb1 {
  width: 250px;
  height: 250px;
  top: -80px;
  left: -60px;
  background: #6C3CE1;
  opacity: 0.22;
}

.kb2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  right: -40px;
  background: #00C896;
  opacity: 0.18;
}

.kb3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  background: #FF6B35;
  opacity: 0.12;
}

/* Close button */
.kk-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}

.kk-close:hover {
  background: rgba(255, 255, 255, 0.20);
  color: #fff;
}

/* Step wrapper */
.kk-step {
  position: relative;
  z-index: 1;
}

.kk-hidden {
  display: none !important;
}

/* Brand / logo row */
.kk-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.kk-brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6C3CE1, #00C896);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.kk-brand-name {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

/* Initiative pill */
.kk-tagline-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #00C896;
  background: rgba(0, 200, 150, 0.12);
  border: 1px solid rgba(0, 200, 150, 0.28);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 18px;
  letter-spacing: 0.4px;
}

/* Headline */
.kk-headline {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

/* Sub text */
.kk-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  margin-bottom: 24px;
}

.kk-sub strong {
  color: #fff;
}

/* Perks row */
.kk-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.kk-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 12px 14px;
}

.kk-perk-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(108, 60, 225, 0.35), rgba(0, 200, 150, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.kk-perk>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.kk-perk strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.kk-perk span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* Primary CTA button */
.kk-btn-primary {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #6C3CE1, #9b5de5);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.22s ease;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.kk-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  pointer-events: none;
}

.kk-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(108, 60, 225, 0.45);
}

.kk-btn-primary:active {
  transform: translateY(0);
}

/* Ghost button */
.kk-btn-ghost {
  display: block;
  width: 100%;
  padding: 12px 24px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.kk-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Footnote */
.kk-footnote {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-top: 4px;
}

/* Step header (step 2) */
.kk-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.kk-back {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.kk-back:hover {
  color: #fff;
}

.kk-step-pills {
  display: flex;
  gap: 6px;
}

.kk-sp {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.18);
  transition: background 0.2s;
}

.kk-sp.active {
  background: linear-gradient(90deg, #6C3CE1, #00C896);
}

/* Form */
.kk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 0;
}

.kk-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.kk-field-full {
  grid-column: 1/-1;
}

.kk-field label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.kk-field input,
.kk-field textarea,
.kk-field select {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13.5px;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}

.kk-field input::placeholder,
.kk-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.30);
}

.kk-field input:focus,
.kk-field textarea:focus,
.kk-field select:focus {
  border-color: #6C3CE1;
  background: rgba(108, 60, 225, 0.12);
}

.kk-field select option {
  background: #1a1040;
  color: #fff;
}

.kk-field textarea {
  resize: vertical;
  min-height: 80px;
}

/* Budget radio grid */
.kk-budget-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.kk-budget-opt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 6px;
  border-radius: 10px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  transition: all 0.2s;
  text-align: center;
}

.kk-budget-opt input {
  display: none;
}

.kk-budget-opt:hover {
  border-color: rgba(108, 60, 225, 0.5);
  color: #fff;
  background: rgba(108, 60, 225, 0.10);
}

.kk-budget-opt:has(input:checked) {
  border-color: #6C3CE1;
  background: rgba(108, 60, 225, 0.22);
  color: #fff;
}

.kk-budget-opt span {
  pointer-events: none;
}

/* Error */
.kk-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
  font-size: 12.5px;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* Success step */
.kk-success-anim {
  font-size: 56px;
  text-align: center;
  margin-bottom: 16px;
  animation: kkBounce 1.2s ease infinite;
}

.kk-success-details {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kk-sd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.kk-sd-item span {
  font-size: 18px;
}

/* ── Responsive ── */
@media (max-width: 540px) {
  .kk-modal {
    padding: 32px 20px 28px;
    border-radius: 20px;
  }

  .kk-headline {
    font-size: 22px;
  }

  .kk-form-row {
    grid-template-columns: 1fr;
  }

  .kk-budget-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kk-perks {
    gap: 8px;
  }
}

@media (max-width: 375px) {
  .kk-headline {
    font-size: 19px;
  }

  .kk-budget-grid {
    grid-template-columns: 1fr 1fr;
  }
}