/* Theme Toggle Button */
.theme-toggle {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.theme-toggle:hover {
  background: hsl(var(--accent));
  border-color: hsl(var(--primary));
}

/* Main Header Styles (from styles.css) */
.main-header {
  background: rgba(15, 23, 42, 0.8);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] .main-header {
  background: rgba(236, 239, 242, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Gradient Text Utility */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Custom Scrollbar Styles (from styles.css) */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(59, 130, 246, 0.4) rgba(15, 23, 42, 0.3);
}

[data-theme="light"] * {
  scrollbar-color: rgba(90, 103, 216, 0.5) rgba(226, 232, 240, 0.5);
}

/* Webkit Browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.3);
  border-radius: 10px;
  margin: 2px;
}

[data-theme="light"] ::-webkit-scrollbar-track {
  background: rgba(226, 232, 240, 0.5);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.6),
    rgba(59, 130, 246, 0.4)
  );
  border-radius: 10px;
  border: 2px solid rgba(15, 23, 42, 0.3);
  transition: background 0.3s ease;
}

[data-theme="light"] ::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(90, 103, 216, 0.7),
    rgba(90, 103, 216, 0.5)
  );
  border: 2px solid rgba(226, 232, 240, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.8),
    rgba(59, 130, 246, 0.6)
  );
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.5);
}

[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(90, 103, 216, 0.9),
    rgba(90, 103, 216, 0.7)
  );
  box-shadow: 0 0 6px rgba(90, 103, 216, 0.3);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 1),
    rgba(59, 130, 246, 0.8)
  );
}

[data-theme="light"] ::-webkit-scrollbar-thumb:active {
  background: linear-gradient(
    180deg,
    rgba(90, 103, 216, 1),
    rgba(90, 103, 216, 0.8)
  );
}

/* Scrollbar corner */
::-webkit-scrollbar-corner {
  background: rgba(15, 23, 42, 0.3);
}

[data-theme="light"] ::-webkit-scrollbar-corner {
  background: rgba(226, 232, 240, 0.5);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  letter-spacing: -0.01em;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Body background colors for theme */
[data-theme="dark"] body,
body.dark-mode {
  background: rgba(2, 6, 23);
}

[data-theme="light"] body {
  background: #ffffff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Typography */
.section-title {
  font-size: var(--font-headline);
  font-weight: 700;
  line-height: 1.2;
  color: #65a30d;
  margin-bottom: var(--spacing-lg);
}

.section-description {
  font-size: var(--font-body-large);
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
  max-width: 1200px;
  margin: 0 auto;
  text-align: justify;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px hsl(var(--primary) / 0.3);
  }
  50% {
    box-shadow: 0 0 40px hsl(var(--primary) / 0.6);
  }
}

.hero-entrance {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-entrance.delay-100 {
  animation-delay: 0.1s;
}
.hero-entrance.delay-200 {
  animation-delay: 0.2s;
}
.hero-entrance.delay-300 {
  animation-delay: 0.3s;
}
.hero-entrance.delay-400 {
  animation-delay: 0.4s;
}
.hero-entrance.delay-500 {
  animation-delay: 0.5s;
}
/* Navigation */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: hsl(var(--card) / 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 1rem var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
}
.nav-logo i {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary));
}
.nav-logo svg {
  width: 28px;
  height: 28px;
}
.nav-links,
.mob-links {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}
.nav-links a,
.mob-links a {
  text-decoration: none;
  color: hsl(var(--foreground));
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-links a:hover,
.mob-links a:hover {
  color: hsl(var(--primary));
}

.nav-links a::after,
.mob-links a::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: hsl(var(--primary));
  transition: var(--transition-smooth);
}
.nav-links a:hover::after,
.mob-links a:hover::after {
  width: 100%;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: hsl(var(--primary));
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  background: var(--gradient-card);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid hsl(var(--border));
  transition: var(--transition-smooth);
  top: 90%;
  right: 3%;
  z-index: 999;
}
.mobile-menu:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  animation: glow 2s infinite;
}
/* Buttons */
.btn-primary {
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-secondary {
  padding: 0.75rem 1.5rem;
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  border: 2px solid hsl(var(--border));
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: hsl(var(--accent));
  border-color: hsl(var(--border));
  color: hsl(var(--accent-foreground));
}
.cta-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.cta-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  transform: scale(1.05);
  animation: glow 2s infinite;
}
.cta-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/* Hero Section */
.hero-section {
  position: relative;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  padding: var(--section-padding);
  padding-top: calc(2rem + 80px); /* Account for fixed nav */
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section.compact {
  min-height: auto;
  padding: calc(2rem + 80px) 0 2rem;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  animation: pulse 4s ease-in-out infinite;
}

.hero-container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: var(--container-padding);
  position: relative;
  z-index: 10;
}

.hero-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
}

.trust-badge i {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--success));
}

.hero-title {
  font-size: var(--font-display);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
}
.text-gradient {
  color: hsl(var(--success));
}
.hero-description {
  font-size: clamp(1rem, 2vw, 1.125rem); /* text-base md:text-lg */
  color: hsl(var(--muted-foreground));
  margin-bottom: 2.5rem; /* mb-10 */
  line-height: 1.625;
  max-width: 42rem; /* max-w-2xl */
  margin-left: auto;
  margin-right: auto;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-strong);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gradient-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: white;
  box-shadow: var(--shadow-soft);
}

.testimonial-info {
  text-align: left;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.125rem;
  color: hsl(var(--primary));
  margin-bottom: 0.25rem;
}

.testimonial-title {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.6;
  color: hsl(var(--primary));
  margin-bottom: 0.75rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
}

.star-filled {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--warning));
  fill: currentColor;
}

.feature-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: var(--spacing-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  color: #65a30d;
}
.feature-icon i {
  width: 1.5rem;
  height: 1.5rem;
}

.cta-section {
  margin-bottom: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  padding: 2rem 2rem;
  box-shadow: var(--shadow-xl);
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .cta-section {
  padding: 3rem 2rem;
  }
}


/* Email Form */
.email-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .email-form {
    flex-direction: row;
    gap: 0.5rem;
  }
}
.email-input-container {
  position: relative;
  flex: 1;
}
.email-input-container input {
  width: 100%;
  height: 3rem !important;
  background: hsl(var(--card)) !important;
  border: 2px solid hsl(var(--border)) !important;
  border-radius: 1rem;
  color: hsl(var(--foreground)) !important;
  font-size: 1rem !important;
  padding: 0 1rem !important;
  font-weight: 500;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
}
.email-input-container input:focus {
  outline: none;
  border-color: hsl(var(--primary)) !important;
  box-shadow: 0 0 0 4px hsl(var(--primary) / 0.1), var(--shadow-md) !important;
  transform: scale(1.01) !important;
}
.email-input-container input::placeholder {
  color: hsl(var(--muted-foreground)) !important;
}
.email-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary) / 0.4);
}
.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-lg);
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.trust-item i {
  width: 1rem;
  height: 1rem;
}
.trust-item svg {
  width: 16px;
  height: 16px;
  color: #65a30d;
}
/* Social Proof Section */
.social-proof-section {
  padding: var(--section-padding);
  background: hsl(var(--background));
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1000px;
  margin: 0 auto var(--spacing-2xl);
}

.stat-card {
  background: var(--gradient-card);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid hsl(var(--border));
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  animation: glow 2s infinite;
}

.stat-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-soft);
  color: #65a30d;
}

.stat-icon i {
  width: 2rem;
  height: 2rem;
  color: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: hsl(var(--primary));
  margin-bottom: 0.75rem;
}

.stat-number.success {
  color: hsl(var(--success));
}
.stat-number.warning {
  color: hsl(var(--warning));
}

.stat-label {
  font-weight: 600;
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-align: justify;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    145deg,
    hsl(var(--success) / 0.05),
    hsl(var(--success) / 0.1)
  );
  border: 1px solid hsl(var(--success) / 0.2);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
}

.trust-badge-item i {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
}

.trust-badge-item span {
  font-weight: 600;
  color: hsl(var(--primary));
}

/* Personalization Section */
.personalization-section {
  padding: var(--section-padding);
  background: hsl(var(--background));
}

.welcome-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.welcome-icon {
  width: 1.75rem;
  height: 1.75rem;
}

.welcome-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.sliders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.slider-card {
  background: hsl(var(--card) / 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 2px solid hsl(var(--border));
  transition: var(--transition-smooth);
}

.slider-card:hover {
  box-shadow: var(--shadow-medium);
}
.slider-card.warning {
  border: 2px solid hsl(var(--warning));
}
.slider-card.success {
  border: 2px solid hsl(var(--success));
}
.slider-card.primary {
  border: 2px solid hsl(var(--primary));
}

.slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.slider-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.slider-icon {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: hsl(var(--background) / 0.5);
  transition: var(--transition-smooth);
}

.slider-icon:hover {
  transform: scale(1.1);
}

.slider-icon i {
  width: 1.25rem;
  height: 1.25rem;
}
.slider-icon.success svg {
  color: hsl(var(--success));
}
.slider-icon.primary svg {
  color: hsl(var(--primary));
}
.slider-icon.warning svg {
  color: hsl(var(--warning));
}

.help-icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--muted-foreground));
  cursor: help;
  transition: var(--transition-smooth);
}

.help-icon:hover {
  color: hsl(var(--primary));
}

.slider-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0rem;
}

.slider-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}

.slider-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.value-display {
  font-size: 1.5rem;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.value-display.success {
  color: hsl(var(--success));
}
.value-display.primary {
  color: hsl(var(--primary));
}
.value-display.warning {
  color: hsl(var(--warning));
}

.value-suffix {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Custom Slider */
.slider-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: hsl(var(--muted));
  border-radius: 4px;
  outline: none;
  margin-bottom: 1rem;
  cursor: pointer;
}

.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--gradient-primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}
.slider-input.primary::-webkit-slider-thumb {
  background: var(--gradient-primary);
}
.slider-input.success::-webkit-slider-thumb {
  background: var(--gradient-success);
}
.slider-input.warning::-webkit-slider-thumb {
  background: var(--gradient-warning);
}

.slider-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: var(--shadow-medium);
}

.slider-input::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--gradient-primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  border: none;
}

.slider-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  padding: 0 0.25rem;
}

.scale-number {
  transition: var(--transition-smooth);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  font-size: 0.8rem;
}

.scale-number:hover {
  font-weight: 600;
  color: hsl(var(--primary));
  background: hsl(var(--muted));
}

.scale-number.active {
  font-weight: 700;
  transform: scale(1.1);
}
.scale-number svg {
  margin-left: 1px;
  width: 0.7em;
  height: 0.7em;
  color: inherit; /* ⭐ inherits text color */
}
.scale-number.active.success {
  color: hsl(var(--success));
}
.scale-number.active.primary {
  color: hsl(var(--primary));
}
.scale-number.active.warning {
  color: hsl(var(--warning));
}

.personalization-cta {
  padding-top: var(--spacing-sm);
  text-align: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.cta-note svg {
  width: 14px;
  height: 14px;
  color: hsl(var(--success));
}
/* Preview Section */
.preview-section {
  margin-top: var(--spacing-sm);
  padding: var(--section-padding);
  background: hsl(var(--muted) / 0.3);
}
.stock-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-bottom: 1px solid hsl(var(--border));
  transition: var(--transition-smooth);
  position: relative;
}

.stock-item:last-child {
  border-bottom: none;
}

.stock-item:hover:not(.locked) {
  background: hsl(var(--muted) / 0.2);
}

.stock-item.locked {
  opacity: 0.6;
}

.stock-blur-overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.stock-blur-content {
  text-align: center;
  animation: pulse 2s infinite;
}

.stock-blur-content i {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.stock-blur-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}

.stock-main-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.stock-rank {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.stock-rank.unlocked {
  background: var(--gradient-primary);
  color: white;
}

.stock-rank.locked {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.stock-unlock-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  background: hsl(var(--success));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stock-unlock-badge i {
  width: 0.75rem;
  height: 0.75rem;
  color: white;
}

.stock-info {
  flex: 1;
}

.stock-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.stock-symbol {
  font-weight: 700;
  font-size: 1.25rem;
  color: hsl(var(--foreground));
}

.stock-badge {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.stock-sector {
  background: transparent;
  color: hsl(var(--muted-foreground));
  border: 1px solid hsl(var(--border));
  font-size: 0.75rem;
}

.stock-name {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.stock-analysis {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  background: hsl(var(--muted) / 0.5);
  padding: 0.75rem;
  border-radius: 0.5rem;
  line-height: 1.5;
}

.stock-price-info {
  text-align: right;
}

.stock-price {
  font-weight: 700;
  font-size: 1.5rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.stock-change {
  font-weight: 600;
  color: hsl(var(--success));
  margin-bottom: 0.25rem;
}

.stock-change-value {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.stock-market-cap {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.stock-locked-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: right;
}

.stock-locked-info i {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--muted-foreground));
}

.locked-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}

.locked-subtext {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.more-stocks {
  padding: 2rem;
  text-align: center;
  background: hsl(var(--muted) / 0.2);
  border-top: 1px solid hsl(var(--border));
}

.more-stocks p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}
.more-stocks-note {
  font-size: 0.875rem;
}
/* Features Section */
.features-section {
  padding: var(--section-padding);
  background: hsl(var(--muted) / 0.3);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: var(--gradient-card);
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-strong);
  border: 1px solid hsl(var(--border));
  transition: var(--transition-smooth);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  animation: glow 2s infinite;
}

.feature-icon-large {
  width: 5rem;
  height: 5rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-soft);
}

.feature-icon-large.hero {
  background: var(--gradient-hero);
}
.feature-icon-large.success {
  background: var(--gradient-success);
}
.feature-icon-large.warning {
  background: linear-gradient(
    135deg,
    hsl(var(--warning)),
    hsl(var(--warning-light))
  );
}

.feature-icon-large i {
  width: 2.5rem;
  height: 2.5rem;
  color: white;
}

.feature-title {
  font-size: var(--font-title);
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
}

.feature-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  font-size: 1.125rem;
}

/* Footer */
.footer {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: var(--section-padding);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo i {
  width: 2rem;
  height: 2rem;
}

.footer-description {
  color: hsl(var(--primary-foreground));
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: var(--spacing-xl);
}

.footer-column h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: hsl(var(--primary-foreground));
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-column ul li a:hover {
  color: hsl(var(--primary-foreground));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--primary-foreground));
  padding-top: var(--spacing-lg);
  text-align: center;
}

.footer-bottom p {
  color: hsl(var(--primary-foreground));
}

.pricing-selection {
  margin-bottom: 3rem;
  background: hsl(var(--card) / 0.5);
  border: 2px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  transition: border-color 0.2s;
}

/* Sector Selection */
.sector-selection {
  margin-bottom: 3rem;
  background: hsl(var(--card) / 0.5);
  border: 2px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  transition: border-color 0.2s;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .sector-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem !important;
  }
}
@media (min-width: 1024px) {
  .sector-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
.sector-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem;
  background: hsl(var(--card) / 0.3);
  border: 2px solid hsl(var(--border));
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.sector-option:hover {
  border-color: hsl(var(--primary) / 0.5);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.sector-option.selected {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.2);
  color: hsl(var(--primary));
  box-shadow: 0 2px 8px hsl(var(--primary) / 0.2);
}

.sector-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.375rem;
  background: hsl(var(--muted) / 0.5);
  color: hsl(var(--muted-foreground));
  transition: all 0.2s;
}

.sector-option.selected .sector-icon {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.sector-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}
.sector-option.selected .sector-name {
  color: hsl(var(--foreground));
}

/* Responsive Design */
@media (max-width: 1024px) {
  :root {
    --font-display: 3rem;
    --font-headline: 2.5rem;
    --font-title: 1.5rem;
    --font-body-large: 1.125rem;
  }

  .feature-highlights {
    grid-template-columns: 1fr;
  }

  .sliders-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .mobile-menu-btn i {
    width: 1.5rem;
    height: 1.5rem;
  }
  .mobile-menu.active {
    display: flex;
  }
  .email-form {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .trust-badges {
    grid-template-columns: 1fr;
  }
  .premium-features {
    grid-template-columns: 1fr;
  }
  .stock-item {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .stock-main-content {
    flex-direction: column;
    text-align: center;
  }

  .stock-price-info {
    text-align: center;
  }
}

@media (max-width: 640px) {
  :root {
    --font-display: 2.5rem;
    --font-headline: 2rem;
    --section-padding: 4rem 0;
  }

  .hero-section {
    padding-top: calc(4rem + 40px);
  }

  .feature-card {
    padding: 2rem;
  }

  .stat-card {
    padding: 2rem;
  }

  .slider-card {
    padding: 1rem;
  }
  .stock-item {
    padding: 1.5rem;
  }
}
.help-tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
}

/* icon color */
.help-tooltip .help-icon {
  color: #6c8fff;
}

/* tooltip bubble below the icon, end-aligned */
.help-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 125%; /* below the icon */
  right: 0; /* align tooltip’s right edge to parent */
  transform: none; /* no centering transform */
  width: 250px; /* standard width */
  max-width: calc(100vw - 20px); /* don’t overflow viewport */
  background: hsl(219 78% 11%);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.4;
  white-space: normal;
  word-wrap: break-word;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
}

/* arrow pointing up */
.help-tooltip::before {
  content: "";
  position: absolute;
  top: 115%; /* slightly above tooltip */
  right: 10px; /* arrow near right edge */
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent hsl(219 78% 11%) transparent;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* show tooltip on hover */
.help-tooltip:hover::after,
.help-tooltip:hover::before {
  opacity: 1;
}
.table-wrapper {
  width: 100%;
  overflow-x: auto; /* ✅ enables horizontal scroll */
  border-radius: 8px;
  border: 1px solid rgba(111, 151, 255, 0.2);
  padding-bottom: 50px;
}
.stocks-list {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-align: center;
}
.stocks-list thead th {
  position: relative;
  background-color: rgba(111, 151, 255, 0.2);
  padding: 20px 12px 20px 12px;
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid rgba(111, 151, 255, 0.3);
  white-space: nowrap;
}
.stocks-list tr {
  border-bottom: 1px solid rgba(111, 151, 255, 0.2);
}
.stocks-list tbody tr:hover {
  background-color: rgba(111, 151, 255, 0.08); /* ✅ hover effect */
}
.stocks-list td {
  padding: 20px 12px 20px 12px;
  vertical-align: middle;
  white-space: nowrap;
}
.mktcap {
  font-weight: bold;
}
.blurrow {
  filter: blur(2px) brightness(0.85) contrast(0.9);
  /*    filter: blur(3px);        Amount of blur */
  opacity: 0.6; /* Optional: make it slightly transparent */
  pointer-events: none; /* Optional: prevent interactions on blurred row */
  transition: filter 0.3s ease, opacity 0.3s ease; /* Smooth transition if you want */
  background-color: rgba(255, 255, 255, 0.05); /* subtle glow overlay */
}
.stocks-list th:first-child {
  position: sticky;
  left: 0;
  min-width: 100px;
  background: rgba(111, 151, 255, 0.2);
  z-index: 3;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
}
.stocks-list td:first-child {
  position: sticky;
  left: 0;
  min-width: 100px;
  z-index: 3;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
}
.country-selection-card {
  margin-bottom: 3rem;
  background: hsl(var(--card) / 0.5);
  border: 2px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  transition: border-color 0.2s;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.country-selection-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}
.country-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.country-select-icon {
  position: absolute;
  left: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  pointer-events: none;
  z-index: 1;
}
.country-select {
  width: 100%;
  position: relative;
  max-width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  font-size: 1rem;
  border: 2px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
}
.country-select:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1), var(--shadow-md);
}
.country-select option {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0.5rem;
}
.country-select::-ms-expand {
  display: none; /* hide default arrow for old Edge */
}
@media (max-width: 768px) {
  .country-select-wrapper {
    max-width: 100vw;
    overflow-x: hidden;
  }

  select.country-select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}
/* Confirmation Dialog */
.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease-out;
}

.dialog-content {
  background: var(--bg-secondary);
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  animation: scaleIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.dialog-header {
  text-align: center;
  margin-bottom: 2rem;
}

.dialog-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.highlight-number {
  color: #000a29;
  font-size: 3rem;
  font-weight: 900;
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dialog-description {
  font-size: 1rem;
  color: var(--text-tertiary);
  line-height: 1.6;
}
.dialog-body {
  text-align: center;
  margin-bottom: 2rem;
}
.dialog-footer {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.dialog-btn {
  display: inline-flex; /* make it a flex container */
  align-items: center; /* vertical centering */
  justify-content: center; /* horizontal centering */
  flex: 1;
  min-width: 150px;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}
/* Optional: Hover effect */
.filter-overlay {
  position: absolute;
  display: none;
  top: 100%; /* show below the header */
  left: 50%; /* center relative to <th> */
  transform: translateX(-50%); /* perfectly center */
  width: 320px; /* fixed width */
  background: #ffffff;
  border-radius: 0.5rem;
  box-sizing: border-box;
  padding: 1rem 0.75rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  z-index: 10;
  text-align: center;
  white-space: normal; /* allow wrapping */
}
th:hover .filter-overlay {
  display: flex;
  flex-direction: column; /* stack tooltip text vertically */
  align-items: center;
  justify-content: center;
}
.filter-overlay-inner {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: 100%;
  text-align: center;
}
.filter-overlay-head {
  color: #1e1e1e; /* white text */
  font-weight: 600; /* fw-bold */
  font-size: 1rem; /* fs-5 ≈ 1.25rem */
  text-align: center;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  word-wrap: break-word; /* text-wrap equivalent */
}
.filter-overlay-tail {
  margin-top: 0.5rem; /* mt-2 ≈ 0.5rem */
  font-weight: 400; /* fw-semibold */
  color: #6c757d; /* text-gray-600 */
  font-size: 0.875rem; /* fs-7 ≈ 14px */
  text-align: center;
  word-wrap: break-word; /* text-wrap */
}
.filter-overlay-tip {
  font-weight: 600; /* fw-semibold */
  color: #6c757d; /* text-muted (Bootstrap gray) */
  font-size: 0.75rem; /* fs-8 ≈ 12px */
  text-align: center;
  word-wrap: break-word; /* text-wrap */
}
@media (max-width: 576px) {
  .filter-overlay {
    width: 250px;
    transform: translateX(-50%);
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  .filter-overlay-head {
    font-size: 0.95rem;
  }
  .filter-overlay-tail {
    font-size: 0.8rem;
  }
  .filter-overlay-tip {
    font-size: 0.7rem;
  }
}
.preview-header {
  text-align: center;
  margin-bottom: 2rem; /* Compact from 3rem */
  animation: fade-in-up 0.8s ease-out;
}
.preview-title {
  font-size: 2rem; /* Compact from 2.5rem */
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem; /* Compact from 1.5rem */
  letter-spacing: -0.02em;
}
.preview-description {
  font-size: 1.125rem; /* Compact from 1.25rem */
  color: hsl(var(--muted-foreground));
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.6;
}
.preview-container {
  max-width: 95vw;
  margin: 0 auto;
  padding: 0 1rem;
}
.preview-card-icon {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--success));
}
.preview-card-description {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
}
.preview-edit-btn {
  padding: 0.5rem 1rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--primary) / 0.5);
  border-radius: calc(var(--radius) / 1.5);
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.preview-edit-btn:hover {
  background: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary));
}
.unlock-cta {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(
    90deg,
    hsl(var(--primary) / 0.05),
    hsl(var(--primary) / 0.1),
    hsl(var(--primary) / 0.05)
  );
  border-top: 2px solid hsl(var(--primary) / 0.3);
}
.unlock-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}
.unlock-subtitle {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}
.unlock-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.unlock-benefit {
  display: flex;
  gap: 1rem;
  text-align: left;
  padding: 1rem;
  background: hsl(var(--background));
  border-radius: calc(var(--radius) / 1.5);
  border: 1px solid hsl(var(--border));
  transition: all 0.3s;
}
.unlock-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.unlock-benefit-icon {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}
.unlock-benefit h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}
.unlock-benefit p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
.unlock-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: none;
  border-radius: calc(var(--radius) / 1.5);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}
.unlock-button:hover {
  background: hsl(var(--primary-light));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.unlock-button i {
  width: 1.25rem;
  height: 1.25rem;
}
.unlock-pricing {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
@media (max-width: 768px) {
  .preview-title {
    font-size: 1.25rem;
  }
  .preview-description {
    font-size: 0.8125rem;
  }
  .unlock-title {
    font-size: 1.25rem;
  }
  .unlock-subtitle {
    font-size: 0.875rem;
  }
  .unlock-button {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
/* Pricing Section */
.pricing-section {
  margin-top: var(--spacing-lg);
  background: hsl(var(--muted) / 0.3);
}
.pricing-hero {
  padding: 5rem 0 4rem;
  background: var(--gradient-accent);
  text-align: center;
  margin-top: 0;
}
@media (max-width: 768px) {
  .pricing-hero {
    padding: 5rem 1rem 3rem;
  }
}
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 0;
  padding-top: 1rem;
}
.country-card {
  position: relative;
  cursor: pointer;
  display: block;
}
.country-card.inactive {
  opacity: 0.5;
  pointer-events: none;
  border-color: none;
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}
.country-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.country-card .card-content {
  background: var(--gradient-card);
  border: 2px solid hsl(var(--border));
  border-radius: 12px;
  padding: 1rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  height: 100%;
  text-align: center;
}

.country-card:hover .card-content {
  border-color: hsl(var(--success));
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.country-card input[type="checkbox"]:checked ~ .card-content {
  background: hsl(var(--primary) / 0.2);
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.country-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
  position: relative;
}

.country-flag {
  font-size: 2rem;
}

.checkbox-indicator {
  width: 18px;
  height: 18px;
  border: 2px solid hsl(var(--border));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--background));
  transition: var(--transition-smooth);
  position: absolute;
  top: -4px;
  right: -4px;
}

.checkbox-indicator svg {
  width: 12px;
  height: 12px;
  color: hsl(var(--primary-foreground));
  opacity: 0;
  transform: scale(0);
  transition: var(--transition-smooth);
}

.country-card
  input[type="checkbox"]:checked
  ~ .card-content
  .checkbox-indicator {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
}

.country-card
  input[type="checkbox"]:checked
  ~ .card-content
  .checkbox-indicator
  svg {
  opacity: 1;
  transform: scale(1);
}

.country-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.country-price {
  font-size: 1rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.25rem;
}

.country-price span {
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}

.country-markets {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
@media (max-width: 768px) {
  .country-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem !important;
  }
  .country-card {
    padding: 0.5rem !important;
  }
  .country-card .card-content {
    padding: 0.5rem !important;
  }
  .country-flag {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.5rem !important;
  }

  .country-name {
    font-size: 0.875rem !important;
  }

  .country-price {
    font-size: 1rem !important;
  }

  .country-markets {
    font-size: 0.75rem !important;
  }
}
.pricing-tiers-section {
  background: hsl(var(--muted));
}
.billing-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: hsl(var(--secondary));
  border-radius: 8px;
  padding: 0.25rem;
}

.billing-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.billing-btn:hover {
  color: hsl(var(--foreground));
}

.billing-btn.active {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-sm);
}
@media (max-width: 650px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .header-content h3 {
        margin-bottom: 0;
    }
    .billing-toggle {
        align-self: flex-end; /* pushes toggle to the right */
    }
    .billing-btn {
        padding: 0.5rem 1rem; /* make buttons bigger on mobile */
        font-size: 0.9rem;
    }
}
.discount-badge {
  font-size: 0.6875rem;
  padding: 0.125rem 0.5rem;
  background: #65a30d;
  color: hsl(var(--success-foreground));
  border-radius: 100px;
  font-weight: 700;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1rem;
}

.tier-card {
  position: relative;
  background: var(--gradient-card);
  border: 2px solid hsl(var(--border));
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
.tier-card.inactive {
  opacity: 0.5;
  pointer-events: none;
  border-color: none;
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}
.tier-card:hover {
  border-color: hsl(var(--primary));
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.tier-card.tier-popular {
  /*  border-color: hsl(var(--warning));*/
  box-shadow: var(--shadow-xl);
  background: linear-gradient(
    135deg,
    hsl(var(--warning) / 0.03),
    hsl(var(--background))
  );
}

.popular-badge {
  position: absolute;
  top: -17px;
  left: 20%;
  transform: translateX(-50%);
  padding: 0.5rem 1.25rem;
  background: #65a30d;
  color: hsl(var(--success-foreground));
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.popular-badge svg {
  width: 14px;
  height: 14px;
}

.tier-header {
  text-align: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid hsl(var(--border));
}

.tier-header h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.375rem;
}

.tier-subtitle {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.tier-price {
  margin-top: 0.75rem;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-weight: 600;
}

.tier-features {
  list-style: none;
  margin-bottom: 1.25rem;
}

.tier-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
}

.tier-features li svg {
  width: 16px;
  height: 16px;
  color: hsl(var(--success));
  flex-shrink: 0;
}

.tier-button {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border: 2px solid hsl(var(--success));
  background: transparent;
  color: white;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: hsl(var(--success));
}

.tier-button:hover {
  background: hsl(var(--primary));
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-md);
  border: none;
}

.tier-button svg {
  width: 16px;
  height: 16px;
}

.tier-button-popular {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  border: none;
}
.tier-button-popular:hover {
  background: hsl(var(--success));
  color: white;
  border: none;
}
@media (max-width: 768px) {
  .tiers-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .tier-card {
    padding: 1.25rem !important;
  }
}
.price-calculator-section {
  margin: 0 auto;
  background: var(--gradient-accent);
  padding: var(--spacing-xl) 0;
  padding-top: 4rem;
  margin-top: 3rem;
}
.calculator-card {
  max-width: 700px;
  margin: 0 auto;
  background: hsl(var(--card));
  border: 2px solid hsl(var(--primary) / 0.2);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.calculator-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  text-align: center;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.calculator-title svg {
  width: 24px;
  height: 24px;
}
.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
  border-bottom: 1px solid hsl(var(--border));
}

.breakdown-label {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

.breakdown-value {
  font-size: 1rem;
  color: hsl(var(--foreground));
}

.discount-item {
  background: linear-gradient(
    90deg,
    hsl(var(--success) / 0.1),
    hsl(var(--success) / 0.03)
  );
  border-radius: 8px;
  padding: 0.5rem !important;
  border-bottom: 2px solid hsl(var(--success) / 0.3);
  animation: discount-glow 2s ease-in-out infinite;
}

@keyframes discount-glow {
  0%,
  100% {
    background: linear-gradient(
      90deg,
      hsl(var(--success) / 0.1),
      hsl(var(--success) / 0.03)
    );
  }
  50% {
    background: linear-gradient(
      90deg,
      hsl(var(--success) / 0.15),
      hsl(var(--success) / 0.05)
    );
  }
}

.discount-item .breakdown-label {
  color: hsl(var(--success));
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.0625rem;
}

.discount-item .breakdown-label svg {
  width: 18px;
  height: 18px;
}

.discount-value {
  color: hsl(var(--success)) !important;
  font-weight: 900 !important;
  font-size: 1.25rem !important;
}

.separator {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    hsl(var(--primary)),
    transparent
  );
  margin: 1rem 0;
}

.total-row {
  border: none !important;
}

.total-row .breakdown-label {
  font-size: 1rem;
  color: hsl(var(--primary));
  font-weight: 600;
}

.total-price {
  font-size: 1.25rem !important;
  color: hsl(var(--primary)) !important;
  font-weight: 700 !important;
}

.total-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 2px solid hsl(var(--primary));
}

.total-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.total-amount-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.total-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: hsl(var(--primary));
  letter-spacing: -0.03em;
}
.total-period {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
}

/* added for index page */
[data-theme="dark"] .bg-card\/50 {
    background-color: hsl(226.96deg 69.7% 6.47%);
}
[data-theme="dark"] .border-border\/30 {
    border-color: hsl(220 12% 14% / .3);
}
[data-theme="dark"] .b_hover{
  color: hsl(220 10% 90%);
}
.step-circle {
      position: relative;
      cursor: pointer;
      transition: transform 0.2s ease;
    }
    .get_text{
          background-color: hsl( 38 70% 55%);
    }
.text_color1{
      color: hsl( 38 70% 55%);

    }
[data-theme="dark"] .bg_1{
  background-color: hsl(220 15% 6%);
}
.step-circle:hover {
  transform: scale(1.05);
}

.step-circle::before,
.step-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgb(245, 158, 11);
  opacity: 0;
  pointer-events: none;
}

/* Hover Effect - Multiple Ripples */
.step-circle:hover::before {
  animation: ripple 1.5s ease-out infinite;
}

.step-circle:hover::after {
  animation: ripple 1.5s ease-out 0.5s infinite;
}

/* Click Effect - Single Strong Ripple */
.step-circle.clicked::before {
  animation: ripple-click 1s ease-out;
}

.step-circle.clicked::after {
  animation: ripple-click 1s ease-out 0.2s;
}

@keyframes ripple {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@keyframes ripple-click {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
    border-width: 3px;
  }
  50% {
    opacity: 0.6;
    border-width: 2px;
  }
  100% {
    width: 250%;
    height: 250%;
    opacity: 0;
    border-width: 1px;
  }
}

/* Active State */
.step-circle.active {
  background: rgba(245, 158, 11, 0.2) !important;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.step-circle.active .step-number {
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.8);
}
 /* Gradient text animation */
.gradient-text {
  background: linear-gradient(90deg, #d97706, #f59e0b, #fbbf24, #f59e0b, #d97706);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* Animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-600 { animation-delay: 0.6s; }
.delay-800 { animation-delay: 0.8s; }

/* Hide elements before animation */
.animate-on-scroll {
  opacity: 0;
}

/* Show when in view */
.animate-on-scroll.in-view {
  opacity: 1;
}

/* Apply animations only when in view */
.animate-on-scroll.in-view.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll.in-view.animate-fadeInLeft {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-on-scroll.in-view.animate-fadeInRight {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-on-scroll.in-view.animate-scaleIn {
  animation: scaleIn 0.6s ease-out forwards;
}
@media (max-width: 639px) {
  .mobile-search-expand {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    display: flex !important;
    z-index: 9999 !important;
  }
}
.country-option {
    cursor: pointer;
}

.country-option.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
  .font-mono { font-family: 'JetBrains Mono', monospace; }

  /* Bottom accent bar — colour set via --bar-color CSS variable from _pr */
  .pr-tile { position: relative; overflow: hidden; }
  .pr-tile::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--bar-color, #84cc16);
  }

  /* Card hover lift */
  .stock-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .stock-card:hover { transform: translateY(-4px); }
