:root {
  --green: #00331c;
  --green-dark: #002212;
  --dark: #000;
  --muted: #f8f9fa;
}

* { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body { margin: 0; font-family: "Heebo", sans-serif; color: #000; background: #fff; }
a { text-decoration: none; color: inherit; }
a, button, [role="button"], input[type="submit"], input[type="button"], label {
  -webkit-tap-highlight-color: rgba(0, 51, 28, 0.14);
}

.site {
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}
.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: 96px 0; }

.top-header {
  position: relative; z-index: 1200;
  max-width: 1920px; margin: 0 auto; height: 80px; background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.08); display: flex; align-items: stretch;
  transition: box-shadow 0.2s ease, background-color 0.2s ease, transform 0.25s ease;
}
.top-header.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  animation: header-drop 0.36s ease;
}
@keyframes header-drop {
  from {
    transform: translateY(-36px);
    opacity: 0.7;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.logo-side {
  width: 70%;
  background: #fff;
  color: #fff;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 24px;
  z-index: 2;
}
.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
}
.site-logo {
  display: block;
  height: 64px;
  width: auto;
  max-width: min(170px, 48vw);
  object-fit: contain;
}
.menu-side { display: none; color: #000; }
.info-row { display: flex; gap: 28px; color: #000; font-size: .9rem; padding-inline: 24px; margin-bottom: 12px; }
.info-item { display: inline-flex; align-items: center; gap: 8px; }
.info-item i {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
  flex-shrink: 0;
}
.nav-row { display: flex; gap: 26px; font-weight: 700; padding-inline: 24px; }
.nav-row a { transition: color 0.2s ease; }
.nav-row a:hover { color: var(--green); }
.nav-toggle { display: none; }
.mobile-call-btn { display: none !important; }
.nav-toggle-icon { display: block; }
.cta-side {
  position: absolute; left: 0; top: 0; width: 35%; height: 100%; background: #000; clip-path: polygon(0 0,100% 0,85% 100%,0 100%);
  display: none; align-items: center; justify-content: center; z-index: 3;
}
.cta-side a {
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 700;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.cta-side a i {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
  flex-shrink: 0;
}
.cta-side a:hover { background: var(--green-dark); }

.hero {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  height: 500px;
  background: #000;
  overflow: hidden;
}
.hero-unicorn {
  position: absolute;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-unicorn--right {
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-unicorn canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.hero-content { position: relative; height: 100%; z-index: 2; }
.hero-text {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  direction: rtl;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: right;
  margin-right: 0;
  padding: 0 24px;
  color: #fff;
  z-index: 5;
  isolation: isolate;
}
.hero-text::before {
  content: "";
  position: absolute;
  width: min(120%, 620px);
  aspect-ratio: 1;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 45% 45%, rgba(0, 255, 140, 0.2) 0%, rgba(0, 180, 110, 0.08) 38%, transparent 68%);
  pointer-events: none;
  animation: hero-text-aura 9s ease-in-out infinite alternate;
  z-index: -1;
}
@keyframes hero-text-aura {
  0% { opacity: 0.55; transform: translateY(-50%) scale(1); }
  100% { opacity: 1; transform: translateY(-50%) scale(1.08); }
}
@keyframes hero-text-aura-mobile {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0.92; transform: translate(-50%, -50%) scale(1.06); }
}
.hero-text h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  font-size: clamp(2.25rem, 7vw, 5rem);
  line-height: 1.1;
  font-weight: 900;
  max-width: 560px;
  direction: rtl;
  text-align: right;
  unicode-bidi: plaintext;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(0, 255, 140, 0.12),
    0 0 80px rgba(0, 200, 120, 0.08);
}
.hero-text h2 span {
  color: #00ff8c;
  text-shadow:
    0 0 20px rgba(0, 255, 140, 0.55),
    0 0 48px rgba(0, 255, 140, 0.25);
}
.hero-text .btn {
  position: relative;
  z-index: 1;
}
.btn {
  background: var(--green);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  direction: rtl;
  text-align: right;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 255, 140, 0.15);
}
.btn:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 28px rgba(0, 255, 140, 0.22);
  transform: translateY(-1px);
}

.hero-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  height: 100%;
  z-index: 3;
  display: none;
  isolation: isolate;
}
.hero-shape {
  position: absolute;
  inset: 0;
  background: linear-gradient(158deg, #001a12 0%, #00331c 35%, #007a52 62%, #00331c 100%);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  opacity: 0.98;
}
.hero-shape::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.07) 45%, transparent 78%);
  pointer-events: none;
  mix-blend-mode: soft-light;
}
.hero-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 96%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-text::before {
    animation: none;
    opacity: 0.75;
    transform: translateY(-50%) scale(1);
  }
  .hero-text .btn:hover {
    transform: none;
  }
  @media (max-width: 980px) {
    .hero-text::before {
      left: 50%;
      right: auto;
      transform: translate(-50%, -50%) scale(1);
    }
  }
}

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 58% 40% at 12% 6%, rgba(0, 51, 28, 0.045), transparent 62%),
    radial-gradient(ellipse 50% 42% at 88% 88%, rgba(0, 168, 89, 0.05), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #fcfdfd 52%, #ffffff 100%);
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 920 520' fill='none'><rect x='118' y='138' width='244' height='148' rx='14' stroke='%2300331c' stroke-width='7' stroke-opacity='.16'/><path d='M188 316h104M240 286v30' stroke='%2300331c' stroke-width='7' stroke-linecap='round' stroke-opacity='.15'/><rect x='566' y='122' width='166' height='166' rx='20' stroke='%2300a859' stroke-width='7' stroke-opacity='.18'/><path d='M530 178h36M530 232h36M736 178h36M736 232h36M620 88v34M620 288v34' stroke='%2300331c' stroke-width='6' stroke-linecap='round' stroke-opacity='.13'/></svg>"),
    repeating-linear-gradient(-24deg, transparent 0, transparent 14px, rgba(0, 51, 28, 0.04) 14px, rgba(0, 51, 28, 0.04) 15px);
  background-repeat: no-repeat, repeat;
  background-size: min(44vw, 560px) auto, auto;
  background-position: 96% 22%, 0 0;
  mask-image: linear-gradient(180deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  opacity: 1;
  pointer-events: none;
}
.services::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 18% 55%, rgba(0, 168, 89, 0.09), transparent 62%),
    radial-gradient(ellipse 45% 40% at 88% 30%, rgba(0, 51, 28, 0.06), transparent 55%),
    radial-gradient(circle at 22% 28%, rgba(0, 168, 89, 0.09) 0 2.5px, transparent 2.5px) 0 0 / 32px 32px,
    radial-gradient(circle at 66% 62%, rgba(0, 51, 28, 0.055) 0 2px, transparent 2px) 0 0 / 26px 26px;
  opacity: 0.75;
  pointer-events: none;
}
.services .container {
  position: relative;
  z-index: 1;
}
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { margin: 0; font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: #0a2540; }
.services .section-head h2,
.process .section-head h2 {
  color: #00331c;
}
.section-head h3 { margin: 0 0 8px; color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.line { width: 64px; height: 6px; background: var(--green); border-radius: 999px; margin: 20px auto; }
.section-head p { max-width: 700px; margin: 0 auto; color: #5f6b76; font-size: 1.1rem; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: #fff;
  border: 1px solid #edf0f3;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: box-shadow 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.service-card img { width: 100%; height: 240px; object-fit: cover; display: block; }
.service-card .icon {
  position: absolute; left: 16px; top: 16px; width: 48px; height: 48px; border-radius: 12px;
  background: #fff; display: grid; place-items: center; box-shadow: 0 8px 16px rgba(0,0,0,.15);
}
.service-card .icon i {
  width: 24px;
  height: 24px;
  stroke-width: 2.1;
  color: var(--green);
}
.card-body { padding: 28px; text-align: center; }
.card-body h3 { margin: 0 0 12px; font-size: 1.5rem; }
.card-body p { margin: 0; color: #5f6b76; line-height: 1.7; }

.about {
  position: relative;
  background: #000;
  color: #fff;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 560 420' fill='none'><g stroke-linecap='round' stroke-linejoin='round'><rect x='40' y='72' width='268' height='174' rx='16' stroke='%23ffffff' stroke-width='4' stroke-opacity='.1'/><path d='M40 118h268' stroke='%23ffffff' stroke-width='3' stroke-opacity='.07'/><rect x='72' y='142' width='204' height='76' rx='8' stroke='%2300ff8c' stroke-width='3' stroke-opacity='.14'/><path d='M88 170h56M88 194h120' stroke='%23ffffff' stroke-width='3' stroke-opacity='.08'/><path d='M174 262h28c10 0 18 8 18 18v8H136v-8c0-10 8-18 18-18z' stroke='%23ffffff' stroke-width='3' stroke-opacity='.08'/><circle cx='420' cy='118' r='52' stroke='%2300ff8c' stroke-width='4' stroke-opacity='.12'/><path d='M396 118l14 16 32-36' stroke='%2300ff8c' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.16'/><path d='M360 220h168M360 252h112M360 284h144' stroke='%23ffffff' stroke-width='3' stroke-opacity='.06'/><rect x='400' y='300' width='100' height='56' rx='10' stroke='%23ffffff' stroke-width='3' stroke-opacity='.07'/><path d='M418 322h64M418 338h40' stroke='%23ffffff' stroke-width='2' stroke-opacity='.06'/></g></svg>"),
    radial-gradient(ellipse 80% 70% at 15% 45%, rgba(0, 255, 140, 0.07), transparent 55%),
    radial-gradient(circle at 22% 35%, rgba(255, 255, 255, 0.05) 0 1.5px, transparent 1.5px) 0 0 / 26px 26px;
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: min(42vw, 480px) auto, auto, auto;
  background-position: 8% 50%, 0 0, 0 0;
  mask-image: linear-gradient(90deg, #000 0%, #000 55%, transparent 88%);
  opacity: 1;
}
.about::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(-32deg, transparent 0, transparent 14px, rgba(255, 255, 255, 0.04) 14px, rgba(255, 255, 255, 0.04) 15px),
    radial-gradient(ellipse 50% 40% at 92% 18%, rgba(0, 255, 140, 0.04), transparent 60%);
  opacity: 0.95;
}
.about-slant {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 360' fill='none'><g stroke-linecap='round' stroke-linejoin='round'><rect x='220' y='64' width='200' height='132' rx='12' stroke='%23ffffff' stroke-width='3' stroke-opacity='.1'/><path d='M220 104h200M248 88h32' stroke='%23ffffff' stroke-width='2' stroke-opacity='.08'/><rect x='256' y='124' width='128' height='52' rx='6' stroke='%2300ff8c' stroke-width='2' stroke-opacity='.18'/><circle cx='118' cy='200' r='56' stroke='%23ffffff' stroke-width='3' stroke-opacity='.08'/><rect x='86' y='168' width='64' height='64' rx='10' stroke='%2300ff8c' stroke-width='3' stroke-opacity='.14'/><path d='M118 152v-28M118 248v28M54 200h28M154 200h28' stroke='%23ffffff' stroke-width='2' stroke-opacity='.07'/></g></svg>")
      85% 42% / min(38vw, 400px) no-repeat,
    radial-gradient(ellipse 90% 70% at 88% 12%, rgba(0, 255, 140, 0.12), transparent 52%),
    radial-gradient(ellipse 65% 55% at 25% 88%, rgba(0, 90, 60, 0.45), transparent 55%),
    radial-gradient(circle at 70% 55%, rgba(255, 255, 255, 0.04), transparent 38%),
    linear-gradient(158deg, #001f14 0%, var(--green) 38%, #002a1a 72%, #001208 100%);
  overflow: hidden;
}
.about-slant::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -22deg,
    transparent 0,
    transparent 5px,
    rgba(255, 255, 255, 0.05) 5px,
    rgba(255, 255, 255, 0.05) 6px
  );
  mix-blend-mode: overlay;
  pointer-events: none;
}
.about-slant::after {
  content: "";
  position: absolute;
  inset: -35% -20%;
  background:
    radial-gradient(ellipse 55% 45% at 45% 35%, rgba(0, 255, 140, 0.1), transparent 60%),
    radial-gradient(ellipse 40% 40% at 75% 70%, rgba(0, 200, 120, 0.08), transparent 55%);
  animation: about-slant-shift 16s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes about-slant-shift {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0.75; }
  100% { transform: translate(-3%, 4%) rotate(1.5deg); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .about-slant::after { animation: none; opacity: 0.88; transform: none; }
}
.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.about-text { max-width: 500px; }
.about-text h3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 10px 22px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.98);
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 0.82rem;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.45),
    0 0 24px rgba(0, 255, 140, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 255, 140, 0.35),
    0 0 18px rgba(0, 255, 140, 0.4),
    0 0 36px rgba(0, 255, 140, 0.22),
    0 0 56px rgba(255, 255, 255, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.25);
  animation: about-h3-glow 2.6s ease-in-out infinite alternate;
}
@keyframes about-h3-glow {
  0% {
    box-shadow:
      0 0 0 1px rgba(0, 255, 140, 0.22),
      0 0 12px rgba(0, 255, 140, 0.28),
      0 0 28px rgba(0, 255, 140, 0.14),
      0 0 44px rgba(255, 255, 255, 0.06),
      0 10px 28px rgba(0, 0, 0, 0.25);
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.35),
      0 0 18px rgba(0, 255, 140, 0.22);
  }
  100% {
    box-shadow:
      0 0 0 1px rgba(0, 255, 140, 0.5),
      0 0 26px rgba(0, 255, 140, 0.55),
      0 0 48px rgba(0, 255, 140, 0.28),
      0 0 72px rgba(255, 255, 255, 0.14),
      0 10px 28px rgba(0, 0, 0, 0.25);
    text-shadow:
      0 0 16px rgba(255, 255, 255, 0.55),
      0 0 32px rgba(0, 255, 140, 0.42);
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-text h3 {
    animation: none;
    box-shadow:
      0 0 0 1px rgba(0, 255, 140, 0.35),
      0 0 20px rgba(0, 255, 140, 0.38),
      0 0 40px rgba(0, 255, 140, 0.2),
      0 0 56px rgba(255, 255, 255, 0.1),
      0 10px 28px rgba(0, 0, 0, 0.25);
  }
}
.about-intro {
  margin: 0 0 28px;
  font-size: clamp(1.12rem, 2.2vw, 1.35rem);
  line-height: 1.75;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  max-width: 34em;
}
.feature { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.feature span { color: #00ff8c; font-weight: 900; margin-top: 2px; font-size: 1.3rem; line-height: 1; }
.feature-icon { display: inline-flex; align-items: center; justify-content: center; }
.feature-icon i {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}
.feature strong { display: block; font-size: 1.35rem; margin-bottom: 4px; }
.feature p { margin: 0; color: rgba(255,255,255,.75); }
.white-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  background: #fff;
  color: var(--green);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.white-btn:hover { background: #f3f4f6; }
.white-btn-wa-icon { flex-shrink: 0; color: #25d366; }
.about-image-wrap { position: relative; max-width: 560px; margin-inline-start: auto; }
.about-image-wrap img {
  width: 100%;
  max-height: 560px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid rgba(255,255,255,.1);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.badge-box {
  position: absolute; right: -24px; bottom: -24px; background: #fff; color: #000; border-radius: 18px;
  padding: 14px 16px; display: flex; align-items: center; gap: 12px; box-shadow: 0 16px 30px rgba(0,0,0,.25);
}
.badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}
.badge-icon i {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}
.badge-content div { font-size: 2rem; font-weight: 900; line-height: 1; }
.badge-content span { color: #6b7280; margin-top: 4px; display: block; }

.process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 8% 92%, rgba(0, 168, 89, 0.04), transparent 58%),
    radial-gradient(ellipse 50% 40% at 96% 12%, rgba(0, 51, 28, 0.04), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fdfefe 45%, #ffffff 100%);
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 960 340' fill='none'><g stroke-linecap='round' stroke-linejoin='round'><rect x='36' y='52' width='300' height='210' rx='18' stroke='%2300331c' stroke-width='7' stroke-opacity='.17'/><path d='M36 102h300' stroke='%2300331c' stroke-width='5' stroke-opacity='.12'/><circle cx='64' cy='78' r='7' fill='%2300a859' fill-opacity='.28'/><circle cx='92' cy='78' r='7' fill='%2300331c' fill-opacity='.12'/><circle cx='120' cy='78' r='7' fill='%2300331c' fill-opacity='.08'/><path d='M64 134h168M64 166h220M64 198h142' stroke='%2300331c' stroke-width='5' stroke-opacity='.14'/><path d='M64 232h18l-9 14-9-14' stroke='%2300a859' stroke-width='6' stroke-opacity='.22'/><path d='M94 238h160' stroke='%2300331c' stroke-width='4' stroke-opacity='.11'/><rect x='400' y='88' width='132' height='132' rx='16' stroke='%2300a859' stroke-width='7' stroke-opacity='.2'/><rect x='444' y='132' width='44' height='44' rx='8' stroke='%2300331c' stroke-width='6' stroke-opacity='.22'/><path d='M400 118H340V70M532 118h52v-46M532 190h72v52M400 190H332v56' stroke='%2300331c' stroke-width='6' stroke-opacity='.14'/><path d='M620 118h52l28-28M672 118v56l40 40M712 214h88M800 118v96' stroke='%2300331c' stroke-width='5' stroke-opacity='.12'/><rect x='612' y='102' width='14' height='14' rx='3' fill='%2300a859' fill-opacity='.2' stroke='%2300331c' stroke-width='3' stroke-opacity='.18'/><rect x='696' y='198' width='14' height='14' rx='3' fill='%2300a859' fill-opacity='.16' stroke='%2300331c' stroke-width='3' stroke-opacity='.18'/><rect x='784' y='102' width='14' height='14' rx='3' fill='%2300a859' fill-opacity='.16' stroke='%2300331c' stroke-width='3' stroke-opacity='.18'/><rect x='872' y='246' width='14' height='14' rx='3' fill='%2300a859' fill-opacity='.18' stroke='%2300331c' stroke-width='3' stroke-opacity='.18'/><path d='M626 109h58M703 205l76-90M791 109l74 74M888 253V128' stroke='%2300331c' stroke-width='4' stroke-opacity='.1' stroke-dasharray='10 14'/><rect x='720' y='40' width='200' height='56' rx='12' stroke='%2300331c' stroke-width='5' stroke-opacity='.11'/><path d='M744 64h152M744 82h96' stroke='%2300331c' stroke-width='4' stroke-opacity='.1'/></g></svg>");
  background-repeat: no-repeat;
  background-size: min(92vw, 980px) auto;
  background-position: 50% 52%;
  mask-image: linear-gradient(180deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  opacity: 0.48;
  pointer-events: none;
}
.process::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 23px, rgba(0, 51, 28, 0.04) 23px, rgba(0, 51, 28, 0.04) 24px),
    repeating-linear-gradient(90deg, transparent 0, transparent 23px, rgba(0, 168, 89, 0.035) 23px, rgba(0, 168, 89, 0.035) 24px),
    radial-gradient(circle at 18% 22%, rgba(0, 168, 89, 0.085) 0 2.5px, transparent 2.5px) 0 0 / 34px 34px,
    radial-gradient(circle at 72% 58%, rgba(0, 51, 28, 0.055) 0 2px, transparent 2px) 0 0 / 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}
.process .container {
  position: relative;
  z-index: 1;
}
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; position: relative; }
.steps::before { content: ""; position: absolute; top: 38px; left: 0; width: 100%; height: 2px; background: #eef1f3; z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; }
.num {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #fff;
  border: 4px solid #f3f4f6;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
  color: var(--green);
  font-weight: 900;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover .num {
  border-color: var(--green);
  transform: scale(1.1);
}
.step h4 { margin: 0 0 10px; font-size: 1.2rem; }
.step p { margin: 0; color: #6b7280; line-height: 1.7; }

.testimonials {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 60% at 12% 18%, rgba(0, 51, 28, 0.07), transparent 55%),
    radial-gradient(ellipse 65% 55% at 94% 78%, rgba(0, 168, 89, 0.09), transparent 52%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.85), transparent 42%),
    linear-gradient(168deg, #eef2f5 0%, #f4f8f6 38%, #eef5f0 72%, #f2f5f8 100%);
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 820 440' fill='none'><g stroke-linecap='round' stroke-linejoin='round'><path d='M52 88h248a24 24 0 0 1 24 24v112a24 24 0 0 1-24 24h-90l-42 38 12-38H52a24 24 0 0 1-24-24V112a24 24 0 0 1 24-24z' stroke='%2300331c' stroke-width='6' stroke-opacity='.15'/><path d='M72 142h196M72 176h158M72 210h108' stroke='%2300331c' stroke-width='4' stroke-opacity='.1'/><path d='M348 156h196a20 20 0 0 1 20 20v76a20 20 0 0 1-20 20h-58l-34 28 10-28h-114a20 20 0 0 1-20-20v-76a20 20 0 0 1 20-20z' stroke='%2300a859' stroke-width='5' stroke-opacity='.14'/><path d='M368 202h156M368 234h100' stroke='%2300331c' stroke-width='3' stroke-opacity='.09'/><circle cx='576' cy='118' r='5' fill='%23facc15' fill-opacity='.38'/><circle cx='598' cy='118' r='5' fill='%23facc15' fill-opacity='.38'/><circle cx='620' cy='118' r='5' fill='%23facc15' fill-opacity='.38'/><circle cx='642' cy='118' r='5' fill='%23facc15' fill-opacity='.38'/><circle cx='664' cy='118' r='5' fill='%23facc15' fill-opacity='.38'/><path d='M556 132h128' stroke='%2300331c' stroke-width='3' stroke-opacity='.08'/><circle cx='132' cy='328' r='34' stroke='%2300331c' stroke-width='4' stroke-opacity='.11'/><circle cx='132' cy='318' r='14' fill='%2300331c' fill-opacity='.06'/><path d='M132 352c-28 0-52 15-52 34' stroke='%2300331c' stroke-width='3' stroke-opacity='.09'/><circle cx='236' cy='328' r='34' stroke='%2300331c' stroke-width='4' stroke-opacity='.09'/><circle cx='236' cy='318' r='14' fill='%2300331c' fill-opacity='.05'/><circle cx='340' cy='328' r='34' stroke='%2300331c' stroke-width='4' stroke-opacity='.09'/><path d='M472 300h248a18 18 0 0 1 18 18v72a18 18 0 0 1-18 18H472a18 18 0 0 1-18-18v-72a18 18 0 0 1 18-18z' stroke='%2300331c' stroke-width='5' stroke-opacity='.11'/><path d='M496 338h196M496 368h132' stroke='%2300331c' stroke-width='3' stroke-opacity='.08'/><circle cx='508' cy='324' r='4' fill='%23facc15' fill-opacity='.32'/><circle cx='522' cy='324' r='4' fill='%23facc15' fill-opacity='.32'/><circle cx='536' cy='324' r='4' fill='%23facc15' fill-opacity='.32'/><circle cx='550' cy='324' r='4' fill='%23facc15' fill-opacity='.32'/><circle cx='564' cy='324' r='4' fill='%23facc15' fill-opacity='.32'/></g></svg>"),
    radial-gradient(rgba(0, 51, 28, 0.055) 1px, transparent 1px);
  background-repeat: no-repeat, repeat;
  background-position: 4% 16%, 0 0;
  background-size: min(44vw, 520px) auto, 20px 20px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  opacity: 0.92;
  pointer-events: none;
}
.testimonials::after {
  content: "";
  position: absolute;
  inset: -40% -15%;
  z-index: 0;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 340' fill='none'><g stroke-linecap='round' stroke-linejoin='round'><path d='M64 72h228a16 16 0 0 1 16 16v118a16 16 0 0 1-16 16H64a16 16 0 0 1-16-16V88a16 16 0 0 1 16-16z' stroke='%2300331c' stroke-width='5' stroke-opacity='.12'/><path d='M88 108h180M88 138h140M88 168h100' stroke='%2300331c' stroke-width='3' stroke-opacity='.08'/><circle cx='98' cy='96' r='4' fill='%23facc15' fill-opacity='.35'/><circle cx='112' cy='96' r='4' fill='%23facc15' fill-opacity='.35'/><circle cx='126' cy='96' r='4' fill='%23facc15' fill-opacity='.35'/><circle cx='140' cy='96' r='4' fill='%23facc15' fill-opacity='.35'/><circle cx='154' cy='96' r='4' fill='%23facc15' fill-opacity='.35'/><path d='M92 220h228a16 16 0 0 1 16 16v98a16 16 0 0 1-16 16H92a16 16 0 0 1-16-16v-98a16 16 0 0 1 16-16z' stroke='%2300a859' stroke-width='5' stroke-opacity='.13'/><path d='M112 256h188M112 286h120' stroke='%2300331c' stroke-width='3' stroke-opacity='.08'/><path d='M320 48c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64z' stroke='%2300331c' stroke-width='4' stroke-opacity='.1'/><path d='M292 118h56M320 90v56' stroke='%2300331c' stroke-width='3' stroke-opacity='.08'/><path d='M380 200h96a12 12 0 0 1 12 12v40a12 12 0 0 1-12 12h-24l-16 18 4-18h-60a12 12 0 0 1-12-12v-40a12 12 0 0 1 12-12z' stroke='%2300331c' stroke-width='4' stroke-opacity='.11'/></g></svg>") 88% 62% / min(34vw, 400px) auto no-repeat,
    radial-gradient(ellipse 48% 42% at 68% 28%, rgba(0, 168, 89, 0.11), transparent 58%),
    radial-gradient(ellipse 42% 38% at 22% 72%, rgba(0, 51, 28, 0.06), transparent 55%);
  animation: testimonials-glow 20s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes testimonials-glow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.65; }
  100% { transform: translate(-3%, 4%) scale(1.06); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials::after {
    animation: none;
    opacity: 0.82;
    transform: none;
  }
}
.testimonials .container {
  position: relative;
  z-index: 1;
}
.test-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 20px; }
.test-head h3 { margin: 0 0 8px; color: var(--green); text-transform: uppercase; letter-spacing: 1px; }
.test-head h2 { margin: 0; font-size: clamp(2rem,4vw,3rem); }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.test-grid article.test-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #fff 0%, #f6fff9 100%);
  border: 1px solid #e8f0eb;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 18px rgba(0, 168, 89, 0.08);
  transition: box-shadow 0.2s ease;
}
.test-grid article.test-card::before {
  content: "\201C";
  position: absolute;
  top: 18px;
  inset-inline-end: 22px;
  font-size: 3.25rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green);
  opacity: 0.12;
  pointer-events: none;
}
.test-grid article.test-card:hover {
  box-shadow: 0 12px 28px -4px rgba(0, 168, 89, 0.16), 0 4px 8px -2px rgba(0, 0, 0, 0.06);
}
.stars { color: #facc15; letter-spacing: 2px; margin-bottom: 14px; }
.test-grid article.test-card p {
  flex: 1 1 auto;
  margin: 0;
  color: #374151;
  line-height: 1.8;
  font-size: 1.02rem;
}
.test-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e8f0eb;
}
.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(0, 168, 89, 0.22);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.test-author { flex: 1; min-width: 0; }
.test-author strong {
  display: block;
  font-size: 1.05rem;
  color: #111827;
}
.test-author span {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 0.92rem;
}

.contact {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse 95% 85% at 100% -15%, rgba(0, 255, 190, 0.18), transparent 52%),
    radial-gradient(ellipse 75% 70% at 0% 110%, rgba(0, 180, 120, 0.14), transparent 48%),
    radial-gradient(ellipse 55% 50% at 42% 38%, rgba(255, 255, 255, 0.06), transparent 58%),
    linear-gradient(152deg, #001207 0%, #002919 22%, #00331c 45%, #015c3d 68%, #002a1c 100%);
}
.contact::before {
  content: "";
  position: absolute;
  inset: -55%;
  z-index: 0;
  background: conic-gradient(
    from 200deg at 50% 50%,
    rgba(0, 255, 180, 0.09) 0deg,
    transparent 55deg,
    rgba(0, 220, 150, 0.06) 120deg,
    transparent 200deg,
    rgba(0, 255, 210, 0.07) 280deg,
    transparent 360deg
  );
  animation: none;
  transform: none;
  pointer-events: none;
}
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: repeating-linear-gradient(
    -36deg,
    transparent 0,
    transparent 36px,
    rgba(255, 255, 255, 0.022) 36px,
    rgba(255, 255, 255, 0.022) 37px
  );
  mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, #000 0%, transparent 72%);
  pointer-events: none;
  opacity: 0.85;
}
@media (prefers-reduced-motion: reduce) {
  .contact::before {
    animation: none;
    transform: none;
    opacity: 0.65;
  }
}
.circles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.circles::before,
.circles::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 36px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    inset 0 0 70px rgba(0, 255, 180, 0.1),
    0 0 100px rgba(0, 255, 170, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}
.circles::before { right: -140px; top: -140px; }
.circles::after { left: -140px; bottom: -140px; }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.contact h2 { margin: 0 0 20px; font-size: clamp(2rem,4vw,3rem); }
.contact p { color: rgba(255,255,255,.85); line-height: 1.8; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.contact-card-cell {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 14px;
}
.contact-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.18);
  border-radius: 10px;
  color: #fff;
}
.contact-card-icon svg,
.contact-card-icon i {
  width: 22px;
  height: 22px;
}
.contact-card-body { min-width: 0; flex: 1; }
.contact-card-body strong {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: 0.85rem;
}
.contact-card-body span { font-size: 1.1rem; font-weight: 700; }

.wa-box { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 40px rgba(0,0,0,.25); }
.wa-head {
  background: #075e54;
  color: #fff;
  padding: 14px 18px;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.wa-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  padding: 4px;
  box-sizing: border-box;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}
.wa-head-text { display: flex; flex-direction: column; min-width: 0; }
.wa-head small { color: rgba(255,255,255,.75); font-weight: 500; margin-top: 2px; }
.wa-chat {
  background: #e5ddd5 url("https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png") center/cover no-repeat;
  min-height: 170px; padding: 18px;
}
.wa-chat div { background: #fff; color: #1f2937; border-radius: 16px 16px 16px 4px; padding: 12px; max-width: 84%; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.wa-chat-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
  color: var(--green);
  vertical-align: text-bottom;
  margin-inline-start: 6px;
}
.wa-action { padding: 18px; }
.wa-action a {
  display: block;
  text-align: center;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
}
.wa-action a:hover { background: #1da851; }
.wa-action p { margin: 10px 0 0; text-align: center; color: #6b7280; font-size: .9rem; }

.footer {
  position: relative;
  background: linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 0 0 28px;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green), rgba(0, 255, 140, 0.35), transparent);
  opacity: 0.9;
  pointer-events: none;
}
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 45% at 15% 0%, rgba(0, 255, 140, 0.06), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.foot-inner {
  position: relative;
  z-index: 1;
  padding: 52px 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.foot-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 340px;
}
.foot-logo-link {
  display: inline-flex;
  border-radius: 14px;
  padding: 6px;
  margin: -6px;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.foot-logo-link:hover {
  box-shadow: 0 0 0 1px rgba(0, 255, 140, 0.35), 0 12px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}
.foot-logo-img {
  height: 72px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
}
.foot-tagline {
  margin: 0;
  line-height: 1.65;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}
.foot-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.foot-wa:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}
.foot-wa i,
.foot-wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.foot-col {
  padding-top: 4px;
}
.foot-heading {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.foot-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.foot-list-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}
.foot-list-icon i,
.foot-list-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}
.foot-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.foot-link:hover {
  color: #fff;
  border-bottom-color: rgba(0, 255, 140, 0.45);
}
.foot-list--contact .foot-link {
  color: rgba(255, 255, 255, 0.92);
}
.copyright {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  padding: 22px 0 0;
  margin-top: 0;
}
.copyright-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}
.copyright-text {
  margin: 0;
}
.copyright-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.copyright-nav a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
.copyright-nav a:hover {
  color: var(--green);
}
.copyright-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .hero { height: 600px; }
  .hero-text { width: 100%; padding: 0 64px; }
  .hero-text h2 { max-width: 500px; }
}

@media (min-width: 1024px) {
  .top-header { height: 112px; }
  .logo-side { width: 30%; padding-inline: 48px; justify-content: center; }
  .site-logo { height: 92px; max-width: 200px; }
  .menu-side { flex: 1; display: flex; flex-direction: column; justify-content: center; z-index: 2; }
  .cta-side { display: flex; }
  .hero { height: 800px; }
  .hero-unicorn--right {
    inset: unset;
    left: 45%;
    right: 0;
    top: 0;
    bottom: 0;
    width: auto;
    height: auto;
  }
  .hero-text {
    width: 50%;
    right: 0;
    left: auto;
    top: 0;
    padding: 0 96px 0 64px;
    align-items: flex-start;
    text-align: right;
  }
  .hero-image { display: block; }
}

@media (max-width: 980px) {
  .hero-text { position: relative; width: 100%; top: auto; right: auto; }
  .top-header {
    height: auto;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    min-height: 64px;
    position: relative;
  }
  .logo-side {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    max-width: min(280px, calc(100% - 120px));
    flex: none;
    clip-path: none;
    background: transparent;
    box-shadow: none;
    justify-content: center;
    padding: 10px 12px;
    z-index: 1;
    pointer-events: none;
  }
  .logo-side .logo-wrap {
    pointer-events: auto;
    width: auto;
  }
  .menu-side {
    display: flex;
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
    padding: 10px max(12px, env(safe-area-inset-right, 0px)) 10px max(12px, env(safe-area-inset-left, 0px));
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
    z-index: 5;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    margin-inline-start: 12px;
    margin-inline-end: 8px;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  }
  .mobile-call-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 92px;
    height: 44px;
    padding: 0 14px;
    margin: 0;
    position: absolute;
    left: max(12px, env(safe-area-inset-left, 0px));
    top: 50%;
    transform: translateY(-50%);
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 8px 18px rgba(0, 51, 28, 0.22);
  }
  .mobile-call-btn i {
    width: 16px;
    height: 16px;
    stroke-width: 2.4;
    flex-shrink: 0;
  }
  .nav-toggle-icon {
    position: relative;
    width: 18px;
    height: 2px;
    background: #111;
    border-radius: 999px;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #111;
    border-radius: 999px;
    transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
  }
  .nav-toggle-icon::before { top: -6px; }
  .nav-toggle-icon::after { top: 6px; }

  /* collapse nav on mobile */
  .info-row,
  .nav-row { display: none; }

  .top-header.nav-open .menu-side {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: linear-gradient(180deg, #0c0c0c 0%, #040404 100%);
    padding-top: max(82px, calc(48px + env(safe-area-inset-top, 0px)));
    padding-right: max(18px, env(safe-area-inset-right, 0px));
    padding-left: max(18px, env(safe-area-inset-left, 0px));
    padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
  }

  .top-header.nav-open .nav-row,
  .top-header.nav-open .info-row { display: flex; }
  .top-header.nav-open .nav-toggle-icon { background: transparent; }
  .top-header.nav-open .nav-toggle-icon::before { top: 0; transform: rotate(45deg); }
  .top-header.nav-open .nav-toggle-icon::after { top: 0; transform: rotate(-45deg); }
  .top-header.nav-open .nav-toggle {
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    margin: 0;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2100;
  }
  .top-header.nav-open .mobile-call-btn {
    position: fixed;
    top: max(14px, env(safe-area-inset-top, 0px));
    left: max(12px, env(safe-area-inset-left, 0px));
    margin: 0;
    transform: none;
    z-index: 2100;
    background: rgba(0, 51, 28, 0.92);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  }
  .top-header.nav-open .nav-toggle-icon,
  .top-header.nav-open .nav-toggle-icon::before,
  .top-header.nav-open .nav-toggle-icon::after {
    background: #fff;
  }

  .info-row, .nav-row {
    justify-content: center;
    width: 100%;
    gap: 14px;
    padding-inline: 6px;
  }
  .top-header.nav-open .info-row {
    order: 2;
    margin: 0 0 16px;
    flex-direction: column;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
  }
  .top-header.nav-open .nav-row {
    order: 1;
    flex-direction: column;
    align-items: stretch;
    margin: 0 0 12px;
    gap: 10px;
  }
  .top-header.nav-open .nav-row a {
    color: #fff;
    text-align: center;
    font-size: 1.08rem;
    font-weight: 800;
    padding: 13px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .top-header.nav-open .nav-row a:hover {
    background: rgba(0, 255, 140, 0.16);
    color: #fff;
  }

  .cta-side {
    position: static;
    display: none;
    width: 100%;
    height: auto;
    background: transparent;
    clip-path: none;
    padding: 8px 0 0;
  }
  .top-header.nav-open .cta-side { display: flex; order: 3; }
  .cta-side a {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    min-height: 48px;
    align-items: center;
  }

  .hero {
    height: auto;
    min-height: min(520px, 88vh);
    min-height: min(520px, 88dvh);
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: min(520px, 88vh);
    min-height: min(520px, 88dvh);
  }
  .hero-unicorn--right {
    left: 0;
    right: 0;
    width: 100%;
  }
  .hero-text {
    position: relative;
    width: 100%;
    max-width: 640px;
    height: auto;
    margin-inline: auto;
    padding-top: max(52px, calc(env(safe-area-inset-top, 0px) + 28px));
    padding-bottom: max(44px, env(safe-area-inset-bottom, 0px));
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .hero-text h2 {
    font-size: clamp(2rem, 9vw, 3.1rem);
    line-height: 1.14;
    text-align: center;
    margin-inline: auto;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .hero-text::before {
    left: 50%;
    right: auto;
    top: 44%;
    width: min(150%, 540px);
    transform: translate(-50%, -50%);
    animation: hero-text-aura-mobile 9s ease-in-out infinite alternate;
  }

  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .service-card img { height: 210px; }
  .card-body { padding: 22px 18px; }
  .card-body h3 { font-size: 1.25rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; max-width: 100%; }
  .about-text, .about-image-wrap { max-width: 100%; }
  .about-slant { display: none; }
  .about { overflow: visible; }
  .about::before { mask-image: none; opacity: 0.8; }
  .about::after { opacity: 0.65; }
  .about-text h3 { font-size: 0.76rem; padding: 9px 18px; }
  .about-image-wrap {
    margin-inline: auto;
    max-width: min(560px, 100%);
    overflow: visible;
  }
  .about-image-wrap img {
    width: 100%;
    max-height: 560px;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
  }
  .badge-box {
    position: absolute;
    left: auto;
    right: -18px;
    bottom: -18px;
    margin: 0;
    max-width: calc(100% - 24px);
  }
  .steps { grid-template-columns: repeat(2,1fr); }
  .steps::before { display: none; }
  .step h4 { font-size: 1.05rem; }
  .step p { font-size: 0.95rem; }
  .test-head { flex-direction: column; align-items: flex-start; margin-bottom: 28px; }
  .test-grid article.test-card { padding: 22px; }
  .test-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact { padding-top: 82px; }
  .contact::after { opacity: 0.5; }
  .circles { display: none; }
  .contact h2 { font-size: clamp(1.8rem, 7.4vw, 2.5rem); }
  .contact-card-body span { font-size: 1rem; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-brand { max-width: none; }
  .foot-wa { width: 100%; justify-content: center; }
  .copyright-inner { flex-direction: column; text-align: center; justify-content: center; }
  .white-btn,
  .foot-wa,
  .wa-action a,
  .copyright-nav a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .copyright-nav { justify-content: center; }
  .copyright-nav a { padding: 8px 12px; }
  .contact-card-cell { min-height: 52px; }
  .foot-list a.foot-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-block: 4px;
  }
}

@media (max-width: 640px) {
  .container { width: min(1200px, calc(100% - 32px)); }
  .section { padding: 64px 0; }
  .top-header { box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08); }
  .site-logo { height: 58px; }
  .info-row { font-size: 0.8rem; gap: 10px; }
  .nav-row { font-size: 0.92rem; gap: 10px; }
  .hero {
    min-height: min(480px, 85vh);
    min-height: min(480px, 85dvh);
  }
  .hero-content {
    min-height: min(480px, 85vh);
    min-height: min(480px, 85dvh);
  }
  .hero-text { padding: 50px 16px 32px; }
  .hero-text h2 { font-size: clamp(1.75rem, 10vw, 2.55rem); }
  .btn { width: 100%; justify-content: center; text-align: center; }
  .section-head p { font-size: 1rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .service-card img { height: 195px; }
  .card-body { padding: 20px 16px; }
  .about { background: #0f0f0f; }
  .about::before,
  .about::after { opacity: 0.45; }
  .about-text h3 { font-size: 0.72rem; }
  .about-text p,
  .feature p { font-size: 0.95rem; line-height: 1.65; }
  .badge-box {
    right: -14px;
    bottom: -14px;
    max-width: min(280px, calc(100vw - 48px));
  }
  .feature { gap: 10px; }
  .feature-icon { width: 44px; height: 44px; }
  .num { width: 66px; height: 66px; margin-bottom: 14px; }
  .test-head h2 { font-size: clamp(1.6rem, 8vw, 2.1rem); }
  .test-grid article.test-card { padding: 18px; }
  .test-grid article.test-card p { font-size: 0.96rem; }
  .contact-grid { gap: 24px; }
  .contact-cards { margin-top: 14px; }
  .contact-card-cell { padding: 12px; }
  .wa-head { padding: 12px 14px; }
  .wa-chat { min-height: 140px; padding: 14px; }
  .wa-action { padding: 14px; }
  .wa-box { border-radius: 14px; }
  .foot-inner { padding: 40px 0 30px; }
  .foot-heading { margin-bottom: 12px; font-size: 0.76rem; }
  .foot-list li { font-size: 0.9rem; }
  .foot-list-icon { width: 34px; height: 34px; }
  .foot-list-icon i,
  .foot-list-icon svg { width: 16px; height: 16px; }
  .steps { grid-template-columns: 1fr; }
  .copyright { padding-top: 16px; }
  .copyright-inner { font-size: 0.82rem; gap: 10px 16px; }
}

@media (max-width: 420px) {
  .hero-text { padding: 44px 14px 28px; }
  .hero-text h2 { font-size: clamp(1.6rem, 10.5vw, 2.2rem); }
  .cta-side { padding-inline: 12px; }
  .cta-side a { padding: 11px 14px; font-size: 0.92rem; }
  .info-row, .nav-row { padding-inline: 10px; }
  .section { padding: 56px 0; }
  .card-body h3 { font-size: 1.12rem; }
  .foot-wa { font-size: 0.84rem; padding: 10px 14px; }
}

/* Legal / terms page — same white + decorative layers as .services */
.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 50vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 58% 40% at 12% 6%, rgba(0, 51, 28, 0.045), transparent 62%),
    radial-gradient(ellipse 50% 42% at 88% 88%, rgba(0, 168, 89, 0.05), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #fcfdfd 52%, #ffffff 100%);
}
.legal-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 18% 55%, rgba(0, 168, 89, 0.09), transparent 62%),
    radial-gradient(ellipse 45% 40% at 88% 30%, rgba(0, 51, 28, 0.06), transparent 55%),
    radial-gradient(circle at 22% 28%, rgba(0, 168, 89, 0.09) 0 2.5px, transparent 2.5px) 0 0 / 32px 32px,
    radial-gradient(circle at 66% 62%, rgba(0, 51, 28, 0.055) 0 2px, transparent 2px) 0 0 / 26px 26px;
  opacity: 0.75;
  pointer-events: none;
}
.legal-page .container {
  position: relative;
  z-index: 1;
}
.legal-doc {
  max-width: 42rem;
  margin: 0 auto;
  padding: clamp(8px, 2vw, 16px) 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.legal-doc h1 {
  margin: 0 0 8px;
  padding-bottom: 16px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 900;
  color: var(--green);
  border-bottom: 1px solid rgba(0, 51, 28, 0.14);
}
.legal-updated {
  margin: 16px 0 28px;
  font-size: 0.9rem;
  color: #5f6b76;
}
.legal-doc h2 {
  margin: 28px 0 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-dark);
}
.legal-doc p,
.legal-doc li {
  margin: 0 0 12px;
  line-height: 1.75;
  font-size: 1rem;
  color: #222;
}
.legal-doc ul {
  margin: 0 0 16px;
  padding-inline-start: 1.25rem;
}
.legal-doc li { margin-bottom: 8px; }
.legal-doc a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-doc a:hover {
  color: var(--green-dark);
}
.copyright-nav a[aria-current="page"] {
  font-weight: 700;
  color: var(--green);
}

body.mobile-nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}
