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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

/* Sticky Call Button */
.sticky-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #d32f2f;
  color: white;
  padding: 16px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
  z-index: 1000;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sticky-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(211, 47, 47, 0.5);
}

.sticky-call:active {
  transform: translateY(0);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 60px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
  font-weight: 500;
}

/* CTA Buttons */
.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #d32f2f;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary {
  background: #25d366;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.btn:active {
  transform: translateY(0);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.95;
}

.badge svg {
  width: 32px;
  height: 32px;
}

/* Sections */
section {
  padding: 60px 0;
}

section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  color: #1a1a1a;
}

/* How It Works */
.how-it-works {
  background: #f8fafc;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-number {
  background: #3b82f6;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.step p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

/* Services */
.services {
  background: white;
}

.service-list {
  list-style: none;
  max-width: 400px;
  margin: 0 auto 24px;
}

.service-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 16px;
}

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

.service-list li::before {
  content: "✓ ";
  color: #10b981;
  font-weight: 700;
  margin-right: 8px;
}

.note {
  text-align: center;
  font-style: italic;
  color: #6b7280;
  font-size: 15px;
  margin-top: 24px;
}

/* Pricing */
.pricing {
  background: #f8fafc;
}

.pricing-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}

.point {
  background: white;
  padding: 16px 20px;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Availability */
.availability {
  background: white;
  text-align: center;
}

.availability p {
  font-size: 18px;
  margin-bottom: 8px;
}

.availability .small {
  font-size: 14px;
  color: #6b7280;
}

/* Trust */
.trust {
  background: #f8fafc;
  text-align: center;
}

.trust p {
  font-size: 16px;
  margin-bottom: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.final-cta h2 {
  color: white;
  margin-bottom: 32px;
}

.phone-text {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 700;
}

.phone-text a {
  color: white;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.2s;
}

.phone-text a:hover {
  border-color: white;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #9ca3af;
  text-align: center;
  padding: 30px 0;
  font-size: 14px;
}

/* Mobile Optimizations */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .subheadline {
    font-size: 18px;
  }

  .btn {
    font-size: 16px;
    padding: 16px 28px;
  }

  .sticky-call {
    bottom: 16px;
    right: 16px;
    padding: 14px 20px;
    font-size: 15px;
  }

  .trust-badges {
    gap: 16px;
  }

  .badge {
    font-size: 13px;
  }

  .badge svg {
    width: 28px;
    height: 28px;
  }
}

/* Tablet and Desktop */
@media (min-width: 768px) {
  .cta-group {
    flex-direction: row;
    justify-content: center;
  }

  .steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
    flex-direction: column;
    text-align: center;
  }

  .pricing-points {
    flex-direction: row;
    max-width: 100%;
  }

  .point {
    flex: 1;
  }
}

/* Performance: Reduce animations on slow connections */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
