:root {
  --navy: #0b2a4a;
  --navy-deep: #071f38;
  --navy-mid: #123a62;
  --green: #1a7a4c;
  --green-dark: #14603c;
  --green-soft: #e8f5ee;
  --green-glow: rgba(26, 122, 76, 0.35);
  --ink: #1a2332;
  --muted: #5a6a7a;
  --line: #e2e8f0;
  --bg: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 12px 32px rgba(11, 42, 74, 0.08);
  --shadow-lg: 0 24px 64px rgba(11, 42, 74, 0.12);
  --radius: 10px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Outfit", "Manrope", system-ui, sans-serif;
  --container: 1180px;
  --nav-h: 78px;
  --icon-boost: 1.15;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

main section[id] {
  scroll-margin-top: 140px;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease,
    transform 0.3s ease, box-shadow 0.3s ease;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26, 122, 76, 0.2);
}

.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 122, 76, 0.32);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(26, 122, 76, 0.2);
}

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

.btn--outline:hover {
  background: var(--green-soft);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 122, 76, 0.12);
}

.btn--nav {
  padding: 0.7rem 1.15rem;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(3px);
}

/* ============================
   STICKY SITE CHROME
   ============================ */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
}

.site-chrome .navbar {
  position: relative;
  top: auto;
}

/* ============================
   TOP BAR
   ============================ */
.top-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  padding: 0.55rem 0;
  position: relative;
  overflow: hidden;
  z-index: 110;
}

.top-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 8s linear infinite;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.top-bar__item,
.top-bar__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.3s ease;
}

.top-bar__contacts {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.top-bar__contacts a:hover,
.top-bar__social a:hover {
  color: #9fe0bc;
}

.top-bar__social {
  display: flex;
  gap: 0.85rem;
}

.top-bar__social a {
  transition: color 0.3s ease, transform 0.3s ease;
}

.top-bar__social a:hover {
  transform: translateY(-2px) scale(1.15);
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.navbar.scrolled {
  box-shadow: 0 8px 32px rgba(11, 42, 74, 0.1);
  background: rgba(255, 255, 255, 0.97);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo__img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  border-radius: 8px;
}

.logo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
}

.logo__text strong {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-shadow: 0 1px 0 rgba(11, 42, 74, 0.12);
}

.logo__text > span {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.12rem;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(11, 42, 74, 0.08);
}

.logo__tm {
  font-size: 0.55em;
  font-weight: 800;
  color: #e11d2e;
  line-height: 1;
  position: relative;
  top: -0.15em;
  left: 0.05em;
  letter-spacing: 0;
  font-style: normal;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.55rem 0.55rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 70%;
  left: 15%;
}

.nav__link i {
  font-size: 0.65rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.nav__link:hover,
.nav__link.active,
.nav__dropdown:hover > .nav__trigger,
.nav__dropdown.open > .nav__trigger {
  color: var(--green);
}

.nav__dropdown:hover > .nav__trigger i,
.nav__dropdown.open > .nav__trigger i {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 230px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(11, 42, 74, 0.12);
  padding: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 120;
}

.nav__dropdown-menu--cols {
  min-width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.1rem 0.35rem;
  max-height: none;
}

.nav__dropdown--wide .nav__dropdown-menu {
  left: 50%;
  transform: translate(-50%, 8px);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown--wide:hover .nav__dropdown-menu,
.nav__dropdown--wide:focus-within .nav__dropdown-menu,
.nav__dropdown--wide.open .nav__dropdown-menu {
  transform: translate(-50%, 0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  font-size: 0.86rem;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  white-space: normal;
  transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.nav__dropdown-menu a:hover {
  background: var(--green-soft);
  color: var(--green);
  padding-left: 1rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-toggle:hover {
  background: var(--bg);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative;
  padding: clamp(2.25rem, 4vw, 3.5rem) 0 clamp(1.25rem, 2.5vw, 1.85rem);
  background: linear-gradient(165deg, #eef3f8 0%, var(--bg) 55%, var(--bg) 100%);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 88% 18%, rgba(26, 122, 76, 0.07), transparent 62%),
    radial-gradient(ellipse 45% 40% at 8% 78%, rgba(18, 58, 98, 0.06), transparent 58%);
}

.hero__bg::before,
.hero__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(18, 58, 98, 0.07);
  animation: pulseRing 6s ease-in-out infinite;
}

.hero__bg::before {
  width: min(560px, 48vw);
  height: min(560px, 48vw);
  right: -8%;
  top: -12%;
}

.hero__bg::after {
  width: min(380px, 36vw);
  height: min(380px, 36vw);
  right: 12%;
  bottom: -18%;
  animation-delay: 3s;
}

/* Animated particles in hero */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}

.hero__particle:nth-child(1) {
  background: var(--green);
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.hero__particle:nth-child(2) {
  background: var(--navy-mid);
  top: 30%;
  right: 15%;
  animation-delay: 2s;
  width: 4px;
  height: 4px;
}

.hero__particle:nth-child(3) {
  background: var(--green);
  bottom: 25%;
  left: 25%;
  animation-delay: 4s;
  width: 8px;
  height: 8px;
}

.hero__particle:nth-child(4) {
  background: var(--navy);
  top: 60%;
  right: 8%;
  animation-delay: 1s;
  width: 5px;
  height: 5px;
}

.hero__particle:nth-child(5) {
  background: rgba(26, 122, 76, 0.6);
  top: 80%;
  left: 60%;
  animation-delay: 3s;
}

.hero__particle:nth-child(6) {
  background: rgba(18, 58, 98, 0.5);
  top: 10%;
  right: 35%;
  animation-delay: 5s;
  width: 7px;
  height: 7px;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: center;
}

.hero__eyebrow {
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  animation: fadeSlideRight 0.7s ease both;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  animation: expandWidth 0.8s ease 0.3s both;
}

.hero__title {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  animation: fadeUp 0.7s ease 0.08s both;
}

.hero__title > span:first-child {
  display: block;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  color: var(--navy);
}

.hero__title-accent {
  display: block;
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
  color: var(--green);
  background: linear-gradient(135deg, var(--green) 0%, #2ba868 50%, var(--green-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 4s ease-in-out infinite;
}

.hero__text {
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  animation: fadeUp 0.7s ease 0.16s both;
}

.hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  max-width: 28rem;
  animation: fadeUp 0.7s ease 0.24s both;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(11, 42, 74, 0.04);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.hero__feature:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--green);
  box-shadow: 0 12px 28px rgba(26, 122, 76, 0.12);
  background: var(--white);
}

.hero__feature i {
  color: var(--green);
  width: 1.35rem;
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.hero__feature:hover i {
  transform: scale(1.2) rotate(-5deg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 0.7s ease 0.32s both;
}

/* ============================
   HERO IMAGE — Professional Alignment
   ============================ */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  min-height: clamp(280px, 38vw, 460px);
  animation: fadeScaleIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero__visual-glow {
  position: absolute;
  width: 90%;
  height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(26, 122, 76, 0.18) 0%, rgba(11, 42, 74, 0.1) 40%, transparent 70%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

/* Decorative accent elements around the image */
.hero__visual::before {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 60%;
  height: 60%;
  border: 2px solid rgba(26, 122, 76, 0.2);
  border-radius: 24px;
  z-index: 0;
  animation: accentFloat 6s ease-in-out infinite;
}

.hero__visual::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 50%;
  height: 50%;
  border: 2px solid rgba(11, 42, 74, 0.12);
  border-radius: 24px;
  z-index: 0;
  animation: accentFloat 6s ease-in-out infinite reverse;
}

.hero__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  max-width: 540px;
  border-radius: 20px;
  overflow: hidden;
  padding: 6px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(232, 245, 238, 0.95),
    rgba(233, 240, 247, 0.95)
  );
  border: 1px solid rgba(197, 210, 224, 0.6);
  box-shadow:
    0 20px 50px rgba(11, 42, 74, 0.12),
    0 0 0 1px rgba(26, 122, 76, 0.06);
  animation: none;
  transition: box-shadow 0.5s ease;
}

.hero__figure:hover {
  box-shadow:
    0 28px 64px rgba(11, 42, 74, 0.16),
    0 0 0 1px rgba(26, 122, 76, 0.12);
}

.hero__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  border-radius: 16px;
  box-shadow:
    0 8px 16px rgba(11, 42, 74, 0.05),
    0 2px 0 rgba(255, 255, 255, 0.65) inset;
  animation: heroZoom 6.5s ease-in-out infinite;
  transform-origin: center center;
  filter: saturate(1.05) contrast(1.02);
}

@keyframes heroZoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

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

/* ============================
   STATS — rounded navy bar
   ============================ */
.stats {
  background: var(--bg);
  color: var(--white);
  padding: 0.85rem 0 1.25rem;
  position: relative;
  overflow: visible;
  margin-top: 0;
  z-index: 1;
}

.stats::before {
  display: none;
}

.stats__bar,
.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 60%, #0a2540 100%) !important;
  border-radius: 20px !important;
  padding: 1.2rem 0.75rem !important;
  box-shadow: 0 14px 36px rgba(7, 31, 56, 0.22);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.stats__bar::before,
.stats__grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(125, 207, 159, 0.06) 50%,
    transparent 100%
  );
}

.stats__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  text-align: left;
  padding: 0.25rem 1.1rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

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

.stats__item i {
  font-size: 2.15rem !important;
  color: #ffffff !important;
  width: 2.4rem;
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.stats__item:hover i {
  transform: scale(1.1);
  color: #ffffff !important;
}

.stats__item strong,
.stats__item span {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  display: inline;
  color: #3dcc7a;
  line-height: 1.15;
}

.stats__item p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 0.15rem;
  font-weight: 500;
  opacity: 1;
}

/* ============================
   SECTION HEADS
   ============================ */
.section-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-head__eyebrow {
  color: var(--green);
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 0.45rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.section-head__eyebrow::before,
.section-head__eyebrow::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.section-head__title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--navy);
  font-weight: 800;
}

/* ============================
   SERVICES
   ============================ */
.services {
  padding: 2rem 0 2.25rem;
  background: var(--bg);
  position: relative;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 0.68rem;
  row-gap: 0.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.19rem 1.15rem 1.06rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  box-shadow: 0 6px 18px rgba(11, 42, 74, 0.04);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--navy-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 14px 14px 0 0;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(11, 42, 74, 0.1);
  border-color: rgba(26, 122, 76, 0.2);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--icon) 12%, white);
  color: var(--icon);
  font-size: 1.25rem;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card__icon i {
  font-size: 1.25rem;
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--icon) 20%, transparent);
}

.service-card h3 {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-card p {
  font-size: 0.84rem;
  color: var(--muted);
  flex: 1;
}

.service-card__link {
  color: var(--green);
  font-weight: 700;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.service-card__link i {
  transition: transform 0.3s ease;
}

.service-card__link:hover {
  gap: 0.7rem;
}

.service-card__link:hover i {
  transform: translateX(4px);
}

/* ============================
   WHY CHOOSE US
   ============================ */
.why {
  padding: 2rem 0 1.25rem;
  background: var(--white);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.55rem;
  row-gap: 0.5rem;
  align-items: center;
}

.why__figure {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  margin: 0;
}

.why__figure:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.why__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.why__title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 0.69rem;
}

.why__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.why__feature:hover {
  transform: translateX(6px);
}

.why__feature i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.why__feature:hover i {
  background: var(--green);
  color: var(--white);
  transform: rotate(-8deg) scale(1.1);
}

/* ============================
   PROCESS
   ============================ */
.process {
  padding: 1.35rem 0 1.75rem;
  background: var(--white);
  position: relative;
}

.process__title {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.process__track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  position: relative;
}

/* Connecting line behind steps */
.process__track::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--navy-mid), var(--green));
  opacity: 0.2;
  z-index: 0;
}

.process__step {
  flex: 1;
  text-align: center;
  max-width: 170px;
  position: relative;
  z-index: 1;
}

.process__num {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(26, 122, 76, 0.28);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
}

.process__num::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(26, 122, 76, 0.2);
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.process__step:hover .process__num {
  transform: scale(1.12);
  box-shadow: 0 12px 28px rgba(26, 122, 76, 0.38);
  background: var(--navy);
}

.process__step:hover .process__num::after {
  border-color: rgba(11, 42, 74, 0.3);
  transform: scale(1.1);
}

.process__step h3 {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
  transition: color 0.3s ease;
}

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

.process__step p {
  font-size: 0.82rem;
  color: var(--muted);
}

.process__arrow {
  color: var(--green);
  padding-top: 1.15rem;
  opacity: 0.7;
  animation: arrowBounce 2s ease-in-out infinite;
}

/* ============================
   RESOURCES
   ============================ */
.resources {
  padding: 0.35rem 0 1.5rem;
}

.resources__inner {
  background: linear-gradient(120deg, #eef6f1, #e8eef6);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.resources__inner:hover {
  box-shadow: 0 12px 36px rgba(11, 42, 74, 0.08);
  transform: translateY(-2px);
}

.resources__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(26, 122, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.resources__inner h2 {
  font-family: var(--display);
  color: var(--navy);
  font-size: 1.45rem;
  margin: 0.2rem 0 0.45rem;
}

.resources__inner p:last-child {
  color: var(--muted);
  max-width: 36rem;
}

/* ============================
   MAP / LOCATION
   ============================ */
.map-section {
  background:
    radial-gradient(ellipse 70% 80% at 10% 20%, rgba(26, 122, 76, 0.08), transparent 55%),
    linear-gradient(180deg, #f3f6f9 0%, #eef3f7 100%);
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.map-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: stretch;
}

.map-section__eyebrow {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.55rem;
}

.map-section__info h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.map-section__address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.55;
  max-width: 28rem;
}

.map-section__address i {
  color: var(--green);
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.map-section__address strong {
  color: var(--navy);
  font-weight: 700;
}

.map-section__frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(11, 42, 74, 0.1);
  background: var(--white);
  min-height: 320px;
}

.map-section__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

@media (max-width: 900px) {
  .map-section__grid {
    grid-template-columns: 1fr;
  }

  .map-section__frame,
  .map-section__frame iframe {
    min-height: 280px;
  }
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #050f1a 100%);
  color: var(--white);
  padding-top: 3.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 122, 76, 0.4), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 3rem;
  position: relative;
}

.footer__cta h2 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  max-width: 18ch;
}

.footer__cta p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.35rem;
  max-width: 34rem;
}

.footer__info {
  display: grid;
  gap: 0.9rem;
  font-size: 0.95rem;
}

.footer__info a,
.footer__info p {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__info a:hover {
  color: #9fe0bc;
  transform: translateX(4px);
}

.footer__info i {
  color: #7dcf9f;
  margin-top: 0.2rem;
  width: 1.25rem;
  transition: transform 0.3s ease;
}

.footer__info a:hover i {
  transform: scale(1.2);
}

.footer__address {
  line-height: 1.45;
  max-width: 28rem;
}

.footer__address span {
  display: block;
}

.footer__address strong {
  color: #9fe0bc;
  font-weight: 700;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.footer__credit {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__credit a {
  color: #9fe0bc;
  font-weight: 600;
  text-decoration: none;
}

.footer__credit a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ============================
   KEYFRAME ANIMATIONS
   ============================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeScaleIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 32px; }
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes gradientText {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes pulseRing {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes accentFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(4px, -6px); }
  66% { transform: translate(-4px, 4px); }
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  15% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translateY(-40px) scale(1); }
  85% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-80px) scale(0.5); }
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(26, 122, 76, 0.3); }
  50% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 0 14px rgba(26, 122, 76, 0); }
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* ============================
   REVEAL ANIMATIONS (scroll-triggered)
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Stagger delay for service cards */
.service-card.reveal:nth-child(1) { transition-delay: 0s; }
.service-card.reveal:nth-child(2) { transition-delay: 0.06s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.12s; }
.service-card.reveal:nth-child(4) { transition-delay: 0.18s; }
.service-card.reveal:nth-child(5) { transition-delay: 0.24s; }
.service-card.reveal:nth-child(6) { transition-delay: 0.30s; }
.service-card.reveal:nth-child(7) { transition-delay: 0.36s; }
.service-card.reveal:nth-child(8) { transition-delay: 0.42s; }
.service-card.reveal:nth-child(9) { transition-delay: 0.48s; }
.service-card.reveal:nth-child(10) { transition-delay: 0.54s; }

/* Stagger delay for why features */
.why__feature.reveal:nth-child(1) { transition-delay: 0s; }
.why__feature.reveal:nth-child(2) { transition-delay: 0.08s; }
.why__feature.reveal:nth-child(3) { transition-delay: 0.16s; }
.why__feature.reveal:nth-child(4) { transition-delay: 0.24s; }
.why__feature.reveal:nth-child(5) { transition-delay: 0.32s; }
.why__feature.reveal:nth-child(6) { transition-delay: 0.40s; }

/* Stagger delay for process steps */
.process__step.reveal:nth-child(1) { transition-delay: 0s; }
.process__step.reveal:nth-child(2) { transition-delay: 0.1s; }
.process__step.reveal:nth-child(3) { transition-delay: 0.2s; }
.process__step.reveal:nth-child(4) { transition-delay: 0.3s; }
.process__step.reveal:nth-child(5) { transition-delay: 0.4s; }

/* Reveal slide-from-left variant */
.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Reveal slide-from-right variant */
.reveal--right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Reveal scale variant */
.reveal--scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================
   MODAL
   ============================ */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 31, 56, 0.72);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  z-index: 200;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal__panel {
  background: var(--white);
  color: var(--ink);
  width: min(100%, 480px);
  border-radius: 18px;
  padding: 1.75rem;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal.open .modal__panel {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  border: none;
  background: var(--bg);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--navy);
  transition: background 0.3s ease, transform 0.3s ease;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
}

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

.modal__panel h3 {
  font-family: var(--display);
  color: var(--navy);
  margin-bottom: 0.5rem;
  padding-right: 2rem;
}

.modal__panel p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.modal__panel form {
  display: grid;
  gap: 0.75rem;
}

.modal__panel input,
.modal__panel textarea,
.modal__panel select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal__panel input:focus,
.modal__panel textarea:focus,
.modal__panel select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26, 122, 76, 0.12);
}

.modal__success {
  display: none;
  color: var(--green);
  font-weight: 700;
}

.modal__success.show {
  display: block;
  animation: fadeUp 0.4s ease;
}

/* ============================
   BACK TO TOP BUTTON
   ============================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(26, 122, 76, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease,
    background 0.3s ease;
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(11, 42, 74, 0.25);
}

/* ============================
   PREFERS REDUCED MOTION
   ============================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--scale {
    opacity: 1;
    transform: none;
  }
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats__bar,
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 0.85rem;
  }

  .stats__item:nth-child(3)::after {
    display: none;
  }

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

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .btn--nav {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    right: auto;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1rem 1rem;
    gap: 0.1rem;
    display: none;
    box-shadow: 0 16px 40px rgba(11, 42, 74, 0.14);
    max-height: min(70vh, calc(100dvh - 8rem));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 250;
  }

  .nav.open {
    display: flex;
    animation: fadeUp 0.3s ease;
  }

  .nav__link,
  .nav__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 0.5rem;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
  }

  .nav__link:focus,
  .nav__trigger:focus,
  .nav__link:focus-visible,
  .nav__trigger:focus-visible {
    outline: none;
    box-shadow: none;
    color: var(--green);
  }

  .nav__link::after {
    display: none;
  }

  .nav__dropdown:hover .nav__dropdown-menu,
  .nav__dropdown:focus-within .nav__dropdown-menu,
  .nav__dropdown--wide:hover .nav__dropdown-menu,
  .nav__dropdown--wide:focus-within .nav__dropdown-menu {
    display: none;
  }

  .nav__dropdown-menu,
  .nav__dropdown-menu--cols {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--green-soft);
    padding: 0.15rem 0 0.55rem 0.85rem;
    margin: 0 0 0.35rem 0.35rem;
    display: none;
    min-width: 0;
    max-height: none;
    grid-template-columns: 1fr;
    backdrop-filter: none;
    background: transparent;
  }

  .nav__dropdown.open .nav__dropdown-menu,
  .nav__dropdown.open .nav__dropdown-menu--cols {
    display: block;
  }

  .nav__dropdown.open > .nav__trigger {
    color: var(--green);
  }

  .nav__dropdown--wide:hover .nav__dropdown-menu,
  .nav__dropdown--wide.open .nav__dropdown-menu {
    transform: none !important;
  }

  .hero__grid,
  .why__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
    max-width: 540px;
    margin-inline: auto;
    width: 100%;
  }

  .hero__visual::before,
  .hero__visual::after {
    display: none;
  }

  .hero__figure {
    max-width: 100%;
    animation: none;
  }

  .hero__image {
    aspect-ratio: 16 / 10;
  }

  .process__track {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 0.75rem;
  }

  .process__track::before {
    display: none;
  }

  .process__arrow {
    display: none;
  }

  .process__step {
    flex: 0 0 calc(50% - 1rem);
    max-width: none;
  }
}

@media (max-width: 700px) {
  .top-bar__contacts {
    display: none;
  }

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

  .stats__bar,
  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats__item:nth-child(2n)::after {
    display: none;
  }

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

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

@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

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

  .hero__actions .btn {
    width: 100%;
  }

  .process__step {
    flex-basis: 100%;
  }

  .stats__item:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
  }
}

/* FAQ (AEO) */
.faq {
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
  background: var(--surface-muted, #f4f7f5);
}

.faq__list {
  margin: 1.25rem auto 0;
  display: grid;
  gap: 1.25rem;
  max-width: 52rem;
  width: 100%;
}

.faq__item {
  background: #fff;
  border: 1px solid rgba(26, 122, 76, 0.12);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.faq__item dt {
  font-family: var(--font-display, "Outfit", sans-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text, #0f172a);
  margin-bottom: 0.5rem;
}

.faq__item dd {
  margin: 0;
  color: var(--text-muted, #475569);
  line-height: 1.65;
}

.faq__item dd a {
  color: var(--brand, #1a7a4c);
  font-weight: 600;
}
