:root {
  --ez-ink: #12221a;
  --ez-muted: #68756d;
  --ez-green: #0f7a43;
  --ez-green-dark: #075234;
  --ez-teal: #0d8a8a;
  --ez-sun: #f5b642;
  --ez-field: #edf7ef;
  --ez-cream: #fffaf0;
  --ez-line: rgba(18, 34, 26, 0.1);
  --ez-shadow: 0 24px 70px rgba(14, 73, 43, 0.13);
}

body.eazim-site {
  color: var(--ez-ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

.eazim-site h1,
.eazim-site h2,
.eazim-site h3,
.eazim-site h4,
.eazim-site h5,
.eazim-site h6 {
  color: var(--ez-ink);
  font-family: inherit;
  font-weight: 850;
  letter-spacing: 0;
}

.eazim-site p {
  color: var(--ez-muted);
  line-height: 1.75;
}

.ez-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.ez-section-soft {
  background:
    linear-gradient(180deg, #f7fbf7 0%, #ffffff 100%);
}

.ez-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--ez-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ez-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--ez-sun);
}

.ez-title {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.ez-lead {
  max-width: 720px;
  color: var(--ez-muted);
  font-size: 1.08rem;
}

.ez-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ez-btn:hover {
  transform: translateY(-2px);
}

.ez-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ez-green-dark), var(--ez-green));
  box-shadow: 0 16px 34px rgba(15, 122, 67, 0.25);
}

.ez-btn-primary:hover {
  color: #fff;
  box-shadow: 0 20px 42px rgba(15, 122, 67, 0.3);
}

.ez-btn-light {
  color: var(--ez-green-dark);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.ez-btn-outline {
  color: var(--ez-green-dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 122, 67, 0.18);
}

.ez-btn-outline:hover,
.ez-btn-light:hover {
  color: var(--ez-green-dark);
  box-shadow: 0 18px 42px rgba(18, 34, 26, 0.12);
}

.ez-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.ez-header.is-scrolled,
.ez-header.ez-header-solid {
  padding: 10px 0;
  background: rgba(7, 27, 20, 0.92);
  box-shadow: 0 16px 48px rgba(18, 34, 26, 0.16);
  backdrop-filter: blur(14px);
}

.ez-header .navbar {
  padding: 0;
}

.ez-brand img {
  width: 164px;
  max-height: 74px;
  object-fit: contain;
}

.ez-header.is-scrolled .ez-brand img,
.ez-header.ez-header-solid .ez-brand img {
  width: 142px;
}

.ez-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 800;
  padding: 10px 14px !important;
}

.ez-nav .nav-link:hover,
.ez-nav .nav-link.active {
  color: var(--ez-sun);
}

.ez-header.is-scrolled .ez-nav .nav-link:hover,
.ez-header.ez-header-solid .ez-nav .nav-link:hover,
.ez-header.is-scrolled .ez-nav .nav-link.active,
.ez-header.ez-header-solid .ez-nav .nav-link.active {
  color: var(--ez-sun);
}

.ez-nav-cta {
  margin-left: 12px;
}

.navbar-toggler {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(18, 34, 26, 0.12);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(15, 122, 67, 0.18);
}

.ez-hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  color: #fff;
  background: var(--ez-green-dark);
}

.ez-hero-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 118px;
  padding-bottom: 150px;
  background-size: cover;
  background-position: center;
}

.ez-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 40, 27, 0.86), rgba(5, 40, 27, 0.54) 46%, rgba(5, 40, 27, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.28));
}

.ez-hero .container {
  position: relative;
  z-index: 2;
}

.ez-hero h1 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(2.3rem, 5.2vw, 5.35rem);
  line-height: 1;
}

.ez-hero p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
}

.ez-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.ez-hero-panel {
  position: absolute;
  right: 8vw;
  bottom: 128px;
  z-index: 3;
  width: min(420px, 86vw);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.ez-hero-panel strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.ez-hero-panel span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.ez-stat-strip {
  position: relative;
  z-index: 5;
  margin-top: -62px;
}

.ez-stat-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--ez-shadow);
}

.ez-stat {
  padding: 28px;
  border-right: 1px solid var(--ez-line);
}

.ez-stat:last-child {
  border-right: 0;
}

.ez-stat strong {
  display: block;
  color: var(--ez-green-dark);
  font-size: 2rem;
  line-height: 1;
}

.ez-stat span {
  display: block;
  margin-top: 8px;
  color: var(--ez-muted);
  font-weight: 750;
}

.ez-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ez-service-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--ez-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(18, 34, 26, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ez-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ez-shadow);
}

.ez-service-card i,
.ez-icon-box {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--ez-green), var(--ez-teal));
  font-size: 1.35rem;
}

.ez-service-card h3 {
  font-size: 1.35rem;
}

.ez-service-card p {
  margin-bottom: 0;
}

.ez-service-card--dark {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(8, 68, 44, 0.08), rgba(8, 68, 44, 0.92)),
    url("../img/s-5.jpg") center/cover no-repeat;
}

.ez-service-card--dark h3,
.ez-service-card--dark p {
  color: #fff;
}

.ez-model {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.ez-model-photo {
  position: relative;
}

.ez-model-photo img {
  width: 100%;
  aspect-ratio: 0.92 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--ez-shadow);
}

.ez-model-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 82, 52, 0.9);
  backdrop-filter: blur(12px);
}

.ez-model-badge p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 0;
}

.ez-step-list {
  display: grid;
  gap: 16px;
}

.ez-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--ez-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(18, 34, 26, 0.07);
}

.ez-step span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ez-green-dark);
  background: var(--ez-cream);
  font-weight: 950;
}

.ez-step h4 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.ez-energy-feature {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 56, 39, 0.95), rgba(13, 138, 138, 0.86)),
    url("../img/hero_3_new.jpg") center/cover no-repeat;
}

.ez-energy-feature h2,
.ez-energy-feature h3,
.ez-energy-feature p,
.ez-energy-feature .ez-kicker {
  color: #fff;
}

.ez-energy-feature .ez-kicker::before {
  background: var(--ez-sun);
}

.ez-energy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.ez-energy-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ez-energy-card {
  min-height: 210px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.ez-energy-card i {
  color: var(--ez-sun);
  font-size: 1.65rem;
  margin-bottom: 18px;
}

.ez-energy-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.ez-story-band {
  padding: 38px;
  border-radius: 8px;
  background: var(--ez-ink);
  box-shadow: var(--ez-shadow);
}

.ez-story-band h2,
.ez-story-band p {
  color: #fff;
}

.ez-story-band p {
  opacity: 0.82;
}

.ez-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ez-activity-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--ez-line);
  box-shadow: 0 18px 50px rgba(18, 34, 26, 0.08);
}

.ez-activity-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.ez-activity-card div {
  padding: 22px;
}

.ez-testimonial {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--ez-line);
  box-shadow: 0 20px 60px rgba(18, 34, 26, 0.08);
}

.ez-testimonial img {
  width: 100%;
  aspect-ratio: 0.84 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.ez-testimonial blockquote {
  position: relative;
  margin: 0;
  color: var(--ez-muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.ez-testimonial blockquote::before {
  content: "\F6B0";
  font-family: "bootstrap-icons";
  position: absolute;
  top: -34px;
  left: 0;
  color: rgba(15, 122, 67, 0.16);
  font-size: 2.3rem;
}

.ez-page-hero {
  min-height: 54vh;
  display: flex;
  align-items: end;
  padding: 140px 0 80px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 45, 31, 0.88), rgba(7, 45, 31, 0.56)),
    url("../img/page-title-bg.webp") center/cover no-repeat;
}

.ez-page-hero h1 {
  max-width: 850px;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 5.1rem);
  line-height: 0.98;
}

.ez-page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
}

.ez-solution-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.ez-solution-panel,
.ez-premium-card {
  padding: 32px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--ez-line);
  box-shadow: var(--ez-shadow);
}

.ez-solution-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--ez-shadow);
}

.ez-feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ez-feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ez-muted);
}

.ez-feature-list i {
  color: var(--ez-green);
  margin-top: 3px;
}

.ez-renewable-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.ez-renewable-tile {
  min-height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(5, 38, 27, 0.06), rgba(5, 38, 27, 0.9)),
    url("../img/s-7.jpg") center/cover no-repeat;
  overflow: hidden;
}

.ez-renewable-tile:first-child {
  grid-row: span 2;
  min-height: 578px;
  background:
    linear-gradient(180deg, rgba(5, 38, 27, 0.04), rgba(5, 38, 27, 0.9)),
    url("../img/hero_3_new.jpg") center/cover no-repeat;
}

.ez-renewable-tile:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(5, 38, 27, 0.04), rgba(5, 38, 27, 0.9)),
    url("../img/s-4.jpg") center/cover no-repeat;
}

.ez-renewable-tile:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(5, 38, 27, 0.04), rgba(5, 38, 27, 0.9)),
    url("../img/s-6.jpg") center/cover no-repeat;
}

.ez-renewable-tile:nth-child(5) {
  background:
    linear-gradient(180deg, rgba(5, 38, 27, 0.04), rgba(5, 38, 27, 0.9)),
    url("../img/better-life-cover1.jpg") center/cover no-repeat;
}

.ez-renewable-tile h3,
.ez-renewable-tile p {
  color: #fff;
}

.ez-renewable-tile p {
  opacity: 0.84;
}

.ez-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ez-process-card {
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--ez-line);
  box-shadow: 0 18px 50px rgba(18, 34, 26, 0.08);
}

.ez-process-card span {
  color: var(--ez-sun);
  font-weight: 950;
}

.ez-cta {
  padding: 52px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 82, 52, 0.96), rgba(13, 138, 138, 0.88)),
    url("../img/why-choose-us.jpg") center/cover no-repeat;
  box-shadow: var(--ez-shadow);
}

.ez-cta h2,
.ez-cta p {
  color: #fff;
}

.ez-footer {
  padding: 78px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  background: #071b14;
}

.ez-footer img {
  width: 152px;
  max-height: 84px;
  object-fit: contain;
}

.ez-footer h5 {
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ez-footer p,
.ez-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.ez-footer a:hover {
  color: #fff;
}

.ez-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ez-footer li {
  margin-bottom: 12px;
}

.ez-footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.scroll-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: var(--ez-green);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.scroll-top:hover {
  color: #fff;
  transform: translateY(-3px);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1199.98px) {
  .ez-nav-cta {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .ez-header {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 48px rgba(18, 34, 26, 0.08);
  }

  .ez-nav .nav-link {
    color: var(--ez-ink);
  }

  .navbar-collapse {
    max-height: calc(100vh - 88px);
    margin-top: 14px;
    padding: 18px;
    overflow-y: auto;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 62px rgba(18, 34, 26, 0.15);
  }

  .ez-brand img,
  .ez-header.is-scrolled .ez-brand img,
  .ez-header.ez-header-solid .ez-brand img {
    width: 132px;
  }

  .ez-hero-slide {
    padding-bottom: 96px;
  }

  .ez-hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 30px;
  }

  .ez-stat-panel,
  .ez-service-grid,
  .ez-activity-grid,
  .ez-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ez-model,
  .ez-energy-layout,
  .ez-solution-hero,
  .ez-renewable-mosaic {
    grid-template-columns: 1fr;
  }

  .ez-renewable-tile:first-child {
    min-height: 360px;
  }

  .ez-solution-image img {
    min-height: 360px;
  }
}

@media (max-width: 575.98px) {
  .ez-section {
    padding: 72px 0;
  }

  .ez-hero,
  .ez-hero-slide {
    min-height: 820px;
  }

  .ez-hero h1 {
    font-size: 2.3rem;
    line-height: 1.04;
  }

  .ez-stat-panel,
  .ez-service-grid,
  .ez-energy-stack,
  .ez-activity-grid,
  .ez-process-grid {
    grid-template-columns: 1fr;
  }

  .ez-stat {
    border-right: 0;
    border-bottom: 1px solid var(--ez-line);
  }

  .ez-stat:last-child {
    border-bottom: 0;
  }

  .ez-step,
  .ez-testimonial {
    grid-template-columns: 1fr;
  }

  .ez-solution-panel,
  .ez-premium-card,
  .ez-story-band,
  .ez-cta {
    padding: 24px;
  }

  .ez-hero-actions .ez-btn,
  .ez-cta .ez-btn {
    width: 100%;
  }
}
