/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;
  color: #1a202c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Homepage Styles */
.homepage {
  min-height: 100vh;
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.45) 0%, rgba(30, 58, 138, 0.45) 100%),
              url('/assets/pexels-olly-840996.jpg') center/cover no-repeat;
  color: white;
  padding: 0 0 80px 0;
}

.hero-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 32px;
  height: 32px;
}

.nav-title {
  font-size: 20px;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: left;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}

/* Buttons and Links styled as buttons */
.btn-primary, .btn-secondary, .btn-primary-large, .btn-secondary-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  vertical-align: middle;
  box-sizing: border-box;
  height: auto;
  min-height: 40px;
  
}

.btn-primary div, .btn-secondary div, .btn-primary-large div, .btn-secondary-large div {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 8px 18px;
}

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

.btn-primary-large {
  background: white;
  color: #1e40af;
  padding: 14px 28px;
  font-size: 17px;
}

.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.btn-secondary-large {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 26px;
  font-size: 17px;
}

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

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

/* Section Titles */
.section-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #1a202c;
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 48px;
  color: #718096;
}

/* WWFT Info Section */
.wwft-info {
  padding: 80px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.info-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.info-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a202c;
}

.info-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
}

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

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

.feature {
  text-align: center;
}

.feature-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.feature h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a202c;
}

.feature p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.pricing-card.featured {
  border: 3px solid #2563eb;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 24px;
  font-weight: 600;
  color: #4a5568;
}

.amount {
  font-size: 48px;
  font-weight: 700;
  color: #1a202c;
}

.period {
  font-size: 18px;
  color: #718096;
}

.pricing-savings {
  margin-top: 8px;
  color: #48bb78;
  font-weight: 600;
  font-size: 14px;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pricing-feature svg {
  width: 20px;
  height: 20px;
  color: #48bb78;
  flex-shrink: 0;
}

.pricing-feature span {
  font-size: 16px;
  color: #4a5568;
}

.pricing-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 16px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  vertical-align: middle;
  box-sizing: border-box;
}

.pricing-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.pricing-note {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #718096;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

/* Footer */
.footer {
  background: #1a202c;
  color: white;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
}

.footer-logo {
  width: 28px;
  height: 28px;
}

.footer-text {
  text-align: center;
  color: #a0aec0;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .section-title {
    font-size: 32px;
  }

  .info-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-nav {
    flex-direction: column;
    gap: 20px;
  }

  .container {
    padding: 0 20px;
  }
}
