
:root {
  --navy: #08284b;
  --navy-2: #061d36;
  --navy-3: #0d3a69;
  --orange: #ff6b00;
  --orange-dark: #e85f00;
  --orange-soft: #fff1e6;
  --text: #112d4e;
  --muted: #5d7084;
  --line: #e4eaf0;
  --surface: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(8, 40, 75, .12);
  --radius: 24px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  content: "";
  background: var(--orange);
  border-radius: 99px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.12;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 800;
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 48px;
}

.section-heading p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center .eyebrow::before {
  display: none;
}

.section-heading--center p {
  margin-right: auto;
  margin-left: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 32px rgba(8, 40, 75, .08);
  backdrop-filter: blur(14px);
}

.topbar {
  color: var(--white);
  background: var(--navy-2);
}

.topbar__inner {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  min-height: 42px;
  align-items: center;
}

.topbar span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
}

.topbar svg {
  width: 19px;
  height: 19px;
  fill: var(--orange);
}

.nav-wrap__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 92px;
  gap: 32px;
  align-items: center;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  gap: 12px;
  align-items: center;
}

.brand__mark {
  width: 47px;
}

.brand__mark svg {
  fill: none;
  stroke: var(--navy);
  stroke-width: 5;
}

.brand__mark .brand__drop {
  fill: var(--orange);
  stroke: none;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: .95;
}

.brand__text strong {
  color: var(--navy);
  font-size: 23px;
  letter-spacing: .02em;
}

.brand__text em {
  color: var(--orange);
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .02em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 38px);
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-phone {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  white-space: nowrap;
}

.header-phone__icon {
  display: grid;
  width: 50px;
  height: 50px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  place-items: center;
  box-shadow: 0 10px 24px rgba(255, 107, 0, .24);
}

.header-phone__icon svg {
  width: 24px;
  fill: currentColor;
}

.header-phone small,
.header-phone strong {
  display: block;
}

.header-phone small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
}

.header-phone strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 99px;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 0;
  background:
    radial-gradient(circle at 13% 22%, rgba(255, 107, 0, .08), transparent 25%),
    linear-gradient(90deg, #fff 0%, #fff 48%, #f4f7fa 48%, #eef3f7 100%);
}

.hero::after {
  position: absolute;
  top: 40px;
  left: 46%;
  width: 400px;
  height: 400px;
  content: "";
  border: 1px solid rgba(8, 40, 75, .06);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: 70px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 88px;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero__lead {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}

.hero__text {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 26px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button svg {
  width: 23px;
  fill: currentColor;
}

.button--primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(255, 107, 0, .24);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--orange-dark);
  box-shadow: 0 18px 34px rgba(255, 107, 0, .3);
}

.button--ghost {
  color: var(--navy);
  border-color: var(--navy);
  background: rgba(255, 255, 255, .75);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--white);
  background: var(--navy);
}

.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__benefits li {
  display: flex;
  min-width: 150px;
  gap: 10px;
  align-items: center;
}

.hero__benefits svg {
  width: 32px;
  flex: 0 0 32px;
  fill: var(--navy);
}

.hero__benefits strong,
.hero__benefits small {
  display: block;
}

.hero__benefits strong {
  color: var(--navy);
  font-size: 13px;
}

.hero__benefits small {
  color: var(--muted);
  font-size: 11px;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 660px;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0 0 0 80px;
}

.hero__image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, .82) 0%, rgba(255, 255, 255, .06) 30%, rgba(8, 40, 75, .04) 100%);
  pointer-events: none;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.hero__badge {
  position: absolute;
  right: 24px;
  bottom: 42px;
  z-index: 2;
  padding: 18px 24px;
  color: var(--white);
  background: rgba(8, 40, 75, .93);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero__badge span,
.hero__badge strong {
  display: block;
}

.hero__badge span {
  color: #c8d5e3;
  font-size: 12px;
}

.hero__badge strong {
  font-size: 22px;
}

.hero-services {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: -28px;
  padding: 25px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-services span {
  display: flex;
  min-height: 50px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .2);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.hero-services span:last-child {
  border-right: 0;
}

/* Services */
.services {
  padding-top: 130px;
}

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

.service-card {
  position: relative;
  min-height: 280px;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(8, 40, 75, .07);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card::after {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  content: "";
  background: var(--orange-soft);
  border-radius: 50%;
  transition: transform .25s ease;
}

.service-card:hover {
  border-color: rgba(255, 107, 0, .35);
  box-shadow: 0 20px 46px rgba(8, 40, 75, .12);
  transform: translateY(-6px);
}

.service-card:hover::after {
  transform: scale(1.18);
}

.service-card__icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  color: var(--navy);
  background: var(--surface);
  border-radius: 50%;
  place-items: center;
}

.service-card__icon svg {
  width: 42px;
  fill: currentColor;
}

.service-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  color: var(--muted);
}

.service-cta {
  display: flex;
  margin-top: 34px;
  padding: 28px 34px;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy-2), var(--navy-3));
  border-radius: 20px;
}

.service-cta span,
.service-cta strong {
  display: block;
}

.service-cta span {
  color: #b9cadd;
  font-size: 14px;
}

.service-cta strong {
  font-size: 24px;
}

.service-cta a {
  display: inline-flex;
  min-height: 58px;
  padding: 0 26px;
  gap: 10px;
  align-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.service-cta svg {
  width: 24px;
  fill: currentColor;
}

/* About */
.about {
  background: var(--surface);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(450px, 1.05fr);
  gap: 74px;
  align-items: center;
}

.about__content > p {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 18px;
}

.about__list {
  display: grid;
  gap: 4px;
}

.about__list > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  padding: 19px 0;
  gap: 18px;
  border-bottom: 1px solid #dce4ec;
}

.about__list > div:last-child {
  border-bottom: 0;
}

.about__list > div > span {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--orange);
  background: var(--white);
  border: 1px solid rgba(255, 107, 0, .18);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  place-items: center;
}

.about__list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.about__list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 18px;
}

.about__visual {
  position: relative;
  min-height: 650px;
}

.about__visual::before {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  content: "";
  background-image: radial-gradient(var(--orange) 1.8px, transparent 1.8px);
  background-size: 15px 15px;
  opacity: .24;
}

.about__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 34px 100px 34px 34px;
  box-shadow: var(--shadow);
}

.about__note {
  position: absolute;
  right: -22px;
  bottom: 30px;
  left: 36px;
  padding: 24px 28px;
  color: var(--white);
  background: rgba(8, 40, 75, .95);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.about__note strong,
.about__note span {
  display: block;
}

.about__note strong {
  margin-bottom: 4px;
  font-size: 22px;
}

.about__note span {
  color: #c9d6e2;
  font-size: 14px;
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq__container {
  max-width: 1000px;
}

.faq__list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(8, 40, 75, .06);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 78px;
  padding: 0 26px;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.faq-item button svg {
  width: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
  transition: transform .25s ease;
}

.faq-item.is-open button {
  color: var(--orange);
}

.faq-item.is-open button svg {
  stroke: var(--orange);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-item__answer p {
  min-height: 0;
  margin: 0;
  padding: 0 26px;
  overflow: hidden;
  color: var(--muted);
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-item__answer p {
  padding-bottom: 26px;
}

/* Area */
.area {
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 107, 0, .08), transparent 22%),
    var(--surface);
}

.area__grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: 56px;
  align-items: center;
}

.area__content {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(8, 40, 75, .08);
}

.area__content p {
  margin-bottom: 24px;
  color: var(--muted);
}

.area__content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 30px;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.area__content li {
  position: relative;
  padding-left: 28px;
  color: var(--navy);
  font-weight: 600;
}

.area__content li::before {
  position: absolute;
  top: .35em;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--orange-soft);
  border: 5px solid var(--orange-soft);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--orange);
}

.area__map img {
  width: 100%;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  padding: 44px 0;
  color: var(--white);
  background:
    radial-gradient(circle at center, rgba(20, 74, 126, .6), transparent 48%),
    var(--navy-2);
}

.site-footer__inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.site-footer__icon {
  display: grid;
  width: 66px;
  height: 66px;
  color: var(--orange);
  border: 3px solid var(--orange);
  border-radius: 50%;
  place-items: center;
}

.site-footer__icon svg {
  width: 32px;
  fill: currentColor;
}

.site-footer a small,
.site-footer a strong {
  display: block;
}

.site-footer a small {
  color: #d8e3ee;
  font-size: 16px;
}

.site-footer a strong {
  color: var(--orange);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
}

.mobile-call {
  display: none;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Focus */
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 107, 0, .45);
  outline-offset: 4px;
}

/* Tablet */
@media (max-width: 1100px) {
  .topbar__inner {
    gap: 24px;
  }

  .nav-wrap__inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
  }

  .header-phone {
    grid-column: 2;
    grid-row: 1;
  }

  .main-nav {
    position: fixed;
    top: 134px;
    right: 0;
    bottom: 0;
    width: min(420px, 88vw);
    padding: 34px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    background: var(--white);
    box-shadow: -20px 20px 50px rgba(8, 40, 75, .16);
    transform: translateX(105%);
    transition: transform .3s ease;
  }

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

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
    gap: 30px;
  }

  .hero__visual {
    min-height: 600px;
  }

  .hero-services {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-services span:nth-child(3) {
    border-right: 0;
  }

  .hero-services span:nth-child(-n+3) {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    gap: 42px;
  }
}

/* Mobile */
@media (max-width: 820px) {
  html {
    scroll-padding-top: 90px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .topbar {
    display: none;
  }

  .site-header {
    min-height: 76px;
  }

  .nav-wrap__inner {
    min-height: 76px;
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .brand__mark {
    width: 38px;
  }

  .brand__text strong,
  .brand__text em {
    font-size: 18px;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle {
    grid-column: 2;
  }

  .main-nav {
    top: 76px;
  }

  .hero {
    padding-top: 48px;
    background: linear-gradient(180deg, #fff 0%, #fff 45%, #f2f6f9 45%, #eef3f7 100%);
  }

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

  .hero__content {
    padding-bottom: 16px;
  }

  h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .hero__text {
    font-size: 16px;
  }

  .hero__benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero__visual {
    min-height: 480px;
  }

  .hero__image-wrap {
    border-radius: 28px;
  }

  .hero__image-wrap::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(8, 40, 75, .12));
  }

  .hero__badge {
    right: 16px;
    bottom: 16px;
  }

  .hero-services {
    grid-template-columns: 1fr;
    margin-top: 18px;
    padding: 10px 18px;
  }

  .hero-services span,
  .hero-services span:nth-child(-n+3) {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .hero-services span:last-child {
    border-bottom: 0;
  }

  .services {
    padding-top: 82px;
  }

  .services__grid,
  .about__grid,
  .area__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-cta a {
    width: 100%;
  }

  .about__visual {
    min-height: 520px;
    order: -1;
  }

  .about__note {
    right: 12px;
    left: 12px;
  }

  .area__grid {
    gap: 28px;
  }

  .area__content {
    padding: 28px;
  }

  .area__map {
    order: -1;
  }

  .site-footer {
    padding: 34px 0 98px;
  }

  .site-footer__inner {
    gap: 14px;
  }

  .site-footer__icon {
    width: 54px;
    height: 54px;
  }

  .site-footer__icon svg {
    width: 26px;
  }

  .site-footer a small {
    font-size: 13px;
  }

  .site-footer a strong {
    font-size: 34px;
  }

  .mobile-call {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 999;
    display: flex;
    min-height: 58px;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(255, 107, 0, .36);
    font-size: 19px;
    font-weight: 800;
  }

  .mobile-call svg {
    width: 24px;
    fill: currentColor;
  }
}

@media (max-width: 520px) {
  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading p,
  .about__content > p {
    font-size: 16px;
  }

  .service-card {
    padding: 28px;
  }

  .about__visual {
    min-height: 430px;
  }

  .about__visual img {
    border-radius: 26px 60px 26px 26px;
  }

  .about__note {
    bottom: 14px;
    padding: 18px;
  }

  .about__note strong {
    font-size: 18px;
  }

  .faq-item button {
    min-height: 70px;
    padding: 0 18px;
    gap: 14px;
    font-size: 16px;
  }

  .faq-item__answer p {
    padding-right: 18px;
    padding-left: 18px;
    font-size: 14px;
  }

  .area__content ul {
    grid-template-columns: 1fr;
  }

  .site-footer a strong {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   HERO – WERSJA DOPASOWANA DO PROJEKTU REFERENCYJNEGO
   ========================================================= */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0 0 58px;
  background: #ffffff;
}

.hero::after {
  display: none;
}

.hero .container {
  width: min(calc(100% - 48px), 1520px);
  max-width: none;
  margin-inline: auto;
  padding-right: 0;
  padding-left: 0;
}

.hero__stage {
  position: relative;
  min-height: 700px;
  background: #ffffff;
}

.hero__media {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 29%;
  overflow: hidden;
}

.hero__media::before {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 54%;
  content: "";
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, .99) 18%,
    rgba(255, 255, 255, .94) 34%,
    rgba(255, 255, 255, .68) 58%,
    rgba(255, 255, 255, .25) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.hero__media::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 90px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(6, 37, 78, .06));
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 56% center;
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 700px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(47%, 660px);
  padding: 54px 0 126px;
}

.hero__content h1 {
  margin: 0 0 22px;
  color: #062d5b;
  font-size: clamp(76px, 6.45vw, 108px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .88;
  text-transform: uppercase;
}

.hero__content h1 span {
  display: block;
  color: #ff6b00;
}

.hero__content h1 .hero__title-main {
  color: #062d5b;
}

.hero__lead {
  margin: 0 0 24px;
  color: #082d59;
  font-size: clamp(29px, 2.25vw, 38px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.14;
}

.hero__text {
  max-width: 610px;
  margin: 0 0 34px;
  color: #223d5e;
  font-size: 19px;
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  margin: 0 0 36px;
}

.hero .hero__phone {
  width: min(100%, 368px);
  min-height: 72px;
  padding: 0 30px;
  gap: 18px;
  justify-content: flex-start;
  color: #ffffff;
  background: #ff6b00;
  border: 0;
  border-radius: 13px;
  box-shadow: 0 17px 32px rgba(255, 107, 0, .24);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .01em;
}

.hero .hero__phone:hover,
.hero .hero__phone:focus-visible {
  color: #ffffff;
  background: #ed6200;
  box-shadow: 0 20px 38px rgba(255, 107, 0, .31);
  transform: translateY(-2px);
}

.hero .hero__phone svg {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  color: #ffffff;
}

.hero__benefits {
  display: grid;
  width: min(100%, 660px);
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

.hero__benefits li {
  display: flex;
  min-width: 0;
  gap: 10px;
  align-items: center;
}

.hero__benefit-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  color: #082d59;
  place-items: center;
}

.hero__benefit-icon svg {
  width: 44px;
  fill: none;
  height: 44px;
}

.hero__benefit-text {
  min-width: 0;
}

.hero__benefit-text strong,
.hero__benefit-text small {
  display: block;
  color: #082d59;
  text-transform: uppercase;
}

.hero__benefit-text strong {
  margin: 0 0 3px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.2;
}

.hero__benefit-text small {
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.2;
  opacity: 1;
}

.hero__services-container {
  position: relative;
  z-index: 5;
  margin-top: -68px;
}

.hero-services {
  position: relative;
  z-index: 5;
  display: grid;
  margin: 0;
  padding: 0;
  overflow: hidden;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  color: #ffffff;
  background: linear-gradient(135deg, #062e60 0%, #031f43 100%);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  box-shadow: 0 20px 44px rgba(4, 31, 67, .18);
}

.hero-services__item {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 132px;
  padding: 28px 30px;
  gap: 20px;
  align-items: center;
  color: #ffffff;
}

.hero-services__item:not(:last-child)::after {
  position: absolute;
  top: 31px;
  right: 0;
  bottom: 31px;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, .22);
}

.hero-services__item > svg {
  width: 52px;
  fill: none;
  height: 52px;
  flex: 0 0 52px;
  color: #ffffff;
}

.hero-services__item > span {
  display: block;
  min-height: 0;
  padding: 0;
  color: #ffffff;
  border: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.42;
  text-align: left;
}

@media (max-width: 1320px) {
  .hero__stage,
  .hero__inner {
    min-height: 650px;
  }

  .hero__media {
    left: 32%;
  }

  .hero__content {
    width: 51%;
    padding-top: 46px;
    padding-bottom: 118px;
  }

  .hero__content h1 {
    font-size: clamp(68px, 7vw, 91px);
  }

  .hero__lead {
    font-size: 31px;
  }

  .hero__text {
    max-width: 540px;
    font-size: 17px;
  }

  .hero__benefit-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .hero__benefit-icon svg {
    width: 38px;
    height: 38px;
  }

  .hero-services__item {
    min-height: 116px;
    padding: 24px 20px;
    gap: 14px;
  }

  .hero-services__item > svg {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .hero-services__item > span {
    font-size: 14px;
  }
}

@media (max-width: 1020px) {
  .hero {
    padding-bottom: 42px;
  }

  .hero__stage {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .hero__inner {
    min-height: auto;
    order: 1;
  }

  .hero__content {
    width: min(100%, 720px);
    padding: 50px 0 38px;
  }

  .hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 530px;
    order: 2;
  }

  .hero__media::before {
    inset: 0 0 auto;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, .68) 44%, rgba(255, 255, 255, 0) 100%);
  }

  .hero__media img {
    object-position: center 42%;
  }

  .hero__benefits {
    max-width: 720px;
  }

  .hero__services-container {
    margin-top: -58px;
  }

  .hero-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-services__item:nth-child(3)::after {
    display: none;
  }

  .hero-services__item:nth-child(-n+3) {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }
}

@media (max-width: 720px) {
  .hero .container {
    width: min(calc(100% - 28px), 1520px);
  }

  .hero__content {
    padding-top: 38px;
    padding-bottom: 28px;
  }

  .hero__content h1 {
    margin-bottom: 18px;
    font-size: clamp(52px, 15.5vw, 72px);
  }

  .hero__lead {
    margin-bottom: 18px;
    font-size: 25px;
  }

  .hero__text {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero__actions {
    margin-bottom: 26px;
  }

  .hero .hero__phone {
    width: 100%;
    min-height: 64px;
    justify-content: center;
    font-size: 22px;
  }

  .hero__benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero__benefits li {
    gap: 12px;
  }

  .hero__benefit-text strong {
    font-size: 13px;
  }

  .hero__benefit-text small {
    font-size: 12px;
  }

  .hero__media {
    height: 390px;
  }

  .hero__media img {
    object-position: 60% center;
  }

  .hero__services-container {
    margin-top: 18px;
  }

  .hero-services {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .hero-services__item {
    min-height: 82px;
    padding: 16px 20px;
  }

  .hero-services__item:not(:last-child)::after {
    top: auto;
    right: 18px;
    bottom: 0;
    left: 18px;
    width: auto;
    height: 1px;
  }

  .hero-services__item:nth-child(3)::after {
    display: block;
  }

  .hero-services__item:nth-child(-n+3) {
    border-bottom: 0;
  }

  .hero-services__item > svg {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .hero-services__item > span {
    font-size: 15px;
  }
}


/* =========================================================
   OFERTA HYDRAULIK OCHOTA 2026
   Unikalne klasy – brak konfliktów z poprzednimi sekcjami
   ========================================================= */

.och26offer,
.och26offer *,
.och26offer *::before,
.och26offer *::after {
  box-sizing: border-box;
}

.och26offer {
  --och26-navy: #062650;
  --och26-navy-dark: #031f43;
  --och26-orange: #ff6500;
  --och26-text: #173353;
  --och26-muted: #53667e;
  --och26-border: #dce3eb;
  --och26-light: #f2f5f9;

  width: 100%;
  padding: 72px 0 55px;
  overflow: hidden;
  color: var(--och26-text);
  background: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
}

.och26offer__inner {
  width: min(calc(100% - 40px), 1280px);
  margin: 0 auto;
}

.och26offer__header {
  max-width: 720px;
  margin: 0 0 28px;
}

.och26offer__label {
  display: block;
  margin: 0 0 12px;
  color: var(--och26-orange);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.31em;
  line-height: 1.2;
  text-transform: uppercase;
}

.och26offer__title {
  margin: 0 0 15px;
  color: var(--och26-navy);
  font-size: clamp(45px, 4.25vw, 64px);
  font-weight: 800;
  letter-spacing: -0.048em;
  line-height: 0.98;
  text-transform: uppercase;
}

.och26offer__title span {
  display: block;
  margin-top: 5px;
  color: var(--och26-orange);
}

.och26offer__intro {
  max-width: 620px;
  margin: 0;
  color: var(--och26-text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

.och26offer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 28px;
}

.och26offer__card {
  position: relative;
  min-width: 0;
  min-height: 228px;
  margin: 0;
  padding: 18px 62px 22px 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--och26-border);
  border-radius: 18px;
  box-shadow:
    0 8px 24px rgba(6, 38, 80, 0.07),
    0 2px 5px rgba(6, 38, 80, 0.025);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.och26offer__card:hover {
  border-color: rgba(255, 101, 0, 0.48);
  box-shadow: 0 15px 35px rgba(6, 38, 80, 0.12);
  transform: translateY(-3px);
}

.och26offer__icon {
  display: grid;
  width: 88px;
  height: 88px;
  margin: 0 0 8px;
  color: var(--och26-navy);
  background: var(--och26-light);
  border-radius: 50%;
  place-items: center;
}

.och26offer__icon svg {
  display: block;
  width: 61px;
  height: 61px;
  max-width: none;
}

.och26offer__card h3 {
  margin: 0 0 7px;
  color: var(--och26-navy);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.och26offer__card p {
  margin: 0;
  color: var(--och26-text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.43;
}

.och26offer__arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--och26-orange);
  background: transparent;
  border: 0;
  border-radius: 50%;
  place-items: center;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.och26offer__arrow svg {
  display: block;
  width: 28px;
  height: 28px;
  max-width: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.och26offer__arrow:hover,
.och26offer__arrow:focus-visible {
  color: #ffffff;
  background: var(--och26-orange);
  transform: translateX(3px);
}

.och26offer__arrow:focus-visible,
.och26offer__phone:focus-visible {
  outline: 3px solid rgba(255, 101, 0, 0.35);
  outline-offset: 3px;
}

/* Dolny panel kontaktowy */

.och26offer__contact-box {
  display: grid;
  grid-template-columns: 515px minmax(0, 1fr);
  min-height: 182px;
  margin-top: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--och26-border);
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(6, 38, 80, 0.07);
}

.och26offer__call-panel {
  display: flex;
  min-width: 0;
  padding: 24px 28px 22px;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 100% 50%,
      rgba(22, 70, 122, 0.65),
      transparent 58%
    ),
    linear-gradient(
      135deg,
      var(--och26-navy-dark),
      var(--och26-navy)
    );
}

.och26offer__call-top {
  display: flex;
  margin-bottom: 14px;
  gap: 16px;
  align-items: center;
}

.och26offer__call-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  color: #ffffff;
  background: var(--och26-orange);
  border-radius: 50%;
  place-items: center;
}

.och26offer__call-icon svg {
  display: block;
  width: 28px;
  height: 28px;
  max-width: none;
  fill: currentColor;
}

.och26offer__call-text {
  min-width: 0;
}

.och26offer__call-text strong,
.och26offer__call-text span {
  display: block;
}

.och26offer__call-text strong {
  margin: 0 0 3px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.18;
}

.och26offer__call-text span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.4;
}

.och26offer__phone {
  display: inline-flex;
  width: 322px;
  min-height: 62px;
  margin-left: 74px;
  padding: 0 24px;
  gap: 15px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--och26-orange);
  border-radius: 10px;
  box-shadow: 0 12px 25px rgba(255, 101, 0, 0.26);
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.och26offer__phone:hover {
  color: #ffffff;
  background: #e95c00;
  box-shadow: 0 16px 30px rgba(255, 101, 0, 0.31);
  transform: translateY(-2px);
}

.och26offer__phone svg {
  display: block;
  width: 28px;
  height: 28px;
  max-width: none;
  flex: 0 0 28px;
  fill: currentColor;
}

/* Trzy zalety po prawej */

.och26offer__benefits {
  display: grid;
  min-width: 0;
  padding: 22px 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.och26offer__benefit {
  display: grid;
  min-width: 0;
  min-height: 120px;
  padding: 8px 18px;
  grid-template-columns: 53px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
}

.och26offer__benefit:not(:last-child) {
  border-right: 1px solid var(--och26-border);
}

.och26offer__benefit-icon {
  display: block;
  color: var(--och26-orange);
}

.och26offer__benefit-icon svg {
  display: block;
  width: 50px;
  height: 50px;
  max-width: none;
}

.och26offer__benefit strong {
  display: block;
  margin: 4px 0 6px;
  color: var(--och26-navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.och26offer__benefit p {
  margin: 0;
  color: var(--och26-text);
  font-size: 12px;
  line-height: 1.52;
}

/* Pasek dzielnic */

.och26offer__locations {
  display: grid;
  min-height: 58px;
  margin-top: 14px;
  overflow: hidden;
  grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr));
  background: #ffffff;
  border: 1px solid var(--och26-border);
  border-radius: 15px;
  box-shadow: 0 7px 18px rgba(6, 38, 80, 0.04);
}

.och26offer__location {
  display: flex;
  min-width: 0;
  padding: 10px 20px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  color: var(--och26-navy);
  font-size: 15px;
}

.och26offer__location:not(:last-child) {
  border-right: 1px solid var(--och26-border);
}

.och26offer__location svg {
  display: block;
  width: 24px;
  height: 24px;
  max-width: none;
  flex: 0 0 24px;
  fill: var(--och26-navy);
}

.och26offer__location--title {
  font-weight: 700;
}

/* Duży tablet */

@media (max-width: 1100px) {
  .och26offer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .och26offer__contact-box {
    grid-template-columns: 1fr;
  }

  .och26offer__call-panel {
    min-height: 190px;
  }

  .och26offer__benefits {
    min-height: 180px;
  }
}

/* Tablet */

@media (max-width: 820px) {
  .och26offer {
    padding: 65px 0 50px;
  }

  .och26offer__inner {
    width: min(calc(100% - 28px), 1280px);
  }

  .och26offer__title {
    font-size: clamp(38px, 8vw, 52px);
  }

  .och26offer__intro {
    font-size: 16px;
  }

  .och26offer__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .och26offer__card {
    min-height: 220px;
  }

  .och26offer__phone {
    width: 100%;
    margin-left: 0;
  }

  .och26offer__benefits {
    grid-template-columns: 1fr;
    padding: 8px 22px;
  }

  .och26offer__benefit {
    min-height: auto;
    padding: 20px 0;
  }

  .och26offer__benefit:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--och26-border);
  }

  .och26offer__locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .och26offer__location {
    min-height: 55px;
    justify-content: flex-start;
  }

  .och26offer__location:nth-child(2n) {
    border-right: 1px solid var(--och26-border);
  }

  .och26offer__location:nth-child(2n + 1) {
    border-right: 0;
  }

  .och26offer__location:nth-child(-n + 4) {
    border-bottom: 1px solid var(--och26-border);
  }
}

/* Telefon */

@media (max-width: 520px) {
  .och26offer__label {
    font-size: 14px;
  }

  .och26offer__title {
    font-size: 35px;
  }

  .och26offer__card {
    min-height: 215px;
    padding: 20px 56px 22px 20px;
  }

  .och26offer__icon {
    width: 78px;
    height: 78px;
  }

  .och26offer__icon svg {
    width: 54px;
    height: 54px;
  }

  .och26offer__card h3 {
    font-size: 20px;
  }

  .och26offer__card p {
    font-size: 14px;
  }

  .och26offer__call-panel {
    padding: 24px 20px;
  }

  .och26offer__call-top {
    align-items: flex-start;
  }

  .och26offer__call-text strong {
    font-size: 19px;
  }

  .och26offer__phone {
    min-height: 59px;
    padding: 0 15px;
    font-size: 25px;
  }

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

  .och26offer__location,
  .och26offer__location:nth-child(2n),
  .och26offer__location:nth-child(2n + 1) {
    border-right: 0;
    border-bottom: 1px solid var(--och26-border);
  }

  .och26offer__location:last-child {
    border-bottom: 0;
  }
}



/* =========================================================
   O NAS – HYDRAULIK OCHOTA 2026
   Unikalne klasy: och26about
   ========================================================= */

.och26about,
.och26about *,
.och26about *::before,
.och26about *::after {
  box-sizing: border-box;
}

.och26about {
  --och26about-navy: #062650;
  --och26about-navy-dark: #031f43;
  --och26about-orange: #ff6500;
  --och26about-text: #183453;
  --och26about-border: #d9e0e8;
  --och26about-light: #f5f6f7;

  width: 100%;
  padding: 75px 0 60px;
  overflow: hidden;
  color: var(--och26about-text);
  background: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
}

.och26about__inner {
  width: min(calc(100% - 40px), 1400px);
  margin: 0 auto;
}

.och26about__main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(400px, 0.82fr) minmax(620px, 1.18fr);
  gap: 38px;
  align-items: start;
}

.och26about__content {
  position: relative;
  z-index: 5;
  padding: 16px 0 0;
}

.och26about__header {
  max-width: 595px;
}

.och26about__label {
  position: relative;
  display: inline-block;
  margin: 0 0 25px;
  padding-bottom: 14px;
  color: var(--och26about-orange);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.och26about__label::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 76px;
  height: 2px;
  content: "";
  background: var(--och26about-orange);
}

.och26about__title {
  margin: 0 0 18px;
  color: var(--och26about-navy);
  font-size: clamp(42px, 3.8vw, 58px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.och26about__title span {
  display: block;
  color: var(--och26about-orange);
}

.och26about__intro {
  max-width: 590px;
  margin: 0 0 24px;
  color: var(--och26about-text);
  font-size: 18px;
  line-height: 1.65;
}

.och26about__features {
  width: min(100%, 560px);
}

.och26about__feature {
  display: grid;
  min-height: 98px;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.och26about__feature:not(:last-child) .och26about__feature-text {
  border-bottom: 1px solid var(--och26about-border);
}

.och26about__feature-icon {
  display: grid;
  width: 80px;
  height: 80px;
  color: #ffffff;
  background:
    radial-gradient(circle at 40% 35%, #0d4378, transparent 65%),
    var(--och26about-navy-dark);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(3, 31, 67, 0.16);
  place-items: center;
}

.och26about__feature-icon svg {
  display: block;
  width: 52px;
  height: 52px;
  max-width: none;
}

.och26about__feature-text {
  min-width: 0;
  padding: 14px 0 17px;
}

.och26about__feature h3 {
  margin: 0 0 4px;
  color: var(--och26about-orange);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.och26about__feature p {
  margin: 0;
  color: var(--och26about-text);
  font-size: 14px;
  line-height: 1.5;
}

/* Zdjęcie */

.och26about__visual {
  position: relative;
  min-width: 0;
  min-height: 730px;
}

.och26about__image {
  position: absolute;
  top: -75px;
  right: calc((100vw - min(100vw - 40px, 1400px)) / -2);
  width: calc(100% + 150px);
  height: 790px;
  overflow: hidden;
  border-radius: 50% 0 0 50%;
}

.och26about__image::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.34) 0%,
      rgba(255, 255, 255, 0.06) 18%,
      rgba(255, 255, 255, 0) 38%
    );
  pointer-events: none;
}

.och26about__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 53% center;
}

.och26about__dots {
  position: absolute;
  z-index: 3;
  top: 35px;
  right: 55px;
  width: 130px;
  height: 105px;
  background-image: radial-gradient(
    circle,
    rgba(6, 38, 80, 0.42) 2.5px,
    transparent 3px
  );
  background-size: 18px 18px;
}

/* Statystyki */

.och26about__stats {
  position: absolute;
  z-index: 6;
  right: 18px;
  bottom: 10px;
  display: grid;
  width: min(100%, 780px);
  min-height: 214px;
  padding: 30px 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: #ffffff;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(20, 75, 129, 0.7),
      transparent 68%
    ),
    linear-gradient(
      135deg,
      var(--och26about-navy-dark),
      var(--och26about-navy)
    );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(3, 31, 67, 0.2);
}

.och26about__stat {
  position: relative;
  min-width: 0;
  padding: 0 18px;
  text-align: center;
}

.och26about__stat:not(:last-child)::after {
  position: absolute;
  top: 5px;
  right: 0;
  bottom: 5px;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.35);
}

.och26about__stat-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin: 0 auto 7px;
  color: var(--och26about-orange);
  place-items: center;
}

.och26about__stat-icon svg {
  display: block;
  width: 52px;
  height: 52px;
  max-width: none;
}

.och26about__stat strong {
  display: block;
  margin: 0 0 3px;
  color: #ffffff;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.och26about__stat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.45;
}

/* Dolny pasek misji */

.och26about__mission {
  position: relative;
  z-index: 8;
  display: grid;
  width: min(100%, 1210px);
  min-height: 126px;
  margin: 25px auto 0;
  padding: 25px 34px;
  grid-template-columns: 85px minmax(0, 1fr) 1px minmax(300px, 390px);
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      #f5f5f5,
      #ffffff,
      #f5f5f5
    );
  border: 1px solid #ededed;
  border-radius: 16px;
}

.och26about__quote {
  align-self: start;
  color: var(--och26about-orange);
  font-family: Georgia, serif;
  font-size: 92px;
  font-weight: 700;
  line-height: 0.85;
  text-align: center;
}

.och26about__mission-text p {
  margin: 0 0 5px;
  color: var(--och26about-text);
  font-size: 15px;
  line-height: 1.55;
}

.och26about__mission-text strong {
  display: block;
  color: var(--och26about-navy);
  font-size: 15px;
  line-height: 1.45;
}

.och26about__mission-line {
  width: 1px;
  height: 80px;
  background: #cfd6de;
}

.och26about__mission-phone {
  display: flex;
  min-width: 0;
  gap: 18px;
  align-items: center;
  color: var(--och26about-navy);
  text-decoration: none;
}

.och26about__mission-phone-icon {
  display: grid;
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  color: var(--och26about-navy);
  background: #ffffff;
  border: 2px solid var(--och26about-orange);
  border-radius: 50%;
  place-items: center;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.och26about__mission-phone:hover .och26about__mission-phone-icon {
  color: #ffffff;
  background: var(--och26about-orange);
  transform: translateY(-2px);
}

.och26about__mission-phone-icon svg {
  display: block;
  width: 36px;
  height: 36px;
  max-width: none;
  fill: currentColor;
}

.och26about__mission-phone-text {
  min-width: 0;
}

.och26about__mission-phone small,
.och26about__mission-phone strong {
  display: block;
}

.och26about__mission-phone small {
  margin-bottom: 5px;
  color: var(--och26about-text);
  font-size: 15px;
  line-height: 1.3;
}

.och26about__mission-phone strong {
  color: var(--och26about-orange);
  font-size: 37px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Mniejsze komputery */

@media (max-width: 1250px) {
  .och26about__main {
    grid-template-columns: minmax(390px, 0.9fr) minmax(500px, 1.1fr);
  }

  .och26about__title {
    font-size: 46px;
  }

  .och26about__image {
    width: calc(100% + 90px);
  }

  .och26about__stats {
    right: 0;
    width: min(100%, 700px);
  }

  .och26about__stat {
    padding: 0 12px;
  }

  .och26about__stat strong {
    font-size: 25px;
  }
}

/* Tablet */

@media (max-width: 1020px) {
  .och26about {
    padding-top: 65px;
  }

  .och26about__main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .och26about__header,
  .och26about__features {
    max-width: none;
    width: 100%;
  }

  .och26about__visual {
    min-height: 720px;
  }

  .och26about__image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 650px;
    border-radius: 40px;
  }

  .och26about__image img {
    object-position: center;
  }

  .och26about__stats {
    right: 25px;
    bottom: 0;
    left: 25px;
    width: auto;
  }

  .och26about__mission {
    margin-top: 35px;
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .och26about__mission-line {
    display: none;
  }

  .och26about__mission-phone {
    grid-column: 2;
    padding-top: 18px;
    border-top: 1px solid #d7dde4;
  }
}

/* Telefon i mały tablet */

@media (max-width: 720px) {
  .och26about {
    padding: 55px 0 45px;
  }

  .och26about__inner {
    width: min(calc(100% - 28px), 1400px);
  }

  .och26about__title {
    font-size: 38px;
  }

  .och26about__intro {
    font-size: 16px;
  }

  .och26about__feature {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 14px;
  }

  .och26about__feature-icon {
    width: 66px;
    height: 66px;
  }

  .och26about__feature-icon svg {
    width: 43px;
    height: 43px;
  }

  .och26about__visual {
    min-height: auto;
  }

  .och26about__image {
    height: 480px;
    border-radius: 28px;
  }

  .och26about__dots {
    top: 20px;
    right: 15px;
  }

  .och26about__stats {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: auto;
    margin-top: -50px;
    padding: 20px 15px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .och26about__stat {
    padding: 18px 10px;
  }

  .och26about__stat:nth-child(odd)::after {
    display: block;
  }

  .och26about__stat:nth-child(even)::after {
    display: none;
  }

  .och26about__stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .och26about__mission {
    min-height: auto;
    padding: 24px 20px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .och26about__quote {
    display: none;
  }

  .och26about__mission-phone {
    grid-column: auto;
  }
}

/* Mały telefon */

@media (max-width: 480px) {
  .och26about__label {
    margin-bottom: 20px;
  }

  .och26about__title {
    font-size: 32px;
  }

  .och26about__feature h3 {
    font-size: 18px;
  }

  .och26about__feature p {
    font-size: 13px;
  }

  .och26about__image {
    height: 390px;
  }

  .och26about__stats {
    grid-template-columns: 1fr;
    margin-top: -25px;
  }

  .och26about__stat:not(:last-child)::after {
    top: auto;
    right: 20px;
    bottom: 0;
    left: 20px;
    width: auto;
    height: 1px;
  }

  .och26about__stat:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .och26about__mission-phone {
    align-items: flex-start;
  }

  .och26about__mission-phone-icon {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .och26about__mission-phone strong {
    font-size: 27px;
  }
}



/* =========================================================
   OBSZAR DZIAŁANIA – HYDRAULIK OCHOTA
   Unikalne klasy: och26area
   ========================================================= */

.och26area,
.och26area *,
.och26area *::before,
.och26area *::after {
  box-sizing: border-box;
}

.och26area {
  --och26area-navy: #062650;
  --och26area-navy-dark: #031f43;
  --och26area-orange: #ff6500;
  --och26area-text: #193553;
  --och26area-muted: #52667e;
  --och26area-border: #dbe2e9;
  --och26area-light: #fff8f2;

  width: 100%;
  padding: 72px 0 55px;
  overflow: hidden;
  color: var(--och26area-text);
  background: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
}

.och26area__inner {
  width: min(calc(100% - 40px), 1400px);
  margin: 0 auto;
}

/* Nagłówek */

.och26area__header {
  max-width: 850px;
  margin: 0 auto 35px;
  text-align: center;
}

.och26area__label {
  display: block;
  margin: 0 0 9px;
  color: var(--och26area-orange);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.och26area__title {
  margin: 0 0 13px;
  color: var(--och26area-navy);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.och26area__title span {
  color: var(--och26area-orange);
}

.och26area__intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--och26area-text);
  font-size: 19px;
  line-height: 1.55;
}

.och26area__intro strong {
  color: var(--och26area-orange);
  font-weight: 700;
}

.och26area__header-line {
  display: block;
  width: 82px;
  height: 5px;
  margin: 24px auto 0;
  background: var(--och26area-orange);
  border-radius: 99px;
}

/* Układ główny */

.och26area__main {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(620px, 1.45fr);
  gap: 36px;
  align-items: stretch;
}

.och26area__content {
  min-width: 0;
  padding: 2px 0 0;
}

.och26area__content-header {
  margin-bottom: 17px;
}

.och26area__content-header h3 {
  margin: 0 0 8px;
  color: var(--och26area-navy);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.och26area__content-header p {
  margin: 0;
  color: var(--och26area-text);
  font-size: 16px;
  line-height: 1.55;
}

/* Zalety */

.och26area__advantages {
  display: grid;
  margin-bottom: 24px;
}

.och26area__advantage {
  display: grid;
  min-height: 99px;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 19px;
  align-items: center;
}

.och26area__advantage-icon {
  display: grid;
  width: 80px;
  height: 80px;
  color: var(--och26area-orange);
  background:
    radial-gradient(
      circle at center,
      rgba(255, 101, 0, 0.06),
      transparent 65%
    ),
    #fffaf6;
  border: 1px solid rgba(255, 101, 0, 0.2);
  border-radius: 50%;
  place-items: center;
}

.och26area__advantage-icon svg {
  display: block;
  width: 52px;
  height: 52px;
  max-width: none;
}

.och26area__advantage-text {
  min-width: 0;
  padding: 15px 0 16px;
}

.och26area__advantage:not(:last-child) .och26area__advantage-text {
  border-bottom: 1px solid var(--och26area-border);
}

.och26area__advantage h4 {
  margin: 0 0 5px;
  color: var(--och26area-navy);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.och26area__advantage p {
  margin: 0;
  color: var(--och26area-text);
  font-size: 14px;
  line-height: 1.5;
}

/* Telefon */

.och26area__call-box {
  display: grid;
  min-height: 123px;
  padding: 17px 22px;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      #fffaf6,
      #ffffff
    );
  border: 1px solid rgba(255, 101, 0, 0.18);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(6, 38, 80, 0.04);
}

.och26area__call-icon {
  display: grid;
  width: 82px;
  height: 82px;
  color: var(--och26area-orange);
  background: #ffffff;
  border: 1.5px solid var(--och26area-orange);
  border-radius: 50%;
  place-items: center;
}

.och26area__call-icon svg {
  display: block;
  width: 39px;
  height: 39px;
  max-width: none;
  fill: currentColor;
}

.och26area__call-content {
  min-width: 0;
}

.och26area__call-content span,
.och26area__call-content small {
  display: block;
}

.och26area__call-content span {
  margin-bottom: 2px;
  color: var(--och26area-navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.och26area__call-content a {
  display: block;
  margin-bottom: 3px;
  color: var(--och26area-orange);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.och26area__call-content a:hover {
  color: #df5900;
  transform: translateX(3px);
}

.och26area__call-content small {
  color: var(--och26area-text);
  font-size: 13px;
  line-height: 1.4;
}

/* Mapa */

.och26area__map {
  position: relative;
  min-width: 0;
  min-height: 575px;
  overflow: hidden;
  background: #f5f6f7;
  border: 1px solid #e6eaee;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(6, 38, 80, 0.07);
}

.och26area__map img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

/* Dolny pasek */

.och26area__bottom {
  display: grid;
  min-height: 102px;
  margin-top: 28px;
  padding: 18px 34px;
  grid-template-columns: minmax(310px, 0.7fr) 1px minmax(0, 1.8fr);
  gap: 30px;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      #f7f8f9,
      #ffffff,
      #f7f8f9
    );
  border: 1px solid #eef0f2;
  border-radius: 17px;
}

.och26area__bottom-title {
  display: flex;
  min-width: 0;
  gap: 22px;
  align-items: center;
}

.och26area__bottom-icon {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  color: var(--och26area-navy);
  place-items: center;
}

.och26area__bottom-icon svg {
  display: block;
  width: 68px;
  height: 68px;
  max-width: none;
}

.och26area__bottom-title strong {
  color: var(--och26area-navy);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.och26area__bottom-line {
  width: 1px;
  height: 57px;
  background: #cfd6de;
}

.och26area__bottom > p {
  margin: 0;
  color: var(--och26area-text);
  font-size: 15px;
  line-height: 1.55;
}

/* Mniejsze komputery */

@media (max-width: 1200px) {
  .och26area__main {
    grid-template-columns: minmax(330px, 0.82fr) minmax(520px, 1.18fr);
  }

  .och26area__map {
    min-height: 540px;
  }

  .och26area__content-header h3 {
    font-size: 25px;
  }

  .och26area__advantage {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 15px;
  }

  .och26area__advantage-icon {
    width: 70px;
    height: 70px;
  }

  .och26area__advantage-icon svg {
    width: 45px;
    height: 45px;
  }

  .och26area__call-box {
    grid-template-columns: 75px minmax(0, 1fr);
    padding: 16px;
  }

  .och26area__call-icon {
    width: 72px;
    height: 72px;
  }

  .och26area__call-content a {
    font-size: 31px;
  }
}

/* Tablet */

@media (max-width: 980px) {
  .och26area {
    padding-top: 62px;
  }

  .och26area__main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .och26area__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 35px;
  }

  .och26area__content-header {
    grid-column: 1 / -1;
  }

  .och26area__advantages {
    margin-bottom: 0;
  }

  .och26area__call-box {
    align-self: end;
  }

  .och26area__map {
    min-height: 520px;
  }

  .och26area__bottom {
    grid-template-columns: minmax(260px, 0.7fr) 1px minmax(0, 1.3fr);
  }
}

/* Telefon i mały tablet */

@media (max-width: 720px) {
  .och26area {
    padding: 52px 0 45px;
  }

  .och26area__inner {
    width: min(calc(100% - 28px), 1400px);
  }

  .och26area__header {
    margin-bottom: 30px;
  }

  .och26area__label {
    font-size: 15px;
  }

  .och26area__title {
    font-size: clamp(40px, 11vw, 54px);
  }

  .och26area__intro {
    font-size: 16px;
  }

  .och26area__content {
    display: block;
  }

  .och26area__content-header {
    margin-bottom: 15px;
  }

  .och26area__advantages {
    margin-bottom: 22px;
  }

  .och26area__map {
    min-height: 410px;
    border-radius: 16px;
  }

  .och26area__bottom {
    padding: 22px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .och26area__bottom-line {
    width: 100%;
    height: 1px;
  }

  .och26area__bottom-title {
    justify-content: center;
  }

  .och26area__bottom > p {
    text-align: center;
  }
}

/* Mały telefon */

@media (max-width: 480px) {
  .och26area__title {
    font-size: 36px;
  }

  .och26area__content-header h3 {
    font-size: 23px;
  }

  .och26area__content-header p {
    font-size: 14px;
  }

  .och26area__advantage {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 13px;
  }

  .och26area__advantage-icon {
    width: 62px;
    height: 62px;
  }

  .och26area__advantage-icon svg {
    width: 40px;
    height: 40px;
  }

  .och26area__advantage h4 {
    font-size: 17px;
  }

  .och26area__advantage p {
    font-size: 13px;
  }

  .och26area__call-box {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .och26area__call-icon {
    margin: 0 auto;
  }

  .och26area__call-content a {
    font-size: 29px;
  }

  .och26area__map {
    min-height: 330px;
  }

  .och26area__bottom-title {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .och26area__bottom-title strong {
    font-size: 22px;
  }
}



```css
/* =========================================================
   DŁUGA SEKCJA SEO – HYDRAULIK OCHOTA
   Unikalne klasy: och26seo
   ========================================================= */

.och26seo,
.och26seo *,
.och26seo *::before,
.och26seo *::after {
  box-sizing: border-box;
}

.och26seo {
  --och26seo-navy: #062650;
  --och26seo-navy-dark: #031f43;
  --och26seo-orange: #ff6500;
  --och26seo-text: #263f5d;
  --och26seo-muted: #607188;
  --och26seo-border: #dfe5eb;
  --och26seo-light: #f5f7fa;

  width: 100%;
  padding: 90px 0 70px;
  overflow: hidden;
  color: var(--och26seo-text);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(255, 101, 0, 0.055),
      transparent 28%
    ),
    #ffffff;
  font-family: "Poppins", Arial, sans-serif;
}

.och26seo__inner {
  width: min(calc(100% - 40px), 1280px);
  margin: 0 auto;
}

/* Nagłówek */

.och26seo__header {
  max-width: 900px;
  margin: 0 0 46px;
}

.och26seo__label {
  display: inline-flex;
  margin: 0 0 14px;
  color: var(--och26seo-orange);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.och26seo__title {
  margin: 0 0 20px;
  color: var(--och26seo-navy);
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.och26seo__title span {
  display: block;
  color: var(--och26seo-orange);
}

.och26seo__lead {
  max-width: 850px;
  margin: 0;
  color: var(--och26seo-text);
  font-size: 19px;
  line-height: 1.7;
}

/* Układ */

.och26seo__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 345px;
  gap: 58px;
  align-items: start;
}

.och26seo__article {
  min-width: 0;
}

.och26seo__article h3 {
  margin: 44px 0 14px;
  color: var(--och26seo-navy);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.och26seo__article h3:first-child {
  margin-top: 0;
}

.och26seo__article p {
  margin: 0 0 20px;
  color: var(--och26seo-text);
  font-size: 16px;
  line-height: 1.85;
}

.och26seo__article strong {
  color: var(--och26seo-navy);
  font-weight: 700;
}

/* Wyróżnienie */

.och26seo__highlight {
  display: grid;
  margin: 32px 0 38px;
  padding: 25px 28px;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  background: linear-gradient(90deg, #fff6ef, #ffffff);
  border: 1px solid rgba(255, 101, 0, 0.2);
  border-left: 5px solid var(--och26seo-orange);
  border-radius: 14px;
}

.och26seo__highlight-icon {
  display: grid;
  width: 60px;
  height: 60px;
  color: var(--och26seo-orange);
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(6, 38, 80, 0.08);
  place-items: center;
}

.och26seo__highlight-icon svg {
  width: 38px;
  height: 38px;
}

.och26seo__highlight p {
  margin: 0;
  color: var(--och26seo-navy);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

/* Panel boczny */

.och26seo__aside {
  position: sticky;
  top: 155px;
  display: grid;
  gap: 20px;
}

.och26seo__aside-box {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--och26seo-border);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(6, 38, 80, 0.07);
}

.och26seo__aside-label {
  display: block;
  margin-bottom: 7px;
  color: var(--och26seo-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.och26seo__aside-box h3 {
  margin: 0 0 18px;
  color: var(--och26seo-navy);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.och26seo__aside-box ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.och26seo__aside-box li {
  position: relative;
  padding-left: 25px;
  color: var(--och26seo-text);
  font-size: 13px;
  line-height: 1.5;
}

.och26seo__aside-box li::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--och26seo-orange);
  border: 4px solid #ffe6d4;
  border-radius: 50%;
}

.och26seo__aside-box--area {
  background: var(--och26seo-light);
}

.och26seo__districts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.och26seo__districts span {
  display: inline-flex;
  min-height: 34px;
  padding: 0 13px;
  align-items: center;
  color: var(--och26seo-navy);
  background: #ffffff;
  border: 1px solid var(--och26seo-border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* Telefon w panelu */

.och26seo__contact {
  display: flex;
  padding: 30px 26px;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  background:
    radial-gradient(
      circle at center,
      rgba(25, 76, 132, 0.68),
      transparent 65%
    ),
    var(--och26seo-navy-dark);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(3, 31, 67, 0.18);
  text-align: center;
}

.och26seo__contact-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 14px;
  color: #ffffff;
  background: var(--och26seo-orange);
  border-radius: 50%;
  place-items: center;
}

.och26seo__contact-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.och26seo__contact-small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.och26seo__contact > strong {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 22px;
}

.och26seo__contact > a {
  margin-bottom: 8px;
  color: var(--och26seo-orange);
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
}

.och26seo__contact > small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

/* Dolne CTA */

.och26seo__bottom {
  display: flex;
  margin-top: 55px;
  padding: 30px 34px;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 70% 50%,
      rgba(25, 76, 132, 0.62),
      transparent 48%
    ),
    linear-gradient(
      135deg,
      var(--och26seo-navy-dark),
      var(--och26seo-navy)
    );
  border-radius: 18px;
}

.och26seo__bottom span,
.och26seo__bottom strong {
  display: block;
}

.och26seo__bottom span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.och26seo__bottom strong {
  color: #ffffff;
  font-size: 23px;
}

.och26seo__bottom > a {
  display: inline-flex;
  min-height: 60px;
  padding: 0 27px;
  gap: 13px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--och26seo-orange);
  border-radius: 11px;
  box-shadow: 0 12px 25px rgba(255, 101, 0, 0.25);
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.och26seo__bottom > a:hover {
  background: #e85c00;
  transform: translateY(-2px);
}

.och26seo__bottom > a svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

/* Tablet */

@media (max-width: 980px) {
  .och26seo__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .och26seo__aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .och26seo__contact {
    grid-column: 1 / -1;
  }
}

/* Telefon */

@media (max-width: 720px) {
  .och26seo {
    padding: 65px 0 50px;
  }

  .och26seo__inner {
    width: min(calc(100% - 28px), 1280px);
  }

  .och26seo__header {
    margin-bottom: 35px;
  }

  .och26seo__title {
    font-size: clamp(37px, 10vw, 50px);
  }

  .och26seo__lead {
    font-size: 17px;
  }

  .och26seo__article h3 {
    margin-top: 36px;
    font-size: 24px;
  }

  .och26seo__article p {
    font-size: 15px;
    line-height: 1.75;
  }

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

  .och26seo__contact {
    grid-column: auto;
  }

  .och26seo__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .och26seo__bottom > a {
    width: 100%;
  }
}

/* Mały telefon */

@media (max-width: 480px) {
  .och26seo__title {
    font-size: 34px;
  }

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

  .och26seo__aside-box {
    padding: 23px;
  }

  .och26seo__bottom {
    padding: 25px 20px;
  }

  .och26seo__bottom strong {
    font-size: 20px;
  }
}
```

/* =========================================================
   POPRAWIONE MENU MOBILNE – FINALNY OVERRIDE
   Wklejone na końcu pliku, aby nadpisać wcześniejsze reguły.
   ========================================================= */

.mobile-menu-backdrop {
  display: none;
}

@media (max-width: 1100px) {
  :root {
    --hyd-mobile-header-height: 92px;
  }

  body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 5000;
    isolation: isolate;
  }

  .nav-wrap {
    position: relative;
    z-index: 5003;
    background: #ffffff;
  }

  .nav-wrap__inner {
    position: relative;
    z-index: 5004;
    display: grid;
    min-height: var(--hyd-mobile-header-height);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
  }

  .brand {
    position: relative;
    z-index: 5005;
    min-width: 0;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 5005;
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 11px;
    grid-column: 2;
    grid-row: 1;
    align-content: center;
    justify-self: end;
    background: #ffffff;
    border: 1px solid #e4eaf0;
    border-radius: 12px;
    box-shadow: 0 7px 18px rgba(8, 40, 75, 0.08);
  }

  .menu-toggle span {
    width: 100%;
    height: 3px;
    margin: 3px 0;
    background: #08284b;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 5002;
    top: var(--hyd-mobile-header-height);
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    width: 100%;
    max-width: none;
    max-height: calc(100dvh - var(--hyd-mobile-header-height));
    margin: 0;
    padding: 18px 20px 28px;
    overflow-x: hidden;
    overflow-y: auto;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    background: #ffffff;
    border-top: 1px solid #e4eaf0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 24px 46px rgba(8, 40, 75, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.22s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 58px;
    margin: 0;
    padding: 0 14px;
    align-items: center;
    color: #08284b;
    background: #ffffff;
    border: 0;
    border-bottom: 1px solid #e4eaf0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    right: auto;
    bottom: 0;
    left: 14px;
    width: 0;
    height: 3px;
    background: #ff6b00;
    transform: none;
    transition: width 0.22s ease;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active {
    color: #ff6b00;
    background: #fff8f2;
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after,
  .main-nav a.is-active::after {
    width: calc(100% - 28px);
    transform: none;
  }

  .mobile-menu-backdrop {
    position: fixed;
    z-index: 5001;
    top: var(--hyd-mobile-header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: rgba(3, 24, 48, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease;
    backdrop-filter: blur(2px);
  }

  body.menu-open .mobile-menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 820px) {
  :root {
    --hyd-mobile-header-height: 76px;
  }

  .site-header {
    min-height: var(--hyd-mobile-header-height);
  }

  .topbar {
    display: none;
  }

  .nav-wrap__inner {
    min-height: var(--hyd-mobile-header-height);
  }

  .brand__mark {
    width: 37px;
  }

  .brand__text strong,
  .brand__text em {
    font-size: 17px;
  }

  .main-nav {
    padding: 14px 14px 24px;
    border-radius: 0 0 18px 18px;
  }

  .main-nav a {
    min-height: 56px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 16px;
  }

  .main-nav a::after {
    left: 12px;
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after,
  .main-nav a.is-active::after {
    width: calc(100% - 24px);
  }
}

@media (max-width: 420px) {
  .nav-wrap__inner {
    width: calc(100% - 24px);
  }

  .brand {
    gap: 9px;
  }

  .brand__mark {
    width: 34px;
  }

  .brand__text strong,
  .brand__text em {
    font-size: 15px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
  }
}

/* =========================================================
   OPTYMALIZACJA WYDAJNOŚCI
   ========================================================= */
.hero__picture,
.och26about__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__picture img,
.och26about__picture img {
  width: 100%;
  height: 100%;
}

@media (max-width: 820px) {
  main > section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
  }
}
