.elementor-61 .elementor-element.elementor-element-15d8316{padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-15d8316 *//* =====================================
   METRICOVA SERVICES PAGE
===================================== */

.metricova-services {
  padding: 90px 20px;
  background: #f8f9fb;
  font-family: Arial, sans-serif;
}


/* HERO */

.services-hero {
  max-width: 900px;
  margin: 0 auto 65px;
  text-align: center;
}

.services-label {
  color: #fdba16;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.services-hero h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #151515;
  margin: 15px 0 20px;
  font-weight: 700;
}

.services-hero h1 span {
  color: #fdba16;
}

.services-hero p {
  max-width: 720px;
  margin: auto;
  color: #666;
  font-size: 17px;
  line-height: 1.8;
}


/* SERVICES GRID */

.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}


/* CARD */

.service-card {
  position: relative;
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #eeeeee;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.09);
  border-color: #fdba16;
}

.service-number {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 45px;
  font-weight: 800;
  color: #f2f2f2;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff4d6;
  border-radius: 14px;
  font-size: 25px;
  margin-bottom: 25px;
  position: relative;
}

.service-card h2 {
  font-size: 23px;
  color: #151515;
  margin: 0 0 15px;
}

.service-card p {
  color: #707070;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.service-card ul li {
  color: #444;
  font-size: 14px;
  margin-bottom: 9px;
}

.service-card a {
  color: #151515;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.service-card a span {
  color: #fdba16;
  margin-left: 6px;
  font-size: 19px;
}

.service-card a:hover {
  color: #fdba16;
}


/* =====================================
   WHY CHOOSE US
===================================== */

.metricova-why {
  padding: 100px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.why-content h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #151515;
  margin: 15px 0 20px;
}

.why-content h2 span {
  color: #fdba16;
}

.why-content > p {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 30px;
}

.why-button {
  display: inline-block;
  padding: 14px 24px;
  background: #fdba16;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  border-radius: 7px;
  transition: 0.3s;
}

.why-button:hover {
  background: #111;
  color: #fff;
}


/* WHY ITEMS */

.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.why-item {
  display: flex;
  gap: 15px;
  padding: 25px;
  border: 1px solid #eeeeee;
  border-radius: 12px;
}

.why-icon {
  min-width: 38px;
  height: 38px;
  background: #fdba16;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.why-item h3 {
  font-size: 17px;
  color: #222;
  margin: 0 0 8px;
}

.why-item p {
  font-size: 13px;
  line-height: 1.6;
  color: #777;
  margin: 0;
}


/* =====================================
   CTA
===================================== */

.metricova-cta {
  padding: 100px 20px;
  background: #151515;
  text-align: center;
  font-family: Arial, sans-serif;
}

.cta-content {
  max-width: 800px;
  margin: auto;
}

.cta-content > span {
  color: #fdba16;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.cta-content h2 {
  color: #fff;
  font-size: 44px;
  line-height: 1.2;
  margin: 15px 0;
}

.cta-content p {
  color: #aaa;
  font-size: 16px;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 30px;
}

.cta-content a {
  display: inline-block;
  padding: 15px 28px;
  background: #fdba16;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  border-radius: 7px;
  transition: 0.3s;
}

.cta-content a:hover {
  background: #fff;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1000px) {

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

  .why-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 650px) {

  .metricova-services {
    padding: 60px 15px;
  }

  .services-hero h1 {
    font-size: 34px;
  }

  .services-hero p {
    font-size: 15px;
  }

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

  .service-card {
    padding: 28px;
  }

  .metricova-why {
    padding: 65px 15px;
  }

  .why-content h2 {
    font-size: 34px;
  }

  .why-points {
    grid-template-columns: 1fr;
  }

  .metricova-cta {
    padding: 70px 15px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

}/* End custom CSS */