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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: #6b7280;
  margin: 0 auto 3rem auto;
  max-width: 600px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
}

.btn-primary {
  background-color: #059669;
  color: white;
}

.btn-primary:hover {
  background-color: #047857;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: #059669;
  border: 2px solid #059669;
}

.btn-outline:hover {
  background-color: #059669;
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-full {
  width: 100%;
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-text {
  color: #059669;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #059669;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #059669;
}

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Strategies Section */
.strategies {
  padding: 80px 0;
  background-color: #ffffff;
}

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.strategy-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.strategy-card:hover {
  border-color: #059669;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.strategy-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 50%;
  display: inline-block;
}

.strategy-icon.high-risk {
  background-color: #fef3c7;
}

.strategy-icon.med-risk {
  background-color: #dbeafe;
}

.strategy-icon.low-risk {
  background-color: #d1fae5;
}

.strategy-icon.custom {
  background-color: #e0e7ff;
}

.strategy-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.strategy-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.strategy-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-item {
  font-size: 0.875rem;
  color: #059669;
  font-weight: 500;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1f2937;
  text-align: center;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.6;
  text-align: center;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background-color: #f9fafb;
}

/* Unified Pricing Styles */
.unified-pricing {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-card-unified {
  background: white;
  border: 3px solid #e5e7eb;
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}

.pricing-card-unified.featured {
  border-color: #059669;
  box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #059669;
  color: white;
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.pricing-header p {
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.price-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.price-tier {
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}

.price {
  text-align: center;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #059669;
  display: block;
}

.price-period {
  font-size: 1rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.price-note {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-top: 0.5rem;
  font-weight: 500;
}

.referral-highlight {
  background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 2px solid #f59e0b;
}

.referral-badge {
  font-size: 1.1rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 0.5rem;
  display: block;
}

.referral-highlight p {
  color: #92400e;
  margin: 0;
  font-weight: 500;
}

.pricing-features-unified {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-features-unified li {
  padding: 0.75rem 0;
  color: #374151;
  font-size: 1rem;
  border-bottom: 1px solid #f3f4f6;
}

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

/* Pricing Examples */
.pricing-examples {
  margin-top: 3rem;
  text-align: center;
}

.pricing-examples h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.example-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.2s ease;
}

.example-card:hover {
  border-color: #059669;
  transform: translateY(-2px);
}

.example-aum {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.example-price {
  font-size: 1.1rem;
  color: #059669;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.example-savings {
  font-size: 0.9rem;
  color: #dc2626;
  font-weight: 500;
}

.examples-note {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* Referral Program Info */
.referral-program-info {
  margin-top: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #10b981;
}

.referral-program-info h3 {
  font-size: 1.5rem;
  color: #047857;
  margin-bottom: 1rem;
}

.referral-program-info p {
  color: #065f46;
  margin-bottom: 1rem;
}

.referral-examples {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.referral-examples span {
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  color: #047857;
  border: 1px solid #10b981;
}

/* Legacy styles for backward compatibility */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: #059669;
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: #059669;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.15);
}

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

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.pricing-discount {
  background-color: rgba(5, 150, 105, 0.1);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.discount-badge {
  display: block;
  color: #059669;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.discount-note {
  font-size: 0.875rem;
  color: #6b7280;
}

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

.pricing-features li {
  padding: 0.5rem 0;
  color: #374151;
}

.pricing-note {
  text-align: center;
  margin-top: 3rem;
}

.pricing-note p {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Security Section */
.security {
  padding: 80px 0;
  background-color: #ffffff;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.security-feature {
  text-align: center;
}

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

.security-feature h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.security-feature p {
  color: #6b7280;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-brand p {
  color: #9ca3af;
  margin-top: 1rem;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-column a {
  display: block;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #059669;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
}

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

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .stat {
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .strategies-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .strategy-card {
    padding: 1.5rem;
  }

  .pricing {
    padding: 60px 0;
  }

  .unified-pricing {
    margin: 0 10px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

  /* Unified pricing responsive */
  .price-tiers {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pricing-card-unified {
    padding: 2rem;
  }

  .pricing-header h3 {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .examples-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .referral-examples {
    flex-direction: column;
    gap: 1rem;
  }
}
