/* =========================
   SERVICES PAGE
========================= */

.services-page {
  background: #fffdf9;
}

/* =========================
   HERO
========================= */

.services-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 76px 0 88px;
  background: #fffdf9;
}

.services-hero-container {
  position: relative;
  z-index: 3;
  min-height: 570px;
  display: flex;
  align-items: center;
}

.services-hero-content {
  max-width: 570px;
}

.services-hero .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
}

.services-hero .breadcrumbs a {
  color: var(--color-primary-dark);
}

.services-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(64px, 7vw, 104px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.services-hero h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 24px;
  border-radius: 999px;
  background: var(--color-primary);
}

.services-hero-lead {
  max-width: 520px;
  margin-bottom: 24px;
  color: var(--color-primary-dark);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.services-hero-text {
  max-width: 520px;
  margin-bottom: 36px;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.75;
}

.services-hero-btn {
  min-width: 220px;
}

.services-hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58vw;
  min-width: 720px;
  overflow: hidden;
}

.services-hero-image::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 50%;
  background: linear-gradient(
    90deg,
    #fffdf9 0%,
    rgba(255, 253, 249, 0.94) 28%,
    rgba(255, 253, 249, 0.56) 62%,
    rgba(255, 253, 249, 0) 100%
  );
  pointer-events: none;
}

.services-hero-image::after {
  content: "";
  position: absolute;
  left: -11%;
  top: -18%;
  z-index: 2;
  width: 230px;
  height: 720px;
  background: #fffdf9;
  border-radius: 50%;
  pointer-events: none;
}

.services-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* =========================
   HERO RESPONSIVE
========================= */

@media (max-width: 1180px) {
  .services-hero {
    padding: 60px 0 76px;
  }

  .services-hero-container {
    min-height: auto;
  }

  .services-hero-image {
    position: relative;
    width: min(100% - 48px, var(--container));
    min-width: 0;
    height: 420px;
    margin: 44px auto 0;
    border-radius: 32px;
  }

  .services-hero-image::before {
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(255, 253, 249, 0.34),
      rgba(255, 253, 249, 0)
    );
  }

  .services-hero-image::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .services-hero {
    padding: 44px 0 60px;
  }

  .services-hero .breadcrumbs {
    margin-bottom: 32px;
  }

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

  .services-hero-lead {
    font-size: 24px;
  }

  .services-hero-text {
    font-size: 16px;
  }

  .services-hero-image {
    width: calc(100% - 32px);
    height: 300px;
    margin-top: 34px;
  }
}

/* =========================
   AUDIENCE
========================= */

.services-audience-section {
  padding: 66px 0 82px;
}

.services-section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.services-section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 650;
  letter-spacing: -0.045em;
}

.services-section-heading h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: var(--color-primary);
}

.services-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.services-audience-card {
  min-height: 260px;
  padding: 42px 34px 36px;
  text-align: center;
  background: #fffdfa;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(32, 42, 37, 0.045);
}

.services-audience-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f3f7f0;
  color: var(--color-primary);
  font-size: 44px;
}

.services-audience-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.services-audience-card p {
  max-width: 300px;
  margin: 0 auto;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.65;
}

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

  .services-audience-card {
    min-height: auto;
  }
}

/* ======================================
   SERVICES GRID
====================================== */

.services-list-section {
    padding: 20px 0 110px;
}

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

.service-card {
    padding: 42px 34px;
    background: #fffdfa;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(32,42,37,.045);
    transition: .28s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(32,42,37,.08);
}

.service-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f3f7f0;
    color: var(--color-primary);
    font-size: 42px;
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -.03em;
}

.service-card h3::after {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    margin: 18px auto 0;
    background: var(--color-primary);
    border-radius: 999px;
}

.service-card p {
    margin: 0;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.7;
}

.service-card-accent {
    background: linear-gradient(135deg,#6f9b72,#84b187);
    color: white;
    border: none;
}

.service-card-accent .service-icon {
    background: rgba(255,255,255,.15);
    color: white;
}

.service-card-accent h3,
.service-card-accent p {
    color: white;
}

.service-card-accent h3::after {
    background: rgba(255,255,255,.6);
}

@media (max-width:1100px){

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

}

@media (max-width:760px){

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

}

/* =========================
   ENMOT BANNER
========================= */

.services-enmot-section {
  padding: 0 0 110px;
}

.services-enmot-card {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: 30px;
  background: #fffdfa;
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 60px rgba(32, 42, 37, 0.06);
}

.services-enmot-content {
  position: relative;
  z-index: 3;
  padding: 66px 58px;
}

.services-enmot-content h2 {
  margin: 0 0 28px;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.services-enmot-content h2 span {
  color: var(--color-primary);
}

.services-enmot-content h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin-top: 26px;
  border-radius: 999px;
  background: var(--color-primary);
}

.services-enmot-content > p {
  max-width: 520px;
  margin: 0 0 40px;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.75;
}

.services-enmot-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}

.services-enmot-features div {
  text-align: center;
}

.services-enmot-feature-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  background: rgba(111, 155, 114, 0.025);
}

.services-enmot-feature-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-enmot-feature-icon {
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.services-enmot-feature:hover .services-enmot-feature-icon {
  color: #fff;
  background: var(--color-primary);
  transform: translateY(-3px);
}

.services-enmot-features p {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.services-enmot-btn {
  min-width: 300px;
}

.services-enmot-map {
  position: relative;
  min-height: 520px;
}

.services-enmot-map::before{
    display:none;
}

.services-enmot-map::after{
    display:none;
}

.services-enmot-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1100px) {
  .services-enmot-card {
    grid-template-columns: 1fr;
  }

  .services-enmot-map {
    min-height: 360px;
    order: -1;
  }

  .services-enmot-map::before,
  .services-enmot-map::after {
    display: none;
  }

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

@media (max-width: 640px) {
  .services-enmot-content {
    padding: 36px 24px;
  }

  .services-enmot-content h2 {
    font-size: 44px;
  }

  .services-enmot-features {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .services-enmot-btn {
    min-width: 0;
    width: 100%;
  }

  .services-enmot-map {
    min-height: 260px;
  }
}

/* =========================
   PROCESS
========================= */

.services-process-section {
  padding: 0 0 100px;
}

.services-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
  margin-top: 46px;
}

.services-process-item {
  position: relative;
  text-align: center;
}

.services-process-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48px;
  left: calc(50% + 70px);
  width: calc(100% - 70px);
  border-top: 2px dashed rgba(111, 155, 114, 0.35);
}

.services-process-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f3f7f0;
  color: var(--color-primary);
  font-size: 42px;
}

.services-process-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.services-process-item p {
  max-width: 230px;
  margin: 0 auto;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .services-process-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-process-item:not(:last-child)::after {
    display: none;
  }
}

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

.services-cta-section {
    padding: 0 0 120px;
}

.services-cta-card {

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;

    padding: 60px 70px;

    border-radius: 30px;

    background:
        radial-gradient(circle at top right,
        rgba(111,155,114,.06),
        transparent 40%),

        linear-gradient(
            135deg,
            #fffdfa,
            #f8faf6
        );

    border: 1px solid var(--color-border);

    box-shadow:
        0 18px 55px rgba(32,42,37,.05);

}

.services-cta-content{

    max-width:620px;

}

.services-cta-content h2{

    margin:18px 0;

    font-size:clamp(42px,4vw,58px);

    line-height:1.08;

    letter-spacing:-.05em;

}

.services-cta-content p{

    margin:0;

    color:var(--color-text);

    font-size:18px;

    line-height:1.8;

}

.services-cta-actions{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:24px;

}

.services-cta-btn{

    min-width:290px;

    justify-content:center;

    min-height:62px;

}

.services-cta-info{

    display:flex;

    align-items:center;

    gap:12px;

    color:var(--color-text);

    font-size:15px;

    font-weight:600;

}

.services-cta-info span{

    width:28px;

    height:28px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:999px;

    background:#eef6ef;

    color:var(--color-primary);

    font-weight:700;

}

@media(max-width:980px){

.services-cta-card{

flex-direction:column;

align-items:flex-start;

padding:40px 32px;

gap:42px;

}

.services-cta-btn{

width:100%;

min-width:0;

}

.services-cta-actions{

width:100%;

}

}