/* CSS Variables - Value Professional Green Color Palette */
:root {
  --vv-primary: #059669;
  --vv-accent: #10B981;
  --vv-dark: #374151;
  --vv-success: #047857;
  --vv-background: #F0FDF4;
  --vv-text: #111827;
  --vv-text-light: #6B7280;
  --vv-border: #D1FAE5;
  --vv-white: #FFFFFF;
  --vv-radius: 12px;
  --vv-shadow: 0 8px 24px rgba(5, 150, 105, 0.08);
  --vv-shadow-hover: 0 12px 32px rgba(5, 150, 105, 0.15);
  --vv-transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--vv-text);
  background-color: var(--vv-white);
  font-variant-numeric: tabular-nums;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
  color: var(--vv-text-light);
  line-height: 1.6;
  font-size: 1rem;
}

/* Enhanced readability for small text */
.small-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.medium-text {
  font-size: 1.1rem;
  line-height: 1.6;
}

.large-text {
  font-size: 1.25rem;
  line-height: 1.6;
}

/* Container and Grid */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
}

.section-header h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, var(--vv-primary) 0%, var(--vv-accent) 100%);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  color: var(--vv-text-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: var(--vv-radius);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: var(--vv-transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--vv-primary);
  color: var(--vv-white);
  border-color: var(--vv-primary);
}

.btn-primary:hover {
  background-color: var(--vv-dark);
  border-color: var(--vv-dark);
  transform: translateY(-2px);
  box-shadow: var(--vv-shadow-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--vv-primary);
  border-color: var(--vv-primary);
}

.btn-secondary:hover {
  background-color: var(--vv-primary);
  color: var(--vv-white);
  transform: translateY(-2px);
  box-shadow: var(--vv-shadow-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--vv-text);
  border-color: var(--vv-border);
}

.btn-outline:hover {
  background-color: var(--vv-background);
  border-color: var(--vv-text);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--vv-border);
  z-index: 1000;
  transition: var(--vv-transition);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  transition: var(--vv-transition);
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo h2 {
  color: var(--vv-text);
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: -0.02em;
  position: relative;
}

.logo h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--vv-primary) 0%, var(--vv-accent) 100%);
  border-radius: 1px;
}

.nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--vv-text);
  font-weight: 500;
  transition: var(--vv-transition);
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--vv-primary);
}

.header-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

.header-cta .btn {
  font-size: 0.875rem;
  padding: 10px 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--vv-text);
  border-radius: 3px;
  transition: var(--vv-transition);
  transform-origin: 1px;
}

.mobile-menu-toggle.active span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu-toggle.active span:last-child {
  transform: rotate(-45deg);
}

/* Mobile Menu Close Button */
.mobile-menu-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--vv-text);
  cursor: pointer;
  z-index: 1001;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--vv-background);
  box-shadow: var(--vv-shadow);
  transition: var(--vv-transition);
}

.mobile-menu-close:hover {
  background-color: var(--vv-primary);
  color: var(--vv-white);
  transform: scale(1.1);
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

/* Hero Section */
.hero {
  padding-top: 120px;
  background: linear-gradient(135deg, var(--vv-background) 0%, var(--vv-white) 100%);
}

.hero-content {
  grid-column: span 6;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--vv-text);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--vv-text-light);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.875rem;
  color: var(--vv-text-light);
  font-style: italic;
}

.hero-trust {
  grid-column: span 6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--vv-white);
  border-radius: var(--vv-radius);
  box-shadow: var(--vv-shadow);
  transition: var(--vv-transition);
}

.trust-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--vv-shadow-hover);
}

.trust-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  color: var(--vv-text);
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.trust-text span {
  color: var(--vv-text-light);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* About Section */
.about {
  background-color: var(--vv-background);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--vv-white);
  border-radius: var(--vv-radius);
  box-shadow: var(--vv-shadow);
  transition: var(--vv-transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vv-shadow-hover);
  border-left: 4px solid var(--vv-primary);
}

.about-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-card h3 {
  color: var(--vv-text);
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--vv-text-light);
  font-size: 1rem;
  line-height: 1.6;
}

/* Resources Section */
.resources {
  background-color: var(--vv-background);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.resource-card {
  padding: 2rem;
  background-color: var(--vv-white);
  border-radius: var(--vv-radius);
  box-shadow: var(--vv-shadow);
  text-align: center;
  transition: var(--vv-transition);
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vv-shadow-hover);
  border-left: 4px solid var(--vv-primary);
}

.resource-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.resource-card h3 {
  color: var(--vv-text);
  margin-bottom: 1rem;
}

.resource-card p {
  color: var(--vv-text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* Topics Section */
.topics {
  background-color: var(--vv-background);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.topic-card {
  padding: 2rem;
  background-color: var(--vv-white);
  border-radius: var(--vv-radius);
  box-shadow: var(--vv-shadow);
  transition: var(--vv-transition);
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vv-shadow-hover);
  border-left: 4px solid var(--vv-primary);
}

.topic-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.topic-card h3 {
  color: var(--vv-text);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.topic-card p {
  color: var(--vv-text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.topics-cta {
  text-align: center;
}

/* Community Section */
.community {
  background-color: var(--vv-background);
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 2rem;
  background-color: var(--vv-white);
  border-radius: var(--vv-radius);
  box-shadow: var(--vv-shadow);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--vv-primary);
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  color: var(--vv-text-light);
  font-weight: 500;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.toggle-label {
  font-weight: 500;
  color: var(--vv-text);
}

.save-badge {
  background-color: var(--vv-success);
  color: var(--vv-white);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--vv-border);
  transition: var(--vv-transition);
  border-radius: 30px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: var(--vv-white);
  transition: var(--vv-transition);
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--vv-primary);
}

input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.plan-card {
  position: relative;
  background-color: var(--vv-white);
  border-radius: var(--vv-radius);
  padding: 2rem;
  box-shadow: var(--vv-shadow);
  transition: var(--vv-transition);
  border: 2px solid transparent;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vv-shadow-hover);
}

.plan-card.popular {
  border-color: var(--vv-primary);
  transform: scale(1.05);
}

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

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--vv-primary);
  color: var(--vv-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-header h3 {
  color: var(--vv-text);
  margin-bottom: 0.5rem;
}

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

.plan-price {
  text-align: center;
  margin-bottom: 2rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vv-primary);
  font-variant-numeric: tabular-nums;
}

.price-term {
  color: var(--vv-text-light);
  font-size: 1rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.5rem 0;
  color: var(--vv-text-light);
  position: relative;
  padding-left: 1.5rem;
}

.plan-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--vv-success);
  font-weight: bold;
}

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

.plan-disclaimer {
  text-align: center;
  color: var(--vv-text-light);
  font-size: 0.875rem;
}

/* Results Section */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.result-card {
  background-color: var(--vv-white);
  padding: 2rem;
  border-radius: var(--vv-radius);
  box-shadow: var(--vv-shadow);
  text-align: center;
}

.result-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vv-primary);
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.result-label {
  color: var(--vv-text-light);
  font-size: 0.875rem;
  font-weight: 500;
}

.benchmark-info {
  background-color: var(--vv-background);
  padding: 1.5rem;
  border-radius: var(--vv-radius);
  margin-bottom: 2rem;
  text-align: center;
}

.benchmark-info p {
  margin: 0;
  color: var(--vv-text-light);
  font-size: 0.875rem;
}

.risk-disclaimer {
  background-color: #F0FDF4;
  border: 1px solid #D1FAE5;
  border-radius: var(--vv-radius);
  padding: 2rem;
  text-align: center;
}

.risk-disclaimer h3 {
  color: #047857;
  margin-bottom: 1rem;
}

.risk-disclaimer p {
  color: #064E3B;
  margin: 0;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--vv-background);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--vv-white);
  padding: 2rem;
  border-radius: var(--vv-radius);
  box-shadow: var(--vv-shadow);
  transition: var(--vv-transition);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--vv-shadow-hover);
  border-left: 4px solid var(--vv-primary);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--vv-text);
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.6;
}

.testimonial-author strong {
  color: var(--vv-text);
  font-weight: 600;
}

.testimonial-author span {
  color: var(--vv-text-light);
  font-size: 0.875rem;
  display: block;
  margin-top: 0.25rem;
}

/* FAQs Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--vv-border);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--vv-text);
  transition: var(--vv-transition);
  line-height: 1.4;
}

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

.faq-icon {
  font-size: 1.5rem;
  color: var(--vv-primary);
  transition: var(--vv-transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 1.5rem 0;
  margin: 0;
  color: var(--vv-text-light);
  font-size: 1rem;
  line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, var(--vv-primary) 0%, var(--vv-dark) 100%);
  color: var(--vv-white);
  text-align: center;
}

.newsletter-content h2 {
  color: var(--vv-white);
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--vv-radius);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--vv-white);
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--vv-white);
  background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form .btn-primary {
  background-color: var(--vv-white);
  color: var(--vv-primary);
  border-color: var(--vv-white);
  white-space: nowrap;
}

.newsletter-form .btn-primary:hover {
  background-color: var(--vv-background);
  color: var(--vv-primary);
}

.newsletter-disclaimer {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-top: 1rem;
}

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

/* Contact Section */
.contact {
  background-color: var(--vv-background);
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-container {
  background-color: var(--vv-white);
  padding: 2rem;
  border-radius: var(--vv-radius);
  box-shadow: var(--vv-shadow);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--vv-text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--vv-border);
  border-radius: var(--vv-radius);
  font-size: 1rem;
  transition: var(--vv-transition);
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--vv-primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.contact-info h3 {
  color: var(--vv-text);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: var(--vv-background);
  border-radius: var(--vv-radius);
  border-left: 4px solid var(--vv-primary);
}

.contact-item strong {
  color: var(--vv-text);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-item a {
  color: var(--vv-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--vv-transition);
}

.contact-item a:hover {
  text-decoration: underline;
}

.response-time {
  color: var(--vv-text-light);
  font-style: italic;
  text-align: center;
  margin: 0;
}

.footer-contact {
  margin-top: 1rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--vv-transition);
}

.footer-contact a:hover {
  color: var(--vv-white);
}

/* Footer */
.footer {
  background-color: var(--vv-dark);
  color: var(--vv-white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--vv-white);
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: var(--vv-transition);
}

.footer-section a:hover {
  color: var(--vv-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background-color: var(--vv-white);
  margin: 2% auto;
  padding: 0;
  border-radius: 20px;
  width: 95%;
  max-width: 480px;
  max-height: 95vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.4s ease;
  position: relative;
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  text-align: center;
  padding: 2.5rem 2rem 1.5rem;
  background: linear-gradient(135deg, var(--vv-primary) 0%, var(--vv-dark) 100%);
  color: var(--vv-white);
  border-radius: 20px 20px 0 0;
  position: relative;
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.modal-header h3 {
  margin: 0 0 0.5rem 0;
  color: var(--vv-white);
  font-size: 1.5rem;
  font-weight: 700;
}

.modal-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 1rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--vv-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--vv-transition);
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.modal-body {
  padding: 2rem;
}

/* Modal Benefits */
.modal-benefits {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--vv-background);
  border-radius: 12px;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.benefit-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.benefit-item span:last-child {
  font-size: 0.875rem;
  color: var(--vv-text-light);
  font-weight: 500;
}

/* Enhanced Form Styles */
.newsletter-form-modal .form-group {
  margin-bottom: 1.5rem;
}

.newsletter-form-modal label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--vv-text);
  font-size: 0.9rem;
}

.newsletter-form-modal input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--vv-border);
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--vv-transition);
  background-color: var(--vv-white);
}

.newsletter-form-modal input:focus {
  outline: none;
  border-color: var(--vv-primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
  transform: translateY(-1px);
}

.newsletter-form-modal input::placeholder {
  color: var(--vv-text-light);
}

/* Enhanced Checkbox */
.newsletter-form-modal .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--vv-text-light);
}

.newsletter-form-modal .checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--vv-primary);
}

.newsletter-form-modal .checkbox-label a {
  color: var(--vv-primary);
  text-decoration: none;
  font-weight: 500;
}

.newsletter-form-modal .checkbox-label a:hover {
  text-decoration: underline;
}

/* Enhanced Button */
.btn-large {
  width: 100%;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  transition: var(--vv-transition);
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.btn-icon {
  font-size: 1.2rem;
  transition: var(--vv-transition);
}

.btn-large:hover .btn-icon {
  transform: translateX(3px);
}

.newsletter-note {
  text-align: center;
  color: var(--vv-text-light);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}

/* Form Styles */
.lead-form {
  padding: 2rem;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--vv-text);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--vv-border);
  border-radius: var(--vv-radius);
  font-size: 1rem;
  transition: var(--vv-transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--vv-primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-group small {
  display: block;
  margin-top: 0.25rem;
  color: var(--vv-text-light);
  font-size: 0.875rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  flex-shrink: 0;
}

.checkbox-label a {
  color: var(--vv-primary);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.form-buttons {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.form-buttons .btn {
  flex: 1;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 60px;
  height: 60px;
  background-color: var(--vv-success);
  color: var(--vv-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.success-message h3 {
  color: var(--vv-text);
  margin-bottom: 1rem;
}

.success-message p {
  color: var(--vv-text-light);
  margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 24px;
  }
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content,
  .hero-trust {
    grid-column: span 1;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .topics-grid {
    grid-template-columns: 1fr;
  }
  
  .community-stats {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .topics-grid {
    grid-template-columns: 1fr;
  }
  
  .community-stats {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  /* Tablet typography */
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .section-header p {
    font-size: 1.125rem;
  }
  
  .logo-img {
    height: 36px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  
  h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .section-header p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  /* Mobile Header */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-content {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }
  
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--vv-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: var(--vv-shadow);
  }
  
  .nav.active {
    left: 0;
  }
  
  .nav.active .mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--vv-text);
  }
  
  .header-cta {
    display: none;
  }
  
  .hero {
    padding-top: 120px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-cards {
    margin-top: 2rem;
  }
  
  .trust-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .trust-icon {
    font-size: 2.5rem;
  }
  
  .trust-text strong {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  .trust-text span {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .topics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .community-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .newsletter-form .form-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .newsletter-form input {
    width: 100%;
  }
  
  .newsletter-form .btn {
    width: 100%;
  }
  
  .modal-content {
    margin: 5% auto;
    width: 95%;
    max-width: 95%;
  }
  
  .modal-header {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .modal-benefits {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .benefit-item {
    flex-direction: row;
    text-align: left;
    gap: 0.75rem;
  }
  
  .benefit-icon {
    font-size: 1.25rem;
    margin-bottom: 0;
  }
  
  .newsletter-form-modal input {
    padding: 12px 14px;
  }
  
  .btn-large {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.25rem;
    line-height: 1.4;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .section-header p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .section {
    padding: 48px 0;
  }
  
  .header-content {
    padding: 0.75rem 0;
  }
  
  .logo h2 {
    font-size: 1.25rem;
  }
  
  .logo-img {
    height: 32px;
  }
  
  .hero {
    padding-top: 100px;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .trust-card {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .trust-icon {
    font-size: 2rem;
  }
  
  .trust-text strong {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .trust-text span {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .about-card,
  .resource-card,
  .topic-card,
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .about-card h3,
  .resource-card h3,
  .topic-card h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .about-card p,
  .resource-card p,
  .topic-card p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .about-icon,
  .resource-icon,
  .topic-icon {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .newsletter-form .form-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .newsletter-form input {
    width: 100%;
  }
  
  .newsletter-form .btn {
    width: 100%;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .modal-content {
    margin: 2% auto;
    width: 98%;
    max-width: 98%;
    border-radius: 16px;
  }
  
  .modal-header {
    padding: 1.5rem 1rem 1rem;
    border-radius: 16px 16px 0 0;
  }
  
  .modal-icon {
    font-size: 2.5rem;
  }
  
  .modal-header h3 {
    font-size: 1.25rem;
  }
  
  .modal-subtitle {
    font-size: 0.9rem;
  }
  
  .modal-body {
    padding: 1rem;
  }
  
  .modal-benefits {
    padding: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .benefit-item span:last-child {
    font-size: 0.8rem;
  }
  
  .newsletter-form-modal .form-group {
    margin-bottom: 1rem;
  }
  
  .newsletter-form-modal label {
    font-size: 0.85rem;
  }
  
  .newsletter-form-modal input {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .btn-large {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .newsletter-note {
    font-size: 0.75rem;
  }
  
  /* Mobile typography improvements */
  .testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .faq-question {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .disclaimer {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Pricing Page Styles */
.pricing-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.pricing-container .plan-card {
  max-width: 500px;
  width: 100%;
}

.included {
  background-color: var(--vv-background);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.included-card {
  background-color: var(--vv-white);
  padding: 2rem;
  border-radius: var(--vv-radius);
  box-shadow: var(--vv-shadow);
  text-align: center;
  transition: var(--vv-transition);
}

.included-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vv-shadow-hover);
  border-left: 4px solid var(--vv-primary);
}

.included-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.included-card h3 {
  color: var(--vv-text);
  margin-bottom: 1rem;
}

.included-card p {
  color: var(--vv-text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.value {
  background-color: var(--vv-background);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.value-card {
  background-color: var(--vv-white);
  padding: 2rem;
  border-radius: var(--vv-radius);
  box-shadow: var(--vv-shadow);
  text-align: center;
  transition: var(--vv-transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vv-shadow-hover);
  border-left: 4px solid var(--vv-primary);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: var(--vv-text);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--vv-text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.cta {
  background: linear-gradient(135deg, var(--vv-primary) 0%, var(--vv-dark) 100%);
  color: var(--vv-white);
  text-align: center;
}

.cta-content h2 {
  color: var(--vv-white);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 200px;
  max-width: 300px;
}

.cta-guarantee {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin: 0;
}

.about-founder {
  background-color: var(--vv-background);
}

.founder-content {
  max-width: 800px;
  margin: 0 auto;
}

.founder-text h3 {
  color: var(--vv-text);
  margin-bottom: 1rem;
}

.founder-text h4 {
  color: var(--vv-text);
  margin: 2rem 0 1rem 0;
}

.founder-text ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.founder-text li {
  margin-bottom: 0.5rem;
  color: var(--vv-text-light);
  line-height: 1.6;
}

.founder-text li strong {
  color: var(--vv-text);
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
  .included-grid {
    grid-template-columns: 1fr;
  }
  
  .value-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .included-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .included-card,
  .value-card {
    padding: 1.5rem;
  }
  
  .included-icon,
  .value-icon {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* Print Styles */
@media print {
  .header,
  .modal,
  .btn {
    display: none !important;
  }
  
  .section {
    padding: 20px 0;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
}
