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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

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

h1 {
  font-size: 3.5rem;
  color: #000;
}

h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  color: #222;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

a {
  color: #4A3FCC;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #3A2E9F;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 1rem;
}

.btn-primary {
  background-color: #4A3FCC;
  color: white;
  border-color: #4A3FCC;
}

.btn-primary:hover {
  background-color: #3A2E9F;
  border-color: #3A2E9F;
  box-shadow: 0 4px 12px rgba(74, 63, 204, 0.3);
  color: #E3DFFF;
}

.btn-secondary {
  background-color: transparent;
  color: #4A3FCC;
  border-color: #4A3FCC;
}

.btn-secondary:hover {
  background-color: #4A3FCC;
  color: white;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Header and Navigation */
header {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  header {
    padding: 0;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4A3FCC;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: #555;
  font-weight: 500;
}

nav a:hover {
  color: #4A3FCC;
}

#menu-toggle {
  display: none;
}

.menu-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  display: inline-block;
}

@media (max-width: 768px) {
  #menu {
    display: none;
  }

  #menu-toggle {
    display: block;
  }

  .menu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
}

.header-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 768px) {
  .header-cta {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f5f3ff 0%, #e8dff7 100%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.hero-text p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield {
  font-size: 200px;
  animation: float 3s ease-in-out infinite;
}

.shield svg {
  width: 200px;
  height: 200px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 2.5rem;
  color: #4A3FCC;
  margin-bottom: 0.5rem;
}

.stat p {
  color: #666;
  font-weight: 500;
  margin-bottom: 0;
}

/* Section Styles */
section {
  padding: 5rem 2rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  text-align: center;
}

/* Features Section */
.features {
  background-color: #f9fafb;
}

.features h2,
.features .section-subtitle {
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  border-color: #4A3FCC;
  box-shadow: 0 10px 30px rgba(74, 63, 204, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  display: inline-block;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}

/* How It Works */
.how-it-works {
  background-color: white;
}

.how-it-works h2,
.how-it-works .section-subtitle {
  text-align: center;
}

.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 2rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #4A3FCC;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step h3 {
  margin-bottom: 0.75rem;
}

.step p {
  color: #666;
}

.step-arrow {
  font-size: 2rem;
  color: #4A3FCC;
  display: none;
}

/* Pricing Section */
.pricing {
  background-color: #f9fafb;
}

.pricing h2,
.pricing .section-subtitle {
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  padding: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(74, 63, 204, 0.15);
}

.pricing-card.featured {
  border-color: #4A3FCC;
  border-width: 2px;
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4A3FCC;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4A3FCC;
  margin-bottom: 0.25rem;
}

.price span {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.price-desc {
  color: #999;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.features-list li {
  padding: 0.75rem 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

.features-list li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  width: 100%;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, #4A3FCC 0%, #6B5DB5 100%);
  color: white;
}

.testimonials h2,
.testimonials .section-subtitle {
  text-align: center;
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

/* FAQ Section */
.faq {
  background-color: white;
}

.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 2rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  color: #1a1a1a;
  user-select: none;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #4A3FCC;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem 0;
}

.faq-answer p {
  color: #666;
  margin-bottom: 0;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #4A3FCC 0%, #3A2E9F 100%);
  color: white;
  text-align: center;
  padding: 6rem 2rem;
}

.cta h2 {
  color: white;
  margin-bottom: 1rem;
}

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

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

.cta .btn-primary {
  background-color: white;
  color: #4A3FCC;
}

.cta .btn-primary:hover {
  background-color: #f0f0f0;
}

.cta .btn-secondary {
  border-color: white;
  color: white;
}

.cta .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 2rem;
}

.footer-minimal {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-left {
  flex: 1;
}

.footer-left p {
  color: #666;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.footer-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-end;
}

.footer-right a {
  color: #4A3FCC;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #3A2E9F;
}

.footer-divider {
  color: #ccc;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.hidden {
  display: none !important;
}

.grecaptcha-badge { 
  visibility: hidden !important;
}
