﻿:root {
  --navy: #1b1f33;
  --white: #ffffff;
  --green: #1f7a52;
  --green-dark: #176442;
  --text: #232a36;
  --muted: #596372;
  --border: #e6e8ec;
  --gold: #d9a441;
  --gold-dark: #be8f35;
  --hero-overlay: rgba(7, 8, 17, 0.72);
  
  /* Light mode colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f7f7f9;
  --bg-tertiary: #f3f5f9;
  --text-primary: #232a36;
  --text-secondary: #596372;
  --text-muted: #7a8791;
  --border-color: #e6e8ec;
  --shadow: rgba(12, 16, 28, 0.08);
  --shadow-lg: rgba(12, 16, 28, 0.12);
  --card-bg: #ffffff;
  --input-bg: #ffffff;
  --topbar-bg: #1b1f33;
  --topbar-text: #ffffff;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--text-primary);
  background: var(--bg-secondary);
  font-size: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

section {
  scroll-margin-top: calc(var(--nav-height, 0px) + 12px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

body.nav-fixed {
  padding-top: var(--nav-height, 0px);
}

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--bg-primary);
  box-shadow: 0 6px 18px var(--shadow);
  position: relative;
  transition: background 0.3s ease;
}

.topbar {
  background: var(--topbar-bg);
  color: var(--topbar-text);
  font-size: 13px;
  letter-spacing: 0.2px;
  transition: background 0.3s ease;
}

.topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar__item {
  opacity: 0.95;
}

.topbar__dot {
  width: 4px;
  height: 4px;
  background: #8d94ad;
  border-radius: 50%;
  display: inline-block;
}

.topbar__right {
  display: flex;
  gap: 10px;
}

.topbar__icon {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
}

.nav {
  border-top: 1px solid var(--border-color);
  transition: background 0.3s ease, border-color 0.3s ease;
  position: relative;
  background: var(--bg-primary);
  z-index: 900;
}

.nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 950;
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(230, 232, 236, 0.6);
  backdrop-filter: blur(14px);
}

.nav__content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--navy);
  background: #f1f3f8;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.brand:hover .brand__logo {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(12, 16, 28, 0.12);
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__name {
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 18px;
}

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

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  z-index: 940;
}

.nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav__link {
  position: relative;
  padding: 4px 0;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 14px 28px var(--shadow-lg);
  z-index: 10;
}

.nav__dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav__dropdown a {
  font-size: 13px;
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.nav__dropdown a:hover {
  background: var(--bg-tertiary);
  color: var(--green);
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  display: flex;
}

.nav__item.is-open .nav__dropdown {
  display: flex;
}

.nav__menu a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav__menu a:hover {
  color: var(--navy);
}

.nav__cta {
  display: none !important;
}

.nav__cta--desktop {
  display: inline-flex;
}

.has-caret::after {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #3a4250;
  display: inline-block;
  margin-left: 6px;
  transform: translateY(-1px);
}

.btn {
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(31, 122, 82, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__actions .btn {
  animation: fadeInUp 0.7s ease-out 0.55s backwards;
}

.hero__actions .btn--gold::after {
  content: "\2192";
  margin-left: 8px;
  font-size: 1.1em;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 24px rgba(31, 122, 82, 0.35);
}

.scroll-top {
  position: fixed;
  right: 16px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(31, 122, 82, 0.25);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.scroll-top__icon {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  box-shadow: 0 16px 28px rgba(31, 122, 82, 0.35);
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-dark);
}

.btn--gold {
  background: var(--gold);
  color: #241b09;
}

.btn--gold:hover {
  background: var(--gold-dark);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.values {
  background: #f6f7fb;
  padding: 70px 0 80px;
}

.values {
  background: #f6f7fb;
  padding: 70px 0 80px;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.value-card {
  background: var(--white);
  border-radius: 18px;
  padding: 26px 22px 24px;
  box-shadow: 0 12px 26px rgba(31, 36, 50, 0.08);
  display: grid;
  gap: 12px;
  min-height: 210px;
  animation: slideInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  will-change: transform, opacity;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.value-card:nth-child(1) {
  animation-delay: 0.2s;
}

.value-card:nth-child(2) {
  animation-delay: 0.3s;
}

.value-card:nth-child(3) {
  animation-delay: 0.4s;
}

.value-card:nth-child(4) {
  animation-delay: 0.5s;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(31, 122, 82, 0.12), 0 12px 26px rgba(31, 36, 50, 0.12);
}

.value-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: #23283b;
}

.value-card p {
  color: #5b6370;
  font-size: 13px;
  line-height: 1.6;
}

.value-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(31, 122, 82, 0.12);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 20px;
  transition: transform 0.3s ease-out;
}

.value-card:hover .value-card__icon {
  transform: scale(1.2) rotate(-5deg);
}

.value-card__icon--gold {
  background: rgba(217, 164, 65, 0.16);
  color: var(--gold);
}

.value-card__icon--green {
  background: rgba(31, 122, 82, 0.12);
  color: var(--green);
}

.about {
  padding: 80px 0 90px;
  background: var(--bg-primary);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.about__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(31, 36, 50, 0.12);
  min-height: 320px;
  animation: fadeInLeft 0.8s ease-out 0.2s backwards;
  will-change: transform, opacity;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease-out;
}

.about__image:hover img {
  transform: scale(1.05);
}

.about__content {
  display: grid;
  gap: 14px;
  animation: fadeInRight 0.8s ease-out 0.2s backwards;
  will-change: transform, opacity;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(31, 122, 82, 0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border: 1px solid rgba(31, 122, 82, 0.24);
  animation: slideInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s backwards;
  will-change: transform, opacity;
  transition: all 0.3s ease-out;
  position: relative;
}

.section-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  flex-shrink: 0;
}

.section-pill:hover {
  background: rgba(31, 122, 82, 0.18);
  border-color: rgba(31, 122, 82, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(31, 122, 82, 0.15);
}

.about__content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.8vw, 2.4rem);
  color: #202636;
  line-height: 1.15;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
  will-change: transform, opacity;
}

.text-green {
  color: var(--green);
}

.about__content p {
  color: #5b6370;
  line-height: 1.7;
  font-size: 14px;
  animation: fadeInUp 0.7s ease-out 0.4s backwards;
  will-change: transform, opacity;
}

.about__cards {
  display: grid;
  gap: 12px;
  margin-top: 6px;
  animation: fadeInUp 0.7s ease-out 0.5s backwards;
  will-change: transform, opacity;
}

.about-card {
  background: #f9fafc;
  border-radius: 14px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid #edf0f5;
  animation: slideInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  will-change: transform, opacity;
  transition: all 0.3s ease-out;
}

.about-card:nth-child(1) {
  animation-delay: 0.5s;
}

.about-card:nth-child(2) {
  animation-delay: 0.6s;
}

.about-card:nth-child(3) {
  animation-delay: 0.7s;
}

.about-card:hover {
  border-color: rgba(31, 122, 82, 0.3);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(31, 122, 82, 0.1);
  transform: translateY(-4px);
}

.about-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: #23283b;
  margin-bottom: 4px;
}

.about-card p {
  font-size: 12px;
  color: #6a7382;
}

.about-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(31, 122, 82, 0.12);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease-out, background 0.3s ease-out;
}

.about-card:hover .about-card__icon {
  transform: scale(1.15) rotate(5deg);
  background: rgba(31, 122, 82, 0.2);
}

.about-card__icon--gold {
  background: rgba(217, 164, 65, 0.16);
  color: var(--gold);
}

.about-card__icon--green {
  background: rgba(31, 122, 82, 0.12);
  color: var(--green);
}

.about__note {
  font-size: 12px;
  color: #5b6370;
  margin-top: 8px;
}

.performance {
  padding: 80px 0 90px;
  background: #f9fafc;
}

.performance__content {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
  will-change: transform, opacity;
}

.section-pill--soft {
  background: rgba(140, 147, 161, 0.08);
  color: #5b6370;
  border-color: rgba(140, 147, 161, 0.2);
}

.section-pill--soft::before {
  background: #6a7382;
}

.section-pill--soft:hover {
  background: rgba(140, 147, 161, 0.12);
  border-color: rgba(140, 147, 161, 0.3);
  box-shadow: 0 8px 16px rgba(140, 147, 161, 0.12);
}

.performance h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.8vw, 2.4rem);
  color: #202636;
  line-height: 1.15;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
  will-change: transform, opacity;
}

.performance__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1100px;
}

.metric-card {
  background: var(--white);
  border-radius: 16px;
  padding: 26px 24px;
  border: 1px solid #edf0f5;
  box-shadow: 0 10px 24px rgba(31, 36, 50, 0.06);
  display: grid;
  gap: 14px;
  text-align: left;
  animation: slideInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  will-change: transform, opacity;
  transition: all 0.3s ease-out;
}

.metric-card:nth-child(1) {
  animation-delay: 0.4s;
}

.metric-card:nth-child(2) {
  animation-delay: 0.5s;
}

.metric-card:nth-child(3) {
  animation-delay: 0.6s;
}

.metric-card:nth-child(4) {
  animation-delay: 0.7s;
}

.metric-card:nth-child(5) {
  animation-delay: 0.8s;
}

.metric-card:nth-child(6) {
  animation-delay: 0.9s;
}

.metric-card:hover {
  border-color: rgba(31, 122, 82, 0.2);
  box-shadow: 0 16px 32px rgba(31, 122, 82, 0.1);
  transform: translateY(-6px);
}

.metric-card__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.metric-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(31, 122, 82, 0.12);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 20px;
  transition: transform 0.3s ease-out, background 0.3s ease-out;
}

.metric-card:hover .metric-card__icon {
  transform: scale(1.12) rotate(-5deg);
  background: rgba(31, 122, 82, 0.18);
}

.metric-card__icon--gold {
  background: rgba(217, 164, 65, 0.16);
  color: var(--gold);
}

.metric-card h3 {
  font-size: 15px;
  color: #2a3142;
  font-weight: 600;
}

.metric-card__value {
  font-size: 14px;
  font-weight: 700;
}

.metric-card__bar {
  height: 7px;
  background: #eef1f5;
  border-radius: 999px;
  overflow: hidden;
}

.metric-card__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  animation: slideRight 0.8s ease-out backwards;
}

.metric-card:nth-child(1) .metric-card__fill {
  animation-delay: 1.2s;
}

.metric-card:nth-child(2) .metric-card__fill {
  animation-delay: 1.3s;
}

.metric-card:nth-child(3) .metric-card__fill {
  animation-delay: 1.4s;
}

.metric-card:nth-child(4) .metric-card__fill {
  animation-delay: 1.5s;
}

.metric-card:nth-child(5) .metric-card__fill {
  animation-delay: 1.6s;
}

.metric-card:nth-child(6) .metric-card__fill {
  animation-delay: 1.7s;
}

@keyframes slideRight {
  from {
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
    opacity: 1;
  }
}

.metric-card__fill--green {
  background: #1f7a52;
}

.metric-card__fill--gold {
  background: var(--gold);
}

.text-gold {
  color: var(--gold);
}

.metrics {
  background: #2a2a3f;
  padding: 60px 0 70px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.metrics::before,
.metrics::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -80px;
  left: -80px;
}

.metrics::after {
  top: auto;
  left: auto;
  right: -120px;
  bottom: -120px;
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.metric {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  justify-items: center;
  text-align: center;
  animation: slideInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  will-change: transform, opacity;
  transition: transform 0.3s ease-out;
}

.metric:nth-child(1) {
  animation-delay: 0.3s;
}

.metric:nth-child(2) {
  animation-delay: 0.4s;
}

.metric:nth-child(3) {
  animation-delay: 0.5s;
}

.metric:hover {
  transform: translateY(-8px);
}

.metric__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 28px;
  transition: transform 0.3s ease-out, background 0.3s ease-out;
}

.metric:hover .metric__icon {
  transform: scale(1.15) rotate(5deg);
  background: rgba(255, 255, 255, 0.14);
}

.metric__value {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.3px;
  animation: fadeInUp 0.6s ease-out 0.5s backwards;
  will-change: transform, opacity;
}

.metric__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  animation: fadeInUp 0.6s ease-out 0.6s backwards;
  will-change: transform, opacity;
}

.services {
  padding: 80px 0 90px;
  background: var(--white);
}

.services__header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
  will-change: transform, opacity;
}

.services__header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.8vw, 2.4rem);
  color: #202636;
  line-height: 1.15;
  margin-top: 8px;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
  will-change: transform, opacity;
}

.services__header p {
  color: #6a7382;
  font-size: 14px;
  line-height: 1.6;
  justify-self: end;
  max-width: 320px;
  animation: fadeInUp 0.7s ease-out 0.4s backwards;
  will-change: transform, opacity;
}

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

.service-card {
  border: 1px solid #edf0f5;
  border-radius: 16px;
  padding: 20px 20px 22px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(31, 36, 50, 0.06);
  display: grid;
  gap: 12px;
  min-height: 170px;
  animation: slideInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  will-change: transform, opacity;
  transition: all 0.3s ease-out;
}

.service-card:nth-child(1) {
  animation-delay: 0.4s;
}

.service-card:nth-child(2) {
  animation-delay: 0.5s;
}

.service-card:nth-child(3) {
  animation-delay: 0.6s;
}

.service-card:nth-child(4) {
  animation-delay: 0.7s;
}

.service-card:nth-child(5) {
  animation-delay: 0.8s;
}

.service-card:nth-child(6) {
  animation-delay: 0.9s;
}

.service-card:hover {
  border-color: rgba(31, 122, 82, 0.2);
  box-shadow: 0 18px 36px rgba(31, 122, 82, 0.12);
  transform: translateY(-8px);
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(31, 122, 82, 0.12);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 22px;
  transition: transform 0.3s ease-out, background 0.3s ease-out;
}

.service-card:hover .service-card__icon {
  transform: scale(1.15) rotate(-8deg);
  background: rgba(31, 122, 82, 0.18);
}

.service-card__tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(31, 122, 82, 0.12);
  color: var(--green);
  border: 1px solid rgba(31, 122, 82, 0.18);
  transition: all 0.3s ease-out;
}

.service-card:hover .service-card__tag {
  background: rgba(31, 122, 82, 0.16);
  border-color: rgba(31, 122, 82, 0.28);
  transform: scale(1.08);
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: #23283b;
  transition: color 0.3s ease-out;
}

.service-card:hover h3 {
  color: var(--green);
}

.service-card p {
  font-size: 13px;
  color: #6a7382;
  line-height: 1.6;
  transition: color 0.3s ease-out;
}

.service-card:hover p {
  color: #5b6370;
}

.awards {
  padding: 80px 0 90px;
  background: #f9fafc;
}

.awards__content {
  display: grid;
  gap: 30px;
}

.awards__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: flex-start;
}

.awards__header > div:first-child {
  display: grid;
  gap: 16px;
}

.awards__nav {
  display: flex;
  gap: 12px;
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
  will-change: opacity, transform;
}

.awards__nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid #e5e9f0;
  border-radius: 12px;
  background: var(--white);
  color: #6a7382;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
  font-size: 20px;
}

.awards__nav-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(31, 122, 82, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(31, 122, 82, 0.1);
}

.section-pill--gold {
  background: rgba(217, 164, 65, 0.12);
  color: var(--gold);
  border-color: rgba(217, 164, 65, 0.28);
  animation: fadeInUp 0.6s ease-out backwards;
  will-change: opacity, transform;
}

.section-pill--gold::before {
  background: var(--gold);
}

.section-pill--gold:hover {
  background: rgba(217, 164, 65, 0.16);
  border-color: rgba(217, 164, 65, 0.4);
  box-shadow: 0 8px 16px rgba(217, 164, 65, 0.15);
}

.awards__content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: #202636;
  line-height: 1.1;
  animation: fadeInUp 0.6s ease-out backwards;
  will-change: opacity, transform;
}

.awards__content p {
  font-size: 15px;
  color: #6a7382;
  line-height: 1.6;
  max-width: 500px;
  animation: fadeInUp 0.6s ease-out 0.1s backwards;
  will-change: opacity, transform;
}

.awards__carousel {
  width: 100%;
  overflow: hidden;
  margin-top: 32px;
}

.awards__grid {
  display: grid;
  grid-template-columns: repeat(5, calc(100% / 2.5));
  gap: 24px;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

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

.award-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px var(--shadow);
  border: 1px solid var(--border-color);
  text-align: left;
  display: grid;
  grid-template-columns: 35% 1fr;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, box-shadow, border-color;
  height: auto;
  min-height: 240px;
  cursor: pointer;
}

.award-card:nth-child(1) {
  animation-delay: 0.15s;
}

.award-card:nth-child(2) {
  animation-delay: 0.3s;
}

.award-card:nth-child(3) {
  animation-delay: 0.45s;
}

.award-card:nth-child(4) {
  animation-delay: 0.6s;
}

.award-card:nth-child(5) {
  animation-delay: 0.75s;
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(31, 122, 82, 0.12);
  border-color: rgba(31, 122, 82, 0.2);
}

.award-card__image {
  position: relative;
  height: 100%;
  overflow: hidden;
  min-height: 240px;
}

.award-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.award-card:hover .award-card__image img {
  transform: scale(1.05);
}

.award-card__number {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(31, 122, 82, 0.15);
}

.award-card:hover .award-card__number {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(31, 122, 82, 0.2);
}

.award-card__tag {
  display: none;
}

.award-card__year {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(217, 164, 65, 0.3);
  transition: all 0.4s ease-out;
}

.award-card__body {
  padding: 18px 16px;
  display: grid;
  gap: 10px;
  grid-template-rows: auto auto auto 1fr;
}

.award-card__body h3 {
  font-size: 16px;
  color: #23283b;
  font-weight: 600;
  line-height: 1.3;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.award-card:hover .award-card__body h3 {
  color: var(--green);
  transform: translateX(3px);
}

.award-card__body p {
  font-size: 13px;
  color: #6a7382;
  line-height: 1.5;
  transition: all 0.4s ease-out;
}

.award-card:hover .award-card__body p {
  color: #3a4252;
}

.award-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 10px;
  align-items: center;
}

.award-tag {
  font-size: 10px;
  background: rgba(31, 122, 82, 0.1);
  color: var(--green);
  padding: 5px 12px;
  border-radius: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(31, 122, 82, 0.25);
  cursor: default;
  display: inline-block;
  white-space: nowrap;
}

.award-tag:hover {
  background: rgba(31, 122, 82, 0.12);
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(31, 122, 82, 0.12);
}

.award-card__verified {
  display: none;
}

.awards__dots {
  display: flex;
  gap: 8px;
  padding: 16px 0 0;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

.award-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfd5de;
  transition: all 0.4s ease-out;
  cursor: pointer;
}

.award-dot.is-active {
  background: var(--green);
  transform: scale(1.5);
  width: 24px;
  border-radius: 999px;
}

.award-card__dots {
  display: none;
}

.products {
  padding: 80px 0 100px;
  background: var(--white);
}

.products__content {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.products__content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.8vw, 2.4rem);
  color: #202636;
  line-height: 1.15;
}

.products__subtitle {
  font-size: 13px;
  color: #6a7382;
  max-width: 420px;
  margin-bottom: 40px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.product-card {
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 10px 24px var(--shadow);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: grid;
  grid-template-rows: 120px auto 1fr;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-lg);
}

.product-card__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg-tertiary);
}

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

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  z-index: 2;
  background: rgba(31, 36, 50, 0.15);
  backdrop-filter: blur(8px);
}

.product-card__content {
  padding: 10px 12px;
  display: grid;
  gap: 2px;
}

.product-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #202636;
  line-height: 1.15;
}

.product-card__type {
  font-size: 11px;
  color: #6a7382;
  line-height: 1.3;
}

.product-card__view {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: #202636;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(31, 36, 50, 0.12);
  opacity: 0;
  z-index: 10;
}

.product-card:hover .product-card__view {
  opacity: 1;
  transform: scale(1.1);
}

.product-card__view:active {
  transform: scale(0.95);
}

/* Product Modal */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.product-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.product-modal__content {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.product-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #202636;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-modal__close:hover {
  background: var(--white);
  transform: rotate(90deg);
}

.product-modal__image {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: #f5f7fa;
  flex-shrink: 0;
  border-radius: 20px 20px 0 0;
}

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

.product-modal__body {
  padding: 16px 20px;
  display: grid;
  gap: 12px;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}

.product-modal__header {
  display: grid;
  gap: 6px;
}

.product-modal__header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #202636;
  margin: 0;
  line-height: 1.2;
}

.product-modal__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--green);
  background: rgba(31, 122, 82, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  width: fit-content;
}

.product-modal__description {
  font-size: 13px;
  color: #6a7382;
  line-height: 1.6;
  margin: 0;
}



.product-modal__features {
  display: grid;
  gap: 10px;
}

.product-modal__features h3 {
  font-size: 12px;
  font-weight: 700;
  color: #202636;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0;
}

.product-modal__features ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}

.product-modal__features li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: #6a7382;
  line-height: 1.4;
}

.product-modal__features .material-symbols-rounded {
  font-size: 18px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.product-modal__footer {
  padding: 12px 20px 16px;
  display: grid;
  gap: 10px;
  border-top: none;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 0 0 20px 20px;
}

.product-modal__meta {
  text-align: center;
  font-size: 11px;
  color: #6a7382;
  font-weight: 500;
}

.product-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.product-modal__nav {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 10px;
  border: 1.5px solid #e2e6ed;
  background: var(--white);
  color: #202636;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(12, 16, 28, 0.08);
}

.product-modal__nav:hover:not(:disabled) {
  border-color: var(--green);
  background: #f8faf9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 122, 82, 0.15);
}

.product-modal__nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.product-modal__nav .material-symbols-rounded {
  font-size: 20px;
}

.product-modal__actions .btn--primary {
  flex: 1;
  min-width: 160px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(31, 122, 82, 0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.product-modal__actions .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31, 122, 82, 0.4);
}

.product-modal__actions .btn--primary .material-symbols-rounded {
  font-size: 18px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.product-modal__actions .btn--primary:hover .material-symbols-rounded {
  transform: translateX(3px);
}

.leadership {
  padding: 80px 0 100px;
  background: #f9fafc;
}

.leadership__content {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.leadership__content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.8vw, 2.4rem);
  color: #202636;
  line-height: 1.15;
}

.leadership__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.leader-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #edf0f5;
  box-shadow: 0 8px 16px rgba(31, 36, 50, 0.08);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(31, 36, 50, 0.16);
  border-color: var(--green);
}

.leader-card__image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f7fa;
}

.leader-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.leader-card:hover .leader-card__image img {
  transform: scale(1.08);
}

.leader-card__body {
  padding: 18px 14px;
  display: grid;
  gap: 6px;
  text-align: center;
}

.leader-card__body h3 {
  font-size: 14px;
  color: #202636;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.leader-card__body p {
  font-size: 12px;
  color: #1f7a52;
  margin: 0;
  font-weight: 500;
}

.leader-card__socials {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.leader-card:hover .leader-card__socials {
  opacity: 1;
  transform: translateY(0);
}

.leader-card__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.leader-card__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.leader-card__social:hover {
  transform: scale(1.15);
  background: #155839;
}

.faq {
  padding: 80px 0 90px;
  background: var(--bg-primary);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.faq__intro {
  display: grid;
  gap: 12px;
}

.faq__intro h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.8vw, 2.4rem);
  color: var(--text-primary);
  line-height: 1.15;
}

.faq__intro p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.faq__link {
  color: var(--green);
  font-weight: 600;
  font-size: 13px;
}

.faq__list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid #edf0f5;
  border-radius: 12px;
  background: #fbfcfe;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(31, 122, 82, 0.08);
}

.faq-item__toggle {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #202636;
  cursor: pointer;
  text-align: left;
  padding: 18px 20px;
  transition: color 0.3s ease;
}

.faq-item__toggle:hover {
  color: var(--green);
}

.faq-item__icon {
  font-size: 20px;
  color: var(--green);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  font-size: 13px;
  color: #6a7382;
  line-height: 1.7;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item.is-open .faq-item__content {
  max-height: 500px;
  padding: 0 20px 18px 20px;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.contact {
  padding: 80px 0 100px;
  background: #f9fafc;
}

.contact__content {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.contact__content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.8vw, 2.4rem);
  color: #202636;
  line-height: 1.15;
}

.contact__subtitle {
  color: #6a7382;
  font-size: 13px;
  max-width: 440px;
}

.contact__cards {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.contact-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 18px 18px 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 26px var(--shadow);
  text-align: left;
  display: grid;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: var(--green);
  box-shadow: 0 18px 40px rgba(31, 122, 82, 0.12);
}

.contact-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(31, 122, 82, 0.12);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-card:hover .contact-card__icon {
  background: var(--green);
  color: var(--white);
  transform: scale(1.1);
}

.contact-card h3 {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
}

.contact-card p {
  font-size: 12px;
  color: #6a7382;
  line-height: 1.6;
}

.contact__grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  width: 100%;
}

.contact__map {
  border-radius: 18px;
  min-height: 280px;
  background: #f0f3f8;
  box-shadow: 0 14px 30px rgba(31, 36, 50, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.contact__form {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(31, 36, 50, 0.08);
  border: 1px solid #edf0f5;
  display: grid;
  gap: 12px;
  text-align: left;
  transition: all 0.3s ease;
}

.contact__form:hover {
  border-color: var(--green);
  box-shadow: 0 18px 40px rgba(31, 122, 82, 0.12);
}

.contact__form h3 {
  font-size: 15px;
  color: #23283b;
  font-weight: 600;
}

.contact__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  border: 1px solid #e6eaf0;
  border-radius: 12px;
  padding: 10px 12px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #30384a;
  background: #fbfcfe;
  transition: all 0.3s ease;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(31, 122, 82, 0.1);
}

.contact__form textarea {
  resize: none;
  min-height: 120px;
}

.contact__meta {
  display: flex;
  justify-content: flex-end;
  font-size: 11px;
  color: #9aa3af;
}

.contact__submit {
  width: 100%;
  gap: 8px;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.contact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 122, 82, 0.25);
  background: #155839;
}

.contact__submit:active {
  transform: translateY(0);
}

.site-footer {
  background: #e9f5ef;
  color: #2b3340;
  padding: 0;
  transition: background 0.3s ease;
}

.site-footer:hover {
  background: linear-gradient(135deg, #e9f5ef 0%, #dff0e7 100%);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1.1fr;
  gap: 32px;
  padding: 60px 0 40px;
}

.footer__brand p {
  margin-top: 12px;
  font-size: 13px;
  color: #5d6a75;
  line-height: 1.6;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.footer__logo h3 {
  font-size: 17px;
  font-weight: 700;
}

.footer__logo span {
  font-size: 11px;
  color: #6b7480;
}

.footer__socials {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.footer__socials a {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #dff0e7;
  display: grid;
  place-items: center;
  color: var(--green);
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.footer__socials a:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(31, 122, 82, 0.25);
}

.footer__socials a:active {
  transform: translateY(-2px);
}

.footer__links,
.footer__contact {
  display: grid;
  gap: 8px;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer__links a {
  font-size: 13px;
  color: #5d6a75;
  transition: all 0.3s ease;
  position: relative;
}

.footer__links a:hover {
  color: var(--green);
  padding-left: 4px;
}

.footer__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  font-size: 13px;
  color: #5d6a75;
  align-items: start;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer__item:hover {
  color: #2b3340;
  transform: translateX(4px);
}

.footer__item span {
  font-size: 16px;
  color: var(--green);
}

.footer__bottom {
  border-top: 1px solid #d9e6de;
  padding: 20px 0;
  font-size: 13px;
  color: #596372;
  background: #f9fafb;
  transition: border-color 0.3s ease;
}

.site-footer:hover .footer__bottom {
  border-top-color: var(--green);
}

.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom a {
  color: inherit;
  font-weight: 600;
  transition: color 0.2s ease;
}

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



.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      105deg,
      rgba(8, 10, 24, 0.95) 0%,
      rgba(8, 10, 24, 0.85) 45%,
      rgba(8, 10, 24, 0.35) 100%
    ),
    url("assets/Hero.jpeg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
  transform: scale(1.02);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  padding: 90px 20px 100px;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  width: fit-content;
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.hero__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3.8vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.4px;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero__title span {
  color: var(--white);
}

.hero__accent {
  color: var(--gold);
}

.hero__text {
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  line-height: 1.6;
  font-size: 14px;
  animation: fadeInUp 0.7s ease-out 0.45s backwards;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease-out 0.55s backwards;
}

.hero__stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 10px;
  animation: fadeInUp 0.7s ease-out 0.65s backwards;
}

.hero__stat {
  display: grid;
  gap: 6px;
  min-width: 120px;
  animation: fadeInUp 0.6s ease-out backwards;
  will-change: transform, opacity;
}

.hero__stat:nth-child(1) {
  animation-delay: 0.65s;
}

.hero__stat:nth-child(2) {
  animation-delay: 0.7s;
}

.hero__stat:nth-child(3) {
  animation-delay: 0.75s;
}

.hero__stat-value {
  font-weight: 700;
  font-size: 19px;
}

.hero__stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.3s ease;
}

.hero__stat:hover .hero__stat-label {
  color: rgba(255, 255, 255, 0.9);
}

.hero__right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: center;
}

.hero__right .hero-card {
  animation: slideInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  will-change: transform, opacity;
}

.hero__right .hero-card:nth-child(1) {
  animation-delay: 0.5s;
}

.hero__right .hero-card:nth-child(2) {
  animation-delay: 0.6s;
}

.hero__right .hero-card:nth-child(3) {
  animation-delay: 0.7s;
}

.hero__right .hero-card:nth-child(4) {
  animation-delay: 0.8s;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px 16px 14px;
  backdrop-filter: blur(12px);
  display: grid;
  gap: 8px;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(12, 16, 28, 0.22);
  min-height: 130px;
  animation: slideInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s backwards;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(217, 164, 65, 0.12), 0 14px 30px rgba(12, 16, 28, 0.3);
}

.hero-card h3 {
  font-size: 15px;
  font-weight: 600;
}

.hero-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.hero-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s ease-out;
}

.hero-card:hover .hero-card__icon {
  transform: scale(1.15) rotate(5deg);
}

.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 1px;
  animation: floatSoft 3s ease-in-out 1.2s infinite;
}

.hero__scroll-indicator {
  width: 18px;
  height: 30px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  position: relative;
  animation: glowPulse 2.5s ease-in-out infinite;
}

.hero__scroll-indicator::after {
  content: "";
  width: 4px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0% {
    transform: translate(-50%, 0);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, 8px);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 0.8;
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 14px 30px rgba(12, 16, 28, 0.22);
  }
  50% {
    box-shadow: 0 14px 40px rgba(217, 164, 65, 0.15), 0 14px 30px rgba(12, 16, 28, 0.22);
  }
}

@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: #2f3645;
  display: block;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav__toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .nav__content {
    grid-template-columns: auto auto;
  }

  .hero__content {
    grid-template-columns: 1fr;
    padding: 70px 20px 90px;
    gap: 30px;
  }

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

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

  .value-card {
    min-height: 180px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__content {
    animation-delay: 0.3s;
  }

  .about__image {
    min-height: 280px;
  }

  .section-pill {
    padding: 7px 13px;
    font-size: 11px;
  }

  .about__content h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  }

  .about__content p {
    font-size: 13px;
  }

  .about-card {
    padding: 12px 14px;
  }

  .about-card h3 {
    font-size: 13px;
  }

  .about-card p {
    font-size: 11px;
  }

  .about-card__icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .performance__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .metric-card {
    padding: 18px 16px;
  }

  .metric-card__icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .metric__icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .metric__value {
    font-size: 28px;
  }

  .metric__label {
    font-size: 13px;
  }

  .metrics__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .services__header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services__header h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  }

  .services__header p {
    justify-self: start;
    max-width: 100%;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .service-card {
    padding: 18px 18px 20px;
    min-height: 160px;
  }

  .service-card__icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .awards__content h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  }

  .awards__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .awards__nav {
    justify-self: start;
  }

  .awards__grid {
    grid-template-columns: repeat(5, calc(100% / 2.5));
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .award-card {
    grid-template-columns: 40% 1fr;
    min-height: 220px;
  }

  .award-card__image {
    min-height: 220px;
  }

  .award-card__number {
    font-size: 10px;
    padding: 5px 9px;
  }

  .award-card__body {
    padding: 16px 14px;
  }

  .award-card__body h3 {
    font-size: 14px;
  }

  .award-card__body p {
    font-size: 12px;
  }

  .award-tag {
    font-size: 10px;
  }

  .award-card__verified {
    font-size: 11px;
  }

  .awards__dots {
    gap: 6px;
    padding: 14px 0 0;
  }

  .award-dot {
    width: 6px;
    height: 6px;
  }

  .award-dot.is-active {
    width: 20px;
  }

  .products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .product-modal__content {
    max-width: 600px;
  }

  .product-modal__header {
    padding: 30px 30px 24px;
  }

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

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

  .contact__cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-card {
    padding: 16px 16px 18px;
  }

  .contact-card h3 {
    font-size: 13px;
  }

  .contact-card p {
    font-size: 11px;
  }

  .contact-card__icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .contact__grid {
    gap: 18px;
  }

  .contact__map {
    min-height: 250px;
  }

  .contact__map iframe {
    min-height: 250px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: 50px 0 30px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__links,
  .footer__contact {
    gap: 6px;
  }

  .footer__links h4,
  .footer__contact h4 {
    font-size: 13px;
  }

  .footer__links a,
  .footer__item {
    font-size: 12px;
  }

  .footer__socials {
    gap: 6px;
  }

  .footer__socials a {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .footer__bottom-content {
    flex-direction: column;
    gap: 8px;
    font-size: 11px;
  }

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

  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 10px;
    padding: 18px 18px 22px;
    border-top: 1px solid var(--border);
    display: none;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 18px 28px rgba(12, 16, 28, 0.12);
    border-radius: 0 0 16px 16px;
  }

  .nav__menu > a {
    padding: 12px 0;
    font-size: 15px;
    border-radius: 0;
    transition: all 0.2s ease;
    color: var(--navy);
    font-weight: 600;
  }

  .nav__menu > a:hover {
    background: transparent;
    color: var(--green);
  }

  .nav__item {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
    display: flex;
  }

  .nav__link {
    padding: 12px 0;
    font-size: 15px;
    border-radius: 0;
    transition: all 0.2s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--navy);
    font-weight: 600;
  }

  .nav__link:hover {
    background: transparent;
    color: var(--green);
  }

  .nav__dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding: 8px 0 0 0;
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background: transparent;
  }

  .nav__dropdown a {
    padding: 10px 0 10px 16px;
    font-size: 14px;
    border-radius: 0;
    transition: all 0.2s ease;
    display: block;
    color: var(--text-secondary);
    font-weight: 500;
  }

  .nav__link.has-caret::after {
    margin-left: auto;
    transition: transform 0.25s ease;
  }

  .nav__item.is-open .nav__link.has-caret::after {
    transform: rotate(180deg);
  }

  .nav__dropdown a:hover {
    background: transparent;
    color: var(--green);
  }

  .nav__item.is-open .nav__dropdown {
    display: flex;
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__cta {
    display: flex !important;
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    margin-top: 14px;
    border-top: 1px solid #edf0f5;
    padding-top: 20px;
    border-radius: 8px;
    min-height: 48px;
    align-items: center;
  }

  .nav__cta--desktop {
    display: none;
  }

  .nav__toggle {
    display: flex;
    justify-self: end;
  }
}

@media (max-width: 720px) {
  .topbar__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .topbar__right {
    align-self: flex-end;
  }

  .hero {
    min-height: 65vh;
  }

  .hero__content {
    padding: 60px 20px 80px;
  }

  .hero__left {
    gap: 28px;
  }

  .hero__title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 8px;
  }

  .hero__text {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .hero__actions {
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 20px;
  }

  .hero__right {
    display: none;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero__stats {
    gap: 16px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .hero__stat {
    min-width: 0;
    flex: 1;
    text-align: left;
  }

  .hero-card {
    min-height: 110px;
  }

  .about__image {
    min-height: 240px;
  }

  .section-pill {
    padding: 6px 12px;
    font-size: 10px;
    gap: 6px;
  }

  .section-pill::before {
    width: 5px;
    height: 5px;
  }

  .section-pill::before {
    width: 5px;
    height: 5px;
  }

  .about__content h2 {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
  }

  .about__content p {
    font-size: 12px;
    line-height: 1.6;
  }

  .about-card {
    padding: 12px 13px;
    gap: 10px;
  }

  .about-card h3 {
    font-size: 12px;
  }

  .about-card p {
    font-size: 10px;
    line-height: 1.5;
  }

  .about-card__icon {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  .performance__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .metric-card {
    padding: 16px 14px;
  }

  .metric-card h3 {
    font-size: 14px;
  }

  .metric-card__value {
    font-size: 13px;
  }

  .metric-card__icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .values__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-card {
    min-height: 160px;
    padding: 20px 18px 18px;
  }

  .value-card h3 {
    font-size: 16px;
  }

  .value-card p {
    font-size: 12px;
  }

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

  .metric__icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .metric__value {
    font-size: 24px;
  }

  .metric__label {
    font-size: 12px;
  }

  .metrics {
    padding: 50px 0 60px;
  }

  .metrics__grid {
    gap: 24px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services__header h2 {
    font-size: clamp(1.8rem, 2.2vw, 2rem);
  }

  .service-card {
    padding: 16px 16px 18px;
    gap: 10px;
    min-height: 150px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 12px;
  }

  .service-card__icon {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }

  .service-card__tag {
    font-size: 9px;
    padding: 4px 10px;
  }

  .awards {
    padding: 70px 0 80px;
  }

  .awards__content h2 {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
  }

  .awards__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .awards__carousel {
    margin-top: 24px;
  }

  .awards__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .award-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .award-card__image {
    min-height: 180px;
  }

  .award-card__number {
    font-size: 9px;
    padding: 4px 8px;
  }

  .award-card__body {
    padding: 12px 12px 14px;
    gap: 8px;
  }

  .award-card__body h3 {
    font-size: 13px;
  }

  .award-card__body p {
    font-size: 11px;
  }

  .award-tag {
    font-size: 9px;
    padding: 3px 8px;
  }

  .award-card__verified {
    font-size: 10px;
  }

  .awards__dots {
    gap: 4px;
    padding: 12px 0 0;
  }

  .award-dot {
    width: 4px;
    height: 4px;
  }

  .award-dot.is-active {
    width: 16px;
  }

  .products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .products__tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .product-card {
    grid-template-rows: 110px auto 1fr;
  }

  .product-card__image {
    height: 110px;
  }

  .leadership__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .leader-card__image {
    height: 180px;
  }

  .product-modal__content {
    max-width: 95%;
    max-height: 85vh;
    border-radius: 20px;
  }

  .product-modal__image {
    height: 120px;
  }

  .product-modal__body {
    padding: 14px 18px;
    gap: 10px;
  }

  .product-modal__footer {
    padding: 10px 18px 14px;
  }

  .product-modal__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
  }

  .product-modal__nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
    flex-shrink: 0;
    border-radius: 10px;
  }

  .product-modal__actions .btn--primary {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    padding: 11px 18px;
    font-weight: 600;
    border-radius: 10px;
  }

  .product-modal__actions .btn--primary .material-symbols-rounded {
    font-size: 17px;
    margin-left: 5px;
  }

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

  .faq-item__toggle {
    padding: 16px 18px;
    font-size: 13px;
  }

  .faq-item__icon {
    font-size: 18px;
  }

  .faq-item.is-open .faq-item__content {
    padding: 0 18px 14px 18px;
  }

  .faq__list {
    gap: 10px;
  }

  .contact {
    padding: 50px 0 60px;
  }

  .contact__content h2 {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
  }

  .contact__cards {
    gap: 12px;
  }

  .contact-card {
    padding: 14px 14px 16px;
  }

  .contact-card h3 {
    font-size: 12px;
  }

  .contact-card p {
    font-size: 10px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact__map {
    min-height: 220px;
    border-radius: 14px;
  }

  .contact__map iframe {
    min-height: 220px;
  }

  .contact__form {
    padding: 18px;
    border-radius: 14px;
  }

  .contact__form h3 {
    font-size: 14px;
  }

  .contact__row {
    gap: 8px;
  }

  .contact__form input,
  .contact__form textarea {
    padding: 9px 11px;
    font-size: 12px;
    border-radius: 10px;
  }

  .contact__form textarea {
    min-height: 100px;
  }

  .contact__submit {
    padding: 11px 16px;
    font-size: 13px;
    border-radius: 12px;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .scroll-top {
    width: 40px;
    height: 40px;
    right: 12px;
    bottom: 14px;
  }

  .scroll-top__icon {
    font-size: 14px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero__content {
    padding: 58px 16px 78px;
    gap: 26px;
  }

  .hero__left {
    gap: 16px;
  }

  .hero__title {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  }

  .hero__badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .hero__text {
    font-size: 12px;
    max-width: 100%;
  }

  .hero__actions {
    gap: 10px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .hero__stats {
    gap: 12px;
    margin-top: 14px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .hero__stat {
    min-width: 0;
    flex: 1;
    text-align: left;
  }

  .values {
    margin-top: -22px;
    padding-top: 70px;
  }

  .hero__stat-value {
    font-size: 16px;
  }

  .hero__stat-label {
    font-size: 11px;
  }

  .hero-card {
    padding: 14px 12px 12px;
    min-height: 100px;
  }

  .hero-card h3 {
    font-size: 13px;
  }

  .hero-card p {
    font-size: 11px;
  }

  .hero-card__icon {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .hero__scroll {
    display: none;
  }

  .values__grid {
    gap: 12px;
  }

  .value-card {
    padding: 18px 16px 16px;
    min-height: 150px;
  }

  .value-card h3 {
    font-size: 15px;
  }

  .value-card p {
    font-size: 11px;
    line-height: 1.5;
  }

  .value-card__icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .about__image {
    min-height: 200px;
    border-radius: 12px;
  }

  .section-pill {
    padding: 5px 11px;
    font-size: 9px;
    gap: 6px;
  }

  .section-pill::before {
    width: 4px;
    height: 4px;
  }

  .about__content h2 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
  }

  .about__content p {
    font-size: 11px;
  }

  .about-card {
    padding: 10px 12px;
    gap: 8px;
  }

  .about-card h3 {
    font-size: 11px;
    margin-bottom: 2px;
  }

  .about-card p {
    font-size: 9px;
  }

  .about-card__icon {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .performance {
    padding: 60px 0 70px;
  }

  .performance h2 {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
  }

  .performance__grid {
    margin-top: 20px;
    gap: 14px;
  }

  .metric-card {
    padding: 14px 12px;
  }

  .metric-card h3 {
    font-size: 12px;
  }

  .metric-card__value {
    font-size: 12px;
  }

  .metric-card__icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .metric-card__bar {
    height: 6px;
  }

  .metric__icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .metric__value {
    font-size: 22px;
  }

  .metric__label {
    font-size: 11px;
  }

  .metrics {
    padding: 40px 0 50px;
  }

  .metrics__grid {
    gap: 20px;
  }

  .services {
    padding: 60px 0 70px;
  }

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

  .services__header h2 {
    font-size: clamp(1.6rem, 2vw, 1.8rem);
  }

  .services__header p {
    font-size: 12px;
  }

  .services__grid {
    gap: 14px;
  }

  .awards {
    padding: 50px 0 60px;
  }

  .awards__content h2 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
  }

  .awards__header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .awards__nav {
    display: none;
  }

  .awards__nav-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .awards__carousel {
    margin-top: 20px;
  }

  .awards__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .award-card {
    grid-template-columns: 1fr;
    min-height: auto;
    animation-delay: 0.08s;
  }

  .award-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .award-card:nth-child(3) {
    animation-delay: 0.32s;
  }

  .award-card:nth-child(4) {
    animation-delay: 0.44s;
  }

  .award-card:nth-child(5) {
    animation-delay: 0.56s;
  }

  .award-card__image {
    min-height: 160px;
  }

  .award-card__number {
    font-size: 8px;
    padding: 3px 7px;
  }

  .award-card__body {
    padding: 10px 10px 12px;
    gap: 6px;
  }

  .award-card__body h3 {
    font-size: 12px;
  }

  .award-card__body p {
    font-size: 10px;
  }

  .award-tag {
    font-size: 8px;
    padding: 2px 6px;
  }

  .award-card__verified {
    font-size: 9px;
  }

  .awards__dots {
    gap: 3px;
    padding: 10px 0 0;
  }

  .award-dot {
    width: 3px;
    height: 3px;
  }

  .award-dot.is-active {
    width: 12px;
  }

  .service-card {
    padding: 14px 14px 16px;
    gap: 8px;
    min-height: 140px;
  }

  .service-card h3 {
    font-size: 14px;
  }

  .service-card p {
    font-size: 11px;
  }

  .service-card__icon {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .service-card__tag {
    font-size: 8px;
    padding: 3px 8px;
  }

  .awards {
    padding: 50px 0 60px;
  }

  .awards__content h2 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
  }

  .awards__grid {
    gap: 14px;
    margin-top: 14px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .section-pill {
    padding: 5px 11px;
    font-size: 9px;
  }

  .award-card {
    animation-delay: 0.08s;
  }

  .award-card:nth-child(2) {
    animation-delay: 0.24s;
  }

  .award-card:nth-child(3) {
    animation-delay: 0.4s;
  }

  .award-card__image {
    height: 120px;
  }

  .award-card__tag {
    font-size: 7px;
    padding: 2px 7px;
    left: 10px;
    bottom: 8px;
  }

  .award-card__body {
    padding: 10px 10px 12px;
    gap: 4px;
  }

  .award-card__body h3 {
    font-size: 12px;
    font-weight: 600;
  }

  .award-card__body p {
    font-size: 10px;
    line-height: 1.4;
  }

  .award-card__dots {
    display: none;
  }

  .products__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card {
    grid-template-rows: 100px auto 1fr;
  }

  .product-card__image {
    height: 100px;
  }

  .product-card__view {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .leadership__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .leader-card__image {
    height: 150px;
  }

  .leader-card__body {
    padding: 14px 12px;
  }

  .leader-card__body h3 {
    font-size: 13px;
  }

  .leader-card__body p {
    font-size: 11px;
  }

  .leader-card__social {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .product-modal__image {
    height: 100px;
  }

  .product-modal__body {
    padding: 12px 16px;
    gap: 8px;
  }

  .product-modal__footer {
    padding: 10px 16px 14px;
    gap: 10px;
  }

  .product-modal__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
  }

  .product-modal__nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
    flex-shrink: 0;
    border-radius: 9px;
  }

  .product-modal__actions .btn--primary {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    padding: 11px 16px;
    font-weight: 600;
    border-radius: 9px;
    white-space: nowrap;
  }

  .product-modal__actions .btn--primary .material-symbols-rounded {
    font-size: 16px;
    margin-left: 4px;
  }

  .product-modal__header h2 {
    font-size: 20px;
  }

  .product-modal__badge {
    font-size: 10px;
    padding: 4px 10px;
  }

  .product-modal__description {
    font-size: 13px;
  }

  .product-modal__features li {
    font-size: 12px;
  }

  

  .faq-item {
    border-radius: 10px;
    transition: all 0.25s ease;
  }

  .faq-item:hover {
    box-shadow: none;
  }

  .faq-item__toggle {
    padding: 14px 16px;
    font-size: 12px;
    gap: 10px;
  }

  .faq-item__icon {
    font-size: 16px;
    flex-shrink: 0;
  }

  .faq-item__content {
    max-height: 0;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.6;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .faq-item.is-open .faq-item__content {
    padding: 0 16px 14px 16px;
    max-height: 500px;
  }

  .contact {
    padding: 40px 0 50px;
  }

  .contact__content {
    gap: 8px;
  }

  .contact__content h2 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
  }

  .contact__subtitle {
    font-size: 12px;
  }

  .contact__cards {
    margin-top: 18px;
    gap: 10px;
  }

  .contact-card {
    padding: 12px 12px 14px;
    gap: 6px;
  }

  .contact-card__icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .contact-card h3 {
    font-size: 11px;
    margin-bottom: 2px;
  }

  .contact-card p {
    font-size: 9px;
  }

  .contact__grid {
    margin-top: 16px;
    gap: 12px;
  }

  .contact__map {
    min-height: 200px;
    border-radius: 12px;
  }

  .contact__map iframe {
    min-height: 200px;
  }

  .contact__form {
    padding: 14px;
    border-radius: 12px;
    gap: 10px;
  }

  .contact__form h3 {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .contact__row {
    flex-direction: column;
    gap: 8px;
  }

  .contact__form input,
  .contact__form textarea {
    padding: 8px 10px;
    font-size: 11px;
    border-radius: 8px;
  }

  .contact__form textarea {
    min-height: 80px;
  }

  .contact__meta {
    font-size: 10px;
  }

  .contact__submit {
    padding: 11px 16px;
    font-size: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0 24px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__brand p {
    margin-top: 10px;
    font-size: 12px;
  }

  .footer__logo h3 {
    font-size: 16px;
  }

  .footer__logo span {
    font-size: 10px;
  }

  .footer__socials {
    margin-top: 12px;
    gap: 6px;
  }

  .footer__socials a {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .footer__links h4,
  .footer__contact h4 {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .footer__links a,
  .footer__item {
    font-size: 11px;
  }

  .footer__item {
    gap: 6px;
  }

  .footer__item span {
    font-size: 14px;
  }

  .footer__bottom {
    padding: 12px 0;
  }

  .footer__bottom-content {
    flex-direction: column;
    gap: 6px;
    font-size: 10px;
    text-align: center;
  }
}











