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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Top bar: темно-синий, выше и заметнее ===== */
.topbar {
  background: #2266bb;
  color: #fff;
  font-size: 0.875rem;
}

.topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar__item a {
  color: #fff;
  opacity: 0.95;
}

.topbar__icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.topbar__item a:hover {
  opacity: 1;
  text-decoration: underline;
}

.topbar__divider {
  opacity: 0.5;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar__label {
  opacity: 0.9;
  margin-right: 0.25rem;
}

.topbar__social {
  color: #fff;
  padding: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.topbar__social:hover {
  opacity: 0.8;
}

/* ===== Site header ===== */
/* Top bar is first; header sits below it when we use a wrapper, but we have two separate divs.
   So: topbar is static, header is fixed. We need body to have padding-top = topbar height + header height.
   Actually in the reference the whole thing is "header". So let's make:
   - .header-wrap or we put topbar inside header. Simpler: keep topbar as first element, then header.
   - Header fixed with top: 0 would cover topbar. So we need header to start below topbar.
   - Option A: topbar is part of header, both in one fixed wrapper. Then we have one fixed block with topbar + main header.
   - Option B: topbar static at top, header fixed with top: 36px (topbar height). That way when we scroll, header can either stick under topbar or we make both sticky.
   Reference says "dark blue top bar" and "main header" - so two sections. I'll do: one wrapper .site-header that is fixed, contains .topbar and .header (main). So the main header has the angled part. When we scroll, the whole thing scrolls away OR we keep topbar+header fixed. Usually such designs have the top bar and main header both fixed. So one fixed container with two rows.
*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

/* Revert: I didn't add .site-header in HTML. So we have .topbar and .header. Make .header fixed with top: 0 and add padding-top to body = topbar + header height. And topbar is not fixed so it scrolls away. That's one approach. Or make both in one fixed block. Let me add a wrapper in HTML... Actually I didn't. So:
   Option 1: body padding-top = topbar height + header main height. Topbar is normal flow, header is fixed top: 0. Then topbar would be behind header. So we need header to have top: 40px (topbar height) and body padding-top: 40px + header height. Then when we scroll, topbar scrolls up and header sticks at top: 0? No - if header is fixed top: 40px it stays at 40px from viewport. So topbar (static) scrolls away and header stays 40px from top. That looks weird.
   Option 2: Both in one fixed container. So wrap topbar + header in <header class="site-header"> and inside put topbar and main header row. Site-header is fixed. Then we need body padding-top equal to full site-header height. I'll do that by adding the wrapper in HTML and adjusting CSS. Let me add <div class="site-header"> in HTML wrapping topbar and .header.
*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header {
  position: relative;
  background: #fff;
}

.header__inner {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  min-height: 72px;
  background: #fff;
}

/* Логотип: на белом фоне, без косой синей */
.header__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.5rem 1.5rem;
  margin: 0;
  height: 100%;
  min-height: 72px;
  background: #fff;
  color: #2266bb;
  text-decoration: none;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.header__brand:hover {
  color: #1a5a9e;
  opacity: 0.9;
}

/* Logo: text-only "Pipex", no icon */
.brand-name {
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  line-height: 1.2;
  display: inline-block;
  text-align: center;
  background: linear-gradient(135deg, #1a3a5c 0%, #2d5a8a 50%, #61ace6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-name::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: linear-gradient(90deg, #61ace6, #2d5a8a);
  border-radius: 2px;
}

.header__brand .brand-name::after {
  display: block;
}

.header__center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.5rem;
  min-width: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav__link {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #2266bb;
  transition: color 0.2s;
}

.nav__link:hover {
  color: #1a5a9e;
}

.nav__chevron {
  font-size: 0.6em;
  opacity: 0.7;
  vertical-align: middle;
  margin-left: 0.15rem;
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown:hover .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__sub {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nav__sub li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  color: #1a1a1a;
}

.nav__sub li a:hover {
  background: #f0f7ff;
  color: #2266bb;
}

/* Блок телефона + кнопка Schedule — прижаты друг к другу */
.header__cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  flex-shrink: 0;
}

.header__phone-label {
  font-size: 0.75rem;
  color: #64748b;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ea580c;
  letter-spacing: 0.02em;
}

.header__phone-icon {
  color: #2266bb;
  flex-shrink: 0;
}

.header__phone:hover {
  color: #c2410c;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--outline {
  background: #fff;
  color: #2266bb;
  border: 2px solid #2266bb;
}

.btn--outline:hover {
  background: #2266bb;
  color: #fff;
}

.header__burger-wrap {
  width: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: opacity 0.2s;
}

.burger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: #2266bb;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger:hover {
  opacity: 0.9;
}

.burger.is-open .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open .burger__line:nth-child(2) {
  opacity: 0;
}

.burger.is-open .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 992px) {
  .nav {
    display: none;
  }

  .header__cta-group {
    display: flex;
    align-items: center;
  }

  .header__cta-group .btn--outline {
    display: none;
  }

  .header__phone-label {
    display: none;
  }

  .header__cta {
    align-items: center;
  }

  .header__center {
    justify-content: flex-end;
  }


  .header__burger-wrap {
    width: 64px;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  body {
    padding-top: 80px;
  }

  .hero {
    min-height: calc(100vh - 80px);
  }

  .hero__slider {
    height: calc(100vh - 80px);
  }
}

@media (max-width: 600px) {
  .topbar__left .topbar__item:first-of-type {
    display: none;
  }
  .topbar__left .topbar__divider {
    display: none;
  }
}

/* ===== Off-canvas panel (from right) ===== */
.panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.panel-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 380px;
  z-index: 100;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.offcanvas.is-open {
  transform: translateX(0);
}

.offcanvas__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid #eee;
}

.offcanvas__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2266bb;
  text-decoration: none;
}

.offcanvas__logo:hover {
  color: #2266bb;
}

.brand-name--panel {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  background: linear-gradient(135deg, #1a3a5c, #61ace6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-name--panel::after {
  display: block;
}

.offcanvas__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.offcanvas__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #61ace6;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.offcanvas__close:hover {
  background: #4a9ad4;
}

.offcanvas__text {
  padding: 1.25rem 1.25rem 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #374151;
}

.btn--panel {
  margin: 1.25rem 1.25rem 0;
}

.offcanvas__contacts {
  padding: 1.5rem 1.25rem 0;
}

.offcanvas__contacts-title,
.offcanvas__follow-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.offcanvas__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.85rem;
}

.offcanvas__contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #e0f2fe;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
}

.offcanvas__contact-icon--pin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='%2338bdf8'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.offcanvas__contact-icon--phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='%2338bdf8'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.offcanvas__contact-icon--clock {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='%2338bdf8'%3E%3Cpath d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
}

.offcanvas__phone {
  color: #ea580c;
}

.offcanvas__follow {
  padding: 1rem 1.25rem 0;
}

.offcanvas__socials {
  display: flex;
  gap: 0.5rem;
}

.offcanvas__social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 50%;
  color: #475569;
  transition: background 0.2s, color 0.2s;
}

.offcanvas__social:hover {
  background: #e2e8f0;
  color: #2266bb;
}

.offcanvas__nav {
  padding: 1.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.offcanvas__nav a {
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  padding: 0.5rem 0;
}

.offcanvas__nav a:hover {
  color: #2266bb;
}

/* ===== Body padding: reserve space for fixed header ===== */
body {
  padding-top: 122px;
}

/* ===== Hero (slider, 2 slides) ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 122px);
  overflow: hidden;
  background: #fff;
}

.hero__diagonal-bg {
  position: absolute;
  inset: 0;
  background: #4ba1ed;
  clip-path: polygon(0 0, 0 100%, 42% 100%, 55% 0);
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
}

.hero__slider {
  position: relative;
  z-index: 3;
  height: calc(100vh - 122px);
  min-height: 480px;
  overflow: hidden;
}

.hero__track {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  transform: translateX(0);
}

.hero__slide {
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
  position: relative;
}

.hero__slide-inner {
  position: relative;
  height: 100%;
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
}

/* Контейнер: слева картинка 01/02 без оверлея, справа текст по центру */
.hero__content {
  position: absolute;
  inset: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("image/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__content--slide1,
.hero__content--slide2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("image/hero-bg.png");
}

/* Слева: картинка 01 или 02 без оверлея */
.hero__content-pic {
  width: 55%;
  min-width: 360px;
  flex-shrink: 0;
  display: block;
  position: relative;
  z-index: 1;
}

.hero__content-pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__content-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

/* Текст по центру, крупнее */
.hero__content-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  box-sizing: border-box;
}

.hero__content-text .hero__title {
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  margin: 0 0 1.25rem 0;
}

.hero__content-text .hero__text {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 520px;
}

.hero__content-text .hero__line {
  margin: 0 auto 1.25rem;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1rem 0;
  color: #fff;
}

.hero__text {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  max-width: none;
}

.hero__line {
  display: block;
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  border-radius: 2px;
  transform-origin: left center;
}

.hero__cta {
  display: inline-block;
  align-self: center;
  padding: 0.85rem 1.75rem;
  background: #2266bb;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}

.hero__cta:hover {
  background: #1a5a9e;
  transform: translateY(-2px);
  color: #fff;
}

/* Стрелки слайдера: горизонтально, влево/вправо; поверх контента */
.hero__arrows {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  z-index: 10;
  pointer-events: none;
}

.hero__arrows .hero__arrow {
  pointer-events: auto;
}

.hero__arrow {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2266bb;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero__arrow:hover {
  background: #1a5a9e;
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .hero__content {
    inset: 0;
    flex-direction: column;
    padding: 0;
    border-radius: 0;
    width: 100%;
    left: 0;
    right: 0;
  }

  .hero__content-pic {
    display: none;
  }

  .hero__content-text {
    width: 100%;
    flex: none;
    align-items: flex-start;
    text-align: left;
    padding: 2.5rem 1.5rem 4rem;
    justify-content: center;
  }

  .hero__content-text .hero__line {
    margin: 0 0 1.25rem 0;
  }

  .hero__arrows {
    bottom: 1rem;
    right: 1rem;
  }
}

/* ===== Sections ===== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

/* ===== Our Services (карточки с картинками) ===== */
.section {
  overflow-x: hidden;
}

.section--services {
  text-align: left;
  padding: 4rem 1.5rem 5rem;
}

.services-header {
  position: relative;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.services-label {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #61ace6;
  margin: 0 0 0.5rem 0;
}

.services-label-line {
  grid-column: 1 / -1;
  display: block;
  width: 48px;
  height: 3px;
  background: #61ace6;
  margin-bottom: 1.25rem;
}

.services-title-wrap {
  position: relative;
}

.services-title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1a3a5c;
  margin: 0;
  line-height: 1.2;
}

.services-watermark {
  position: absolute;
  left: 0;
  top: -0.15em;
  z-index: 0;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.services-desc {
  grid-column: 2;
  grid-row: 3 / 5;
}

.services-desc p {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.services-label-line--under {
  display: block;
  margin-bottom: 0;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card-img {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card-img:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-card-img__pic {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e2e8f0;
}

.service-card-img__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-img__body {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1rem;
  min-height: 90px;
}

.service-card-img__icon {
  flex-shrink: 0;
  width: 48px;
  height: 56px;
  background: #2266bb;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.service-card-img__icon--pipes,
.service-card-img__icon--emergency {
  background: #2266bb;
}

.service-card-img__text {
  flex: 1;
  min-width: 0;
}

.service-card-img__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 0.2rem 0;
}

.service-card-img__sub {
  font-size: 0.9rem;
  color: #61ace6;
  margin: 0;
}

.service-card-img__plus {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border: none;
  border-radius: 8px;
  color: #2266bb;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.service-card-img__plus:hover {
  background: #2266bb;
  color: #fff;
}

/* При ховере поверх картинки плавно показывается тёмно-синий блок */
.service-card-img__hover {
  position: absolute;
  inset: 0;
  background: #1a3a5c;
  padding: 1rem 1rem 1.25rem;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card-img:hover .service-card-img__hover {
  opacity: 1;
}

.service-card-img__desc {
  margin: 0 0 0.75rem 0;
  padding: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.service-card-img__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-card-img__list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.service-card-img__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

@media (max-width: 900px) {
  .services-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .services-desc {
    grid-column: 1;
    grid-row: auto;
  }
  .services-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .section--services,
  .section--about,
  .section--approach {
    padding: 2.5rem 1rem 3.5rem;
  }
  .services-header {
    margin-bottom: 2rem;
  }
  .services-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .services-watermark {
    font-size: clamp(3rem, 10vw, 5rem);
  }
  .service-card-img__body {
    padding: 1rem;
    min-height: auto;
  }
  .service-card-img__pic {
    min-height: 200px;
  }
  .about__inner,
  .approach__inner {
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .about__title,
  .approach__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .approach__blocks {
    gap: 1.5rem;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .section--services,
  .section--about,
  .section--approach {
    padding: 2rem 0.75rem 3rem;
  }
  .services-header {
    padding: 0 0.5rem;
  }
  .about__content,
  .approach__content {
    padding: 0 0.25rem;
  }
  .about__stat-num {
    font-size: 1.5rem;
  }
}

/* ===== About (картинка about.webp + текст, гарантия, статистика) ===== */
.section--about {
  padding: 4rem 1.5rem 5rem;
  background: #fff;
}

.about__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__pic {
  position: relative;
  min-width: 0;
}

.about__pic img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.about__content {
  padding: 0 0.5rem;
}

.about__label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin: 0 0 1.25rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: #61ace6;
}

.about__label-line {
  display: block;
  width: 32px;
  height: 2px;
  background: #61ace6;
}

.about__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 1.25rem 0;
  line-height: 1.25;
}

.about__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0 0 1.5rem 0;
}

.about__list {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1a3a5c;
}

.about__list-arrow {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #61ace6;
}

.about__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.about__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 140px;
}

.about__stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #61ace6;
  border: 2px solid #61ace6;
  border-radius: 50%;
  background: rgba(97, 172, 230, 0.08);
}
.about__stat-icon--faucet {
  border-radius: 8px;
}

.about__stat-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a3a5c;
  line-height: 1.2;
}

.about__stat-desc {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .about__stats {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    justify-content: flex-start;
  }
  .about__stat {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .about__stats {
    gap: 0.75rem;
  }
  .about__stat {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about__pic {
    order: -1;
  }
}

/* ===== Our Approach (картинка Approach.webp + три блока) ===== */
.section--approach {
  padding: 4rem 1.5rem 5rem;
  background: #fff;
}

.approach__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.approach__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: #61ace6;
}

.approach__label-line {
  display: block;
  width: 28px;
  height: 2px;
  background: #61ace6;
}

.approach__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 1.25rem 0;
  line-height: 1.25;
}

.approach__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0 0 1.5rem 0;
}

.approach__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.approach__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1a3a5c;
}

.approach__list-arrow {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #61ace6;
}

.approach__pic {
  min-width: 0;
}

.approach__pic img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.approach__blocks {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.approach__block {
  padding: 1.5rem 0;
  text-align: left;
}

.approach__block-icon {
  display: inline-block;
  font-size: 2.25rem;
  color: #2266bb;
  margin-bottom: 1rem;
}

.approach__block-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 0.5rem 0;
}

.approach__block-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #555;
  margin: 0;
}

@media (max-width: 900px) {
  .approach__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .approach__pic {
    order: -1;
  }
  .approach__blocks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .approach__blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .approach__block {
    padding: 1rem 0;
  }
  .approach__block-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  .approach__block-title {
    font-size: 1.1rem;
  }
  .approach__block-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .approach__blocks {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  .approach__block {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .approach__block:last-child {
    border-bottom: none;
  }
  .approach__block-icon {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
  }
  .approach__block-title {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
  }
  .approach__block-text {
    font-size: 0.875rem;
    line-height: 1.45;
  }
}

.section__title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.section__lead {
  color: #555;
  margin-bottom: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.service-card {
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  border-color: #2266bb;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card__text {
  color: #555;
  font-size: 0.95rem;
}

.about__content,
.contact__content {
  max-width: 560px;
  margin: 0 auto;
}

.about__text {
  color: #555;
}

.contact__content a {
  color: #2266bb;
  font-weight: 500;
}

.contact__content a:hover {
  text-decoration: underline;
}

/* ===== Additional Services ===== */
.section--additional {
  position: relative;
  max-width: none;
  width: 100%;
  padding: 4.5rem 1.5rem 5.5rem;
  background-color: #fff;
  background-image: url("image/what-else.png");
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-origin: border-box;
  background-size: auto 85%;
  overflow: hidden;
  text-align: left;
}

.section--additional::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.92) 45%, rgba(255,255,255,0.5) 70%, transparent 85%);
  pointer-events: none;
  z-index: 0;
}

.additional__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.additional__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  align-items: start;
  margin-bottom: 3rem;
  text-align: left;
}

.additional__label {
  grid-column: 1 / -1;
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: #2266bb;
  text-align: left;
}

.additional__label-underline {
  border-bottom: 2px solid #2266bb;
  padding-bottom: 2px;
}

.additional__title {
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 800;
  color: #1a3a5c;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.additional__intro {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
}

.additional__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.additional-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(26, 58, 92, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(34, 102, 187, 0.08);
  transition: box-shadow 0.3s ease, transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.additional-card:hover {
  box-shadow: 0 12px 32px rgba(26, 58, 92, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-6px);
  border-color: rgba(34, 102, 187, 0.18);
}

.additional-card__icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(145deg, #2266bb 0%, #1a5a9e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(34, 102, 187, 0.35);
}

.additional-card__icon-wrap i {
  transform: none;
}

.additional-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.additional-card__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin: 0 0 1.25rem 0;
  text-align: left;
  flex: 1;
}

.additional-card__list {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  text-align: left;
  width: 100%;
}

.additional-card__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2266bb;
  margin-bottom: 0.45rem;
}

.additional-card__list li:last-child {
  margin-bottom: 0;
}

.additional-card__list li i {
  flex-shrink: 0;
  font-size: 0.8rem;
  opacity: 0.9;
}

.additional-card__btn {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  background: #fff;
  color: #2266bb;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid #2266bb;
  border-radius: 10px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.additional-card__btn:hover {
  background: #2266bb;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .additional__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section--additional {
    padding: 2.5rem 1rem 3.5rem;
    background-size: auto 60%;
    background-position: right 30% center;
  }
  .section--additional::before {
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.95) 70%, transparent 100%);
  }
  .additional__header {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .additional__cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .additional-card {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .section--additional {
    padding: 2rem 0.75rem 3rem;
    background-size: auto 45%;
    background-position: right 20% center;
  }
  .additional-card__icon-wrap {
    width: 64px;
    height: 64px;
    font-size: 1.65rem;
  }
}

/* ===== How We Work ===== */
.section--how-work {
  padding: 4.5rem 1.5rem 5rem;
  background: #fff;
  text-align: center;
}

.how-work__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.how-work__header {
  position: relative;
  margin-bottom: 3.5rem;
}

.how-work__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: #61ace6;
}

.how-work__label-line {
  display: block;
  width: 32px;
  height: 2px;
  background: #61ace6;
}

.how-work__title {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 1.25rem 0;
  line-height: 1.25;
}

.how-work__watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.how-work__desc {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.65;
  color: #555;
}

.how-work__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.how-work__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.how-work__step-num {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.how-work__step-pic {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 1.25rem;
  aspect-ratio: 1;
  overflow: hidden;
}

.how-work__step-pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.how-work__step-title {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a3a5c;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .how-work__steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .how-work__step-pic {
    max-width: 260px;
  }
}

@media (max-width: 768px) {
  .section--how-work {
    padding: 2.5rem 1rem 3.5rem;
  }
  .how-work__header {
    margin-bottom: 2.5rem;
  }
  .how-work__watermark {
    font-size: clamp(3rem, 12vw, 6rem);
  }
}

@media (max-width: 480px) {
  .section--how-work {
    padding: 2rem 0.75rem 3rem;
  }
  .how-work__step-num {
    font-size: clamp(4rem, 25vw, 6rem);
  }
}

/* ===== Testimonials ===== */
.section--testimonials {
  max-width: none;
  width: 100%;
  padding: 0;
  background: #1a5a9e;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  overflow: hidden;
}

.testimonials__slider {
  position: relative;
  min-height: 480px;
  max-width: 100%;
}

.testimonials__track {
  display: flex;
  width: 200%;
  min-height: 480px;
  transition: transform 0.5s ease-in-out;
  transform: translateX(0);
}

.testimonials__slide {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  min-height: 480px;
}

.testimonials__pic-wrap {
  position: relative;
  flex: 0 0 42%;
  max-width: 42%;
  min-height: 480px;
  overflow: hidden;
}

.testimonials__pic {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.testimonials__content {
  flex: 1;
  background: #fff;
  padding: 3rem 3rem 4rem;
  position: relative;
  border-radius: 0 0 0 120px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.testimonials__quote-mark {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  color: #1a3a5c;
  line-height: 1;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonials__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: #61ace6;
}

.testimonials__label-line {
  display: block;
  width: 28px;
  height: 2px;
  background: #61ace6;
}

.testimonials__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 1.25rem 0;
  line-height: 1.25;
}

.testimonials__stars {
  color: #e74c3c;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.15em;
}

.testimonials__text {
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
  margin: 0 0 1.5rem 0;
  font-style: normal;
}

.testimonials__author {
  margin: 0 0 1.5rem 0;
  font-size: 0.95rem;
}

.testimonials__author-name {
  color: #2266bb;
  font-weight: 600;
}

.testimonials__author-role {
  color: #777;
}

.testimonials__nav {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 5;
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials__dot {
  width: 12px;
  height: 12px;
  border: 2px solid #2266bb;
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.testimonials__dot.is-active {
  background: #2266bb;
}

.testimonials__dot:hover {
  border-color: #1a5a9e;
  background: rgba(34, 102, 187, 0.3);
}

.testimonials__arrows {
  display: flex;
  gap: 0.35rem;
}

.testimonials__arrow {
  width: 44px;
  height: 44px;
  border: 2px solid #2266bb;
  background: #fff;
  color: #2266bb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.testimonials__arrow:hover {
  background: #2266bb;
  color: #fff;
}

@media (max-width: 900px) {
  .testimonials__slide {
    flex-direction: column;
  }
  .testimonials__pic-wrap {
    flex: 0 0 auto;
    max-width: none;
    min-height: 320px;
  }
  .testimonials__pic {
    min-height: 320px;
  }
  .testimonials__content {
    border-radius: 0;
    padding: 2.5rem 2rem 3rem;
  }
  .testimonials__nav {
    right: 2rem;
    bottom: 1.5rem;
  }
}

@media (max-width: 600px) {
  .testimonials__track {
    min-height: auto;
  }
  .testimonials__slide {
    min-height: auto;
  }
  .testimonials__content {
    padding: 2rem 1.5rem 2.5rem;
  }
  .testimonials__quote-mark {
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
  }
}

/* ===== From the Blog / Latest News ===== */
.section--blog {
  padding: 4.5rem 1.5rem 5rem;
  background: transparent;
  text-align: left;
}

.blog__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.blog__header {
  position: relative;
  margin-bottom: 2.5rem;
}

.blog__watermark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  z-index: 0;
}

.blog__label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: #61ace6;
}

.blog__label-line {
  display: block;
  width: 32px;
  height: 2px;
  background: #61ace6;
}

.blog__title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #1a3a5c;
  margin: 0;
  line-height: 1.25;
}

/* Две широкие карточки в один ряд */
.blog__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.blog-card--wide {
  min-width: 0;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-card--text {
  padding: 1.5rem 1.5rem 1.75rem;
}

.blog-card__meta {
  font-size: 0.85rem;
  color: #777;
  margin: 0 0 0.75rem 0;
}

.blog-card__meta a {
  color: #61ace6;
  text-decoration: none;
}

.blog-card__meta a:hover {
  text-decoration: underline;
}

.blog-card__meta .bi {
  margin-right: 0.35rem;
  color: #999;
}

.blog-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.blog-card__title a {
  color: #1a3a5c;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: #61ace6;
}

.blog-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.blog-card--img .blog-card__pic-wrap {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card--img:hover .blog-card__pic {
  transform: scale(1.05);
}

.blog-card__date {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.75rem;
  background: #1a3a5c;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px;
}

.blog-card--img .blog-card__meta,
.blog-card--img .blog-card__title,
.blog-card--img .blog-card__excerpt,
.blog-card--img .blog-card__link {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.blog-card--img .blog-card__meta {
  padding-top: 1rem;
  margin-bottom: 0.5rem;
}

.blog-card--img .blog-card__excerpt {
  padding-bottom: 0.5rem;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #61ace6;
  text-decoration: none;
  padding: 0 1.25rem 1.25rem;
  transition: gap 0.2s ease;
}

.blog-card__link:hover {
  gap: 0.6rem;
}

.blog-card__link .bi {
  font-size: 1rem;
}

@media (max-width: 900px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section--blog {
    padding: 2.5rem 1rem 3.5rem;
  }
}

/* ===== FAQ ===== */
.section--faq {
  padding: 4.5rem 1.5rem 5rem;
  background: #fff;
  text-align: left;
}

.faq__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.faq__intro {
  position: relative;
}

.faq__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: #61ace6;
}

.faq__label-line {
  display: block;
  width: 32px;
  height: 2px;
  background: #61ace6;
}

.faq__title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 1.25rem 0;
  line-height: 1.25;
}

.faq__watermark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  z-index: 0;
}

.faq__desc {
  position: relative;
  z-index: 1;
  margin: 0 0 1.5rem 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
}

.faq__btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2266bb;
  background: #fff;
  border: 2px solid #2266bb;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.faq__btn:hover {
  background: #2266bb;
  color: #fff;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq__item {
  background: #f8f9fb;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq__item:last-child {
  margin-bottom: 0;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: #1a3a5c;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.faq__question:hover {
  background: rgba(34, 102, 187, 0.04);
}

.faq__question-text {
  flex: 1;
}

.faq__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #2266bb;
  font-size: 1.25rem;
  border-left: 2px solid #2266bb;
  padding-left: 0.75rem;
  margin-left: 0.25rem;
}

.faq__answer {
  padding: 0 1.5rem 1.25rem;
  overflow: hidden;
}

.faq__item .faq__answer {
  display: none;
}

.faq__item.is-open .faq__answer {
  display: block;
}

.faq__item.is-open .faq__icon .bi-plus {
  display: none;
}

.faq__item.is-open .faq__icon .bi-dash {
  display: block;
}

.faq__item .faq__icon .bi-dash {
  display: none;
}

.faq__answer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 900px) {
  .faq__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section--faq {
    padding: 2.5rem 1rem 3.5rem;
  }
}

@media (max-width: 480px) {
  .section--faq {
    padding: 2rem 0.75rem 3rem;
  }
  .faq__question {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }
  .faq__answer {
    padding: 0 1.25rem 1rem;
  }
}

/* ===== Contact / Request a Quote ===== */
.section--contact {
  max-width: none;
  width: 100%;
  padding: 4.5rem 1.5rem 5rem;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 50%, #f5f8fb 100%);
  background-color: #f0f4f8;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(34, 102, 187, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(97, 172, 230, 0.08) 0%, transparent 45%),
    radial-gradient(circle, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 24px 24px;
}

.contact__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact__form-wrap {
  background: rgba(248, 249, 250, 0.8);
  padding: 2.5rem;
  border-radius: 16px;
}

.contact__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 1.5rem 0;
  text-align: left;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__input,
.contact__select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #1a1a1a;
  transition: border-color 0.2s;
}

.contact__input::placeholder {
  color: #888;
}

.contact__input:focus,
.contact__select:focus {
  outline: none;
  border-color: #2266bb;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact__input-wrap {
  display: flex;
  align-items: center;
  position: relative;
}

.contact__input-wrap .contact__input {
  padding-left: 2.75rem;
}

.contact__input-icon {
  position: absolute;
  left: 1rem;
  font-size: 1.1rem;
  color: #888;
  pointer-events: none;
}

.contact__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact__submit {
  align-self: flex-start;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: #e67e22;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.25rem;
}

.contact__submit:hover {
  background: #d35400;
  transform: translateY(-1px);
}

.contact__pic-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
}

.contact__pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 400px;
}

.contact__badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #2266bb;
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 140px;
}

.contact__badge-icon {
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

.contact__badge-num {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
}

.contact__badge-text {
  font-size: 0.85rem;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .contact__pic-wrap {
    order: -1;
    min-height: 320px;
  }
  .contact__pic {
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .section--contact {
    padding: 2rem 0.75rem 3rem;
  }
  .contact__form-wrap {
    padding: 1.5rem;
  }
  .contact__row {
    grid-template-columns: 1fr;
  }
}

/* ===== Success Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 400px;
  width: 100%;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.is-open .modal {
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: color 0.2s;
}

.modal__close:hover {
  color: #1a1a1a;
}

.modal__content {
  text-align: center;
  padding-top: 0.5rem;
}

.modal__icon {
  font-size: 4rem;
  color: #27ae60;
  margin-bottom: 1rem;
  display: block;
}

.modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 0.75rem 0;
}

.modal__text {
  font-size: 1rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* ===== Cookie consent banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #1a3a5c 0%, #0d2137 100%);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  border-top: 3px solid #61ace6;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s, visibility 0.4s;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(97, 172, 230, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #61ace6;
}

.cookie-banner__text {
  flex: 1;
  min-width: 260px;
}

.cookie-banner__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.35rem 0;
}

.cookie-banner__desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.cookie-banner__desc a {
  color: #61ace6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__desc a:hover {
  color: #8fc4f0;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__link {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #61ace6;
  background: transparent;
  border: 2px solid #61ace6;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.cookie-banner__link:hover {
  background: rgba(97, 172, 230, 0.15);
  color: #fff;
}

.cookie-banner__accept {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: #2266bb;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.cookie-banner__accept:hover {
  background: #1a5a9e;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-banner__icon {
    margin: 0 auto;
  }
  .cookie-banner__actions {
    justify-content: center;
  }
}

/* ===== Footer ===== */
.footer {
  border-top: 3px solid #2266bb;
  padding: 3rem 1.5rem 2rem;
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.9);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand .brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, #b8d9f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__brand .brand-name::after {
  background: linear-gradient(90deg, #61ace6, rgba(255, 255, 255, 0.4));
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #61ace6;
  margin: 0 0 1.25rem 0;
}

.footer__contact p,
.footer__links a {
  margin: 0 0 0.6rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer__contact p:last-child,
.footer__links a:last-of-type {
  margin-bottom: 0;
}

.footer__contact a,
.footer__links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__contact a:hover,
.footer__links a:hover {
  color: #61ace6;
}

.footer__contact i {
  margin-right: 0.5rem;
  color: #61ace6;
  opacity: 0.9;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__disclaimer {
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer__nav {
  display: flex;
  gap: 1.5rem;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: #61ace6;
}

@media (max-width: 768px) {
  .footer {
    padding: 1.5rem 1rem;
  }
  .footer__top {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

/* ===== Legal pages (Policy, Terms, Cookies) ===== */
.page-content {
  padding: 3rem 1.5rem 4rem;
  background: #fff;
}

.legal-page__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.legal-page__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 0.5rem 0;
}

.legal-page__updated {
  font-size: 0.9rem;
  color: #777;
  margin: 0 0 2rem 0;
}

.legal-page__inner h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a3a5c;
  margin: 2rem 0 0.75rem 0;
}

.legal-page__inner h2:first-of-type {
  margin-top: 1.5rem;
}

.legal-page__inner p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin: 0 0 1rem 0;
}

.legal-page__inner p:last-child {
  margin-bottom: 0;
}

/* ===== Service pages (Pipe Repair, Fixture, Drain, Water Heaters) ===== */
.service-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 5.5rem;
  text-align: center;
  color: #fff;
  background-color: #1a3a5c;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 58, 92, 0.92) 0%, rgba(45, 90, 138, 0.88) 100%);
  z-index: 0;
}

.service-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.service-hero__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.75rem 0;
}

.service-hero__title {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.service-hero__text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.service-page .page-content {
  padding: 0;
  background: #f0f4f8;
}

/* --- Intro (Overview) — two columns, image + text --- */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  background: #fff;
}

.service-intro__pic {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-intro__pic img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.service-intro__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #61ace6;
  margin: 0 0 0.5rem 0;
}

.service-intro__title {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.service-intro__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin: 0 0 1rem 0;
}

.service-intro__text:last-of-type {
  margin-bottom: 0;
}

/* --- What We Offer: interactive cards --- */
.service-offer {
  padding: 4.5rem 1.5rem;
  background: #f8f9fa;
}

.service-offer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.service-offer__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #61ace6;
  margin: 0 0 0.5rem 0;
}

.service-offer__title {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 2.5rem 0;
  line-height: 1.25;
  text-align: center;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.service-card__icon-wrap {
  padding: 1.75rem 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.service-card__icon-wrap i {
  font-size: 2.25rem;
  color: #61ace6;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__icon-wrap i {
  transform: scale(1.1);
}

.service-card__body {
  padding: 0 1.5rem 1.5rem;
  flex: 1;
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* --- How We Work: steps with images --- */
.service-steps-wrap {
  padding: 4.5rem 1.5rem;
  background: #fff;
}

.service-steps-wrap__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.service-steps-wrap__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #61ace6;
  margin: 0 0 0.5rem 0;
}

.service-steps-wrap__title {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 2.5rem 0;
  line-height: 1.25;
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.service-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-step:hover {
  transform: translateY(-4px);
}

.service-step__num {
  position: absolute;
  top: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 800;
  color: rgba(97, 172, 230, 0.15);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.service-step__pic {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 260px;
  margin: 0 auto 1.25rem;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-step__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-step__title {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a3a5c;
  margin: 0;
  line-height: 1.3;
}

/* --- Benefits: icon grid --- */
.service-benefits {
  padding: 4.5rem 1.5rem;
  background: #f0f4f8;
}

.service-benefits__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.service-benefits__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #61ace6;
  margin: 0 0 0.5rem 0;
}

.service-benefits__title {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 2rem 0;
  line-height: 1.25;
}

.service-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-benefit {
  background: #fff;
  padding: 1.75rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-benefit__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(97, 172, 230, 0.12);
  border-radius: 12px;
  color: #61ace6;
  font-size: 1.75rem;
}

.service-benefit__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 0.4rem 0;
}

.service-benefit__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* --- Why Choose + CTA --- */
.service-why {
  padding: 4rem 1.5rem;
  background: #fff;
  text-align: center;
}

.service-why__inner {
  max-width: 720px;
  margin: 0 auto;
}

.service-why__title {
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.service-why__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin: 0;
}

/* --- Service FAQ (accordion) --- */
.service-faq-wrap {
  padding: 4.5rem 1.5rem;
  background: #f8f9fa;
}

.service-faq-wrap__inner {
  max-width: 800px;
  margin: 0 auto;
}

.service-faq-wrap__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #61ace6;
  margin: 0 0 0.5rem 0;
}

.service-faq-wrap__title {
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 1.5rem 0;
  line-height: 1.25;
}

.service-faq-wrap .faq__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-faq-wrap .faq__item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 0.75rem;
}

.service-faq-wrap .faq__item:last-child {
  margin-bottom: 0;
}

.service-faq-wrap .faq__question {
  padding: 1.15rem 1.25rem;
}

.service-faq-wrap .faq__answer {
  padding: 0 1.25rem 1.15rem;
}

.service-faq-wrap .faq__item .faq__answer {
  display: none;
}

.service-faq-wrap .faq__item.is-open .faq__answer {
  display: block;
}

/* --- Service CTA --- */
.service-cta {
  padding: 4.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #1a3a5c 0%, #2d5a8a 100%);
  color: #fff;
}

.service-cta__title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  line-height: 1.25;
}

.service-cta__text {
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.95);
}

.service-cta .btn--service {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  background: #fff;
  color: #1a3a5c;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s, color 0.2s;
}

.service-cta .btn--service:hover {
  background: #61ace6;
  color: #fff;
  transform: scale(1.03);
}

/* --- Legacy service-section (keep for any remaining content) --- */
.service-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  background: #fff;
}

.service-section__title {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 1.25rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #61ace6;
  display: inline-block;
}

.service-section__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin: 0 0 1rem 0;
}

/* --- Service page responsive --- */
@media (max-width: 900px) {
  .service-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }
  .service-intro__pic {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
  .service-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-step__pic {
    max-width: 220px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 36vh;
    padding: 3.5rem 1rem 4rem;
  }
  .service-offer,
  .service-steps-wrap,
  .service-benefits,
  .service-faq-wrap,
  .service-cta {
    padding: 3rem 1rem;
  }
  .service-cards {
    grid-template-columns: 1fr;
  }
  .service-benefits__grid {
    grid-template-columns: 1fr;
  }
}
