*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── CSS VARIABLES ── */
:root {
  --green: #1a5c38;
  --lime: #4caf50;
  --dark: #0d1f15;
  --mid: #163326;
  --gold: #c9a84c;
  --gray1: #f0f7f2;
  --text: #374151;
  --muted: #6b7280;
  --r: 16px;
  --sh: 0 4px 24px rgba(0, 0, 0, .08);
  --shg: 0 20px 50px rgba(26, 92, 56, .18);
  --max: 1200px;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

.sec {
  padding: 96px 0;
}

.g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  overflow: visible;
}

.tc {
  text-align: center;
}

.mb56 {
  margin-bottom: 56px;
}

.sec-intro {
  max-width: 540px;
  margin: 10px auto 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.7;
}

.bg-white {
  background: #fff;
}

.bg-gray {
  background: var(--gray1);
}

.bg-dark {
  background: var(--dark);
}

/* ── TYPOGRAPHY ── */
.h-xl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1;
  color: #fff;
}

.h-lg {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: var(--dark);
}

.h-lg.w {
  color: #fff;
}

.c-g {
  color: var(--green);
}

.c-l {
  color: var(--lime);
}

.c-gd {
  color: var(--gold);
}

/* ── SECTION LABEL ── */
.slabel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76, 175, 80, .12);
  border: 1px solid rgba(76, 175, 80, .3);
  color: var(--lime);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .78rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.slabel.dk {
  background: rgba(76, 175, 80, .08);
  border-color: rgba(76, 175, 80, .35);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
}

.btn-p {
  background: var(--lime);
  color: #fff;
}

.btn-p:hover {
  background: #43a047;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76, 175, 80, .35);
}

.btn-d {
  background: var(--green);
  color: #fff;
}

.btn-d:hover {
  background: #145230;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 92, 56, .4);
}

.btn-o {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .4);
}

.btn-o:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.btn-fw {
  width: 100%;
  justify-content: center;
}

/* ── CUSTOM CURSOR ── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 9998;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  z-index: 9999;
  transition: transform .05s;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 2px solid var(--lime);
  opacity: .6;
  transition: width .2s, height .2s, transform .15s ease;
}

/* ── SCROLL PROGRESS ── */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--lime), var(--gold));
  z-index: 9999;
  width: 0%;
  transition: width .1s;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 31, 21, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(76, 175, 80, .15);
  transition: all .3s;
}

#navbar.scrolled {
  background: rgba(13, 31, 21, .99);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .5);
}

.nav-in {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-ico {
  width: 38px;
  height: 38px;
  background: var(--lime);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .95rem;
  flex-shrink: 0;
}

.nav-txt {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: .5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-a {
  color: rgba(255, 255, 255, .8);
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
  transition: color .2s;
}

.nav-a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width .3s;
}

.nav-a:hover {
  color: #fff;
}

.nav-a:hover::after {
  width: 100%;
}

/* ── Dropdown ── */
.dd {
  position: relative;
}

.dd::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 16px;
  background: transparent;
  display: none;
}

.dd:hover::after {
  display: block;
}

.dd-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .8);
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}

.dd-btn:hover {
  color: #fff;
}

.chev {
  font-size: .6rem;
  color: var(--lime);
  transition: transform .2s;
}

.dd:hover .chev {
  transform: rotate(180deg);
}

.dd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  border: 1px solid rgba(76, 175, 80, .25);
  border-radius: 12px;
  min-width: 250px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .6);
}

.dd-menu.dd-open {
  animation: dropIn .2s ease forwards;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px)
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
  }
}

.dd-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  color: #ccc;
  font-family: 'Barlow', sans-serif;
  font-size: .88rem;
  border-bottom: 1px solid rgba(76, 175, 80, .1);
  transition: all .2s;
}

.dd-item:last-child {
  border-bottom: none;
}

.dd-item:hover {
  background: rgba(76, 175, 80, .1);
  color: #fff;
  padding-left: 26px;
}

.dd-ico {
  width: 36px;
  height: 36px;
  background: rgba(76, 175, 80, .15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 1rem;
  flex-shrink: 0;
}

.dd-ttl {
  font-weight: 600;
  color: #fff;
  font-size: .9rem;
}

.dd-sub {
  font-size: .73rem;
  color: #888;
  margin-top: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 6px;
}

/* ── Mobile Menu ── */
#mobileMenu {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  background: #0d1f15;
  border-top: 1px solid rgba(76, 175, 80, .2);
  z-index: 999;
  padding: 12px 16px 20px;
}

#mobileMenu.open {
  display: block;
}

.mob-a {
  display: block;
  padding: 11px 16px;
  color: #ccc;
  font-family: 'Barlow', sans-serif;
  font-size: .95rem;
  border-radius: 8px;
  transition: all .2s;
}

.mob-a:hover {
  background: rgba(76, 175, 80, .1);
  color: var(--lime);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  clip-path: inset(0);
  display: flex;
  align-items: center;
  padding-top: 66px;
  width: 100%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-image: url('images/securitys.webp');
  background-size: cover;
  background-position: center 20%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(4, 12, 6, .95) 0%, rgba(13, 31, 21, .90) 40%,
      rgba(22, 51, 38, .72) 70%, rgba(26, 92, 56, .50) 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(rgba(76, 175, 80, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 175, 80, .04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(circle, rgba(76, 175, 80, .12) 0%, transparent 65%);
  top: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  transform: translate(25%, -25%);
}

.hero-wm {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(70px, 14vw, 200px);
  color: rgba(255, 255, 255, .02);
  bottom: 0;
  right: 0;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  overflow: hidden;
  max-width: 70%;
  text-align: right;
}

.hero-z {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  width: 100%;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, .12);
  border: 1px solid rgba(201, 168, 76, .35);
  color: var(--gold);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .74rem;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ldot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.5)
  }
}

.hero-lead {
  font-size: 1.1rem;
  color: #c7e6d1;
  line-height: 1.8;
  margin-top: 18px;
}

.hero-lead strong {
  color: #fff;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.hstat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hstat-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hstat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  line-height: 1;
}

.hstat-lbl {
  font-size: .73rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 2px;
}

/* ── Hero Form ── */
.h-form {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid #c7a84c;
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  width: 100%;
  box-sizing: border-box;
}

.hf-ttl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 3px;
}

.hf-sub {
  color: rgba(255, 255, 255, .48);
  font-size: .82rem;
  margin-bottom: 12px;
}

.fg {
  margin-bottom: 9px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.flbl {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .48);
  margin-bottom: 5px;
}

.fi {
  width: 100%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 9px;
  padding: 11px 14px;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  transition: border-color .3s, background .3s;
  outline: none;
}

.fi::placeholder {
  color: rgba(255, 255, 255, .35);
}

.fi:focus {
  border-color: var(--lime);
  background: rgba(255, 255, 255, .11);
}

.fs {
  width: 100%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 9px;
  padding: 11px 14px;
  color: rgba(255, 255, 255, .6);
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: border-color .3s;
}

.fs:focus {
  border-color: var(--lime);
}

.fs option {
  background: #163326;
  color: #fff;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--dark);
}

.sg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sc {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.sc:last-child {
  border-right: none;
}

.sn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: var(--lime);
  line-height: 1;
  display: inline;
}

.ss {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
}

.sl {
  color: #888;
  font-size: .85rem;
  margin-top: 6px;
}

/* ── ABOUT ── */
.aimg-wrap {
  position: relative;
}

.aimg {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .2);
}

.abadge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--green);
  color: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
  text-align: center;
}

.abadge-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--lime);
  line-height: 1;
}

.abadge-t {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  margin-top: 4px;
  line-height: 1.3;
}

.afloat {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 58px;
  height: 58px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(76, 175, 80, .5);
  animation: floatY 3s ease-in-out infinite alternate;
}

.afloat i {
  color: #fff;
  font-size: 1.5rem;
}

@keyframes floatY {
  from {
    transform: translateY(0)
  }

  to {
    transform: translateY(-14px)
  }
}

.alist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 26px;
}

.ali {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text);
  font-weight: 500;
}

.alio {
  width: 22px;
  height: 22px;
  background: #dcfce7;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── SERVICE CARDS ── */
.sv-card {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid rgba(26, 92, 56, .08);
  transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
  cursor: pointer;
}

.sv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shg);
  border-color: var(--lime);
}

.sv-card:hover .sv-ico {
  background: var(--green);
  color: #fff;
}

.sv-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.sv-body {
  padding: 22px;
}

.sv-ico {
  width: 54px;
  height: 54px;
  background: rgba(26, 92, 56, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 13px;
  transition: all .3s;
}

.sv-ttl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 7px;
}

.sv-dsc {
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.6;
}

/* ── HOUSEKEEPING ── */
.hkf {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  background: var(--gray1);
  border: 1px solid rgba(26, 92, 56, .08);
  margin-bottom: 14px;
}

.hkf-ico {
  width: 50px;
  height: 50px;
  background: #dcfce7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hkf-ttl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 4px;
}

.hkf-dsc {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.55;
}

.hk-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hk-mosaic img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.hk-mosaic img:nth-child(2) {
  margin-top: 28px;
}

.hk-mosaic img:nth-child(3) {
  margin-top: -28px;
}

/* ── INDUSTRY CARDS ── */
.ind-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
}

.ind-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.ind-card:hover img {
  transform: scale(1.08);
}

.ind-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 31, 21, .9) 0%, rgba(13, 31, 21, .2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.ind-tag {
  display: inline-block;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  transition: background .3s;
}

.ind-card:hover .ind-tag {
  background: var(--lime);
}

.ind-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 3px;
}

.ind-sub {
  color: rgba(255, 255, 255, .65);
  font-size: .8rem;
}

/* ── WHY US ── */
.why-card {
  text-align: center;
  padding: 28px 20px;
}

.why-ico {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--green), var(--lime));
  color: #fff;
}

.why-ttl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 10px;
}

.why-dsc {
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.tcard {
  background: #fff;
  border-radius: var(--r);
  padding: 26px 22px;
  box-shadow: var(--sh);
  border-left: 4px solid var(--lime);
  height: 100%;
}

.stars {
  display: flex;
  gap: 3px;
  color: #fbbf24;
  margin-bottom: 14px;
}

.ttext {
  color: var(--text);
  line-height: 1.75;
  font-size: .89rem;
  margin-bottom: 20px;
}

.tauth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}

.tname {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #111;
}

.trole {
  color: var(--muted);
  font-size: .77rem;
  margin-top: 1px;
}

.swiper {
  padding-bottom: 50px !important;
}

.swiper-pagination-bullet {
  background: var(--green) !important;
}

.swiper-pagination-bullet-active {
  background: var(--lime) !important;
}

/* ── CTA BANNER ── */
.cta-sec {
  background: linear-gradient(135deg, var(--green), var(--dark));
  padding: 80px 0;
  text-align: center;
}

.cta-shield {
  font-size: 3.5rem;
  color: var(--lime);
  margin-bottom: 18px;
  display: block;
  animation: floatY 3s ease-in-out infinite alternate;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 26px;
}

/* ── CONTACT ── */
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.ci-ico {
  width: 46px;
  height: 46px;
  background: rgba(26, 92, 56, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ci-lbl {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.ci-val {
  color: #111;
  font-weight: 500;
}

.ci-val a {
  color: #111;
  transition: color .2s;
}

.ci-val a:hover {
  color: var(--green);
}

.soc-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.soc-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .9rem;
  transition: all .2s;
}

.soc-btn:hover {
  transform: translateY(-3px);
  opacity: .85;
}

.cf-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 34px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
  width: 100%;
  box-sizing: border-box;
}

.cf-ttl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #111;
  margin-bottom: 22px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cfi {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 11px 15px;
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  color: #111;
  outline: none;
  background: #fff;
  transition: border-color .3s;
  margin-bottom: 13px;
}

.cfi:focus {
  border-color: var(--lime);
}

.cfi:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

.cfi:valid:not(:placeholder-shown) {
  border-color: var(--lime);
}

.cfi::placeholder {
  color: #9ca3af;
}

.cfta {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 11px 15px;
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  color: #111;
  outline: none;
  background: #fff;
  transition: border-color .3s;
  resize: none;
  margin-bottom: 13px;
}

.cfta:focus {
  border-color: var(--lime);
}

.cfsel {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 11px 15px;
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  color: var(--text);
  outline: none;
  background: #fff;
  appearance: none;
  cursor: pointer;
  margin-bottom: 13px;
  transition: border-color .3s;
}

.cfsel:focus {
  border-color: var(--lime);
}

.cflbl {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #9ca3af;
}

footer .container {
  padding-left: 32px;
  padding-right: 32px;
}

.ft-in {
  padding: 64px 0 0;
}

.ft-in .nav-logo {
  margin-bottom: 4px;
}

.ft-g {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  overflow: visible;
}

.ft-bdesc {
  font-size: .87rem;
  line-height: 1.7;
  color: #6b7280;
  margin: 10px 0 16px;
}

.ft-soc {
  display: flex;
  gap: 8px;
}

.ft-sb {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: .85rem;
  transition: all .2s;
}

.ft-sb:hover {
  background: var(--lime);
  color: #fff;
}

.ft-ctitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 14px;
  padding-left: 2px;
}

.ft-a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #6b7280;
  font-size: .87rem;
  padding: 4px 0;
  transition: color .2s;
}

.ft-a:hover {
  color: var(--lime);
}

.ft-a i {
  font-size: .6rem;
  color: var(--lime);
}

.ft-ci {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #6b7280;
  font-size: .87rem;
  margin-bottom: 11px;
}

.ft-ci i {
  color: var(--lime);
  margin-top: 2px;
  flex-shrink: 0;
}

.ft-ci a {
  color: #6b7280;
  transition: color .2s;
}

.ft-ci a:hover {
  color: var(--lime);
}

.ft-bot {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .84rem;
}

.ft-pol {
  display: flex;
  gap: 22px;
}

.ft-pol a {
  color: #6b7280;
  transition: color .2s;
}

.ft-pol a:hover {
  color: var(--lime);
}

/* ── SCROLL TOP & TOAST ── */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--lime);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(76, 175, 80, .45);
}

#scrollTop.on {
  opacity: 1;
  pointer-events: all;
}

#scrollTop:hover {
  transform: translateY(-4px);
  background: #43a047;
}

#toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green);
  color: #fff;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: .9rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
  opacity: 0;
  pointer-events: none;
  transition: all .4s;
  z-index: 9999;
  white-space: nowrap;
}

/* ── AOS SAFETY NET ── */
[data-aos] {
  transition-property: transform, opacity !important;
}

html.aos-initialized [data-aos]:not(.aos-animate) {
  pointer-events: none;
}

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  .g4 {
    grid-template-columns: 1fr 1fr;
  }

  .ft-g {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .sg {
    grid-template-columns: 1fr 1fr;
  }

  .sc {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
}

@media (max-width: 900px) {

  .g2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .g3 {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0 44px;
  }

  .h-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .h-xl {
    font-size: clamp(2.4rem, 9vw, 4rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-z .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-btns {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-cta .btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .abadge {
    bottom: -14px;
    right: -8px;
  }

  .sg {
    grid-template-columns: 1fr 1fr;
  }

  .sc {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .sc:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .08);
  }

  .sc:last-child {
    border-bottom: none;
  }

  .sec {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {

  .g2,
  .g3,
  .g4 {
    grid-template-columns: 1fr;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-wm {
    display: none;
  }

  .hero-glow {
    width: 70vw;
    height: 70vw;
  }

  .hero-grid-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 0 38px;
  }

  .hero-z .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .h-xl {
    font-size: clamp(1.9rem, 9.5vw, 2.6rem);
    line-height: 1.02;
  }

  .hero-lead {
    font-size: .92rem;
    margin-top: 10px;
    line-height: 1.7;
  }

  .hero-btns {
    display: none;
  }

  .hero-stats {
    margin-top: 16px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hstat-ico {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .hstat-num {
    font-size: 1.1rem;
  }

  .btn {
    padding: 11px 20px;
    font-size: .9rem;
  }

  .h-form {
    padding: 1.1rem 1.2rem;
  }

  .hf-ttl {
    font-size: 1.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fi,
  .fs {
    padding: 10px 12px;
    font-size: .88rem;
  }

  .fg {
    margin-bottom: 8px;
  }

  .sg {
    grid-template-columns: 1fr 1fr;
  }

  .sc {
    padding: 22px 14px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .sc:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .08);
  }

  .sc:last-child {
    border-bottom: none;
  }

  .sn {
    font-size: 2.2rem;
  }

  .aimg {
    height: 260px;
  }

  .abadge {
    bottom: -10px;
    right: 14px;
    padding: 13px 16px;
  }

  .abadge-n {
    font-size: 1.9rem;
  }

  .afloat {
    width: 44px;
    height: 44px;
    top: -12px;
    left: -12px;
  }

  .afloat i {
    font-size: 1.1rem;
  }

  .alist {
    grid-template-columns: 1fr;
  }

  .sv-img {
    height: 175px;
  }

  .hk-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .hk-mosaic img {
    height: 145px;
  }

  .hk-mosaic img:nth-child(2),
  .hk-mosaic img:nth-child(3) {
    margin-top: 0;
  }

  .ind-card {
    height: 195px;
  }

  .why-card {
    padding: 20px 14px;
  }

  .why-ico {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }

  .tcard {
    padding: 18px 14px;
  }

  .sec {
    padding: 54px 0;
  }

  footer .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ft-in {
    padding: 48px 0 0;
  }

  .ft-g {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand  brand"
      "svc    ind"
      "con    con";
    gap: 24px 16px;
    padding-bottom: 32px;
  }

  .ft-g>div:nth-child(1) {
    grid-area: brand;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .ft-g>div:nth-child(2) {
    grid-area: svc;
  }

  .ft-g>div:nth-child(3) {
    grid-area: ind;
  }

  .ft-g>div:nth-child(4) {
    grid-area: con;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .ft-ctitle {
    font-size: .95rem;
    margin-bottom: 10px;
  }

  .ft-a {
    font-size: .82rem;
    padding: 3px 0;
  }

  .ft-ci {
    font-size: .82rem;
    margin-bottom: 9px;
  }

  .ft-bdesc {
    font-size: .83rem;
  }

  .ft-bot {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: .8rem;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-wm {
    display: none;
  }

  .hero-glow {
    display: none;
  }

  .hero-grid-inner {
    padding: 24px 0 32px;
    gap: 18px;
  }

  .h-xl {
    font-size: clamp(2.7rem, 8.5vw, 2.2rem);
  }

  .live-badge {
    font-size: .73rem;
    padding: 4px 10px;
    margin-bottom: 20px;
    margin-top: 80px;
  }

  .hero-lead {
    font-size: .96rem;
  }

  .hero-btns {
    display: none;
  }

  .hero-stats {
    gap: 10px;
  }

  .h-form {
    padding: .9rem 1rem;
    border-radius: 12px;
    margin-bottom: 20px;
    margin-top: 70px;
  }

  .hf-ttl {
    font-size: 1.1rem;
  }

  .hf-sub {
    font-size: .75rem;
    margin-bottom: 8px;
  }

  .fi,
  .fs {
    padding: 9px 11px;
    font-size: .84rem;
  }

  .flbl {
    font-size: .62rem;
    margin-bottom: 4px;
  }

  .fg {
    margin-bottom: 6px;
  }

  .nav-txt {
    display: none;
  }

  .nav-ico {
    width: 34px;
    height: 34px;
    font-size: .85rem;
  }

  .sn {
    font-size: 1.9rem;
  }

  .sc {
    padding: 18px 10px;
  }

  .aimg {
    height: 230px;
  }

  .sec {
    padding: 46px 0;
  }

  .h-lg {
    font-size: clamp(1.6rem, 7.5vw, 2.2rem);
  }

  .g2 {
    padding: 0 6px;
  }

  footer .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ── PAGE HERO BANNER ── */
.page-hero {
  min-height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 66px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(4, 12, 6, .94) 0%,
      rgba(13, 31, 21, .88) 50%,
      rgba(26, 92, 56, .65) 100%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(76, 175, 80, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 175, 80, .04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-z {
  position: relative;
  z-index: 2;
  width: 100%;
  /* padding: 80px 0 60px; */
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .5px;
}

.page-hero-breadcrumb a {
  color: var(--lime);
  transition: color .2s;
}

.page-hero-breadcrumb a:hover {
  color: #fff;
}

.page-hero-breadcrumb i {
  font-size: .6rem;
}

.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 14px;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .7);
  max-width: 560px;
  line-height: 1.7;
}

/* ── INNER SECTION ── */
.inner-sec {
  padding: 80px 0;
}

/* ── CARD GRID FOR ABOUT PAGE ── */
.val-card {
  background: #fff;
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--sh);
  border-top: 4px solid var(--lime);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}

.val-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shg);
}

.val-ico {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--lime));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}

.val-ttl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 8px;
}

.val-dsc {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
  font-weight: 600;
}

/* ── TEAM CARD ── */
.team-card {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh);
  transition: transform .3s, box-shadow .3s;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shg);
}

.team-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.team-body {
  padding: 20px;
}

.team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #111;
}

.team-role {
  color: var(--lime);
  font-size: .82rem;
  font-weight: 600;
  margin: 4px 0 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.team-bio {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.6;
}

/* ── SERVICE DETAIL PAGE ── */
.svc-detail-card {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid rgba(26, 92, 56, .08);
  display: grid;
  grid-template-columns: 280px 1fr;
  transition: box-shadow .3s;
}

.svc-detail-card:hover {
  box-shadow: var(--shg);
}

.svc-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.svc-detail-body {
  padding: 28px 30px;
}

.sdc-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76, 175, 80, .1);
  border: 1px solid rgba(76, 175, 80, .25);
  color: var(--lime);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: .72rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sdc-ttl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 10px;
}

.sdc-dsc {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.sdc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sdc-feat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray1);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: .8rem;
  color: var(--text);
  font-weight: 500;
}

.sdc-feat i {
  color: var(--lime);
  font-size: .75rem;
}

/* ── INDUSTRY DETAIL CARDS ── */
.ind-detail-card {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid rgba(26, 92, 56, .08);
  transition: all .35s cubic-bezier(.175, .885, .32, 1.275);
  cursor: pointer;
}

.ind-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shg);
}

.ind-detail-card:hover .idc-ico {
  background: var(--green);
  color: #fff;
}

.idc-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.idc-body {
  padding: 22px;
}

.idc-ico {
  width: 52px;
  height: 52px;
  background: rgba(26, 92, 56, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: 12px;
  transition: all .3s;
}

.idc-ttl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 6px;
}

.idc-dsc {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.6;
  font-weight: 600;
}

/* ── CLIENTS / TESTIMONIALS PAGE ── */
.tcard-lg {
  background: #fff;
  border-radius: var(--r);
  padding: 30px 26px;
  box-shadow: var(--sh);
  border-left: 4px solid var(--lime);
  height: 100%;
}

.tcard-lg .stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  margin-bottom: 16px;
  font-size: 1rem;
}

.tcard-lg .ttext {
  color: var(--text);
  line-height: 1.8;
  font-size: .95rem;
  margin-bottom: 22px;
  font-style: italic;
}

.tcard-lg .tauth {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tcard-lg .tav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.tcard-lg .tname {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #111;
}

.tcard-lg .trole {
  color: var(--muted);
  font-size: .8rem;
  margin-top: 2px;
}

.tcard-lg .tco {
  color: var(--lime);
  font-size: .78rem;
  font-weight: 600;
  margin-top: 2px;
}

/* PARTNER LOGOS ROW */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px 0;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--sh);
  border: 1px solid rgba(26, 92, 56, .08);
  min-width: 120px;
  transition: all .3s;
}

.partner-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shg);
}

.partner-ico {
  font-size: 2rem;
  color: var(--green);
}

.partner-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: #555;
}

/* ── CONTACT PAGE SPECIFIC ── */
.map-wrap {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh);
  height: 380px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── LEGAL PAGES ── */
.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-h2 i {
  color: var(--lime);
}

.legal-p {
  color: var(--text);
  line-height: 1.85;
  font-size: .95rem;
  margin-bottom: 12px;
}

.legal-ul {
  padding-left: 0;
  margin-bottom: 12px;
}

.legal-ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: .93rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-ul li i {
  color: var(--lime);
  margin-top: 3px;
  font-size: .75rem;
  flex-shrink: 0;
}

.legal-toc {
  background: var(--gray1);
  border-left: 4px solid var(--lime);
  border-radius: 10px;
  padding: 22px 26px;
  margin-bottom: 40px;
}

.legal-toc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legal-toc a {
  display: block;
  color: var(--green);
  font-size: .9rem;
  padding: 4px 0;
  transition: color .2s;
}

.legal-toc a:hover {
  color: var(--lime);
}

/* ── INNER PAGE RESPONSIVE ── */
@media (max-width: 900px) {
  .page-hero {
    min-height: 290px;
  }

  .page-hero-z {
    padding: 56px 0 40px;
  }

  .page-hero-z .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .svc-detail-card {
    grid-template-columns: 1fr;
  }

  .svc-detail-img {
    min-height: 200px;
    height: 200px;
  }

  .map-wrap {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 190px;
  }

  .page-hero-z {
    padding: 46px 0 30px;
  }

  .page-hero-z .container,
  .page-hero-z {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-hero-title {
    font-size: clamp(1.7rem, 7.5vw, 2.6rem);
    margin-top: 30px;
  }

  .page-hero-sub {
    font-size: .88rem;
    max-width: 100%;
    margin-top: 8px;
  }

  .page-hero-breadcrumb {
    font-size: .76rem;
    margin-bottom: 10px;
  }

  .inner-sec {
    padding: 48px 0;
  }

  .partners-row {
    gap: 12px;
  }

  .partner-item {
    min-width: 85px;
    padding: 12px 14px;
  }

  .partner-ico {
    font-size: 1.6rem;
  }

  .partner-name {
    font-size: .82rem;
  }

  .cf-box {
    padding: 20px 16px;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .cf-ttl {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }

  .map-wrap {
    height: 190px;
    margin-top: 22px;
  }

  .tcard-lg {
    padding: 18px 14px;
  }

  .tcard-lg .ttext {
    font-size: .88rem;
  }

  .svc-detail-body {
    padding: 18px 16px;
  }

  .sdc-ttl {
    font-size: 1.35rem;
  }

  .sdc-dsc {
    font-size: .87rem;
  }

  .sdc-feat {
    font-size: .77rem;
  }

  .idc-img {
    height: 165px;
  }

  .idc-ttl {
    font-size: 1.1rem;
  }

  .idc-dsc {
    font-size: .84rem;
  }

  .legal-wrap {
    padding: 0 2px;
  }

  .legal-toc {
    padding: 14px 16px;
  }

  .legal-h2 {
    font-size: 1.2rem;
  }

  .legal-p {
    font-size: .9rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 170px;
  }

  .page-hero-z {
    padding: 40px 0 26px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-top: 30px;
  }

  .page-hero-sub {
    font-size: .92rem;
  }

  .page-hero-breadcrumb {
    font-size: .78rem;
  }

  .cf-box {
    padding: 16px 12px;
    border-radius: 12px;
  }

  .cf-ttl {
    font-size: 1.2rem;
    margin-bottom: 14px;
  }

  .cfi,
  .cfta,
  .cfsel {
    padding: 9px 10px;
    font-size: .83rem;
  }

  .cflbl {
    font-size: .62rem;
  }

  .inner-sec {
    padding: 40px 0;
  }

  .svc-detail-card {
    margin-bottom: 2px;
  }

  .partners-row {
    gap: 8px;
  }

  .partner-item {
    min-width: 75px;
    padding: 10px 10px;
  }

  .val-card {
    padding: 20px 14px;
  }

  .val-ico {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* ── NAV ACTIVE STATE ── */
.nav-active {
  color: var(--lime) !important;
}

.nav-active::after {
  width: 100% !important;
}

/* ── INNER STATS STRIP BACKGROUND ── */
.stats-strip.bg-dark-strip {
  background: var(--dark);
}