/* ==========================================
   CSS Custom Properties & Design System
   ========================================== */
:root {
  --primary-green: #6fd943;        /* Bright Green #6fd943 */
  --primary-green-hover: #5ec632;  /* Slightly darker green */
  --primary-green-light: #f1fcf0;  /* Green-50 light tint */
  --primary-green-border: #c4f3b0; /* Green-200 border */
  --primary-green-dark: #3b8e15;   /* Green-700 dark text */
  
  --text-dark: #0f172a;            /* Slate-900 */
  --text-medium: #475569;          /* Slate-600 */
  --text-light: #94a3b8;           /* Slate-400 */
  
  --bg-body: #f8fafc;              /* Slate-50 */
  --bg-card: #ffffff;
  --border-color: #f1f5f9;         /* Slate-100 */
  --border-color-medium: #e2e8f0;  /* Slate-200 */
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -4px rgba(0, 0, 0, 0.03);
  --shadow-premium: 0 20px 40px -15px rgba(34, 197, 94, 0.08), 0 15px 25px -10px rgba(0, 0, 0, 0.03);
  --shadow-popular: 0 25px 50px -12px rgba(34, 197, 94, 0.15), 0 10px 20px -8px rgba(0, 0, 0, 0.04);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Inter', sans-serif;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-body);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
/* ==========================================
   Global Resets & Layout
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Decorative Background Blobs */
.bg-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
}

.bg-decor-1 {
  top: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  background-color: #bbf7d0; /* light green */
}

.bg-decor-2 {
  top: 400px;
  left: -100px;
  width: 350px;
  height: 350px;
  background-color: #dcfce7; /* lighter green */
}

/* ==========================================
   Header Section
   ========================================== */
.header {
  max-width: 800px;
  margin: 40px auto 30px auto;
  text-align: center;
  padding: 0 20px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--primary-green-dark);
  text-decoration: none;
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-icon {
  width: 14px;
  height: 14px;
  color: var(--text-light);
}

.main-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.main-title .highlight {
  color: var(--primary-green-dark);
  position: relative;
  display: inline-block;
}

.main-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-green-border);
  z-index: -1;
  border-radius: 2px;
}

.subtitle {
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 32px;
}

/* Billing Toggle styles */
.toggle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.toggle-wrapper {
  background-color: var(--border-color-medium);
  padding: 4px;
  border-radius: 9999px;
  display: inline-flex;
  position: relative;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.toggle-btn {
  background: none;
  border: none;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-family);
  color: var(--text-medium);
  cursor: pointer;
  border-radius: 9999px;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.toggle-btn.active {
  background-color: var(--primary-green);
  color: white;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.2);
}

.save-tag {
  background-color: #dcfce7;
  color: var(--primary-green-dark);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 9999px;
  font-weight: 700;
  transition: var(--transition-fast);
}

.toggle-btn.active .save-tag {
  background-color: white;
  color: var(--primary-green-dark);
}

.save-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--primary-green-dark);
  font-weight: 500;
  opacity: 0.9;
}

.arrow-icon {
  width: 14px;
  height: 14px;
  transform: rotate(-15deg);
}

/* ==========================================
   Pricing Cards Grid
   ========================================== */
.pricing-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 80px 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 30px;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color-medium);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary-green-border);
}

/* Featured / Popular Card Customization */
.pricing-card.popular {
  border: 1px solid var(--primary-green-border);
}

/* Selected Pricing Card State */
.pricing-card.selected {
  border: 2px solid var(--primary-green) !important;
  box-shadow: var(--shadow-popular) !important;
  transform: scale(1.02);
}

.pricing-card.selected:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px -15px rgba(34, 197, 94, 0.22) !important;
}

.popular-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-green);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
  z-index: 2;
  white-space: nowrap;
}

.ribbon-icon {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* Card Header elements */
.card-header {
  text-align: center;
  margin-bottom: 24px;
      background-color:#ffffff !important;
    border-bottom:  none !important;
}

.badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.plan-badge {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-green-dark);
  background-color: var(--primary-green-light);
  padding: 4px 10px;
  border-radius: 6px;
}

.status-badge {
  font-size: 11px;
  font-weight: 600;
  color: #15803d;
  background-color: #dcfce7;
  padding: 3px 8px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.status-icon {
  width: 12px;
  height: 12px;
}

.plan-desc {
  font-size: 13px;
  color: var(--text-medium);
  margin-bottom: 16px;
}

.price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: var(--text-dark);
}

.price-symbol {
  font-size: 24px;
  font-weight: 700;
  align-self: flex-start;
  margin-right: 2px;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  transition: opacity 0.15s ease-out, transform 0.15s ease-out;
}

.price-period {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-medium);
  margin-left: 2px;
}

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

.trial-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-green-dark);
  background-color: var(--primary-green-light);
  border: 1px solid var(--primary-green-border);
  padding: 4px 12px;
  border-radius: 9999px;
}

.card-divider {
  border: 0;
  height: 1px;
  background-color: var(--border-color);
  margin-bottom: 24px;
}

/* Card Features list */
.card-features {
  flex-grow: 1;
  margin-bottom: 24px;
}

.card-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  text-align: left;
}

.feature-item.active {
  color: var(--text-dark);
}

.feature-item.inactive {
  color: var(--text-light);
  text-decoration: line-through;
  opacity: 0.7;
}

.feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.feature-icon.check {
  color: var(--primary-green);
  background-color: var(--primary-green-light);
}

.feature-icon.x {
  color: var(--text-light);
  background-color: var(--border-color);
}

/* Card Footer elements */
.card-footer {
  text-align: center;
  margin-top: auto;
    background-color:#ffffff !important;
    border-bottom:  none !important;
}

.plan-button {
  width: 100%;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-family);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-normal);
  display: inline-block;
  text-decoration: none;
}

.primary-solid-btn {
  background-color: var(--primary-green);
  color: white;
  border: none;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

.primary-solid-btn:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.primary-outline-btn {
  background-color: white;
  color: var(--primary-green-dark);
  border: 2px solid var(--primary-green);
}

.primary-outline-btn:hover {
  background-color: var(--primary-green-light);
  color: var(--primary-green-hover);
  transform: translateY(-2px);
}

.disabled-btn {
  background-color: #f1f5f9;
  color: var(--text-light);
  border: 1px solid var(--border-color-medium);
  cursor: not-allowed;
}

/* Active Selected Button Styling */
.plan-button.selected-btn {
  background-color: var(--primary-green);
  color: white;
  border: 2px solid var(--primary-green);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.plan-button.selected-btn:hover {
  background-color: var(--primary-green-hover);
  border-color: var(--primary-green-hover);
  transform: translateY(-2px);
}

.btn-check-icon {
  width: 16px;
  height: 16px;
}

.btn-subtext {
  font-size: 11px;
  color: var(--text-medium);
  margin-top: 8px;
}

/* Upgrade subnotice below cards */
.upgrade-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-medium);
  margin: 32px 0 50px 0;
  text-align: center;
}

.shield-icon {
  width: 16px;
  height: 16px;
  color: var(--primary-green);
}

/* ==========================================
   Trust Statistics Banner
   ========================================== */
.trust-stats {
  background-color: white;
  border: 1px solid var(--border-color-medium);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .trust-stats {
    grid-template-columns: repeat(5, 1fr);
  }
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.stat-icon-wrapper {
  background-color: var(--primary-green-light);
  color: var(--primary-green-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon {
  width: 18px;
  height: 18px;
}

.stat-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.stat-text p {
  font-size: 12px;
  color: var(--text-medium);
}

/* ==========================================
   Guarantee & Payment Methods Bar
   ========================================== */
.guarantee-bar {
  background-color: white;
  border: 1px solid var(--border-color-medium);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .guarantee-bar {
    flex-direction: row;
  }
}

.guarantee-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--text-medium);
}

.green-check {
  width: 18px;
  height: 18px;
  color: var(--primary-green);
  fill: var(--primary-green-light);
}

.guarantee-text strong {
  color: var(--text-dark);
}

.guarantee-text .divider {
  color: var(--text-light);
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.cards-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-svg {
  display: inline-block;
  width: 42px;
  height: 28px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.payment-svg:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* ==========================================
   FAQ Accordion Section
   ========================================== */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.faq-subtitle {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: white;
  border: 1px solid var(--border-color-medium);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: var(--primary-green-border);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  font-family: var(--font-family);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary-green-dark);
}

.faq-arrow {
  width: 20px;
  height: 20px;
  color: var(--text-medium);
  transition: transform var(--transition-normal), color var(--transition-fast);
}

/* Opened FAQ style */
.faq-item.active {
  border-color: var(--primary-green);
}

.faq-item.active .faq-question {
  color: var(--primary-green-dark);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary-green-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal) ease-out;
  padding: 0 24px;
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
}

/* ==========================================
   Utility Classes & Pricing Tweak animation
   ========================================== */
.price-pop {
  animation: pricePulse 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pricePulse {
  0% {
    transform: scale(0.92);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/* ==========================================================================
   Design Adjustments (Black and Lime Green Borders/Toggle Theme)
   ========================================================================== */
.toggle-wrapper {
  border: 2px solid #000000;
  box-shadow: none;
  background-color: #ffffff;
}

.toggle-btn {
  font-weight: 700;
  color: #000000;
}

.toggle-btn.active {
  background-color: #6fd943; /* Theme green #6fd943 */
  color: #000000;
  box-shadow: none;
}

.pricing-card {
  border: 2px solid #000000 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  border-color: #000000 !important;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.selected {
  border: 3.5px solid #6fd943 !important; /* Selected card gets a theme green border */
  box-shadow: 0 12px 30px rgba(111, 217, 67, 0.15) !important;
  transform: scale(1.02);
}

.pricing-card.selected:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(111, 217, 67, 0.25) !important;
}

/* Original price crossed-out and Let's Talk stylings */
.original-price {
  font-size: 18px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 8px;
  align-self: center;
  font-weight: 500;
}

.lets-talk-text {
  font-size: 32px !important;
  font-weight: 800;
  color: var(--text-dark);
}



