/* ── ROOT VARIABLES ── */
:root {
  --green: #78BB30;
  --dark: #07493F;
  --white: #FFFFFF;
  --off-white: #F4F8F0;
  --light-green: #E8F4D8;
  --mid-green: #4E8A1C;
  --text: #1A1A1A;
  --muted: #5A6A57;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── CURSOR ── */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s, box-shadow 0.4s;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 14px 60px;
  box-shadow: 0 2px 24px rgba(7, 73, 63, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-svg {
  width: 48px;
  height: 48px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text .brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--dark);
  letter-spacing: 0.5px;
}

.nav-logo-text .sub {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 500;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 11px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.nav-cta:hover {
  background: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(120, 187, 48, 0.35);
}

/* ── LANGUAGE TOGGLE ── */
.lang-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
  flex-shrink: 0;
}

.lang-toggle:hover {
  background: var(--green);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(120, 187, 48, 0.4);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-bottom: 0 !important;
  padding-right: 0 !important;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 80px 60px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-green);
  color: var(--dark);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 36px;
  width: fit-content;
  animation: fadeUp 0.8s ease both;
}

.hero-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(120, 187, 48, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(120, 187, 48, 0);
  }
}

.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(46px, 5.5vw, 78px);
  font-weight: 800;
  line-height: 1.04;
  color: var(--dark);
  margin-bottom: 28px;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero-h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 48px;
  animation: fadeUp 0.9s 0.2s ease both;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.3s ease both;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(120, 187, 48, 0.4);
  background: #6aaa28;
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(7, 73, 63, 0.2);
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  animation: fadeUp 0.9s 0.4s ease both;
}

.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--dark);
}

.hero-stat-num span {
  color: var(--green);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 2px;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(120, 187, 48, 0.15) 0%, transparent 65%),
    radial-gradient(ellipse at 30% 70%, rgba(120, 187, 48, 0.08) 0%, transparent 50%);
}

.hero-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-big-logo {
  animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-18px) rotate(1deg);
  }

  66% {
    transform: translateY(8px) rotate(-0.5deg);
  }
}

.hero-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hc {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(120, 187, 48, 0.2);
  animation: expandRing 8s ease-in-out infinite;
}

.hc:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}

.hc:nth-child(2) {
  width: 340px;
  height: 340px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1.5s;
}

.hc:nth-child(3) {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 3s;
}

.hc:nth-child(4) {
  width: 660px;
  height: 660px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4.5s;
}

@keyframes expandRing {

  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(1.07);
  }
}

.hero-dots {
  position: absolute;
  top: 40px;
  right: 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  opacity: 0.25;
}

.hero-dot {
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
}

/* ── MUNOSAL NAME BREAKDOWN ── */
.name-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.nb-card {
  background: var(--white);
  border-radius: 16px;
  padding: 22px 18px;
  border: 1px solid rgba(7, 73, 63, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.nb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(7, 73, 63, 0.1);
}

.nb-letter {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.nb-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.nb-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--green);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 30px;
}

.marquee-sep {
  color: rgba(255, 255, 255, 0.4);
  padding: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── SECTION WRAPPER ── */
section {
  padding: 100px 60px;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  display: block;
}

.section-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--dark);
}

.section-h2 em {
  font-style: normal;
  color: var(--green);
}

/* ── ABOUT ── */
.about {
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 24px;
  font-weight: 300;
}

.about-mission {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  margin-top: 28px;
  border-left: 4px solid var(--green);
}

.about-mission-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.about-mission-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.about-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-check {
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-check svg {
  width: 14px;
  height: 14px;
}

.about-list-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.about-right {
  position: relative;
}

.about-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(7, 73, 63, 0.06);
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(7, 73, 63, 0.1);
}

.about-card:first-child {
  grid-column: 1 / -1;
  background: var(--dark);
}

.about-card-num {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--green);
}

.about-card-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
}

.about-card:first-child .about-card-label {
  color: rgba(255, 255, 255, 0.6);
}

.about-card:first-child .about-card-num {
  font-size: 52px;
}

.about-card:first-child .about-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}

/* ── VALUES ── */
.values {
  background: var(--white);
}

.values-header {
  margin-bottom: 56px;
}

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

.value-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(7, 73, 63, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(7, 73, 63, 0.08);
}

.value-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.value-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── COMPANIES / PRODUCTS SECTION ── */
.companies {
  background: var(--off-white);
}

.companies-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

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

.company-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  cursor: pointer;
}

.company-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}

.company-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(7, 73, 63, 0.15);
}

.company-card:hover::before {
  opacity: 0.88;
}

.company-card-icon {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.company-card-body {
  padding: 28px;
  position: relative;
  z-index: 2;
}

.company-card-body-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
}

.company-card:hover .company-card-body-hover {
  opacity: 1;
  transform: translateY(0);
}

.company-tag {
  display: inline-block;
  background: rgba(120, 187, 48, 0.15);
  color: var(--green);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.company-name {
  font-family: 'Syne', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
}

.company-desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
}

.company-card-body-hover .company-name {
  color: var(--white);
}

.company-card-body-hover .company-desc {
  color: rgba(255, 255, 255, 0.7);
}

.company-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: gap 0.2s;
}

.company-link:hover {
  gap: 12px;
}

/* ── PRODUCTS ── */
.products {
  background: var(--dark);
}

.products .section-tag {
  color: var(--green);
}

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

.products-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 16px;
  font-weight: 300;
  max-width: 480px;
}

.products-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 56px;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-item:hover,
.product-item.active {
  background: rgba(120, 187, 48, 0.1);
}

.product-item.active .pi-num {
  color: var(--green);
}

.pi-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 700;
  min-width: 28px;
  transition: color 0.3s;
}

.pi-name {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}

.pi-arrow {
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(-8px);
}

.product-item:hover .pi-arrow,
.product-item.active .pi-arrow {
  opacity: 1;
  transform: translateX(0);
}

.products-showcase {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 40px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.ps-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(120, 187, 48, 0.15);
  color: var(--green);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  width: fit-content;
}

.ps-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.ps-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
  line-height: 1.7;
  font-weight: 300;
}

.ps-big {
  font-family: 'Syne', sans-serif;
  font-size: 100px;
  font-weight: 800;
  position: absolute;
  bottom: -10px;
  right: 20px;
  color: rgba(120, 187, 48, 0.07);
  line-height: 1;
}

.ps-bottom {
  display: flex;
  gap: 28px;
  margin-top: 40px;
}

.ps-metric {}

.ps-metric-n {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
}

.ps-metric-l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

/* ── NEWS ── */
.news {
  background: var(--white);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

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

.news-card {
  background: var(--off-white);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: 1px solid rgba(7, 73, 63, 0.05);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(7, 73, 63, 0.1);
}

.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark) 0%, var(--green) 100%);
  position: relative;
  overflow: hidden;
}

.news-card:nth-child(2) .news-card-img {
  background: linear-gradient(135deg, #0d6a5e 0%, var(--green) 100%);
}

.news-card:nth-child(3) .news-card-img {
  background: linear-gradient(135deg, var(--dark) 0%, #2a6b3e 100%);
}

.news-card-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  opacity: 0.3;
}

.news-card-body {
  padding: 24px;
}

.news-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.news-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
}

.news-date {
  font-size: 12px;
  color: var(--muted);
}

.news-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}

.news-card:first-child .news-title {
  font-size: 20px;
}

.news-excerpt {
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
  display: none;
}

.news-card:first-child .news-excerpt {
  display: block;
}

/* ── CONTACTS ── */
.contacts {
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: 28px;
  padding: 44px;
}

.form-title {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(7, 73, 63, 0.12);
  border-radius: 14px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(120, 187, 48, 0.12);
}

.form-group textarea {
  height: 120px;
  resize: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info {
  padding-top: 20px;
}

.contact-info .section-h2 {
  margin-bottom: 24px;
}

.contact-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.ci-icon {
  width: 48px;
  height: 48px;
  background: var(--light-green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon svg {
  width: 22px;
  height: 22px;
}

.ci-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.ci-val {
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
  margin-top: 4px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
}

.footer-brand .sub {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 500;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-top: 18px;
  max-width: 260px;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.footer-social:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SCROLL INDICATOR ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 200;
  transition: transform 0.1s linear;
}

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid rgba(7, 73, 63, 0.18);
  border-radius: 10px;
  cursor: pointer;
  padding: 0 10px;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.3s;
}

.nav-hamburger:hover {
  border-color: var(--green);
  background: var(--light-green);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  z-index: 500;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 40px;
  box-shadow: -8px 0 40px rgba(7, 73, 63, 0.14);
  transform: translateX(110%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(7, 73, 63, 0.15);
  background: transparent;
  font-size: 16px;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}

.mobile-nav-close:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-nav-links li a {
  display: block;
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.25s, color 0.25s;
  letter-spacing: 0.2px;
}

.mobile-nav-links li a:hover {
  background: var(--light-green);
  color: var(--green);
}

.mobile-nav-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.mobile-nav-footer .btn-primary {
  flex: 1;
  text-align: center;
  padding: 13px 20px;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 73, 63, 0.35);
  backdrop-filter: blur(3px);
  z-index: 499;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ── NO CURSOR ON TOUCH ── */
@media (hover: none) {
  .cursor,
  .cursor-ring {
    display: none;
  }
}

/* ── TABLET (≤ 1200px) ── */
@media (max-width: 1200px) {
  nav {
    padding: 20px 36px;
  }

  nav.scrolled {
    padding: 14px 36px;
  }

  .nav-links {
    gap: 24px;
  }

  .hero-left {
    padding: 130px 36px 80px;
  }

  section {
    padding: 80px 36px;
  }

  .hero-h1 {
    font-size: clamp(38px, 4.5vw, 64px);
  }

  .about {
    gap: 48px;
  }

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

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

  .products-layout {
    gap: 36px;
  }

  footer {
    padding: 60px 36px;
    gap: 28px;
  }

  .footer-bottom {
    padding: 20px 36px;
  }
}

/* ── MOBILE (≤ 900px) ── */
@media (max-width: 900px) {
  /* Navbar */
  nav {
    padding: 18px 20px;
  }

  nav.scrolled {
    padding: 12px 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 110px 20px 56px;
  }

  .hero-right {
    display: none;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-stat-num {
    font-size: 26px;
  }

  .hero-btns {
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    padding: 13px 26px;
    font-size: 14px;
  }

  /* Sections */
  section {
    padding: 64px 20px;
  }

  /* About */
  .about {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .name-breakdown {
    grid-template-columns: 1fr;
  }

  /* Values */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Companies */
  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .companies-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Products */
  .products-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .products-showcase {
    min-height: 280px;
    padding: 28px;
  }

  /* News */
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  /* Contacts */
  .contacts {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  /* Footer */
  footer {
    grid-template-columns: 1fr 1fr;
    padding: 40px 20px;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 18px 20px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* ── SMALL PHONES (≤ 480px) ── */
@media (max-width: 480px) {
  /* Hero */
  .hero-left {
    padding: 90px 16px 48px;
  }

  .hero-tag {
    font-size: 11px;
    padding: 6px 14px;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat-num {
    font-size: 22px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Sections */
  section {
    padding: 52px 16px;
  }

  /* Values */
  .values-grid {
    grid-template-columns: 1fr;
  }

  /* Companies */
  .companies-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-card-grid {
    grid-template-columns: 1fr;
  }

  /* Products */
  .products-showcase {
    padding: 22px 16px;
  }

  .ps-bottom {
    gap: 16px;
    flex-wrap: wrap;
  }

  /* Contact form */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px 16px;
    border-radius: 20px;
  }

  /* Footer */
  footer {
    grid-template-columns: 1fr;
    padding: 36px 16px;
  }

  .footer-bottom {
    padding: 16px;
  }

  /* Nav */
  nav {
    padding: 16px;
  }

  nav.scrolled {
    padding: 10px 16px;
  }
}