* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #202624;
  color:  #ffffff;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1160px, 92%);
  margin: auto;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(5, 12, 9, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
}
.brand img {
  height: 102px;
  width: auto;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav a {
  font-size: 14px;
  color: #dfe8e2;
  opacity: 0.9;
}
.nav a:hover {
  color: #57d681;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 10px;
  padding: 8px 11px;
  font-size: 22px;
}
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 150px 0 70px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(3, 11, 8, 0.88) 0%,
      rgba(3, 11, 8, 0.64) 42%,
      rgba(3, 11, 8, 0.2) 100%
    ),
    url("assets/hero.jpg") center center/cover no-repeat;
  transform: scale(1.02);
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(transparent, #07100c);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 44px;
  align-items: center;
}
.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  font-weight: 700;
  color: #57d681;
}
.eyebrow:before,
.section-label:before {
  content: "";
  width: 34px;
  height: 2px;
  background: #57d681;
  border-radius: 99px;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  margin: 16px 0 22px;
  letter-spacing: -0.05em;
}
.hero p {
  font-size: 20px;
  color: #d9e4dc;
  max-width: 690px;
}
.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: 0.25s;
}
.btn.primary {
  background: linear-gradient(135deg, #2bd461, #0e9f4a);
  color: #041009;
  box-shadow: 0 12px 32px rgba(43, 212, 97, 0.24);
}
.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f7fff9;
}
.btn:hover {
  transform: translateY(-2px);
}
.hero-card {
  background: rgba(5, 17, 12, 0.76);
  border: 1px solid rgba(87, 214, 129, 0.35);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}
.hero-card strong {
  display: block;
  font-size: 34px;
  color: #fff;
  letter-spacing: -0.04em;
}
.hero-card span {
  display: block;
  color: #57d681;
  margin: 6px 0 18px;
  font-weight: 700;
}
.hero-card ul {
  margin: 0;
  padding-left: 20px;
  color: #dce8df;
}
.section {
  padding: 94px 0;
}
.dark {
  background: #0b1711;
}
.grid-2 {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.section h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  margin: 12px 0 0;
  letter-spacing: -0.04em;
}
.lead {
  font-size: 20px;
  color: #cdd9d1;
  margin: 0;
}
.section-head {
  margin-bottom: 34px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 25px;
  min-height: 225px;
}
.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(87, 214, 129, 0.13);
  color: #57d681;
  font-size: 28px;
  margin-bottom: 18px;
}
.icon.icon-image {
  padding: 8px;
}
.icon.icon-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.card h3,
.step h3 {
  font-size: 21px;
  margin: 0 0 10px;
}
.card p,
.step p,
.check-list p {
  color: #c8d3cc;
  margin: 0;
}
.split {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 62px;
  align-items: center;
}
.benefit-panel {
  border-radius: 32px;
  background: radial-gradient(
    circle at top left,
    rgba(87, 214, 129, 0.35),
    rgba(13, 27, 19, 0.95) 60%
  );
  border: 1px solid rgba(87, 214, 129, 0.32);
  padding: 42px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.benefit-panel span {
  font-size: 110px;
  line-height: 0.8;
  font-weight: 900;
  color: #57d681;
  letter-spacing: -0.08em;
}
.benefit-panel p {
  font-size: 20px;
  margin: 24px 0 0;
  color: #e8f3eb;
}
.price-btn {
  display: block;
  width: 100%;
  margin-top: 30px;
  padding: 15px 20px;
  border-radius: 999px;
  background: #57d681;
  color: #07100c;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}
.check-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.check-list p {
  padding-left: 22px;
  border-left: 3px solid #57d681;
}
.process {
  background: linear-gradient(180deg, #07100c, #0b1711);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}
.step span {
  display: block;
  color: #57d681;
  font-weight: 900;
  margin-bottom: 28px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  filter: saturate(1.05) contrast(1.05);
}
.cta {
  background: radial-gradient(
      circle at 20% 20%,
      rgba(87, 214, 129, 0.22),
      transparent 35%
    ),
    #07100c;
}
.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  padding: 44px;
}
.contact-card p {
  font-size: 18px;
  color: #d3ded6;
}
.phone {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #57d681;
  letter-spacing: -0.02em;
  width: 100%;
}
.contact-actions {
  margin-top: 0;
}
.contact-actions small {
  display: block;
  width: 100%;
  color: #9faaa3;
}
.footer {
  padding: 26px 0;
  background: #050b08;
  color: #aebbb2;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.22s;
}
.delay-3 {
  transition-delay: 0.32s;
}
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    position: absolute;
    top: 96px;
    left: 4%;
    right: 4%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #07100c;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 18px;
  }
  .nav.open {
    display: flex;
  }
  .hero-content,
  .grid-2,
  .split,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .hero-card {
    max-width: 520px;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section {
    padding: 70px 0;
  }
}
@media (max-width: 560px) {
  .nav-wrap {
    min-height: 98px;
  }
  .brand img {
    height: 80px;
  }
  .hero {
    padding-top: 140px;
  }
  .hero p,
  .lead {
    font-size: 17px;
  }
  .cards,
  .steps,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid img {
    height: 260px;
  }
  .contact-card {
    padding: 28px;
  }
  .phone {
    font-size: 23px;
  }
  .footer-wrap {
    flex-direction: column;
  }
  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }
}

.card-link-wrap {
  display: block;
  color: inherit;
}
.card-link {
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
  height: 100%;
}
.card-link-wrap:hover .card-link {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  border-color: rgba(87, 214, 129, 0.35);
}
.card-more {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 800;
  color: #57d681;
}
.page-hero {
  position: relative;
  padding: 170px 0 90px;
  overflow: hidden;
  min-height: 58vh;
  display: flex;
  align-items: end;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(3, 11, 8, 0.9) 0%,
      rgba(3, 11, 8, 0.62) 45%,
      rgba(3, 11, 8, 0.25) 100%
    ),
    url("assets/burinnya-hero.jpg") center center/cover no-repeat;
  transform: scale(1.03);
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  margin: 14px 0 18px;
  letter-spacing: -0.05em;
  max-width: 900px;
}
.page-hero p {
  font-size: 20px;
  max-width: 760px;
  color: #d9e4dc;
}
.breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #b9c8be;
  font-size: 14px;
}
.breadcrumbs a {
  color: #57d681;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}
.info-panel {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  padding: 28px;
}
.info-panel h3 {
  margin: 0 0 12px;
  font-size: 24px;
}
.detail-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.detail-list p {
  margin: 0;
  padding-left: 18px;
  border-left: 3px solid #57d681;
  color: #d0ddd5;
}
.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.mini-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.mini-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}
.faq {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.faq-item {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.faq-item p {
  margin: 0;
  color: #cfddd5;
}
.inline-photo {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 900px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .mini-cards {
    grid-template-columns: 1fr 1fr;
  }
  .page-hero {
    padding-top: 150px;
  }
}
@media (max-width: 560px) {
  .page-hero {
    padding-top: 145px;
    padding-bottom: 70px;
    min-height: 52vh;
  }
  .page-hero p {
    font-size: 17px;
  }
  .mini-cards {
    grid-template-columns: 1fr;
  }
  .inline-photo {
    min-height: 280px;
  }
}
.mini-card-link {
  display: block;
  color: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.mini-card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(87, 214, 129, 0.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}
.mini-card-link span {
  display: inline-flex;
  margin-top: 14px;
  color: #57d681;
  font-weight: 800;
}
.price-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(3, 11, 8, 0.92) 0%,
      rgba(3, 11, 8, 0.66) 47%,
      rgba(3, 11, 8, 0.28) 100%
    ),
    url("assets/burinnya-hero.jpg") center center/cover no-repeat;
  transform: scale(1.03);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(255, 255, 255, 0.11);
  padding: 26px;
  min-height: 260px;
}
.price-card.featured {
  border-color: rgba(87, 214, 129, 0.55);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}
.price-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #57d681, transparent);
}
.price-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
}
.price-value {
  font-size: 38px;
  font-weight: 900;
  color: #57d681;
  letter-spacing: -0.05em;
  line-height: 1;
}
.price-value small {
  font-size: 15px;
  color: #d4e2d9;
  font-weight: 700;
  letter-spacing: 0;
}
.price-card ul {
  padding-left: 18px;
  margin: 20px 0 0;
  color: #cbd8d0;
}
.price-card li {
  margin: 7px 0;
}
.price-note {
  margin-top: 18px;
  color: #aebbb2;
  font-size: 14px;
}
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.package {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 24px;
}
.package strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}
.package span {
  display: block;
  color: #57d681;
  font-weight: 900;
  font-size: 26px;
  margin: 8px 0;
}
.factors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.factor {
  padding: 22px;
  border-radius: 22px;
  background: rgba(87, 214, 129, 0.08);
  border: 1px solid rgba(87, 214, 129, 0.18);
}
.factor h3 {
  margin: 0 0 8px;
}
.factor p {
  margin: 0;
  color: #cdd9d1;
}
.notice-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(87, 214, 129, 0.1);
  border: 1px solid rgba(87, 214, 129, 0.26);
  color: #dce8df;
}
.back-link {
  display: inline-flex;
  margin-top: 22px;
  color: #57d681;
  font-weight: 800;
}
@media (max-width: 900px) {
  .price-grid,
  .packages {
    grid-template-columns: 1fr 1fr;
  }
  .factors {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .price-grid,
  .packages {
    grid-template-columns: 1fr;
  }
  .price-value {
    font-size: 32px;
  }
}

.map-box {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background: radial-gradient(
    circle at top left,
    rgba(87, 214, 129, 0.22),
    rgba(255, 255, 255, 0.04) 56%
  );
}
.map-box p {
  color: #cdd9d1;
  margin: 0;
}
.nav a {
  white-space: nowrap;
}
@media (max-width: 900px) {
  .nav {
    gap: 22px;
  }
  .nav a {
    font-size: 28px;
  }
  .nav.open {
    max-height: calc(100vh - 118px);
    overflow: auto;
  }
}
@media (max-width: 560px) {
  .nav a {
    font-size: 28px;
  }
}

.depth-page-bg {
  background: linear-gradient(
      90deg,
      rgba(3, 11, 8, 0.92) 0%,
      rgba(3, 11, 8, 0.66) 47%,
      rgba(3, 11, 8, 0.28) 100%
    ),
    url("assets/burinnya-hero.jpg") center center/cover no-repeat;
  transform: scale(1.03);
}
.aquifer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.aquifer-card {
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  min-height: 230px;
}
.aquifer-card strong {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}
.aquifer-card span {
  display: block;
  color: #57d681;
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.aquifer-card p {
  margin: 0;
  color: #cfddd5;
}
.aquifer-card.featured {
  border-color: rgba(87, 214, 129, 0.5);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}
.depth-factors {
  margin-top: 18px;
}
.trust-cards .card {
  min-height: unset;
}
@media (max-width: 900px) {
  .aquifer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .aquifer-grid {
    grid-template-columns: 1fr;
  }
}

.guarantee-page-bg {
  background: linear-gradient(
      90deg,
      rgba(3, 11, 8, 0.92) 0%,
      rgba(3, 11, 8, 0.66) 47%,
      rgba(3, 11, 8, 0.28) 100%
    ),
    url("assets/burinnya-hero.jpg") center center/cover no-repeat;
  transform: scale(1.03);
}
.documents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.document-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(255, 255, 255, 0.11);
  padding: 26px;
  min-height: 270px;
}
.document-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #57d681, transparent);
}
.document-card.featured {
  border-color: rgba(87, 214, 129, 0.55);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}
.doc-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(87, 214, 129, 0.14);
  color: #57d681;
  font-weight: 900;
  margin-bottom: 20px;
}
.document-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.15;
}
.document-card p {
  margin: 0;
  color: #cfddd5;
}
.guarantee-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background: radial-gradient(
    circle at top left,
    rgba(87, 214, 129, 0.28),
    rgba(255, 255, 255, 0.04) 58%
  );
}
.guarantee-panel p {
  margin: 0;
  color: #cfddd5;
}
@media (max-width: 1000px) {
  .documents-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .documents-grid {
    grid-template-columns: 1fr;
  }
}

.pump-page-bg {
  background: linear-gradient(
      90deg,
      rgba(3, 11, 8, 0.92) 0%,
      rgba(3, 11, 8, 0.66) 47%,
      rgba(3, 11, 8, 0.28) 100%
    ),
    url("assets/gallery-2.jpg") center center/cover no-repeat;
  transform: scale(1.03);
}
.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.brand-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(87, 214, 129, 0.42);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}
.brand-card img {
  width: 100%;
  max-width: 190px;
  height: auto;
  border-radius: 16px;
}
.pump-info-panel {
  height: 100%;
}
.pump-packages-small {
  grid-template-columns: 1fr;
  gap: 12px;
}
.pump-packages-small .package {
  padding: 18px;
}
.pump-packages-small .package span {
  font-size: 22px;
}
@media (max-width: 900px) {
  .brand-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .brand-logo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brand-card {
    min-height: 105px;
    padding: 12px;
  }
  .brand-card img {
    max-width: 150px;
  }
}

.service-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 230px;
  padding: 34px;
}
.service-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: right 24px center;
  background-repeat: no-repeat;
  background-size: 230px auto;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 16px rgba(87, 214, 129, 0.18));
}
.service-bg > * {
  position: relative;
  z-index: 1;
}
.service-bg h3,
.service-bg p,
.service-bg .card-more {
  max-width: 62%;
}
.drilling-bg::before {
  background-image: url("assets/drilling-card-bg.svg");
}
.turnkey-bg::before {
  background-image: url("assets/turnkey-card-bg.svg");
}
.pump-bg::before {
  background-image: url("assets/pump-card-bg.svg");
}
.water-bg::before {
  background-image: url("assets/water-card-bg.svg");
}
.serviceicon-bg::before {
  background-image: url("assets/service-card-bg.svg");
}
.consult-bg::before {
  background-image: url("assets/consult-card-bg.svg");
}
@media (max-width: 920px) {
  .service-bg::before {
    background-size: 200px auto;
    background-position: right 18px center;
    opacity: 0.15;
  }
  .service-bg h3,
  .service-bg p,
  .service-bg .card-more {
    max-width: 64%;
  }
}
@media (max-width: 768px) {
  .service-bg {
    min-height: 240px;
    padding: 30px 26px 150px 26px;
  }
  .service-bg::before {
    background-size: 190px auto;
    background-position: center bottom 18px;
    opacity: 0.17;
  }
  .service-bg h3,
  .service-bg p,
  .service-bg .card-more {
    max-width: 100%;
  }
}
@media (max-width: 520px) {
  .service-bg {
    min-height: 250px;
    padding: 30px 24px 165px 24px;
  }
  .service-bg::before {
    background-size: 205px auto;
    background-position: center bottom 16px;
    opacity: 0.17;
  }
 .benefit-panel{
    display:flex;
    flex-direction:column;
}

.price-button{
    margin-top:auto;
    padding-top:30px;
}

.price-button a{
    display:block;
    text-align:center;
    padding:16px 20px;
    background:#61e33d;
    color:#111;
    text-decoration:none;
    font-weight:700;
    border-radius:14px;
    transition:.3s;
}

.price-button a:hover{
    background:#74ef4d;
    transform:translateY(-2px);
}
/* ===== Блок "Ціни та географія робіт" на головній ===== */

#prices-map {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(87, 214, 129, 0.22), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(169, 255, 37, 0.10), transparent 28%),
    linear-gradient(180deg, #0b1d14 0%, #07140e 45%, #06110c 100%) !important;
  color: #ffffff !important;
}

#prices-map .section-label {
  color: #57d681 !important;
}

#prices-map h2,
#prices-map h3 {
  color: #ffffff !important;
}

.price-map-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 22px !important;
  align-items: stretch !important;
  margin-top: 28px !important;
}

.home-info-card {
  min-height: 285px !important;
  padding: 28px !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(87, 214, 129, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    #0b1d14 !important;
  border: 1px solid rgba(87, 214, 129, 0.22) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28) !important;
  color: #ffffff !important;
  display: flex !important;
  flex-direction: column !important;
}

.home-info-card h3 {
  margin: 0 0 18px !important;
  color: #ffffff !important;
  font-size: 22px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

.home-info-card ul {
  margin: 0 0 22px !important;
  padding-left: 18px !important;
  display: grid !important;
  gap: 12px !important;
}

.home-info-card li {
  color: #d8e3dd !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

.map-card-home img {
  width: 100% !important;
  max-height: 165px !important;
  object-fit: contain !important;
  margin: 4px 0 20px !important;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,0.35)) !important;
}

.home-card-btn {
  margin-top: auto !important;
  width: fit-content !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 11px 18px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #57d681, #a9ff25) !important;
  color: #06110c !important;
  font-weight: 900 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  border: 1px solid transparent !important;
  transition: 0.25s ease !important;
}

.home-card-btn.outline {
  background: rgba(87, 214, 129, 0.10) !important;
  color: #57d681 !important;
  border: 1px solid rgba(87, 214, 129, 0.55) !important;
}

.home-card-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(87, 214, 129, 0.18) !important;
}

.home-card-btn.outline:hover {
  background: rgba(87, 214, 129, 0.18) !important;
  color: #a9ff25 !important;
}

@media (max-width: 800px) {
  .price-map-row {
    grid-template-columns: 1fr !important;
  }

  .home-info-card {
    min-height: auto !important;
  }

  .map-card-home img {
    max-height: 190px !important;
  }
}

}
