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

:root {
  --primary-color: #0066CC;
  --primary-dark: #0052A3;
  --primary-light: #3385D6;
  --secondary-color: #00B894;
  --text-primary: #1A202C;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F7FAFC;
  --bg-accent: #EDF2F7;
  --border-color: #E2E8F0;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.nav {
  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(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.nav-cta {
  padding: 10px 24px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 580px;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(0, 102, 204, 0.1);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero-title {
  font-size: 45px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 24px;
  line-height: 1.4;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-secondary);
}

.check-icon {
  width: 24px;
  height: 24px;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.primary-cta {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-md);
}

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

.secondary-cta {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.secondary-cta:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
  transform: translateX(4px);
}

.hero-image {
  position: relative;
}

.image-placeholder {
  background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E0 100%);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border-color);
  transition: all 0.3s ease;
}

.image-placeholder:hover {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #EDF2F7 0%, #E2E8F0 100%);
}

.image-placeholder.small {
  min-height: 280px;
  padding: 40px 30px;
}

.placeholder-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.placeholder-hint {
  font-size: 14px;
  color: var(--text-muted);
}

.differentiators {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

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

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.how-it-works {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 48px;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.step.reverse {
  direction: rtl;
}

.step.reverse > * {
  direction: ltr;
}

.step-visual {
  position: relative;
}

.step-content {
  max-width: 500px;
}

.step-number {
  font-size: 72px;
  font-weight: 800;
  color: rgba(0, 102, 204, 0.1);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.step-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.step-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
}

.trust-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.trust-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trust-text {
  max-width: 560px;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

.trust-badge {
  display: flex;
  gap: 20px;
  padding: 24px;
  background-color: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.badge-icon {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.trust-badge h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.trust-badge p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.outcome-box {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  padding: 32px;
  border-radius: 12px;
  margin-top: 32px;
}

.outcome-text {
  font-size: 20px;
  font-weight: 600;
  color: white;
  line-height: 1.5;
  text-align: center;
}

.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.cta-box {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-button.large {
  padding: 20px 48px;
  font-size: 18px;
  background-color: white;
  color: var(--primary-color);
}

.cta-button.large:hover {
  background-color: var(--bg-secondary);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 60px 0 40px;
  background-color: var(--text-primary);
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 12px;
}

a{
  text-decoration: none;
}

.footer-brand p,
.footer-note p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  max-width: 400px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 968px) {
  .hero-content,
  .trust-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image,
  .trust-visual {
    order: -1;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step.reverse {
    direction: ltr;
  }

  .hero-title {
    font-size: 40px;
  }

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

  .cta-title {
    font-size: 36px;
  }

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

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .nav-content {
    height: 64px;
  }

  .hero {
    padding: 100px 0 60px;
  }

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

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

  .hero-description {
    font-size: 16px;
  }

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

  .cta-title {
    font-size: 28px;
  }

  .differentiators,
  .how-it-works,
  .trust-section {
    padding: 60px 0;
  }

  .final-cta {
    padding: 80px 0;
  }

  .image-placeholder {
    min-height: 280px;
    padding: 40px 20px;
  }

  .footer-content {
    flex-direction: column;
  }
}
