/* ============================================
   KSHEMA — Design System & Custom Styles
   Adapted from reference Tailwind designs
   Bootstrap 5 only — NO Tailwind
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --color-primary: #20df20;
  --color-primary-dark: #1ab81a;
  --color-primary-sage: #65a365;
  --color-sage: #7A9E7E;
  --color-sage-dark: #5F8363;
  --color-sage-light: #A8C5AB;
  --color-sage-ultra-light: #E8F0E9;
  --color-sage-soft: #8da399;
  --color-sage-muted: #758E87;
  --color-blue: #7FA9C9;
  --color-blue-light: #B5D1E8;
  --color-bg: #f6f8f6;
  --color-bg-alt: #F3F5F3;
  --color-surface: #ffffff;
  --color-neutral-sage: #e0e7e0;
  --color-neutral-surface: #eef2ee;
  --color-text: #1a1a1a;
  --color-text-secondary: #2c3e50;
  --color-text-muted: #615e5e;
  --color-text-light: #333738;
  --color-white: #FFFFFF;
  --color-border: #E8ECEB;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --shadow-soft: 0 20px 40px -15px rgba(32, 223, 32, 0.1);
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-subtle: 0 2px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.01);
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --transition-base: all 0.3s ease;
}

/* ---- Base Reset & Typography ---- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.15;
}

p {
  color: var(--color-text-muted);
}

a {
  text-decoration: none;
  transition: var(--transition-base);
}

::selection {
  background-color: rgba(32, 223, 32, 0.3);
  color: var(--color-white);
}

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-kshema {
  padding: 0.75rem 0;
  transition: var(--transition-base);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar-kshema .navbar-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-text);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-kshema .brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(32, 223, 32, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-kshema .brand-icon-inner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
}

.navbar-kshema .nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text);
  padding: 0.5rem 1rem;
  transition: var(--transition-base);
}

.navbar-kshema .nav-link:hover,
.navbar-kshema .nav-link:focus {
  color: var(--color-text);
}

.navbar-scrolled {
  background-color: rgba(246, 248, 246, 0.8) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  padding: 0.5rem 0;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ---- CTA Button (Navbar + Inline) ---- */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(32, 223, 32, 0.2);
}

.btn-cta-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(32, 223, 32, 0.35);
  transform: scale(1.05);
}

/* ============================================
   HERO SECTION — Left-aligned, parallax BG
   ============================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Grey overlay so text never looks faded */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right,
      rgba(240, 240, 240, 0.92) 0%,
      rgba(240, 240, 240, 0.88) 30%,
      rgba(204, 202, 202, 0.65) 60%,
      rgba(106, 104, 104, 0.35) 80%,
      rgba(150, 150, 150, 0.15) 100%);
  width: 100%;
}

/* Mobile: full grey overlay for readability */
.hero-overlay-mobile {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(230, 230, 230, 0.82);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(32, 223, 32, 0.1);
  border: 1px solid rgba(32, 223, 32, 0.2);
  color: var(--color-primary-sage);
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-badge .ping-dot {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
}

.hero-badge .ping-dot .ping-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-badge .ping-dot .ping-core {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-headline .highlight {
  color: #64748b;
  font-weight: 500;
}

.hero-subtext {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 32rem;
  margin-bottom: 2.5rem;
}

.hero-cta-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-hero-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  background: #7aa37a;
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(122, 163, 122, 0.3);
}

.btn-hero-primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(32, 223, 32, 0.3);
}

.btn-hero-primary .ring-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
  transition: var(--transition-base);
}

.btn-hero-primary:hover .ring-overlay {
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-check-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.hero-check-note svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Social Proof (Avatar Stack + Stars) */
.social-proof {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img,
.avatar-stack .avatar-count {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  object-fit: cover;
  margin-left: -12px;
}

.avatar-stack img:first-child,
.avatar-stack .avatar-count:first-child {
  margin-left: 0;
}

.avatar-stack .avatar-count {
  background: var(--color-neutral-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.stars-row {
  display: flex;
  color: #facc15;
  margin-bottom: 0.125rem;
}

.stars-row svg {
  width: 16px;
  height: 16px;
}

.social-proof-text {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin: 0;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  opacity: 0.5;
  cursor: pointer;
  transition: var(--transition-base);
  animation: bounceGentle 2s infinite;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

@keyframes bounceGentle {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-8px);
  }

  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* ============================================
   HOW IT WORKS — Cards with floating step #
   ============================================ */
.how-section {
  position: relative;
  overflow: hidden;
}

.how-section .bg-blob-1 {
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(32, 223, 32, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.how-section .bg-blob-2 {
  position: absolute;
  top: 10rem;
  left: -5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(96, 165, 250, 0.06);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.section-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(32, 223, 32, 0.1);
  color: var(--color-primary-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-title .underline-accent {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.section-title .underline-accent::after {
  content: '';
  position: absolute;
  bottom: 0.15em;
  left: 0;
  width: 100%;
  height: 0.3em;
  background: rgba(32, 223, 32, 0.3);
  z-index: -1;
  transform: skewX(12deg);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Step connector line (desktop only) */
.step-connector {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  opacity: 0.2;
  z-index: 0;
  display: none;
}

/* Step card */
.step-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  transition: var(--transition-base);
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
}

/* Floating step number badge */
.step-number-badge {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border-radius: 50%;
  border: 4px solid var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-primary);
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 1.5rem;
  transition: var(--transition-base);
}

.step-icon-sage {
  background: #e8f5e9;
  color: var(--color-primary-dark);
}

.step-icon-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(32, 223, 32, 0.3);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 8px 24px rgba(32, 223, 32, 0.3);
  }

  50% {
    box-shadow: 0 8px 32px rgba(32, 223, 32, 0.5);
  }
}

.step-icon i {
  font-size: 1.75rem;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.step-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   WHY FAMILIES — Glassmorphism card over parallax
   ============================================ */
.why-section {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.why-section .parallax-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: contrast(0.9) brightness(1.05) saturate(0.8);
}

.why-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(140, 140, 140, 0.45);
  /* Consistent grey overlay */
}

/* Mobile fallback */
.d-md-none[style*="background:var(--color-bg-alt)"] {
  background: rgba(230, 230, 230, 0.95) !important;
}

.why-glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 2;
}

.why-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(141, 163, 153, 0.2);
  color: var(--color-sage-muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.why-section .section-title {
  font-size: 2rem;
  color: var(--color-text);
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0;
  margin-bottom: 1.5rem;
}

.why-list li:last-child {
  margin-bottom: 0;
}

.why-check-circle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(141, 163, 153, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
  color: var(--color-sage-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.why-item-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.15rem;
}

.why-item-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

.why-cta-block {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-sage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  background: var(--color-sage-muted);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(117, 142, 135, 0.2);
  transition: var(--transition-base);
}

.btn-sage:hover {
  background: var(--color-sage-soft);
  color: var(--color-white);
  transform: scale(1.02);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-section .gradient-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 800px;
  background: linear-gradient(to bottom, rgba(32, 223, 32, 0.05), transparent);
  pointer-events: none;
}

.pricing-card {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-soft);
  padding: 2.5rem 3rem;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.pricing-plan-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.pricing-plan-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.pricing-amount-block {
  margin: 2rem 0;
  text-align: center;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.pricing-amount small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.pricing-alt {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-light);
  background: var(--color-bg);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  margin-top: 0.5rem;
}

.pricing-alt strong {
  color: var(--color-text);
  font-weight: 700;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

.pricing-features .check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(32, 223, 32, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  background: var(--color-primary);
  color: var(--color-text);
  box-shadow: 0 8px 24px rgba(32, 223, 32, 0.25);
  transition: var(--transition-base);
}

.btn-pricing:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  color: var(--color-text);
}

.pricing-note {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 1rem;
  text-align: center;
}

/* ============================================
   FAQ SECTION — CSS-only accordion
   ============================================ */
.faq-section .section-title-underline {
  width: 48px;
  height: 4px;
  background: rgba(141, 163, 153, 0.3);
  border-radius: 9999px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  margin-bottom: 1rem;
  transition: var(--transition-base);
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-toggle {
  display: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: var(--transition-base);
}

.faq-label:hover {
  color: var(--color-text);
}

.faq-label .faq-chevron {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--color-sage);
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-content-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-toggle:checked~.faq-content {
  max-height: 300px;
  opacity: 1;
}

.faq-toggle:checked~.faq-label .faq-chevron {
  transform: rotate(180deg);
}

.faq-help-link {
  color: var(--color-sage-dark);
  font-weight: 700;
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.faq-help-link:hover {
  color: var(--color-text-secondary);
  text-decoration: underline;
}

/* ============================================
   FINAL CTA SECTION — Parallax banner
   ============================================ */
.cta-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(224, 231, 224, 0.9) 0%,
      rgba(246, 248, 246, 0.8) 50%,
      rgba(246, 248, 246, 0.6) 100%);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(32, 223, 32, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(32, 223, 32, 0.3);
  box-shadow: 0 4px 14px rgba(32, 223, 32, 0.1);
}

.cta-icon-circle i {
  font-size: 1.75rem;
  color: var(--color-primary);
}

.cta-headline {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cta-subtext {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.btn-cta-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 32px rgba(32, 223, 32, 0.3);
  transition: var(--transition-base);
}

.btn-cta-hero .ring-border {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.btn-cta-hero:hover {
  background: #1bc61b;
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(32, 223, 32, 0.4);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-cta-secondary:hover {
  color: var(--color-primary);
}

.btn-cta-secondary i {
  color: var(--color-primary);
}

/* CTA social proof */
.cta-social-proof {
  margin-top: 3rem;
  opacity: 0.8;
}

.cta-social-proof .avatar-stack img,
.cta-social-proof .avatar-stack .avatar-count {
  width: 40px;
  height: 40px;
}

/* ============================================
   FOOTER — Two-column layout
   ============================================ */
.footer-kshema {
  background: var(--color-white);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: var(--transition-base);
}

.footer-brand .brand-square {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.5px;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social a {
  color: var(--color-text-light);
  transition: var(--transition-base);
  margin-right: 1rem;
}

.footer-social a:hover {
  color: var(--color-primary);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--color-text-light);
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text);
  transition: var(--transition-base);
  text-decoration: none;
}

.footer-email-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 2rem;
  margin-top: 3rem;
}

.footer-bottom-text {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin: 0;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: var(--color-text-light);
  transition: var(--transition-base);
}

.footer-bottom-links a:hover {
  color: var(--color-primary);
}

/* Trust bar */
.trust-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.trust-bar p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--color-text-light);
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  opacity: 0.5;
  filter: grayscale(1);
  transition: all 0.5s ease;
}

.trust-logos:hover {
  filter: grayscale(0);
  opacity: 1;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text-light);
}

/* ============================================
   GENERAL SECTION SPACING
   ============================================ */
.section-padding {
  padding: 3rem 0;
}

/* ============================================
   FADE-IN ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

/* Hero load animation */
.hero-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1s ease-out forwards;
}

.hero-animate-delay-1 {
  animation-delay: 0.1s;
}

.hero-animate-delay-2 {
  animation-delay: 0.2s;
}

.hero-animate-delay-3 {
  animation-delay: 0.3s;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
  .step-connector {
    display: block;
  }

  .hero-overlay-mobile {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .hero-headline {
    font-size: 2.75rem;
  }

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

  .cta-headline {
    font-size: 2.25rem;
  }

  .section-padding {
    padding: 4.5rem 0;
  }

  .why-section {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .hero-overlay {
    width: 100%;
    background: linear-gradient(to bottom,
        rgba(246, 248, 246, 0.92) 0%,
        rgba(246, 248, 246, 0.85) 60%,
        rgba(246, 248, 246, 0.5) 100%);
  }

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

  .cta-headline {
    font-size: 1.85rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-amount {
    font-size: 2.5rem;
  }

  .why-glass-card {
    padding: 1.75rem;
  }

  .social-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Disable parallax on mobile */
  .hero-bg,
  .cta-section,
  .why-section .parallax-bg-img {
    background-attachment: scroll !important;
  }
}

@media (max-width: 575.98px) {
  .hero-headline {
    font-size: 1.85rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

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

/* Disable parallax on touch devices */
@media (hover: none) and (pointer: coarse) {

  .hero-bg,
  .cta-section,
  .why-section .parallax-bg-img {
    background-attachment: scroll !important;
  }
}

.bg-success-custom {
                background-color: #28a745;
            }
            .step-item.done .step-icon {
                background-color: #28a745;
                border-color: #28a745;
                color: white;
            }

            #notificationContainer {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 2000; /* High z-index to stay above everything */
            display: flex;
            flex-direction: column;
            gap: 10px;
            pointer-events: none;
        }

        /* Custom Notification Styling */
        .error-notification {
            width: 350px;
            max-width: 90vw;
            pointer-events: auto;
            background: white;
            border-left: 5px solid #dc3545;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 1.25rem;
            gap: 15px;
            animation: slideIn 0.3s ease-out forwards;
            transition: opacity 0.3s ease-out, transform 0.3s ease-out;
        }

        .success-notification {
            width: 350px;
            max-width: 90vw;
            pointer-events: auto;
            background: white;
            border-left: 5px solid green;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 1.25rem;
            gap: 15px;
            animation: slideIn 0.3s ease-out forwards;
            transition: opacity 0.3s ease-out, transform 0.3s ease-out;
        }

        @keyframes slideIn {
            from { transform: translateX(50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .error-notification.fade-out {
            opacity: 0;
            transform: translateX(20px);
        }

        .error-icon-small {
            color: #dc3545;
            flex-shrink: 0;
        }

        .success-icon-small {
            color: green;
            flex-shrink: 0;
            }


        .error-title {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 2px;
            display: block;
            color: #212529;
        }

        .error-desc {
            font-size: 0.875rem;
            color: #6c757d;
            margin: 0;
        }

        /* Dark mode compatibility using a wrapper class or system preference */
        @media (prefers-color-scheme: dark) {
            .app-viewport { background-color: #121212; }
            .error-notification { background-color: #1e1e1e; color: #fff; border-bottom: 1px solid #333; }
            .error-title { color: #fff; }
            .error-desc { color: #aaa; }
        }

        .custom-scrollbar::-webkit-scrollbar {
            width: 10px; /* Width of the vertical scrollbar */
            height: 10px; /* Height of the horizontal scrollbar */
        }

        /* 2. The background of the scrollbar */
        .custom-scrollbar::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
        }

        /* 3. The draggable handle */
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: rgba(100, 116, 139, 0.4); /* Slate-500 with opacity */
            border-radius: 10px;
            border: 2px solid transparent; /* Creates padding effect */
            background-clip: content-box; /* Ensures border shows track through */
            transition: background 0.3s ease;
        }

        /* 4. Handle on hover */
        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: rgba(100, 116, 139, 0.8);
            border: 1px solid transparent; /* Slightly larger handle on hover */
            background-clip: content-box;
        }

        /* Firefox Support */
        .custom-scrollbar {
            scrollbar-width: thin;
            scrollbar-color: rgba(19, 110, 240, 0.4) rgba(0, 0, 0, 0.05);
        }

        /* Smooth scroll behavior */
        .custom-scrollbar {
            scroll-behavior: smooth;
        }