:root {
  /* Backgrounds */
  --bg-page: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-section: rgba(0, 0, 0, 0.02);
  
  /* Text */
  --text-primary: rgb(0, 55, 32);
  --text-body: rgb(14, 15, 12);
  --text-secondary: rgb(131, 146, 140);
  --text-muted: rgb(175, 183, 180);
  
  /* Borders */
  --border-light: rgba(0, 0, 0, 0.1);
  --border-medium: rgba(0, 0, 0, 0.2);
  
  /* Brand Colors */
  --accent-primary: #8FEC78;
  --accent-strong: #81DD67;
  --accent-text: rgb(13, 121, 22);
  --accent-wash: rgba(148, 242, 127, 0.1);

  /* Gradients */
  --gradient-hero: radial-gradient(at 53% 78%, hsla(60,100%,50%,0.3) 0px, transparent 50%), 
                   radial-gradient(at 71% 91%, hsla(108,100%,50%,0.3) 0px, transparent 50%), 
                   radial-gradient(at 31% 91%, hsla(30,100%,50%,0.17) 0px, transparent 50%);
  --gradient-button: linear-gradient(to bottom right, var(--accent-primary), var(--accent-strong));
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-page);
  color: var(--text-body);
  overflow-x: hidden;
}

/* Ensure all container elements don't overflow */
* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  max-width: 100%;
  overflow-x: hidden;
}

/* Bootstrap Override - Primary Button */
.btn-primary {
  background: var(--gradient-button);
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0px 4px 8px rgba(148, 242, 127, 0.3);
  background: var(--gradient-button);
}

.btn-primary:active {
  transform: scale(0.98);
}

/* Bootstrap Override - Secondary Button */
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--border-medium);
  color: var(--text-primary);
}

/* Navigation */
.nav-header {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 0.5px solid var(--border-light);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1rem;
}

/* Desktop navbar style */
@media (min-width: 992px) {
  .nav-header {
    border-radius: 9999px;
    margin: 1.5rem;
  }
}

/* Mobile navbar style */
@media (max-width: 991px) {
  .nav-header {
    border-radius: 0;
    margin: 0;
    padding: 1rem;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  color: var(--accent-text);
}

.logo-text {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

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

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

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  padding: 6px 12px !important;
  border-radius: 9999px;

/* Hero CTA Responsive */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Mobile hero CTA buttons */
@media (max-width: 575px) {
  .hero-cta .btn {
    width: 100%;
  }
}


/* Meta Verified Section */
.meta-verified-section {
  background: var(--bg-section);
}

.verified-img {
  max-width: 500px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-wash);
  color: var(--accent-text);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--accent-primary);
}

.verified-title {
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--text-primary);
}

.verified-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.verified-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.verified-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-body);
  font-size: 1rem;
  font-weight: 500;
}

.verified-feature-item svg {
  color: var(--accent-text);
  flex-shrink: 0;
}

/* How It Works Section */
.how-it-works-section {
  background: var(--bg-page);
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-primary);
}

.step-number {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--gradient-button);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(143, 236, 120, 0.3);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--accent-wash);
  border-radius: 16px;
  color: var(--accent-text);
  margin: 0 auto;
}

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

.step-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Who Is This For Section */
.who-is-this-for-section {
  background: var(--bg-section);
}

.target-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.target-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-primary);
}

.target-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--accent-wash);
  border-radius: 20px;
  color: var(--accent-text);
  margin: 0 auto;
}

.target-title {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.target-description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}


  transition: all 0.2s ease;
}

.nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-primary) !important;
}

/* Hero Section */
.hero-section {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 1rem 3rem;
}

/* Mobile hero adjustments */
@media (max-width: 767px) {
  .hero-section {
    padding: 5rem 1rem 2rem;
    min-height: auto;
  }
  
  .hero-content {
    text-align: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-wash);
  color: var(--accent-text);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--accent-primary);
}

.hero-title {
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-secondary);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.trust-icon {
  color: var(--accent-text);
  flex-shrink: 0;
}

.hero-img {
  max-width: 600px;
}

/* Sections */
.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-weight: 600;
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Features */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--border-medium);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-wash);
  border-radius: 12px;
  color: var(--accent-text);
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--text-secondary);
  margin: 0;
}

/* Why Choose Us */
.why-choose-section {
  background: var(--bg-section);
}

.why-choose-card {

/* Cloud Charges Note in Pricing */
.cloud-charges-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0.5rem 0 1rem;
  text-align: center;
}

.cloud-charges-note a {
  color: var(--accent-text);
  text-decoration: none;
  font-weight: 500;
}

.cloud-charges-note a:hover {
  text-decoration: underline;
}

  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.2s ease;
  height: 100%;
}

.why-choose-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-wash);
  border-radius: 12px;
  color: var(--accent-text);
  margin: 0 auto 1rem;
}

.icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.comparison-img {
  max-width: 800px;
}

/* Offer Banner */
.offer-banner {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-strong) 100%);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(143, 236, 120, 0.3);
}

.offer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.offer-flag {
  font-size: 2rem;
}

.offer-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price-large {
  font-size: 3rem;
  font-weight: 700;
  color: white;
}

.price-period {
  font-size: 1.25rem;
  color: white;
  opacity: 0.9;
}

.offer-original {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.price-strike {
  font-size: 1.25rem;
  color: white;
  opacity: 0.7;
  text-decoration: line-through;
}

.price-normal {
  font-size: 1rem;
  color: white;
  opacity: 0.8;
}

/* Countdown Timer */
.countdown-timer-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  justify-content: center;
}

/* Mobile timer adjustments */
@media (max-width: 767px) {
  .countdown-timer {
    padding: 1rem;
    gap: 0.5rem;
  }
  
  .timer-label {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  
  .timer-values {
    width: 100%;
    justify-content: center;
  }
  
  .timer-unit {
    min-width: 50px;
  }
  
  .timer-number {
    font-size: 1.25rem;
  }
  
  .timer-separator {
    font-size: 1.25rem;
  }
}

.timer-icon {
  color: white;
  flex-shrink: 0;
}

.timer-label {
  font-weight: 600;
  color: white;
  font-size: 1rem;
}

.timer-values {
  gap: 0.5rem;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.timer-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.timer-text {
  font-size: 0.75rem;
  color: white;
  opacity: 0.9;
}

.timer-separator {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.edit-timer-btn {
  border-radius: 9999px;
  padding: 0.5rem 0.75rem;
}

.timer-edit-card {
  top: 100%;
  right: 0;
  margin-top: 1rem;
  z-index: 10;
  min-width: 300px;
}

/* Pricing Cards */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.2s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border: 2px solid var(--accent-primary);
  box-shadow: 0 4px 12px rgba(143, 236, 120, 0.2);
  transform: scale(1.02);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-button);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-name {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.pricing-original {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  text-align: center;
  display: block;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin: 1rem 0;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.price-period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-body);
  margin-bottom: 0.5rem;
}

.feature-check {
  color: var(--accent-text);
  flex-shrink: 0;
}

/* FAQ Accordion - Bootstrap Override */
.accordion-button {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
}

.accordion-button:not(.collapsed) {
  background: var(--bg-card);
  color: var(--text-primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--border-light);
}

.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Support Cards */
.support-card {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.support-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.support-icon {
  color: var(--accent-text);
}

.support-title {
  font-weight: 600;
  color: var(--text-primary);
}

.support-description {
  font-size: 0.875rem;
}

.support-img {
  max-width: 800px;
}

/* Final CTA */
.final-cta-section {
  background: var(--bg-section);
}

.final-cta-title {
  font-weight: 700;
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--text-primary);
}

.final-cta-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.875rem;
}

.footer-heading {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links {
  margin: 0;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.social-proof {
  gap: 0.25rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .nav-header {
    margin: 0;
    border-radius: 0;
  }

  .hero-section {
    padding: 5rem 1rem 3rem;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .countdown-timer {
    padding: 1rem;
  }
  
  /* Ensure buttons are full width on mobile */
  .hero-cta .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .nav-actions {
    width: 100%;
    margin-top: 1rem;
  }
  
  .nav-actions .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 768px) {
  .trust-badges {
    flex-direction: column;
  }

  .timer-values {
    gap: 0.25rem;
  }

  .offer-banner {
    padding: 2rem 1rem;
    margin: 2rem 1rem;
  }
  
  .price-large {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  /* Make all images responsive */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Adjust padding for all sections on mobile */
  .features-section,
  .why-choose-section,
  .pricing-section,
  .faq-section,
  .support-section,
  .final-cta-section,
  .meta-verified-section,
  .how-it-works-section,
  .who-is-this-for-section {
    padding: 3rem 1rem !important;
  }
  
  /* Fix timer edit card position on mobile */
  .timer-edit-card {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    max-width: 90vw;
  }
  
  /* New sections responsive */
  .verified-img {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  
  .verified-title {
    font-size: 1.5rem;
  }
  
  .verified-description {
    font-size: 1rem;
  }
  
  .step-icon,
  .target-icon {
    width: 64px;
    height: 64px;
  }
  
  .step-icon svg,
  .target-icon svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  /* Extra small devices */
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .offer-title {
    font-size: 1.25rem;
  }
  
  .countdown-timer {
    flex-direction: column;
  }
  
  .timer-values {
    width: 100%;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
