* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #fdfdfd; color: #10223e; font-family: 'Poppins', sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.ac-container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.ac-header { background: #fdfdfd; border-bottom: 1px solid #e9eef4; position: sticky; top: 0; z-index: 10; }
.ac-header__inner { align-items: center; display: flex; gap: 26px; min-height: 70px; }
.ac-logo { align-items: center; color: #124d82; display: flex; font-size: 1rem; font-weight: 800; gap: 10px; letter-spacing: .6px; margin-right: auto; }
.ac-logo img { border-radius: 50%; height: 42px; object-fit: contain; width: 42px; }
.ac-logo small { color: #7b8796; display: block; font-size: .48rem; letter-spacing: 1.5px; }
.ac-header__home { color: #536273; font-size: .9rem; font-weight: 500; }
.ac-header__call, .ac-button { border-radius: 5px; font-weight: 700; transition: transform .2s, background .2s; }
.ac-header__call { background: #124d82; color: #fff; font-size: .85rem; padding: 10px 18px; }
.ac-header__call:hover, .ac-button:hover { transform: translateY(-2px); }
.washing-machine-page {
  background: #fafafa;
  padding: 60px 20px 70px;
}

.washing-machine-page__title {
  color: #111;
  display: table;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 auto 48px;
  max-width: 900px;
  text-align: center;
}

.washing-machine-page__title::after {
  background: #2b4cbe;
  border-radius: 2px;
  content: '';
  display: block;
  height: 4px;
  margin: 10px auto 0;
  width: 55px;
}

.washing-machine-page__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.ac-service-label {
  display: table;
  color: #111;
  font-size: 1.2rem;
  font-weight: 600;
  margin: -24px auto 24px;
  text-align: center;
  border-bottom: 2px solid #2b4cbe;
  padding-bottom: 5px;
}

.wm-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 22px 24px;
  text-align: center;
  width: 255px;
}

.wm-card__image-wrap {
  width: 200px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}

.wm-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wm-card h2 {
  color: #111;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.wm-card p {
  color: #6c6b70;
  font-size: .9rem;
  line-height: 1.65;
  margin: 0 auto 18px;
  max-width: 300px;
}

.wm-card__tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.wm-card__tags span {
  background: #eff9e9;
  color: #123d70;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .82rem;
  font-weight: 500;
}

.washing-machine-page__cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
  margin-bottom: 42px;
}

.washing-machine-page > .washing-machine-page__cta {
  display: none;
}

.washing-machine-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #2b4cbe;
  color: #fff;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: none;
}

.washing-machine-page__button svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

@media (max-width: 1000px) {
  .washing-machine-page__grid {
    gap: 26px;
  }

  .wm-card {
    width: 255px;
  }

  .wm-card__image-wrap {
    width: 210px;
    height: 165px;
  }

  .ac-service-grid .wm-card:nth-child(3) .wm-card__image-wrap {
    width: 240px;
    height: 200px;
  }
}

@media (max-width: 600px) {
  .washing-machine-page {
    padding: 52px 14px 58px;
  }

  .washing-machine-page__title {
    font-size: 2rem;
    margin-bottom: 36px;
  }

  .washing-machine-page__grid {
    gap: 40px;
  }

  .wm-card {
    width: 100%;
    max-width: 340px;
    padding: 16px 14px 18px;
  }

  .wm-card__image-wrap {
    width: 230px;
    height: 180px;
    margin-bottom: 14px;
  }

  .wm-card__image-wrap img {
    width: 100%;
    height: 100%;
  }

  .ac-service-grid .wm-card:nth-child(3) .wm-card__image-wrap {
    width: 100%;
    max-width: 300px;
    height: 220px;
  }

  .wm-card h2 {
    font-size: 1rem;
  }

  .wm-card p {
    font-size: .95rem;
  }

  .wm-card__tags {
    gap: 8px;
  }

  .wm-card__tags span {
    padding: 7px 12px;
    font-size: .82rem;
  }

  .washing-machine-page__cta {
    margin-top: 24px;
  }

  .washing-machine-page__button {
    width: 100%;
    max-width: 280px;
  }
}

.ac-hero { background: linear-gradient(120deg, #f2f8ff, #fff); padding: 82px 0 88px; }
.ac-hero__inner { align-items: center; display: grid; gap: 64px; grid-template-columns: 1fr 1fr; }
.ac-eyebrow { color: #e99016; font-size: .78rem; font-weight: 800; letter-spacing: 1.5px; margin-bottom: 15px; }
.ac-hero h1 { color: #10223e; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.08; max-width: 620px; }
.ac-hero__lead { color: #5e6d7e; font-size: 1.05rem; line-height: 1.75; margin: 22px 0 28px; max-width: 540px; }
.ac-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ac-button { display: inline-block; font-size: .9rem; padding: 13px 21px; }
.ac-button--primary { background: #124d82; color: #fff; }
.ac-button--secondary { border: 1px solid #20b968; color: #138a4d; }
.ac-trust { color: #617084; display: flex; flex-wrap: wrap; font-size: .77rem; gap: 12px; margin-top: 24px; }
.ac-trust span { color: #20a864; font-weight: 800; }
.ac-hero__visual { position: relative; }
.ac-hero__visual img { border-radius: 14px; box-shadow: 0 18px 40px rgba(16,34,62,.18); height: 430px; object-fit: cover; width: 100%; }
.ac-hero__badge { align-items: center; background: #f5a21b; border-radius: 8px; bottom: -18px; color: #10223e; display: flex; gap: 10px; padding: 13px 18px; position: absolute; right: 22px; }
.ac-hero__badge strong { font-size: 1.45rem; }
.ac-hero__badge span { font-size: .75rem; font-weight: 600; }
.ac-section { padding: 84px 0; }
.ac-section--white, .ac-gallery { background: #fff; }
.ac-section--tint { background: #f5f9fd; }
.ac-section__heading { margin: 0 auto 40px; max-width: 650px; text-align: center; }
.ac-section__heading h2, .ac-split__copy h2, .ac-cta h2 { color: #10223e; font-size: 2.1rem; line-height: 1.2; }
.ac-section__heading > p:last-child, .ac-split__copy > p { color: #657386; line-height: 1.7; margin-top: 15px; }
.ac-service-grid { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.ac-service-card { border: 1px solid #e2eaf2; border-radius: 9px; padding: 28px 22px; text-align: center; transition: box-shadow .25s, transform .25s; }
.ac-service-card:hover { box-shadow: 0 12px 28px rgba(16,34,62,.12); transform: translateY(-5px); }
.ac-service-card span { font-size: 2rem; }
.ac-service-card h3 { color: #124d82; font-size: 1.05rem; margin: 18px 0 10px; }
.ac-service-card p { color: #697789; font-size: .86rem; line-height: 1.65; }
.ac-split { align-items: center; display: grid; gap: 62px; grid-template-columns: 1fr 1fr; }
.ac-split__image img { border-radius: 12px; height: 400px; object-fit: cover; width: 100%; }
.ac-split__copy ul { color: #42546a; display: grid; gap: 12px; list-style: none; margin: 24px 0 28px; }
.ac-split__copy li::before { color: #1fb66a; content: '✓'; font-weight: 800; margin-right: 10px; }
.ac-gallery { padding: 84px 0; }
.ac-gallery__grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
.ac-gallery__grid img { border-radius: 10px; height: 320px; object-fit: cover; width: 100%; }
.ac-cta { background: #124d82; color: #fff; padding: 70px 0; text-align: center; }
.ac-cta h2 { color: #fff; }
.ac-cta p { color: #d8e6f4; margin: 12px 0 24px; }
.ac-button--light { background: #f5a21b; color: #10223e; }
.ac-footer { background: #0e3e6a; color: #bcd0e4; font-size: .85rem; padding: 20px 0; }
.ac-footer .ac-container { align-items: center; display: flex; justify-content: space-between; }
.ac-footer a { color: #fff; }
@media (max-width: 900px) { .ac-hero__inner, .ac-split { gap: 36px; grid-template-columns: 1fr; } .ac-hero__visual { max-width: 680px; } .ac-service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ac-container { width: min(100% - 28px, 520px); } .ac-header__home { display: none; } .ac-header__inner { min-height: 62px; } .ac-hero { padding: 54px 0 68px; } .ac-hero h1 { font-size: 2.25rem; } .ac-hero__visual img { height: 280px; } .ac-section, .ac-gallery { padding: 58px 0; } .ac-section__heading h2, .ac-split__copy h2, .ac-cta h2 { font-size: 1.7rem; } .ac-service-grid, .ac-gallery__grid { grid-template-columns: 1fr; } .ac-gallery__grid img { height: 250px; } .ac-footer .ac-container { align-items: flex-start; flex-direction: column; gap: 8px; } }
