/* TYPOGRAPHY SCALE */
:root {
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --color-primary: #ef5450;
  --color-primary-dark: #dc3d39;
  --color-secondary: #667eea;
  --color-text: #111827;
  --color-text-secondary: #6b7280;
  --color-bg-light: #f9fafb;
  --color-border: #e5e7eb;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  width: fit-content;
  backdrop-filter: blur(10px);
  animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text h1 {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.hero-animate {
  animation: slideInDown 0.8s ease-out 0.1s both;
}

.hero-text h2 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin-bottom: var(--spacing-md);
  line-height: 1.4;
}

.hero-animate-delay {
  animation: slideInDown 0.8s ease-out 0.2s both;
}

.hero-description {
  display: none;
}

.hero-trust {
  display: none;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  animation: slideInDown 0.8s ease-out 0.5s both;
}

.btn-pulse {
  position: relative;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(239,84,80,0.35);
  }
  50% {
    box-shadow: 0 8px 30px rgba(239,84,80,0.5);
  }
}

.image-wrapper {
  position: relative;
  animation: slideInUp 0.8s ease-out 0.3s both;
}

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

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* FEATURES SECTION */
.features-section {
  background: #fff;
  padding: var(--spacing-2xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
  stroke-width: 2;
}

.feature-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

/* ALL FEATURES SECTION */
.all-features-section {
  background: var(--color-bg-light);
  padding: var(--spacing-2xl) 0;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.feature-item {
  background: #fff;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.feature-item h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.feature-item p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
  padding: var(--spacing-2xl) 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.cta-content h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

.cta-content p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* HERO INFO SECTION */
.hero-info-section {
  background: #fff;
  padding: var(--spacing-2xl) 0;
  border-bottom: 1px solid var(--color-border);
}

.info-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.info-heading {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--spacing-lg);
}

.info-description {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-2xl);
}

.info-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  justify-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-bg-light);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
  transform: translateY(-2px);
}

.trust-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #10b981;
  flex-shrink: 0;
}

/* BUTTON STYLES */
.btn-primary {
  background: linear-gradient(135deg, #ef5450 0%, #dc3d39 100%);
  color: #fff;
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  box-shadow: 0 6px 20px rgba(239,84,80,0.35);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: var(--text-base);
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(239,84,80,0.45);
}

.btn-secondary {
  background: #fff;
  color: #667eea;
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  box-shadow: 0 4px 15px rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: var(--text-base);
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}


.why-section {
  background: #fff;
  padding: var(--spacing-2xl) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.why-card {
  background: var(--color-bg-light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: 800;
  margin: 0 auto var(--spacing-md);
}

.why-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.why-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}
.footer-seo {
  background: var(--color-bg-light);
  padding: var(--spacing-lg) 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.footer-seo p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* FOOTER SEO SECTION */
.footer-seo-section {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: var(--spacing-2xl) 0;
  border-top: 1px solid var(--color-border);
}

.footer-seo-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-seo-heading {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

.footer-seo-description {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footer-seo-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.highlight-item {
  background: #fff;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.highlight-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.highlight-label {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
}

.highlight-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .hero-text h1 {
    font-size: var(--text-3xl);
  }

  .hero-text h2 {
    font-size: var(--text-base);
  }

  .hero-description {
    font-size: var(--text-xs);
  }

  .section-header h2 {
    font-size: var(--text-3xl);
  }

  .cta-content h2 {
    font-size: var(--text-3xl);
  }

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

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
