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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0A0A0A;
  color: #FFFFFF;
  line-height: 1.5;
}

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

ul {
  list-style: none;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 80px;
  background-color: #0A0A0A;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #FFFFFF;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #A0A0A0;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #FFFFFF;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: #25D366;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.header-cta:hover {
  background-color: #20bd5a;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 700px;
  padding: 120px 80px;
  background-image: url('https://images.unsplash.com/photo-1544692414-636611c6ae73?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzAzMDIxNzZ8&ixlib=rb-4.1.0&q=80&w=1080');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
}

.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: 56px;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #FFFFFF;
}

.hero-subline {
  font-size: 20px;
  line-height: 1.6;
  color: #A0A0A0;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

.hero-primary-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background-color: #25D366;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.hero-primary-cta:hover {
  background-color: #20bd5a;
}

.hero-primary-cta i {
  width: 22px;
  height: 22px;
}

.hero-micro {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
}

/* Section Styles */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: center;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: 42px;
  font-weight: bold;
  letter-spacing: -0.5px;
  color: #FFFFFF;
}

.section-subtitle {
  font-size: 18px;
  color: #888888;
}

.section-subtitle.green {
  color: #25D366;
  font-weight: 500;
}

/* How It Works Section */
.how-it-works {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 100px 80px;
  background-color: #111111;
}

.steps {
  display: flex;
  gap: 32px;
  width: 100%;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background-color: #1A1A1A;
  border-radius: 16px;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #25D366;
  border-radius: 24px;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.step-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
}

.step-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #888888;
}

/* What We Ship Section */
.what-we-ship {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 100px 80px;
  background-color: #0A0A0A;
}

.what-columns {
  display: flex;
  gap: 48px;
  width: 100%;
}

.what-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px;
  background-color: #1A1A1A;
  border-radius: 20px;
}

.car-parts-col {
  border: 1px solid #25D366;
}

.what-col-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.what-col-header i {
  width: 32px;
  height: 32px;
  color: #25D366;
}

.non-car-col .what-col-header i {
  color: #888888;
}

.what-col-header h3 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #FFFFFF;
}

.parts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.parts-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.parts-list li i {
  width: 18px;
  height: 18px;
  color: #25D366;
}

.parts-list li span {
  font-size: 16px;
  color: #CCCCCC;
}

.non-car-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #888888;
}

.non-car-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.example-tag {
  padding: 10px 18px;
  background-color: #252525;
  border-radius: 8px;
  font-size: 14px;
  color: #AAAAAA;
}

/* Why Choose Us Section */
.why-us {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 100px 80px;
  background-color: #111111;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  background-color: #1A1A1A;
  border-radius: 16px;
  text-align: center;
}

.why-card i {
  width: 40px;
  height: 40px;
  color: #25D366;
}

.why-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
}

.why-card p {
  font-size: 14px;
  color: #888888;
}

/* Pricing Section */
.pricing {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 100px 80px;
  background-color: #0A0A0A;
}

.pricing-content {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.pricing-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-left .section-title {
  text-align: left;
}

.pricing-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #888888;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-list li i {
  width: 20px;
  height: 20px;
  color: #25D366;
}

.pricing-list li span {
  font-size: 16px;
  color: #CCCCCC;
}

.pricing-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background-color: #1A1A1A;
  border-radius: 12px;
}

.pricing-note i {
  width: 20px;
  height: 20px;
  color: #25D366;
}

.pricing-note span {
  font-size: 15px;
  font-weight: 500;
  color: #AAAAAA;
}

.pricing-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 400px;
  height: 280px;
  background-color: #1A1A1A;
  border-radius: 20px;
}

.pricing-right i {
  width: 64px;
  height: 64px;
  color: #25D366;
}

.pricing-right h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
}

.pricing-right p {
  font-size: 14px;
  color: #888888;
}

/* Final CTA Section */
.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 100px 80px;
  background-color: #25D366;
  text-align: center;
}

.final-cta h2 {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: -0.5px;
  color: #FFFFFF;
}

.cta-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-phone i {
  width: 24px;
  height: 24px;
  color: #FFFFFF;
}

.cta-phone span {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: #FFFFFF;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background-color: #FFFFFF;
  border-radius: 12px;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #f0f0f0;
}

.cta-button i {
  width: 24px;
  height: 24px;
  color: #25D366;
}

.cta-button span {
  font-size: 18px;
  font-weight: bold;
  color: #25D366;
}

.cta-note {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.67);
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 80px;
  background-color: #0A0A0A;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
}

.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #FFFFFF;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}

.footer-col a {
  font-size: 14px;
  color: #666666;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #AAAAAA;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-link i {
  width: 14px;
  height: 14px;
  color: #25D366;
}

.whatsapp-link {
  color: #25D366 !important;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #222222;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-bottom p {
  font-size: 13px;
  color: #555555;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .header {
    padding: 0 40px;
  }

  .hero,
  .how-it-works,
  .what-we-ship,
  .why-us,
  .pricing,
  .final-cta,
  .footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .pricing-content {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .steps {
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
  }

  .what-columns {
    flex-direction: column;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-right {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0 20px;
  }

  .nav {
    display: none;
  }

  .hero,
  .how-it-works,
  .what-we-ship,
  .why-us,
  .pricing,
  .final-cta,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-headline {
    font-size: 36px;
  }

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

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

  .steps {
    flex-direction: column;
  }

  .step {
    flex: 1 1 100%;
  }

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

  .final-cta h2 {
    font-size: 32px;
  }

  .cta-phone span {
    font-size: 22px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
