:root {
  --navy: #0a3d2c;
  --navy-2: #0f5f3f;
  --yellow: #f8b400;
  --yellow-2: #ffe29a;
  --green: #1f8f5f;
  --green-2: #eaf7ee;
  --ink: #183b2d;
  --muted: #68776d;
  --line: #dfeadd;
  --soft: #f7fbf3;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(10, 61, 44, 0.12);
  --shadow-soft: 0 10px 30px rgba(10, 61, 44, 0.08);
  --radius: 18px;
  --max: 1180px;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Space Grotesk", "Manrope", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-weight: 500;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.section.soft {
  background: var(--soft);
}

.process-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(10, 61, 44, 0.94), rgba(31, 143, 95, 0.72), rgba(248, 180, 0, 0.22)),
    url("https://images.unsplash.com/photo-1497440001374-f26997328c1b?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.process-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
  max-width: 780px;
}

.eyebrow {
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.08;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.55rem, 4vw, 4.25rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: 0;
}

p {
  margin: 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(248, 180, 0, 0.32);
}

.btn-primary:hover {
  background: #ffc233;
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn-outline {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-page .site-header {
  position: fixed;
  width: 100%;
  background: transparent;
  border-color: transparent;
}

.site-header.scrolled,
.home-page .site-header.scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.96);
  border-color: transparent;
  box-shadow: 0 10px 35px rgba(10, 61, 44, 0.12);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
}

.logo-brand img {
  width: auto;
  height: 100px;
  max-width: 150px;
  object-fit: contain;
}

.footer-brand.logo-brand img {
  height: 100px;
  max-width: 210px;
}

.home-page .site-header:not(.scrolled):not(.menu-open) .brand,
.home-page .site-header:not(.scrolled):not(.menu-open) .nav-link,
.home-page .site-header:not(.scrolled):not(.menu-open) .nav-action,
.home-page .site-header:not(.scrolled):not(.menu-open) .language {
  color: var(--white);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--yellow), var(--green));
  color: var(--navy);
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(34, 160, 107, 0.2);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 12px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link.active,
.nav-link:hover,
.nav-action:hover {
  color: var(--green);
}

.nav-link.active::after {
  display: none;
}

.chev {
  width: 14px;
  height: 14px;
  display: inline-grid;
  place-items: center;
  transition: transform 0.2s ease;
}

.chev svg {
  width: 14px;
  height: 14px;
  display: block;
}

.nav-item:hover .chev,
.nav-item.open .chev {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 250px;
  transform: translateX(-50%) translateY(0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 12px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(10, 61, 44, 0.14);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 18px;
  border-radius: 0;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
  background: transparent;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mega-link:hover {
  color: var(--green);
  padding-left: 22px;
}

.mega-dot {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-actions .btn {
  min-height: 44px;
  padding: 11px 18px;
}

.search-btn,
.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(10, 61, 44, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.search-btn:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
  background: var(--yellow);
  color: var(--navy);
}

.home-page .site-header:not(.scrolled):not(.menu-open) .search-btn,
.home-page .site-header:not(.scrolled):not(.menu-open) .menu-toggle {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.language {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.88rem;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 70;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(6, 38, 28, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-backdrop.open {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 138px 0 42px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  /*background: var(--navy);*/
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);


  background:
    linear-gradient(100deg, rgba(16, 61, 67, 0.51) 0%, rgba(16, 103, 67, 0.74) 50%, rgba(248, 180, 0, 0.28) 100%),
    var(--slide-image) center / cover;
  transition: opacity 0.75s ease, transform 4.8s ease;
}

.hero-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  /*background:
    linear-gradient(180deg, rgba(10, 61, 44, 0.08), rgba(10, 61, 44, 0.46));
  pointer-events: none;*/
}


.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 54px;
  align-content: center;
  min-height: calc(100vh - 180px);
}

.hero-copy {
  max-width: 900px;
}

.hero-content-slide {
  display: none;
}

.hero-content-slide.is-active {
  display: block;
  animation: heroTextIn 0.55s ease both;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  color: var(--white);
  max-width: 960px;
}

.hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  max-width: 720px;
  margin-top: 18px;
  font-weight: 500;
}

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

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  transform: translateY(-2px);
  background: var(--yellow);
  color: var(--navy);
}

.hero-bottom {
  display: grid;
  grid-template-columns: 0.6fr 1.2fr auto;
  gap: 18px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hero-mini-stats div {
  padding: 16px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  text-align: center;
}

.hero-mini-stats strong {
  display: block;
  font-size: 1.2rem;
  color: var(--yellow);
  line-height: 1;
}

.hero-mini-stats span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-slide-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hero-slide-card {
  text-align: left;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-slide-card:hover,
.hero-slide-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(248, 180, 0, 0.7);
  background: rgba(255, 255, 255, 0.18);
}

.hero-slide-card span {
  display: block;
  color: var(--yellow);
  font-weight: 950;
  font-size: 0.78rem;
  margin-bottom: 6px;
}

.hero-slide-card strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.hero-slide-card small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.stats-grid,
.card-grid,
.product-grid,
.solution-grid,
.project-grid,
.service-grid,
.blog-grid,
.values-grid,
.timeline-grid,
.contact-grid,
.faq-grid {
  display: grid;
  gap: 22px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.home-about {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf3 100%);
}

.home-about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.home-about-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.home-about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 61, 44, 0.24), rgba(10, 61, 44, 0));
  pointer-events: none;
}

.home-about-media img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.home-about-copy {
  max-width: 680px;
}

.home-about-copy p {
  margin-top: 14px;
}

.home-about-copy .btn {
  margin-top: 26px;
}

.about-stats {
  margin-top: 34px;
}

.stat-card,
.info-card,
.product-card,
.solution-card,
.project-card,
.service-card,
.blog-card,
.value-card,
.testimonial-card,
.contact-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.stat-card {
  padding: 30px 24px;
}

.stat-card strong {
  display: block;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

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

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.category-card,
.process-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow-soft);
  background: var(--navy);
}

.category-card::before,
.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 61, 44, 0.86), rgba(10, 61, 44, 0.18)), var(--image) center / cover;
  transition: transform 0.35s ease;
}

.category-card:hover::before,
.process-card:hover::before {
  transform: scale(1.05);
}

.category-card > *,
.process-card > * {
  position: relative;
  z-index: 1;
}

.category-card h3,
.process-card h3 {
  color: var(--white);
  margin-top: 84px;
}

.category-card p,
.process-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 8px;
}

.icon-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.icon-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 160, 107, 0.35);
}

.section.solutions-section {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(105deg, rgba(10, 86, 56, 0.94) 0%, rgba(18, 124, 78, 0.82) 42%, rgba(248, 180, 0, 0.42) 100%),
    url("https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.solutions-section .eyebrow {
  color: #f8b400;
}

.solutions-section h2 {
  color: var(--white);
}

.solutions-section .solutions-content > p {
  color: rgba(255, 255, 255, 0.86);
}

.solutions-section .btn-outline {
  color: #0a5638;
  border-color: rgba(248, 180, 0, 0.7);
  background: var(--white);
}

.solutions-feature {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: start;
}

.solutions-content > p {
  margin-top: 14px;
  max-width: 650px;
}

.solutions-content .btn {
  margin-top: 26px;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.solution-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(10, 86, 56, 0.18);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.solution-row:hover {
  transform: translateY(-3px);
  border-color: rgba(248, 180, 0, 0.75);
  box-shadow: 0 18px 40px rgba(10, 86, 56, 0.24);
}

.solution-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #0a5638;
  background: linear-gradient(135deg, rgba(248, 180, 0, 0.95), rgba(34, 160, 107, 0.18));
}

.solution-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.solution-row strong {
  display: block;
  color: #0a5638;
  font-size: 1.02rem;
}

.solution-row small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.92rem;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 48px;
  align-items: start;
}

.why-intro {
  position: sticky;
  top: 110px;
}

.why-intro p {
  margin-top: 14px;
}

.why-note {
  margin-top: 28px;
  padding: 22px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(10, 61, 44, 0.05);
}

.why-note strong {
  display: block;
  color: var(--green);
  margin-bottom: 6px;
}

.why-note span {
  display: block;
  color: var(--muted);
}

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

.why-metric {
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--green));
  box-shadow: var(--shadow-soft);
}

.why-metric strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
}

.why-metric span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.why-check {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(10, 61, 44, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.why-check:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 160, 107, 0.3);
  box-shadow: var(--shadow-soft);
}

.why-check > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: var(--green-2);
}

.why-check svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.why-check h3 {
  margin-bottom: 6px;
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow-2), var(--green-2));
  font-weight: 900;
  margin-bottom: 18px;
}

.product-grid,
.solution-grid,
.project-grid,
.service-grid,
.blog-grid,
.values-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-grid.ecom-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 42px 28px;
}

.product-card,
.solution-card,
.project-card,
.blog-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ecom-grid .product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.ecom-grid .card-media {
  position: relative;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 0;
  background: #eef6e9;
  overflow: hidden;
}

.ecom-grid .card-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecom-grid .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 10px 0;
  text-align: center;
}

.ecom-grid .product-card h3 {
  color: #183b2d;
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  font-weight: 800;
  line-height: 1.25;
  min-height: 0;
}

.product-brand {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}

.product-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quick-inquiry {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(10, 61, 44, 0.16);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.quick-inquiry:hover {
  background: var(--yellow);
}

.ecom-grid .product-card:hover .quick-inquiry {
  opacity: 1;
  transform: translateY(0);
}

.product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  color: #a8a8a8;
  font-size: 1.05rem;
}

.product-rating span {
  color: #d7d7d7;
  letter-spacing: 0.03em;
}

.product-rating em {
  font-style: normal;
  color: #a8a8a8;
  white-space: nowrap;
}

.inquiry-link {
  display: inline-flex;
  margin-top: 14px;
  color: #183b2d;
  font-size: 1.15rem;
  font-weight: 900;
  transition: color 0.2s ease;
}

.inquiry-link:hover {
  color: var(--green);
}

.product-card:hover,
.solution-card:hover,
.project-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.card-media {
  height: 220px;
  overflow: hidden;
  background: var(--soft);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .card-media img,
.solution-card:hover .card-media img,
.project-card:hover .card-media img,
.blog-card:hover .card-media img {
  transform: scale(1.05);
}

.card-body {
  padding: 24px;
}

.card-body p {
  margin-top: 10px;
}

.tag {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--green-2);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  margin-bottom: 12px;
}

.feature-list,
.benefit-list,
.project-meta {
  display: grid;
  gap: 8px;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}

.feature-list li,
.benefit-list li,
.project-meta li {
  color: var(--muted);
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.feature-list li::before,
.benefit-list li::before,
.project-meta li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  margin-top: 9px;
  flex: 0 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  counter-reset: process;
}

.process-section .section-head h2 {
  color: var(--white);
}

.process-section .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.process-section .eyebrow {
  color: var(--yellow);
}

.process-card {
  min-height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.process-card::after {
  counter-increment: process;
  content: "0" counter(process);
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 950;
  font-size: 1.6rem;
  z-index: 1;
}

.process-card h3 {
  margin-top: 70px;
}

.testimonials-section {
  position: relative;
  background:
    linear-gradient(105deg, rgba(10, 61, 44, 0.92), rgba(31, 143, 95, 0.7), rgba(248, 180, 0, 0.24)),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: var(--white);
  overflow: hidden;
}

.testimonials-section .section-head h2 {
  color: var(--white);
}

.testimonials-section .eyebrow {
  color: var(--yellow);
}

.testimonials {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(10, 61, 44, 0.2);
  backdrop-filter: blur(12px);
}

.quote {
  color: var(--ink);
  font-weight: 650;
}

.person {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-modern {
  background:
    linear-gradient(90deg, rgba(247, 251, 243, 0.96), rgba(255, 255, 255, 0.92)),
    url("https://images.unsplash.com/photo-1497440001374-f26997328c1b?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.service-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 54px;
  align-items: start;
}

.service-intro {
  position: sticky;
  top: 112px;
  padding: 36px;
  border: 1px solid rgba(10, 61, 44, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.service-intro h2 {
  margin-top: 10px;
}

.service-intro p {
  margin: 16px 0 26px;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 112px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(10, 61, 44, 0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-row > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow), rgba(34, 160, 107, 0.2));
  font-weight: 900;
}

.service-row h3 {
  font-size: 1.18rem;
}

.service-row p {
  margin-top: 6px;
}

.service-row:hover {
  transform: translateX(8px);
  border-color: rgba(34, 160, 107, 0.28);
  box-shadow: var(--shadow-soft);
}

.blog-index {
  background: var(--white);
}

.blog-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.blog-title-link {
  position: relative;
  display: block;
  padding: 30px 70px 30px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.18;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.blog-title-link::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(var(--navy), var(--navy)) center / 16px 2px no-repeat,
    linear-gradient(45deg, transparent 48%, var(--navy) 49% 54%, transparent 55%) 22px 15px / 10px 10px no-repeat;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.blog-title-link:hover {
  padding-left: 12px;
  color: var(--green);
}

.blog-title-link:hover::after {
  border-color: var(--yellow);
  background-color: var(--yellow);
  transform: translate(4px, -50%);
}

.article-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 800;
}

.article-wrap h2 {
  margin-top: 34px;
}

.article-wrap p {
  margin-top: 16px;
  font-size: 1.05rem;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--yellow));
  color: var(--navy);
  font-weight: 900;
}

.cta-band {
  padding: 54px;
  border-radius: 30px;
  background:
    linear-gradient(105deg, rgba(10, 61, 44, 0.96), rgba(31, 143, 95, 0.76), rgba(248, 180, 0, 0.22)),
    url("https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 10px;
}

.start-project-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-image:
    linear-gradient(105deg, rgba(10, 61, 44, 0.94), rgba(31, 143, 95, 0.76), rgba(248, 180, 0, 0.26)),
    url("https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.start-project-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
  min-height: 460px;
}

.start-project-copy {
  max-width: 760px;
}

.start-project-copy .eyebrow {
  color: var(--yellow);
}

.start-project-copy h2 {
  color: var(--white);
  font-size: clamp(2.35rem, 4vw, 4.6rem);
}

.start-project-copy p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 680px;
  margin-top: 18px;
  font-size: 1.08rem;
}

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

.start-project-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 55px rgba(10, 61, 44, 0.26);
  backdrop-filter: blur(16px);
}

.start-project-panel div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.start-project-panel strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 950;
}

.start-project-panel span {
  color: var(--navy);
  font-weight: 850;
}

.home-faq {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-accordion-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-accordion-item[open] {
  border-color: rgba(248, 180, 0, 0.62);
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question span:first-child {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}

.faq-toggle {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-accordion-item[open] .faq-toggle {
  background: var(--yellow);
}

.faq-accordion-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-accordion-item[open] .faq-toggle::before,
.faq-accordion-item[open] .faq-toggle::after {
  background: var(--navy);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  color: var(--muted);
}

.faq-accordion-item[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-accordion-item[open] .faq-answer > p {
  padding-bottom: 22px;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(248, 180, 0, 0.5);
  outline-offset: -3px;
}

.page-banner {
  padding: 150px 0 80px;
  background:
    linear-gradient(100deg, rgba(10, 61, 44, 0.92), rgba(31, 143, 95, 0.66), rgba(248, 180, 0, 0.18)),
    var(--banner) center / cover;
  color: var(--white);
}

.page-banner h1 {
  color: var(--white);
}

.page-banner p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
  margin-top: 16px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.split-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.value-card,
.service-card,
.contact-card,
.faq-item {
  padding: 26px;
}

.timeline-grid {
  grid-template-columns: repeat(4, 1fr);
}

.timeline-card {
  padding: 24px;
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.timeline-card strong {
  color: var(--green);
  font-size: 1.2rem;
}

.filters,
.blog-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
  align-items: center;
}

.product-catalog {
  background: var(--white);
}

.product-banner {
  padding: 132px 0 62px;
}

.catalog-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.catalog-top p {
  max-width: 520px;
  text-align: right;
}

.filter-btn {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  padding: 11px 15px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.search-field {
  min-width: min(100%, 320px);
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 18px;
  outline: none;
}

.search-field:focus,
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 160, 107, 0.1);
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.contact-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.inquiry-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  background: var(--white);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-message {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
}

.form-message.success {
  display: block;
  background: var(--green-2);
  color: var(--green);
}

.form-message.error {
  display: block;
  background: #fff1f0;
  color: #b42318;
}

.product-details {
  background: var(--white);
}

.single-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: start;
}

.single-product-gallery {
  position: sticky;
  top: 112px;
}

.single-product-main-image {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  background: #eef6e9;
  overflow: hidden;
}

.single-product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-product-image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.single-product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.product-thumb {
  aspect-ratio: 1 / 1;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: #eef6e9;
  overflow: hidden;
  cursor: pointer;
}

.product-thumb.is-active,
.product-thumb:hover {
  border-color: var(--green);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.single-product-summary {
  min-width: 0;
}

.single-product-summary h2 {
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.single-product-description {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 26px;
}

.single-product-description > * + * {
  margin-top: 14px;
}

.product-purchase-panel,
.product-inquiry-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.product-quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.product-quantity-row label {
  color: var(--navy);
  font-weight: 900;
}

.quantity-control {
  display: grid;
  grid-template-columns: 44px 72px 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}

.quantity-control button {
  border: 0;
  background: var(--soft);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
}

.quantity-control button:hover {
  background: var(--green-2);
  color: var(--green);
}

.quantity-control .form-control {
  border: 0;
  border-radius: 0;
  padding: 0;
  text-align: center;
  font-weight: 900;
  -moz-appearance: textfield;
}

.quantity-control .form-control::-webkit-outer-spin-button,
.quantity-control .form-control::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.product-inquiry-submit {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}

.product-purchase-panel .product-inquiry-submit {
  margin-top: 0;
}

.product-inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.product-inquiry-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-inquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 35, 28, 0.62);
}

.product-inquiry-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: min(90vh, 820px);
  overflow-y: auto;
  border-radius: var(--radius);
  background: var(--white);
  padding: 32px;
  box-shadow: 0 30px 80px rgba(10, 35, 28, 0.24);
}

.product-inquiry-dialog h2 {
  margin: 8px 44px 22px 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.product-inquiry-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.product-inquiry-close:hover {
  background: var(--green-2);
  color: var(--green);
}

.map-placeholder {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(45deg, rgba(10, 61, 44, 0.82), rgba(31, 143, 95, 0.72), rgba(248, 180, 0, 0.18)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1300&q=80") center / cover;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  padding: 28px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at top right, rgba(248, 180, 0, 0.18), transparent 32%),
    linear-gradient(135deg, #06261c, #0a3d2c 52%, #0f5f3f);
  padding: 68px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 34px;
}

.footer-brand {
  color: var(--white);
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
  margin: 16px 0 0;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-contact {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
  margin: 16px 0 0;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  overflow-wrap: anywhere;
}

.footer-contact a:hover {
  color: var(--yellow);
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 14px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 900;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.92rem;
}

.hidden {
  display: none !important;
}

@media (max-width: 1120px) {
  .nav-menu,
  .header-actions .language,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .menu-toggle[aria-expanded="true"] {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--navy);
  }

  .menu-toggle[aria-expanded="true"] svg {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"]::before,
  .menu-toggle[aria-expanded="true"]::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .menu-toggle[aria-expanded="true"]::before {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"]::after {
    transform: rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    width: 100%;
    min-height: 100vh;
    padding: 104px 24px 34px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: none;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu::before {
    content: "Solar Station";
    display: block;
    margin: 0 0 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link,
  .nav-action {
    color: var(--navy) !important;
    width: 100%;
    min-height: 46px;
    padding: 12px 10px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    box-shadow: none;
    font-size: 0.93rem;
    justify-content: space-between;
  }

  .nav-link:hover,
  .nav-action:hover {
    color: var(--green) !important;
    background: var(--soft);
    border-color: var(--line);
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    color: var(--navy) !important;
    border-color: rgba(31, 143, 95, 0.35);
    background: var(--green-2);
  }

  .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--yellow);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    margin: 0 0 8px 10px;
    padding: 4px 0 4px 14px;
  }

  .nav-item.open .mega-menu {
    display: block;
    transform: none;
  }

  .mega-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mega-link {
    color: var(--muted) !important;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 750;
  }

  .mega-link:hover {
    color: var(--green) !important;
    padding-left: 10px;
    background: var(--soft);
  }

  .hero-grid,
  .split,
  .form-wrap,
  .home-about-grid,
  .solutions-feature,
  .start-project-grid,
  .service-layout,
  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-intro {
    position: static;
  }

  .service-intro {
    position: static;
  }

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

  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .home-about-media img {
    height: 360px;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 820px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-grid,
  .stats-grid,
  .card-grid,
  .single-product-layout,
  .product-grid,
  .product-grid.ecom-grid,
  .solution-grid,
  .solutions-feature,
  .project-grid,
  .service-grid,
  .blog-grid,
  .values-grid,
  .why-layout,
  .why-checks,
  .timeline-grid,
  .testimonials,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide-nav,
  .hero-mini-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-about-media img {
    height: 280px;
  }

  .solution-list {
    grid-template-columns: 1fr;
  }

  .single-product-gallery {
    position: static;
  }

  .catalog-top {
    display: grid;
    align-items: start;
  }

  .catalog-top p {
    text-align: left;
  }

  .solution-row,
  .why-check {
    grid-template-columns: 42px 1fr;
  }

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

  .cta-band {
    padding: 34px;
    flex-direction: column;
    align-items: flex-start;
  }

  .start-project-grid {
    min-height: auto;
    gap: 30px;
  }

  .start-project-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  .start-project-panel {
    padding: 16px;
  }

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

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

  .faq-grid.two {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }

  .blog-title-link {
    padding: 24px 58px 24px 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .logo-brand img {
    height: 46px;
    max-width: 150px;
  }

  .hero-actions,
  .start-actions,
  .newsletter {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-bottom {
    padding: 12px;
    gap: 10px;
  }

  .hero-slide-card {
    padding: 11px 9px;
  }

  .hero-slide-card small {
    display: none;
  }

  .hero-mini-stats div {
    padding: 12px 8px;
  }

  .btn {
    width: 100%;
  }

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

  .card-media {
    height: 190px;
  }

  .service-intro {
    padding: 26px;
  }

  .single-product-layout {
    gap: 30px;
  }

  .single-product-summary h2 {
    font-size: 2rem;
  }

  .single-product-thumbs {
    gap: 8px;
  }

  .product-inquiry-form {
    padding: 18px;
  }

  .product-inquiry-modal {
    padding: 12px;
  }

  .product-inquiry-dialog {
    padding: 24px 18px;
  }

  .product-quantity-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .start-project-panel div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .blog-title-link::after {
    width: 36px;
    height: 36px;
  }
}
