* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at top left, #d6e3f1 0, transparent 34%),
    linear-gradient(180deg, #f8f7f5 0%, #fbfaf8 100%);
  color: #3f3a36;
}

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

.about-header {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #e8e3dc;
  position: sticky;
  top: 0;
  z-index: 50;
}

.about-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.about-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: #3f3a36;
}

.about-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.about-nav-links,
.about-nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  color: #6f685f;
}

.about-nav-links a.active,
.about-nav-links a:hover,
.about-nav-actions a:hover {
  color: #4f7dae;
}

.nav-cta,
.primary-btn {
  background: linear-gradient(135deg, #8faed1, #6f95bf);
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 16px 35px rgba(143, 174, 209, 0.35);
  font-weight: 700;
}

.secondary-btn {
  background: #ffffff;
  color: #3f3a36;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #e8e3dc;
  font-weight: 700;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 24px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
  min-height: 620px;
}

.eyebrow {
  color: #6f95bf;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: #3f3a36;
  margin-bottom: 24px;
}

.hero h1 span {
  display: block;
  color: #8faed1;
}

.hero-content > p:not(.eyebrow) {
  max-width: 650px;
  color: #6f685f;
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #e8e3dc;
  border-radius: 34px;
  padding: 30px;
  box-shadow: 0 30px 80px rgba(63, 58, 54, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 220px;
  height: 220px;
  background: #d6e3f1;
  border-radius: 50%;
  opacity: 0.75;
}

.mini-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.mini-topbar span {
  width: 11px;
  height: 11px;
  background: #d6e3f1;
  border-radius: 50%;
}

.hero-card h3 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 330px;
  position: relative;
}

.feature-list {
  display: grid;
  gap: 12px;
  position: relative;
}

.feature-list div {
  background: #fbfaf8;
  border: 1px solid #e8e3dc;
  padding: 14px 16px;
  border-radius: 18px;
  color: #3f3a36;
  font-weight: 600;
}

.section,
.local-section {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.section h2,
.local-section h2,
.section-head h2,
.mission-section h2,
.cta-section h2,
.info-card h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #3f3a36;
}

.section p,
.local-section p,
.mission-section p,
.info-card p,
.feature-card p,
.cta-section p {
  color: #6f685f;
  line-height: 1.8;
  font-size: 16px;
}

.split-section {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-card {
  background: #ffffff;
  border: 1px solid #e8e3dc;
  border-radius: 34px;
  padding: 36px;
  box-shadow: 0 22px 55px rgba(63, 58, 54, 0.08);
}

.cleaner-card {
  background: linear-gradient(145deg, #ffffff 0%, #f1f6fb 100%);
}

.customer-card {
  background: linear-gradient(145deg, #ffffff 0%, #fbfaf8 100%);
}

.card-label {
  display: inline-flex;
  background: #d6e3f1;
  color: #4f7dae;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.info-card p {
  margin: 18px 0;
}

.info-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.info-card li {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #e8e3dc;
  border-radius: 16px;
  padding: 13px 15px;
  color: #3f3a36;
  font-weight: 600;
}

.info-card li::before {
  content: "✓";
  color: #6f95bf;
  font-weight: 800;
  margin-right: 9px;
}

.mission-section {
  margin-top: 80px;
  background: linear-gradient(135deg, #8faed1, #6f95bf);
  color: white;
  border-radius: 38px;
  padding: 56px;
  box-shadow: 0 30px 70px rgba(111, 149, 191, 0.35);
}

.mission-section .eyebrow,
.mission-section h2,
.mission-section p {
  color: white;
}

.mission-section p {
  max-width: 850px;
  margin-top: 22px;
  font-size: 17px;
}

.features-section {
  margin-top: 90px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e8e3dc;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(63, 58, 54, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(63, 58, 54, 0.1);
}

.feature-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: #d6e3f1;
  color: #4f7dae;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
  color: #3f3a36;
}

.cta-section {
  margin-top: 90px;
  text-align: center;
  background:
    radial-gradient(circle at top right, #d6e3f1 0, transparent 34%),
    #ffffff;
  border: 1px solid #e8e3dc;
  border-radius: 42px;
  padding: 64px 30px;
  box-shadow: 0 30px 80px rgba(63, 58, 54, 0.1);
}

.cta-section p {
  max-width: 720px;
  margin: 18px auto 0;
}

.cta-actions {
  justify-content: center;
}

.about-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px 44px;
  border-top: 1px solid #e8e3dc;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #6f685f;
}

.about-footer strong {
  display: block;
  font-size: 22px;
  color: #3f3a36;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 600;
}

.footer-links a:hover {
  color: #4f7dae;
}

@media (max-width: 900px) {
  .about-nav {
    flex-wrap: wrap;
  }

  .about-nav-links,
  .about-nav-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero,
  .section,
  .local-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .mission-section {
    padding: 38px 28px;
  }
}

@media (max-width: 620px) {
  main {
    padding: 42px 18px;
  }

  .about-nav {
    padding: 16px 18px;
  }

  .about-nav-links {
    display: none;
  }

  .about-nav-actions {
    justify-content: space-between;
    gap: 10px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .primary-btn,
  .secondary-btn,
  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero-card,
  .info-card,
  .cta-section {
    border-radius: 26px;
  }

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

  .section,
  .split-section,
  .mission-section,
  .features-section,
  .local-section,
  .cta-section {
    margin-top: 58px;
  }

  .about-footer {
    flex-direction: column;
  }
}