:root {
  --primary: #1db954;

  --neutral: #1a1a1a;

  --dark: #0e0e0e;
  --light: #ffffff;

  --bg: #0e0e0e;
  --text: #ffffff;
  --text-muted: #bbbbbb;
  --radius: 8px;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* === Section === */
section {
  /* padding: 4rem 0; */
  padding-bottom: 3rem;
  text-align: center;
  /* border-bottom: .1px solid white; */
}
h2 {
  font-size: 1.65rem;
  margin-bottom: .85rem;
  color: var(--primary);
}
h3 {
  font-size: 1.35rem;
  margin-bottom: .85rem;
  color: var(--primary);
}
h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

article {
  background: var(--neutral);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.poster-image {
  max-width: 300px;
}
.car-magnet {
  max-width: 300px;
}












/* === CTA Section === */
.ctaSection {
  background-color: #1db95415;
  padding: 4rem 1rem;
  text-align: center;
}
.ctaSection h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.ctaSection p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Newsletter */
.newsletter {
  background-color: #0f0f0f;
  padding: 4rem 1rem;
  text-align: center;
}
.newsletter h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.newsletter p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
.newsletter input[type="email"] {
  padding: 0.75rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
}
.newsletter button {
  background: var(--primary);
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: var(--radius);
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.newsletter button:hover {
  background-color: #17a74a;
}

@media (min-width: 769px) {
  .testimonialGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .servicesGrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featuresGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
