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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f9fafb;
  color: #0f172a;
  line-height: 1.7;
  font-size: 16px;
}

/* === Typography === */
h1, h2 {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #0f172a;
}

h1 {
  font-size: 2rem; /* mobile domyślnie mniejsze */
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* === Layout === */
.section {
  padding: 2rem 1rem;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

/* === Hero === */
.hero {
  background-color: #fb923c;
  text-align: center;
}

.tagline {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #0f172a;
}

.hero-sub {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(15, 23, 42, 0.8);
  margin-top: 0.8rem;
}

/* --- górny pasek premium grubszy --- */
.hero {
  position: relative;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px; /* mobile */
  background: linear-gradient(90deg, #172033 0%, #1e293b 50%, #182235 100%);
  box-shadow: 0 3px 6px rgba(0,0,0,0.12);
}

@media (min-width: 900px) {
  .hero::before {
    height: 16px; /* desktop */
  }
}

/* === Intro === */
.intro {
  background-color: #ffffff;
}

/* === Offer === */
.services {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.services li {
  padding: 0.9rem 0;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 600;
}
.services li p {
  margin: .3rem 0 0;
  font-weight: 400;
  color: #334155;
}

/* === Contact === */
.contact {
  background-color: #fb923c;
  text-align: center;
}

.contact h2,
.contact p,
.contact a {
  color: #0f172a;
}

.contact a {
  font-weight: 600;
  text-decoration: none;
}

/* === Testimonials === */
.testimonials {
  background-color: #ffffff;
}

.testimonials blockquote {
  font-size: 1rem;
  font-style: italic;
  color: #334155;
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.testimonials .author {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  color: #0f172a;
}

.testimonial:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

/* === Footer === */
.footer {
  background-color: #1e293b;
  color: #f9fafb;
  text-align: center;
  font-size: 0.9rem;
  padding: 1.5rem 0;
}

.socials a {
  margin: 0 0.6rem;
  text-decoration: none;
  display: inline-flex;
}

.socials svg {
  width: 24px;
  height: 24px;
  fill: #fb923c;
}

/* === Desktop-up (min-width: 600px) === */
@media (min-width: 600px) {
  h1 {
    font-size: 3rem;
    margin-bottom: 0.75rem;
  }

  h2 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
  }

  p {
    font-size: 17px;
  }

  .section {
    padding: 3rem 1.5rem;
  }
}
