:root{
  /* Brand colors (from Gazverd logo) */
  --green: #1f8f2e;
  --green-light: #6bcf3d;
  --blue: #0b6fb3;
  --blue-dark: #084c7a;

  /* Neutrals */
  --white: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.10);

  /* UI */
  --shadow: 0 10px 25px rgba(2, 6, 23, 0.12);
  --radius: 16px;
  --max: 1200px;

  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: #f8fafc;
}

/* Sticky header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--border);
}

/* Nav container */
.nav{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* Brand */
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  min-width: 180px;
}

.brand__logo{
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: #fff;
}

.brand__name{
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Desktop links */
.nav__links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__link{
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.nav__link:hover{
  background: rgba(10, 122, 63, 0.08);
  color: var(--green);
  transform: translateY(-1px);
}

.nav__link--cta{
  background: var(--green);
  color: var(--white);
  padding: 10px 14px;
  box-shadow: var(--shadow);
}

.nav__link--cta:hover{
  background: var(--green-light);
  color: var(--white);
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav__toggle{
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav__toggle .bar{
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

/* Mobile panel */
.mobile-panel{
  display: none;
  max-width: var(--max);
  margin: 0 auto 12px auto;
  padding: 10px 18px 16px 18px;
}

.mobile-panel.is-open{
  display: grid;
  gap: 8px;
}

.mobile-link{
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-weight: 600;
}

.mobile-link:hover{
  border-color: rgba(10, 122, 63, 0.35);
  color: var(--green);
}

.mobile-link--cta{
  background: var(--green);
  border-color: transparent;
  color: var(--white);
}

.mobile-link--cta:hover{
  background: var(--green-dark);
  color: var(--white);
}

/* HERO SLIDER */
.hero{
  background: #f8fafc;
}

.hero__slider{
  position: relative;
  width: 100%;
  height: clamp(520px, 70vh, 760px);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 500ms ease, transform 900ms ease;
}

.hero__slide.is-active{
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero__img{
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.hero__overlay{
  position: absolute;
  inset: 0;
  /* dark overlay + brand tint */
  background:
    linear-gradient(90deg, rgba(2,6,23,0.75) 0%, rgba(2,6,23,0.35) 55%, rgba(2,6,23,0.15) 100%),
    radial-gradient(900px 400px at 15% 40%, rgba(31,143,46,0.25), transparent 55%),
    radial-gradient(800px 380px at 35% 65%, rgba(11,111,179,0.22), transparent 55%);
}

.hero__content{
  position: absolute;
  inset: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 18px 28px 18px; /* space for sticky navbar */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  color: var(--white);
}

.hero__eyebrow{
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  opacity: 0.95;
}

.hero__title{
  margin: 0;
  font-weight: 900;
  line-height: 1.05;
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 18ch;
}

.hero__text{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 60ch;
}

.hero__actions{
  display: flex;
  gap: 12px;
  margin-top: 6px;
  flex-wrap: wrap;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover{ transform: translateY(-1px); }

.btn--primary{
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn--primary:hover{
  background: linear-gradient(135deg, var(--green-light), var(--blue-dark));
}

.btn--ghost{
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover{
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}

/* Badges */
.hero__badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.badge{
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.10);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Slider controls */
.hero__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  font-size: 30px;
  line-height: 1;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
}

.hero__nav:hover{
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}

.hero__nav--prev{ left: 14px; }
.hero__nav--next{ right: 14px; }

/* Dots */
.hero__dots{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.18);
  cursor: pointer;
}

.hero__dot.is-active{
  width: 24px;
  background: linear-gradient(135deg, var(--green-light), var(--blue));
  border-color: transparent;
}

.two-col{
  padding: 70px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.two-col__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.panel{
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.panel::before{
  content: "";
  position: absolute;
  inset: -2px;
  opacity: 0.35;
  pointer-events: none;
  background:
    radial-gradient(700px 240px at 20% 15%, rgba(31, 143, 46, 0.20), transparent 60%)
    radial-gradient(700px 240px at 90% 25%, rgba(11, 111, 179, 0.18), transparent 60%)
}

.panel > *{
  position: relative;
  z-index: 1;
}

.section-kicker{
  margin: 0 0 8px 0;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(31, 143, 46, 0.10);
  border: 1px solid rgba(31, 143, 46, 0.18);
}

.panel--right .section-kicker{
  color: var(--blue);
  background: rgba(11, 111, 179, 0.10);
  border-color: rgba(11, 111, 179, 0.18);
}

.section-title{
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.15;
  font-weight: 900;
  color: var(--text);
  max-width: 30ch;
}

.section-text{
  margin: 12px 0 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.feature-list{
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
  display: grid;
  gap: 14px;
}

.feature-item{
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.7)
}

.feature-icon{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.feature-title{
  margin: 0;
  font-weight: 900;
  font-size: 1rem;
  color: var(--text)
}

.feature-desc{
  margin: 6px 0 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.info-cards{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.info-card{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.7);
}

.info-title{
  margin: 0;
  font-weight: 900;
  font-size: 1rem;
  color: var(--text)
}

.info-desc{
  margin: 6px 0 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.panel-cta{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.panel-cta .btn--ghost{
  background: #ffffff;
  color: var(--text);
  border: 1.5px solid rgba(15, 23, 42, 0.18);
  backdrop-filter: none;
}

.panel-cta .btn--ghost:hover{
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
  border-color: transparent;
}

.about{
  padding: 70px 0;
  background: #ffffff;
}

.about__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 22px;
  align-items: center;
}

.about__media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
  background: #f8fafc;
  min-height: 360px;
}

.about__img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(1.02);
}

.about__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 240px at 20% 15%, rgba(31, 143, 46, 0.25), transparent 60%)
    radial-gradient(700px 240px at 90% 25%, rgba(11, 111, 179, 0.22), transparent 60%)
    linear-gradient(0deg, rgba(2, 6, 23, 0.25), rgba(2, 6, 23, 0.08));
  pointer-events: none;
}

.about__tag{
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  z-index: 2
}

.about__tag-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-light), var(--blue));
}

.about__content .section-title{
  max-width: 34ch;
}

.about__points{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.about__point{
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.7);
  padding: 14px;
}

.about__point-title{
  margin: 0;
  font-weight: 900;
  font-size: 1rem;
  color: var(--text);
}

.about__point-text{
  margin: 6px 0 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.about__actions{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about__ghost{
  background: #ffffff;
  color: var(--text);
  border: 1.5px solid rgba(15, 23, 42, 0.18);
  backdrop-filter: none;
}

.about__ghost:hover{
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
  border-color: transparent;
}

.services{
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.services__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.services__head{
  max-width: 820px;
}

.services__grid{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card{
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(2, 6, 23, 0.10);
  border-color: rgba(31, 143, 46, 0.22);
}

.service-card__media{
  position: relative;
  height: 190px;
  background: #eef2f7;
}

.service-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.service-card__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(2, 6, 23, 0.25), rgba(2, 6, 23, 0.05));
  pointer-events: none;
}

.service-card__tag{
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.service-card__body{
  padding: 16px 16px 18px 16px;
}

.service-card__title{
  margin: 0;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--text);
}

.service-card__text{
  margin: 8px 0 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

.service-card__link{
  display: inline-flex;
  margin-top: 12px;
  text-decoration: none;
  font-weight: 900;
  color: var(--blue);
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(11, 111, 179, 0.08);
  border: 1px solid rgba(11, 111, 179, 0.14);
  transition: transform 0.15s ease, background 0.15s ease;
}

.service-card__link:hover{
  background: rgba(31, 143, 46, 0.10);
  transform: translateY(-1px);
  border-color: rgba(31, 143, 46, 0.18);
  color: var(--green);
}

.services__cta{
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.services__ghost{
  background: #ffffff;
  color: var(--text);
  border: 1.5px solid rgba(15, 23, 42, 0.18);
  backdrop-filter: none;
}

.services__ghost:hover{
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
  border-color: transparent;
}

.info-split{
  padding: 70px 0;
  background: #ffffff;
}

.info-split__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.info-split__content .section-title{
  max-width: 34ch;
}

.process-list{
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
  display: grid;
  gap: 12px;
}

.process-item{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.7)
}

.process-step{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.process-title{
  margin: 0;
  font-weight: 900;
  font-size: 1rem;
  color: var(--text);
}

.process-desc{
  margin: 6px 0 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.info-split__actions{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.info-split__ghost{
  background: #ffffff;
  color: var(--text);
  border: 1.5px solid rgba(15, 23, 42, 0.18);
  backdrop-filter: none;
}

.info-split__ghost:hover{
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
  border-color: transparent;
}

.info-split__media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
  background: #f8fafc;
  min-height: 330px;
}

.info-split__img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(1.02);
}

.info-split__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 240px at 20% 15%, rgba(31, 143, 46, 0.22), transparent 60%)
    radial-gradient(700px 240px at 90% 25%, rgba(11, 111, 179, 0.18), transparent 60%)
    linear-gradient(0deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.06));
  pointer-events: none;
}

.info-split__badge{
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.info-split__badge-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-light), var(--blue));
}

.delivery-process{
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.delivery-process__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
}

.delivery-process__head{
  max-width: 850px;
  margin: 0 auto;
}

.delivery-process__image-box{
  margin-top: 28px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(2, 6, 23, 0.08);
  padding: 20px;
}

.delivery-process__image{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.delivery-process__cta{
  margin-top: 28px;
}

.delivery-process__image-box:hover{
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.12);
  transform: translateY(-2px);
  transition: all 0.2s ease;
}

.news{
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.news__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.news__head{
  max-width: 820px;
}

.news__grid{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.news-card{
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.news-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(2, 6, 23, 0.10);
  border-color: rgba(11, 111, 179, 0.22);
}

.news-card__media{
  position: relative;
  display: block;
  height: 190px;
  background: #eef2f7;
}

.news-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.news-card__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.40), rgba(2, 6, 23, 0.05));
  pointer-events: none;
}

.news-card__body{
  padding: 16px 16px 18px 16px;
}

.news-card__meta{
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.news-card__dot{
  opacity: 0.7;
}

.news-card__tag{
  opacity: 0.7;
}

.news-card__tag{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.news-card__tag--blue{
  color: var(--blue);
  background: rgba(11, 111, 179, 0.10);
  border-color: rgba(31, 143, 46, 0.16);
}

.news-card__title{
  margin: 10px 0 0 0;
  font-weight: 950;
  font-size: 1.12rem;
  line-height: 1.25;
}

.news-card__title a{
  color: var(--text);
  text-decoration: none;
}

.news-card__title a:hover{
  color: var(--green);
}

.news-card__text{
  margin: 10px 0 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.news-card__link{
  display: inline-flex;
  margin-top: 12px;
  text-decoration: none;
  font-weight: 900;
  color: var(--blue);
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(11, 111, 179, 0.08);
  border: 1px solid rgba(11, 111, 179, 0.14);
  transition: transform 0.15s ease, background 0.15s ease;
}

.news-card__link:hover{
  transform: translateY(-1px);
  background: rgba(31, 143, 46, 0.10);
  border-color: rgba(31, 143, 46, 0.18);
  color: var(--green)
}

.news__cta{
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.news__ghost{
  background: #ffffff;
  color: var(--text);
  border: 1.5px solid rgba(15, 23, 42, 0.18);
  backdrop-filter: none;
}

.news__ghost:hover{
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
  border-color: transparent;
}

.contact-cta{
  padding: 80px 0;
  text-align: center;

  background:
    radial-gradient(600px 200px at 20% 20%, rgba(31, 143, 46, 0.18), transparent),
    radial-gradient(600px 200px at 80% 30%, rgba(11, 111, 179, 0.18), transparent),
    linear-gradient(180deg, #f8fafc 0%, #ffffff, 100%);
}

.contact-cta__wrap{
  max-width: 750px;
  margin: 0 auto;
  padding: 0 18px;
}

.contact-cta__text{
  margin: 0;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-cta__title{
  margin: 14px 0 28px 0;
  font-size: clamp(1.6rem, 2.5vw, 2,2rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.25;
}

.contact-cta__button{
  font-size: 1.05rem;
  padding: 14px 26px;
}

.footer{
  background: linear-gradient(180deg, #0b1320 0%, #070d16 100%);
  color: rgba(255, 255, 255, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 18px 40px 18px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 22px;
}

.footer__brand{
  padding-right: 10px;
}

.footer__logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 950;
  font-size: 1.2rem;
}

.footer__logo img{
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
  padding: 4px;
}

.footer__text{
  margin: 14px 0 16px 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 42ch;
}

.footer__title{
  margin: 0 0 12px 0;
  font-weight: 900;
  color: #fff;
  font-size: 1.05rem;
}

.footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer__links a{
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.15s ease;
}

.footer__links a:hover{
  color: #ffffff;
}

.footer__contact p{
  margin: 0 0 10px 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.footer__contact strong{
  color: rgba(255, 255, 255, 0.92);
}

.footer__social{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.social-btn{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
}

.social-btn svg{
  width: 20px;
  height: 20px;
  fill: #ffffff;
  opacity: 0.92;
}

.social-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(31, 143, 46, 0.35), rgba(11, 111, 179, 0.35));
}

.footer__cta{
  margin-top: 12px;
  display: inline-flex;
}

.footer__bottom{
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}

.footer__bottom-wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__bottom p{
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: 0.95rem;
}

.footer__small-links{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__small-links a{
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer__small-links a:hover{
  color: #ffffff;
}

.page-hero{
  padding: 70px 0 40px 0;
  background: 
    radial-gradient(700px 240px at 20% 20%, rgba(31, 143, 46, 0.18), transparent 60%),
    radial-gradient(700px 240px at 80% 30%, rgba(11, 111, 179, 0.18), transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.page-hero__kicker{
  margin: 0 0 10px 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
}

.page-hero__title{
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 950;
  color: var(--text);
  line-height: 1.15;
}

.page-hero__text{
  margin: 12px 0 0 0;
  max-width: 70ch;
  color: var(--muted);
  line-height: 1.7;
}

.about-page{
  padding: 70px 0;
  background: #ffffff;
}

.about-page__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: center;
}

.about-page__media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f8fafc;
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
  min-height: 350px;
}

.about-page__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.about-page__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 240px at 20% 15%, rgba(31, 143, 46, 0.22), transparent 60%),
    radial-gradient(700px 240px at 90% 25%, rgba(11, 111, 179, 0.18), transparent 60%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.06));
  pointer-events: none;
}

.about-page__badge{
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.about-page__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-light), var(--blue));
}

.about-page__highlights{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-card{
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.7);
  padding: 14px;
}

.mini-card__title{
  margin: 0;
  font-weight: 950;
  font-size: 1rem;
  color: var(--text);
}

.mini-card__text{
  margin: 6px 0 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-page__actions{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-page__ghost{
  background: #ffffff;
  color: var(--text);
  border: 1.5px solid rgba(15, 23, 42, 0.18);
  backdrop-filter: none;
}

.about-page__ghost:hover{
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
  border-color: transparent;
}

.mvv{
  padding: 70px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.mvv__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.mvv__head{
  max-width: 820px;
}

.mvv__grid{
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mvv-card{
  position: relative;
  border-radius: 22px;
  padding: 24px 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.mvv-card::before{
  content: "";
  position: absolute;
  inset: -2px;
  opacity: 0.35;
  pointer-events: none;
  background: 
    radial-gradient(500px 180px at 15% 10%, rgba(31, 143, 46, 0.18), transparent 60%),
    radial-gradient(500px 180px at 90% 20%, rgba(11, 111, 179, 0.16), transparent 60%);
}

.mvv-card > *{
  position: relative;
  z-index: 1;
}

.mvv-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(2, 6, 23, 0.10);
  border-color: rgba(31, 143, 46, 0.18);
}

.mvv-card__icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 10px 20px rgba(11,111, 179, 0.18);
}

.mvv-card__title{
  margin: 16px 0 0 0;
  font-size: 1.18rem;
  font-weight: 950;
  color: var(--text);
}

.mvv-card__text{
  margin: 10px 0 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.team{
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.team__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.team__head{
  max-width: 820px;
}

.team-slider{
  margin-top: 24px;
  overflow: hidden;
  /* position: absolute; */
}

.team-slider__track{
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.team-card{
  width: 300px;
  flex: 0 0 300px;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.team-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(2, 6, 23, 0.10);
  border-color: rgba(31, 143, 46, 0.18);
}

.team-card__image-box{
  height: 240px;
  background: #eef2f7;
  overflow: hidden;
}

.team-card__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card__body{
  padding: 18px;
}

.team-card__name{
  margin: 0;
  font-size: 1.1rem;
  font-weight: 950;
  color: var(--text);
}

.team-card__role{
  margin: 6px 0 0 0;
  color: var(--green);
  font-weight: 800;
}

.team-card__text{
  margin: 10px 0 0 0;
  color: var(--muted);
  line-height: 1.65;
  min-height: 78px;
}

.team-card__actions{
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.team-card__icon-btn{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(11, 111, 179, 0.08);
  border: 1px solid rgba(11, 111, 179, 0.14);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.team-card__icon-btn svg{
  width: 20px;
  height: 20px;
  fill: var(--blue);
}

.team-card__icon-btn:hover{
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-color: transparent;
}

.team-card__icon-btn:hover svg{
  fill: #ffffff;
}

.services-page-hero{
  padding: 70px 0 40px 0;
  background: 
    radial-gradient(700px 240px at 20% 20%, rgba(31, 143, 46, 0.18), transparent 60%),
    radial-gradient(700px 240px at 80% 30%, rgba(11, 111, 179, 0.18), transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}

.services-page-hero__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.services-intro{
  padding: 70px 0;
  background: #ffffff;
}

.services-intro__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.services-intro__content{
  max-width: 850px;
}

.pillars{
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pillars__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.pillars__grid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pillar-card{
  position: relative;
  padding: 24px 20px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pillar-card::before{
  content: "";
  position: absolute;
  inset: -2px;
  opacity: 0.35s;
  pointer-events: none;
  background: 
    radial-gradient(500px 180px at 15% 10%, rgba(31, 143, 46, 0.18), transparent 60%),
    radial-gradient(500px 180px at 90% 20%, rgba(11, 111, 179, 0.16), transparent 60%);
}

.pillar-card > *{
  position: relative;
  z-index: 1;
}

.pillar-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(2, 6, 23, 0.10);
  border-color: rgba(31, 143, 46, 0.18);
}

.pillar-card__title{
  margin: 0;
  font-weight: 950;
  font-size: 1.15rem;
  color: var(--text);
}

.pillar-card__text{
  margin: 10px 0 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-split{
  padding: 70px 0;
  background: #ffffff;
}

.service-split__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
}

.service-split__media{
  position: relative;
  /* min-height: 420px; */
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f8fafc;
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
}

.service-split__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-split__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(700px 240px at 20% 15%, rgba(31, 143, 46, 0.20), transparent 60%),
    radial-gradient(700px 240px at 90% 25%, rgba(11, 111, 179, 0.18), transparent 60%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.03));
  pointer-events: none;
}

.service-split__content .section-title{
  max-width: 34ch;
}

.service-split__list{
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: grid;
  gap: 14px;
}

.service-split__item{
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.75);
}

.service-split__icon{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.service-split__item.title{
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  color: var(--text);
}

.service-split__item-text{
  margin: 6px 0 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.services-table{
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.services-table__wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.services-table__head{
  max-width: 800px;
}

.services-table__container{
  margin-top: 26px;
  overflow-x: auto;
}

.services-table__table{
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
}

.services-table__table thead{
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #ffffff;
}

.services-table__table th{
  text-align: left;
  padding: 16px;
  font-weight: 900;
  font-size: 1rem;
}

.services-table__table td{
  padding: 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--muted);
  line-height: 1.7;
}

.services-table__table tbody tr:nth-child(even){
  background: rgba(248, 250, 252, 0.7)
}

.services-table__table tbody tr:hover{
  background: rgba(31, 143, 46, 0.06);
  transition: background 0.2s ease;
}

.news-article{
  padding: 80px 0;
  background: #ffffff;
}

.news-article__wrap{
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

.news-article__breadcrumb{
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.news-article__breadcrumb a{
  color: var(--blue);
  text-decoration: none;
}

.news-article__title{
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text);
}

.news-article__meta{
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 30px;
}

.news-article__meta .tag{
  background: rgba(31, 143, 46, 0.1);
  color: var(--green);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700; 
}

.news-article__image-box{
  margin-bottom: 30px;
}

.news-article__image{
  width: 100%;
  border-radius: 12px;
}

.news-article__content p{
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--muted);
}

.news-article__content h2{
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 24px;
  color: var(--text);
}

.news-article__content ul{
  margin-bottom: 20px;
  padding-left: 20px;
}

.news-article__content li{
  margin-bottom: 8px;
}

.news-article__quote{
  border-left: 4px solid var(--green);
  padding: 16px 20px;
  background: #f8fafc;
  margin: 30px 0;
  font-style: italic;
}

.news-article__share{
  margin-top: 40px;
}

.share-icons{
  display: flex;
  gap: 10px;
}

.share-btn{
  padding: 8px 14px;
  background: var(--blue);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.news-article__back{
  margin-top: 40px;
}

.contact-info{
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-info__wrap{
  max-width: var(--max);
  margin: auto;
  padding: 0 18px;
}

.contact-info__head{
  max-width: 700px;
}

.contact-info__grid{
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card{
  padding: 28px 24px;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.contact-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(2, 6, 23, 0.10);
}

.contact-card__icon{
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-card__title{
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-card__text{
  color: var(--muted);
  line-height: 1.6;
}

.contact-card__text a{
  color: var(--blue);
  text-decoration: none;
}

.contact-form-section{
  padding: 80px 0;
  background: #ffffff;
}

.contact-form__wrap{
  max-width: var(--max);
  margin: auto;
  padding: 0 18px;
}

.contact-form{
  background: white;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.06);
}

.contact-form__form{
  margin-top: 20px;
}

.form-group{
  margin-bottom: 18px;
}

.form-group label{
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea{

  width: 100%;
  padding: 12px 14px;

  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.15);

  font-family: inherit;
  font-size: 14px;

  outline: none;
  transition: border .2s ease;
}

.form-group input:focus,
.form-group textarea:focus{
  border-color: var(--green);
}

.form-message{
  margin-top: 15px;
  font-weight: 600;
}

.consult-modal{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.consult-modal.is-open{
  display: block;
}

.consult-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(4px);
}

.consult-modal__dialog{
  position: relative;
  width: min(92%, 560px);
  margin: 6vh auto 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.20);
  border: 1px solid rgba(15, 23, 42, 0.08);
  z-index: 1;
  animation: consultModalIn 0.25s ease;
}

@keyframes consultModalIn{
  from{
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.consult-modal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.consult-modal__close:hover{
  background: rgba(15, 23, 42, 0.10);
}

.consult-modal__title{
  margin: 0;
  font-size: 1.8rem;
  font-weight: 950;
  color: var(--text);
}

.consult-modal__text{
  margin: 10px 0 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.consult-modal__service-box{
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(31, 143, 46, 0.08);
  border: 1px solid rgba(31, 143, 46, 0.14);
  color: var(--text);
}

.consult-modal__service-label{
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.consult-form{
  margin-top: 20px;
}

.consult-form__submit{
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}

body.modal-open{
  overflow: hidden;
}

.service-card__link{
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  text-decoration: none;
  font-weight: 900;
  color: var(--blue);
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(11, 111, 179, 0.08);
  border: 1px solid rgba(11, 11, 179, 0.14);
  transition: transform 0.15s ease, background 0.15s ease;
  cursor: pointer;
  font: inherit;
}

button.service-card__link{
  appearance: none;
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

html{
  scroll-behavior: smooth;
}

body{
  overflow-x: hidden;
}

.hero-content > *{
  opacity: 0;
  transform: translateY(22px);
  animation: heroFadeUp 0.9s var(--ease-smooth) forwards;
}

.hero__content > *:nth-child(1){animation-delay: 0.15s;}
.hero__content > *:nth-child(2){animation-delay: 0.28s;}
.hero__content > *:nth-child(3){animation-delay: 0.4s;}
.hero__content > *:nth-child(4){animation-delay: 0.52s;}
.hero__content > *:nth-child(5){animation-delay: 0.64s;}

@keyframes heroFadeUp{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__slide.is-active .hero__img{
  animation: heroImageFloat 8s ease-in-out infinite alternate;
}

@keyframes heroImageFloat{
  from{transform: scale(1.03) translateY(0);}
  to {transform: scale(1.07) translateY(-8px);}
}

.reveal{
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s var(--ease-smooth),
    transform 0.8s var(--ease-smooth);
  will-change: opacity, transform;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.reveal-item{
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s var(--ease-smooth),
    transform 0.65s var(--ease-smooth);
}

.reveal-item.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.feature-list .feature-item:nth-child(1),
.info-cards .info-card:nth-child(1),
.services__grid .service-card:nth-child(1),
.news__grid .news-card:nth-child(1),
.process-list .process-item:nth-child(1){
  transition-delay: 0.05s;
}

.feature-list .feature-item:nth-child(2),
.info-cards .info-card:nth-child(2),
.services__grid .service-card:nth-child(2),
.news__grid .news-card:nth-child(2),
.process-list .process-item:nth-child(2){
  transition-delay: 0.12s;
}

.feature-list .feature-item:nth-child(3),
.info-cards .info-card:nth-child(3),
.services__grid .service-card:nth-child(3),
.news__grid .news-card:nth-child(3),
.process-list .process-item:nth-child(3){
  transition-delay: 0.19s;
}

.info-cards .info-card:nth-child(4),
.services__grid .service-card:nth-child(4),
.process-list .process-item:nth-child(4){
  transition-delay: 0.26s;
}

.info-cards .info-card:nth-child(5){
  transition-delay: 0.33s;
}

.info-cards .info-card:nth-child(6){
  transition-delay: 0.40s;
}

.info-cards .info-card:nth-child(7){
  transition-delay: 0.47s;
}

.info-cards .info-card:nth-child(8){
  transition-delay: 0.54s;
}

.btn,
.service-card,
.news-card,
.panel,
.about__media,
.info-split__media,
.delivery-process__image-box,
.social-btn{
  transition:
    transform 0.28s var(--ease-smooth),
    box-shadow 0.28s var(--ease-smooth),
    border-color 0.28s var(--ease-smooth),
    background 0.28s var(--ease-smooth),
    color 0.28s var(--ease-smooth);
}

.btn:hover{
  transform: translateY(-2px);
}

.service-card:hover,
.news-card:hover,
.panel:hover{
  transform: translateY(-6px);
}

.about__media,
.info-split__media,
.service-card__media,
.news-card__media,
.delivery-process__image-box{
  overflow: hidden;
}

.about__img,
.info-split__img,
.service-card__media img,
.news-card__media img,
.delivery-process__image{
  transition: transform 0.8s var(--ease-smooth);
}

.about__media:hover .about__img,
.info-split__media:hover .info-split__img,
.service-card:hover .service-card__media img,
.news-card:hover .news-card__media img,
.delivery-process__image-box:hover .delivery-process__image{
  transform: scale(1.045);
}

.badge,
.about__tag,
.info-split__badge{
  animation: softFloat 4.8s ease-in-out infinite;
}

.badge:nth-child(2){animation-delay: 0.5s;}
.badge:nth-child(3){animation-delay: 1s;}

@keyframes softFloat{
  0%, 100%{transform: translateY(0);}
  50%{transform: translateY(-4px);}
}

.site-header{
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.site-header.is-scrolled{
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.08);
}

.consult-modal__dialog{
  transform-origin: top center;
}

.consult-modal.is-open .consult-modal__dialog{
  animation: modalSmoothIn 0.28s var(--ease-smooth);
}

@keyframes modalSmoothIn{
  from{
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero__actions .btn{
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.12);
}

.hero__actions .btn:hover{
  box-shadow: 0 16px 32px rgba(2, 6, 23, 0.16);
}

.page-hero__wrap{
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-smooth) forwards;
}

.page-hero__wrap > *:nth-child(1){animation-delay: 0.08s;}
.page-hero__wrap > *:nth-child(2){animation-delay: 0.18s;}
.page-hero__wrap > *:nth-child(3){animation-delay: 0.28s;}

.about-page__media,
.about-page__content{
  transition: transform 0.5s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth);
}

.about-page__media:hover{
  transform: translateY(-4px);
}

.about-page__img{
  transition: transform 0.85s var(--ease-smooth);
}

.about-page__media:hover .about-page__img{
  transform: scale(1.045);
}

.mvv-card,
.team-card,
.mini-card{
  transition:
    transform 0.28s var(--ease-smooth),
    box-shadow 0.28s var(--ease-smooth),
    border-color 0.28s var(--ease-smooth);
}

.mvv-card:hover,
.team-card:hover,
.mini-card:hover{
  transform: translateY(-5px);
}

.services-page-hero__wrap > *{
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-smooth) forwards;
}

.services-page-hero__wrap > *:nth-child(1){animation-delay: 0.08s;}
.services-page-hero__wrap > *:nth-child(2){animation-delay: 0.18s;}
.services-page-hero__wrap > *:nth-child(3){animation-delay: 0.28s;}

.pillar-card,
.service-split__item,
.services-table__table tbody tr{
  transition:
    transform 0.28s var(--ease-smooth),
    box-shadow 0.28s var(--ease-smooth),
    border-color 0.28s var(--ease-smooth),
    background 0.28s var(--ease-smooth);
}

.pillar-card:hover,
.service-split__item:hover{
  transform: translateY(-4px);
}

.service-split__media{
  transition: transform 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth);
}

.service-split__media:hover{
  transform: translateY(-4px);
}

.service-split__img{
  transition: transform 0.8s var(--ease-smooth);
}

.service-split__media:hover .service-split__img{
  transform: scale(1.045);
}

.services-table__table tbody tr.reveal-item{
  opacity: 0;
  transform: translateY(16px);
}

.services-table__table tbody tr.reveal-item.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.page-hero__wrap > *{
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-smooth) forwards;
}

.page-hero__wrap > *:nth-child(1){ animation-delay: .08s; }
.page-hero__wrap > *:nth-child(2){ animation-delay: .18s; }
.page-hero__wrap > *:nth-child(3){ animation-delay: .28s; }


.delivery-process__image-box{
  transition:
    transform .4s var(--ease-smooth),
    box-shadow .4s var(--ease-smooth);
}

.delivery-process__image{
  transition: transform .9s var(--ease-smooth);
}

.delivery-process__image-box:hover{
  transform: translateY(-6px);
}

.delivery-process__image-box:hover .delivery-process__image{
  transform: scale(1.04);
}

.delivery-process__cta .btn{
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.delivery-process__cta .btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.16);
}

.page-hero__wrap > *{
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp .8s var(--ease-smooth) forwards;
}

.page-hero__wrap > *:nth-child(1){ animation-delay:.08s; }
.page-hero__wrap > *:nth-child(2){ animation-delay:.18s; }
.page-hero__wrap > *:nth-child(3){ animation-delay:.28s; }

.news-card{
  transition:
    transform .3s var(--ease-smooth),
    box-shadow .3s var(--ease-smooth);
}

.news-card:hover{
  transform: translateY(-6px);
}

.news-card__media{
  overflow:hidden;
}

.news-card__media img{
  transition: transform .8s var(--ease-smooth);
}

.news-card:hover .news-card__media img{
  transform: scale(1.05);
}

.contact-card{
  transition:
    transform .3s var(--ease-smooth),
    box-shadow .3s var(--ease-smooth);
}

.contact-card:hover{
  transform: translateY(-6px);
}

.contact-form{
  transition:
    transform .4s var(--ease-smooth),
    box-shadow .4s var(--ease-smooth);
}

.contact-form:hover{
  transform: translateY(-3px);
}

.contact-form__form input,
.contact-form__form textarea{
  transition:
    border-color .25s ease,
    box-shadow .25s ease;
}

.contact-form__form input:focus,
.contact-form__form textarea:focus{
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,128,0,0.08);
}

.news-article__image-box{
  overflow: hidden;
  border-radius: 14px;
}

.news-article__image{
  transition: transform .9s var(--ease-smooth);
}

.news-article__image-box:hover .news-article__image{
  transform: scale(1.04);
}

.news-article__content p{
  margin-bottom: 18px;
  line-height: 1.7;
}

.news-article__content h2{
  margin-top: 40px;
  margin-bottom: 14px;
}

.news-article__quote{
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
}

.share-btn{
  display:inline-block;
  padding:8px 14px;
  border-radius:8px;
  /* background: var; */
  margin-right:10px;
  font-size:.9rem;
  transition:.25s;
}

.share-btn:hover{
  /* background:var(--primary); */
  color:white;
}

.news-article__wrap{
  max-width:900px;
  margin:auto;
}

@media (max-width: 600px){
  .pillars__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px){
  .services__grid{grid-template-columns: 1fr;}
  .service-card__media{height: 210px;}
  .news__grid{grid-template-columns: 1fr;}
  .news-card__media{height: 210px;}
}

@media (max-width: 640px){
  .consult-modal__dialog{
    padding: 22px 18px;
    width: min(94%, 560px);
    margin-top: 4vh;
  }
}

@media (max-width: 650px){
  .footer__wrap{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px){
  .hero__content{
    padding-top: 95px;
  }
  .hero__nav{ display: none; }

  .team-card{
    width: 260px;
    flex: 0 0 260px;
  }

  .team-card__image-box{
    height: 220px;
  }

  .services-table__table th,
  .services-table__table td{
    padding: 14px;
    font-size: 0.95rem
  }
}

/* Responsive */
@media (max-width: 900px){
  .nav__links{ display: none; }
  .nav__toggle{ display: inline-flex; }
}

@media (max-width: 950px){
  .two-col__wrap{
    grid-template-columns: 1fr;
  }

  .section-title{
    max-width: 100%;
  }

  .info-cards{
    grid-template-columns: 1fr;
  }

  .about__wrap{
    grid-template-columns: 1fr;
  }

  .about__media{
    min-height: 280px;
  }

  .info-split__wrap{
    grid-template-columns: 1fr;
  }

  .info-split__media{
    min-height: 280px;
  }

  .about-page__wrap{
    grid-template-columns: 1fr;
  }

  .about-page__media{
    min-height: 280px;
  }

  .about-page__highlights{
    grid-template-columns: 1fr;
  }

  .mvv__grid{
    grid-template-columns: 1fr;
  }

  .pillars__grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .service-split__wrap{
    grid-template-columns: 1fr;
  }

  .service-split__media{
    min-height: 280px;
  }

  .contact-info__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px){
  .services__grid{grid-template-columns: repeat(1, 1fr);}
  .news__grid{grid-template-columns: repeat(1, 1fr);}
}

@media (max-width: 1050px){
  .footer__wrap{
    grid-template-columns: 1fr 1fr;
  }
}