/* ─── RESET & TOKENS ─── */
:root {
  --bg: #f4f9f5;
  --white: #ffffff;
  --green: #16a34a;
  --gl: #22c55e;
  --gd: #0d6630;
  --gp: rgba(22, 163, 74, 0.1);
  --grim: rgba(22, 163, 74, 0.18);
  --gold: #d4a017;
  --gol: #f5c842;
  --ink: #0d1f14;
  --t2: #3a5445;
  --t3: #6b8c74;
  --bdr: rgba(22, 163, 74, 0.15);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}
* {
  max-width: 100%;
  word-break: break-word;
}
h1,
h2,
h3,
h4 {
  overflow-wrap: break-word;
  word-break: break-word;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 3px;
}

/* ─── LAYOUT ─── */
.wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(14px, 4vw, 56px);
  box-sizing: border-box;
}
.sec {
  padding: clamp(56px, 8vw, 100px) 0;
}
.sec-light {
  background: var(--bg);
}
.sec-white {
  background: var(--white);
}
.sec-green {
  background: var(--green);
}
.sec-ink {
  background: var(--ink);
}

/* ─── COMMON LABELS ─── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.tag::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.h2 {
  
  font-size: clamp(22px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: clamp(0px, -0.05vw, -1px);
  margin-bottom: 14px;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: break-word;
}
.h2 .eg {
  color: var(--green);
}
.h2 .ey {
  color: var(--gold);
}
.lead {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--t2);
  line-height: 1.75;
  max-width: 460px;
}

/* ─── REVEAL ─── */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.rv.on {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  background: #fff;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--bdr);
  transition: box-shadow 0.3s;
}
#nav.raised {
  box-shadow: 0 2px 20px rgba(13, 31, 20, 0.08);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gd), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo i {
  color: #fff;
  font-size: 15px;
}
.nav-name {
  
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
}
.nav-name span {
  color: var(--green);
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  font-size: 18px;
  font-weight: 700;
  color: var(--t2);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--green);
}
.nav-cta {
  display: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: #fff;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gd);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.38);
}
.ham {
  display: none;
  background: none;
  border: 1.5px solid var(--bdr);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  font-size: 15px;
  flex-shrink: 0;
}
.mob-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--bdr);
  padding: 12px 20px 20px;
  flex-direction: column;
  gap: 4px;
}
.mob-menu.open {
  display: flex;
}
.mob-menu a {
  padding: 10px 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--t2);
  border-bottom: 1px solid var(--bdr);
}
.mob-menu a:last-child {
  border: none;
  color: var(--green);
  font-weight: 700;
  margin-top: 4px;
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
#hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 64px;
  background: linear-gradient(145deg, #e8f5ec 0%, #f4f9f5 55%, #fffde8 100%);
  position: relative;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
}
.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--grim) 1.5px, transparent 1.5px);
  background-size: 34px 34px;
  pointer-events: none;
}
.hero-orb-a {
  position: absolute;
  width: clamp(300px, 45vw, 560px);
  height: clamp(300px, 45vw, 560px);
  background: radial-gradient(circle, rgba(22, 163, 74, 0.15), transparent 65%);
  top: -120px;
  right: -60px;
  border-radius: 50%;
  pointer-events: none;
  animation: orb 9s ease-in-out infinite;
}
.hero-orb-b {
  position: absolute;
  width: clamp(220px, 30vw, 380px);
  height: clamp(220px, 30vw, 380px);
  background: radial-gradient(
    circle,
    rgba(212, 160, 23, 0.12),
    transparent 65%
  );
  bottom: -80px;
  left: -80px;
  border-radius: 50%;
  pointer-events: none;
  animation: orb 11s ease-in-out infinite reverse;
}
@keyframes orb {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.13);
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: clamp(24px, 4vw, 72px) clamp(14px, 3.5vw, 56px);
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

/* hero left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.28);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.4px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gl);
  animation: bdot 1.5s infinite;
}
@keyframes bdot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.5);
  }
}
.hero-h1 {
  
  font-size: clamp(22px, 6.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.hero-left {
  overflow: hidden;
  box-sizing: border-box;
}
.hero-left * {
  max-width: 100%;
  box-sizing: border-box;
}
.hero-h1 .l2 {
  color: var(--green);
  display: block;
  overflow-wrap: break-word;
}
.hero-h1 .l3 {
  color: var(--gold);
  font-style: italic;
  display: block;
  overflow-wrap: break-word;
}
.hero-sub {
  font-size: clamp(13.5px, 1.5vw, 17px);
  color: var(--t2);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 28px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: clamp(11px, 1.5vw, 15px) clamp(20px, 2.5vw, 30px);
  border-radius: 50px;
  font-size: clamp(15px, 1.3vw, 15px);
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 0 36px rgba(22, 163, 74, 0.35);
}
.btn-p:hover {
  background: var(--gd);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.45);
  color: #fff;
}
.btn-s {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid rgba(13, 31, 20, 0.16);
  color: var(--ink);
  padding: clamp(11px, 1.5vw, 15px) clamp(20px, 2.5vw, 30px);
  border-radius: 50px;
  font-size: clamp(15px, 1.3vw, 15px);
  font-weight: 600;
  transition: all 0.3s;
}
.btn-s:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.hero-nums {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 32px);
  row-gap: 12px;
}
.hn {
  display: flex;
  flex-direction: column;
}
.hn-v {
  
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.hn-l {
  font-size: 11px;
  color: var(--t3);
  font-weight: 500;
  margin-top: 3px;
}

/* hero right — phone universe */
.hero-right {
  position: relative;
  height: clamp(380px, 55vw, 600px);
  display: none;
  align-items: center;
  justify-content: center;
}
.orb-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin linear infinite;
  border: 1px solid;
}
.r1 {
  width: clamp(220px, 30vw, 340px);
  height: clamp(220px, 30vw, 340px);
  border-color: rgba(22, 163, 74, 0.2);
  animation-duration: 24s;
}
.r2 {
  width: clamp(300px, 40vw, 460px);
  height: clamp(300px, 40vw, 460px);
  border-color: rgba(22, 163, 74, 0.1);
  animation-duration: 38s;
  animation-direction: reverse;
}
.r3 {
  width: clamp(360px, 48vw, 560px);
  height: clamp(360px, 48vw, 560px);
  border-color: rgba(212, 160, 23, 0.07);
  animation-duration: 55s;
}
@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* phone */
.phone-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: clamp(160px, 22vw, 220px);
  animation: pfloat 7s ease-in-out infinite;
}
@keyframes pfloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0) rotate(-1.5deg);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-16px) rotate(1.5deg);
  }
}
.phone {
  width: 100%;
  height: clamp(310px, 42vw, 430px);
  background: #fff;
  border-radius: clamp(22px, 3.5vw, 36px);
  border: 1.5px solid rgba(22, 163, 74, 0.22);
  box-shadow:
    0 30px 70px rgba(13, 31, 20, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.8);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.p-notch {
  width: 60px;
  height: 14px;
  background: var(--ink);
  border-radius: 0 0 9px 9px;
  margin: 0 auto;
  opacity: 0.85;
}
.p-img {
  width: 100%;
  height: clamp(60px, 8vw, 80px);
  object-fit: cover;
  flex-shrink: 0;
}
.p-hdr {
  background: var(--green);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.p-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}
.p-info {
  flex: 1;
}
.p-nm {
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.p-st {
  font-size: 7.5px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 3px;
}
.p-st::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--gl);
  border-radius: 50%;
}
.p-vf {
  font-size: 7.5px;
  color: var(--gol);
  font-weight: 700;
}
.p-msgs {
  flex: 1;
  padding: 8px 9px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bub {
  opacity: 0;
  animation: bpop 0.4s ease forwards;
}
@keyframes bpop {
  to {
    opacity: 1;
  }
}
.bh {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bp {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.bchip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 7px;
  border-radius: 18px;
  font-size: 7px;
  font-weight: 700;
  margin-bottom: 3px;
}
.cg {
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.25);
  color: var(--green);
}
.cy {
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.25);
  color: var(--gold);
}
.btxt {
  max-width: 90%;
  padding: 6px 9px;
  border-radius: 11px;
  font-size: 8px;
  line-height: 1.5;
  color: var(--ink);
}
.bh .btxt {
  background: rgba(22, 163, 74, 0.1);
  border-radius: 3px 11px 11px 11px;
}
.bp .btxt {
  background: #f0f0f0;
  border-radius: 11px 3px 11px 11px;
}
.btime {
  font-size: 6.5px;
  color: var(--t3);
  margin-top: 2px;
  padding: 0 2px;
}
.b1 {
  animation-delay: 0.4s;
}
.b2 {
  animation-delay: 1.2s;
}
.b3 {
  animation-delay: 2s;
}
.b4 {
  animation-delay: 2.8s;
}
.b5 {
  animation-delay: 3.5s;
}
.p-bar {
  height: 28px;
  background: var(--bg);
  border-top: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  padding: 0 9px;
  gap: 6px;
  flex-shrink: 0;
}
.p-inp {
  flex: 1;
  font-size: 8px;
  color: var(--t3);
}
.p-send {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-send i {
  color: #fff;
  font-size: 7px;
}

/* notification popups */
.npop {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 9px 12px;
  box-shadow: 0 6px 20px rgba(13, 31, 20, 0.1);
  min-width: 140px;
  z-index: 11;

}
.npop div{
    font-size: 15px;
}
.np1 {
  top: 8%;
  right: 2%;
  animation: npfl 4s ease-in-out infinite;
}
.np2 {
  bottom: 22%;
  right: 1%;
  animation: npfl 5s ease-in-out infinite 0.9s;
}
.np3 {
  top: 50%;
  left: 0%;
  animation: npfl 3.8s ease-in-out infinite 1.8s;
}
@keyframes npfl {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.np-i {
  font-size: 12px;
  margin-bottom: 3px;
}
.np-t {
  font-size: 9px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 2px;
}
.np-b {
  font-size: 8px;
  color: var(--t2);
}
.np-n {
  
  font-size: 17px;
  font-weight: 800;
  color: var(--gl);
}

/* floating icons */
.fic {
  position: absolute;
  width: clamp(34px, 4.5vw, 44px);
  height: clamp(34px, 4.5vw, 44px);
  border-radius: 11px;
  background: var(--white);
  border: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(13, 31, 20, 0.08);
  animation: ficA ease-in-out infinite;
}
.fi1 {
  top: 10%;
  left: 6%;
  animation-duration: 4.2s;
  animation-delay: 0s;
}
.fi2 {
  top: 30%;
  right: 4%;
  animation-duration: 5s;
  animation-delay: 0.7s;
}
.fi3 {
  bottom: 32%;
  left: 2%;
  animation-duration: 3.9s;
  animation-delay: 1.4s;
}
.fi4 {
  bottom: 12%;
  right: 6%;
  animation-duration: 4.8s;
  animation-delay: 0.3s;
}
@keyframes ficA {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}
.fic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* particles */
.pt {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--green);
  border-radius: 50%;
  animation: ptA linear infinite;
  opacity: 0;
}
@keyframes ptA {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  15% {
    opacity: 0.6;
  }
  85% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-80px);
    opacity: 0;
  }
}

/* ═══════════════════════════════
   TICKER
═══════════════════════════════ */
.ticker {
  background: var(--green);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ticker-t {
  display: flex;
  animation: tsc 28s linear infinite;
  width: max-content;
}
.ticker:hover .ticker-t {
  animation-play-state: paused;
}
@keyframes tsc {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ti {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}
.ti i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.ti.hl {
  color: #fff;
}
.ti.hl i {
  color: var(--gol);
}

/* ═══════════════════════════════
   STATS
═══════════════════════════════ */
#stats {
  background: var(--white);
  border-bottom: 1px solid var(--bdr);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.stat-c {
  padding: clamp(20px, 3vw, 32px) clamp(14px, 2vw, 24px);
  text-align: center;
  border-right: 1px solid var(--bdr);
  position: relative;
  transition: background 0.3s;
  cursor: default;
  overflow: hidden;
}
.stat-c:last-child {
  border-right: none;
}
.stat-c:nth-child(even) {
  border-right: none;
}
.stat-c::after {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.stat-c:hover {
  background: rgba(22, 163, 74, 0.05);
}
.stat-c:hover::after {
  opacity: 1;
}
.stat-img {
  width: 100%;
  height: clamp(50px, 8vw, 80px);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}
.stat-n {
  
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-l {
  font-size: clamp(11px, 1.2vw, 15px);
  color: var(--t2);
  font-weight: 500;
}

/* ═══════════════════════════════
   WHO WE HELP
═══════════════════════════════ */
.who-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  margin-top: clamp(28px, 4vw, 56px);
}
.who-copy .lead {
  margin-top: 14px;
}
.who-cta {
  margin-top: 28px;
}
.who-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.wc {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: clamp(12px, 1.5vw, 18px);
  overflow: hidden;
  transition: all 0.4s;
  cursor: default;
}
.wc:hover {
  border-color: var(--green);
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.12);
  transform: translateY(-5px);
}
.wc-img {
  width: 100%;
  height: clamp(70px, 9vw, 100px);
  overflow: hidden;
  position: relative;
}
.wc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.wc:hover .wc-img img {
  transform: scale(1.08);
}
.wc-body {
  padding: clamp(10px, 1.5vw, 14px);
}
.wc-name {
  font-size: clamp(11px, 1.2vw, 15px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
  line-height: 1.3;
}
.wc-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(22, 163, 74, 0.09);
  border: 1px solid rgba(22, 163, 74, 0.18);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
}

/* ═══════════════════════════════
   JOURNEY / HOW IT WORKS
═══════════════════════════════ */
.journey-steps {
    position: relative;
    padding-left: 60px;
}

.journey-steps::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(
        to bottom,
        #16a34a,
        #22c55e,
        #d4a017
    );
    border-radius: 50px;
}

.jstep {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
    padding: 22px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(22,163,74,0.12);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: all .35s ease;
}

.jstep:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(22,163,74,.15);
    border-color: rgba(22,163,74,.35);
}

.jstep-num {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg,#16a34a,#22c55e);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(22,163,74,.35);
    z-index: 2;
    transition: .3s;
}

.jstep:hover .jstep-num {
    transform: translateY(-50%) scale(1.12);
}

.jstep:last-child .jstep-num {
    background: linear-gradient(135deg,#d4a017,#f4c430);
    box-shadow: 0 0 25px rgba(212,160,23,.4);
}

.jstep-txt strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.jstep-txt span {
    display: block;
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}

.jstep::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 36px;
    height: 36px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(22,163,74,.08);
    transition: .3s;
}

.jstep:hover::after {
    background: rgba(22,163,74,.15);
}

/* Mobile Responsive */

@media (max-width: 768px) {

    .journey-steps {
        padding-left: 40px;
    }

    .journey-steps::before {
        left: 14px;
    }

    .jstep {
        padding: 18px;
    }

    .jstep-num {
        left: -40px;
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .jstep-txt strong {
        font-size: 16px;
    }

    .jstep-txt span {
        font-size: 15px;
    }
}

/* ═══════════════════════════════
   SERVICES
═══════════════════════════════ */
.srv-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: end;
  margin-bottom: clamp(20px, 3vw, 40px);
}
.srv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 1.5vw, 18px);
}
.srv-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: clamp(14px, 2vw, 22px);
  overflow: hidden;
  transition: all 0.4s;
  cursor: default;
  position: relative;
}
.srv-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.srv-card:hover {
  box-shadow: 0 16px 44px rgba(13, 31, 20, 0.1);
  transform: translateY(-6px);
  border-color: var(--grim);
}
.srv-card:hover::after {
  transform: scaleX(1);
}
.srv-card-wide {
  grid-column: span 2;
}
.srv-img {
  width: 100%;
  height: clamp(120px, 14vw, 160px);
  overflow: hidden;
  position: relative;
}
.srv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.srv-card:hover .srv-img img {
  transform: scale(1.06);
}
.srv-body {
  padding: clamp(16px, 2vw, 24px);
}
.srv-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
  transition: all 0.35s;
}
.srv-card:hover .srv-ico {
  transform: scale(1.1) rotate(5deg);
}
.c1 .srv-ico {
  background: rgba(22, 163, 74, 0.1);
}
.c2 .srv-ico {
  background: rgba(212, 160, 23, 0.1);
}
.c3 .srv-ico {
  background: rgba(96, 165, 250, 0.1);
}
.c4 .srv-ico {
  background: rgba(248, 113, 113, 0.1);
}
.c5 .srv-ico {
  background: rgba(167, 139, 250, 0.1);
}
.c6 .srv-ico {
  background: rgba(34, 197, 94, 0.1);
}
.srv-title {
  
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.srv-desc {
  font-size: clamp(11.5px, 1.2vw, 13.5px);
  color: var(--t2);
  line-height: 1.68;
  margin-bottom: 14px;
}
.srv-pts {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.spt {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.16);
  padding: 3px 9px;
  border-radius: 18px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--green);
}

/* ═══════════════════════════════
   IMPACT
═══════════════════════════════ */
.impact-intro {
  text-align: center;
  max-width: 520px;
  margin: 0 auto clamp(32px, 5vw, 52px);
}
.imp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.5vw, 18px);
  margin-bottom: clamp(24px, 3vw, 40px);
}
.imp-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: clamp(14px, 2vw, 22px);
  overflow: hidden;
  text-align: center;
  transition: all 0.4s;
  cursor: default;
}
.imp-card:hover {
  border-color: var(--grim);
  box-shadow: 0 12px 36px rgba(22, 163, 74, 0.1);
  transform: translateY(-5px);
}
.imp-img {
  width: 100%;
  height: clamp(80px, 10vw, 110px);
  overflow: hidden;
}
.imp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.imp-card:hover .imp-img img {
  transform: scale(1.07);
}
.imp-body {
  padding: clamp(14px, 2vw, 20px);
}
.imp-n {
  
  font-size: clamp(36px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--gd), var(--gl));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.imp-l {
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.imp-s {
  font-size: clamp(10.5px, 1.1vw, 12px);
  color: var(--t3);
}
/* benefit row */
.ben-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.3vw, 14px);
}
.ben {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: clamp(12px, 1.5vw, 16px);
  overflow: hidden;
  text-align: center;
  transition: all 0.35s;
  cursor: default;
}
.ben:hover {
  background: rgba(22, 163, 74, 0.06);
  border-color: var(--green);
  transform: translateY(-4px);
}
.ben-img {
  width: 100%;
  height: clamp(50px, 7vw, 72px);
  overflow: hidden;
}
.ben-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.ben:hover .ben-img img {
  transform: scale(1.08);
}
.ben-lbl {
  padding: clamp(8px, 1.2vw, 12px) 8px;
  font-size: clamp(10.5px, 1.1vw, 12.5px);
  font-weight: 700;
  color: var(--ink);
}

/* ═══════════════════════════════
   PRICING
═══════════════════════════════ */
.price-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 36px);
  margin-top: clamp(28px, 4vw, 52px);
  align-items: start;
}
.price-card {
  background: var(--ink);
  border-radius: clamp(18px, 2.5vw, 28px);
  overflow: hidden;
  position: relative;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.price-card::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.18), transparent);
  border-radius: 50%;
  pointer-events: none;
}
.price-img {
  width: 100%;
  height: clamp(100px, 12vw, 140px);
  overflow: hidden;
  flex-shrink: 0;
}
.price-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.price-body {
  padding: clamp(24px, 3.5vw, 44px);
}
.price-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.35);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gol);
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.price-label {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.price-row {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 5px;
}
.price-sym {
  
  font-size: clamp(20px, 3vw, 28px);
  color: var(--gol);
  font-weight: 800;
  margin-top: 10px;
}
.price-val {
  
  font-size: clamp(52px, 7vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.price-gst {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 8px;
}
.price-valid {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.22);
  padding: 4px 12px;
  border-radius: 18px;
  font-size: 11px;
  color: var(--gl);
  font-weight: 700;
  margin-bottom: 24px;
}
.price-div {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  margin-bottom: 22px;
}
.price-feats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-bottom: 24px;
}
.pf {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(12px, 1.2vw, 13.5px);
  color: rgba(255, 255, 255, 0.72);
}
.pf-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pf-dot i {
  font-size: 7.5px;
  color: var(--gl);
}
.price-cta-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--green), var(--gl));
  color: #fff;
  padding: clamp(12px, 1.8vw, 16px);
  border-radius: 50px;
  font-size: clamp(15px, 1.5vw, 15px);
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 0 40px rgba(22, 163, 74, 0.3);
}
.price-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(22, 163, 74, 0.5);
  color: #fff;
}
/* price side */
.price-side {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 16px);
}
.extra {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: clamp(14px, 2vw, 20px);
  overflow: hidden;
}
.extra-img {
  width: 100%;
  height: clamp(70px, 8vw, 90px);
  overflow: hidden;
}
.extra-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.extra-body {
  padding: clamp(16px, 2vw, 22px);
}
.extra-ttl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.extra-ttl::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--bdr);
}
.extra-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--bdr);
}
.extra-row:last-child {
  border-bottom: none;
}
.extra-nm {
  font-size: 15px;
  color: var(--t2);
  display: flex;
  align-items: center;
  gap: 7px;
}
.extra-nm i {
  color: var(--green);
  font-size: 11px;
}
.extra-val {
  
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
}
.note {
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.22);
  border-radius: clamp(12px, 1.5vw, 16px);
  padding: clamp(12px, 1.8vw, 16px) clamp(14px, 2vw, 18px);
  display: flex;
  gap: 10px;
}
.note i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.note p {
  font-size: 12.5px;
  color: var(--t2);
  line-height: 1.6;
}
.pays {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pay {
  background: var(--bg);
  border: 1px solid var(--bdr);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
}

/* ═══════════════════════════════
   DOCS
═══════════════════════════════ */
.docs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 36px);
  margin-top: clamp(28px, 4vw, 52px);
}
.doc-panel {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: clamp(14px, 2vw, 22px);
  overflow: hidden;
}
.doc-pimg {
  width: 100%;
  height: clamp(100px, 12vw, 140px);
  overflow: hidden;
}
.doc-pimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.doc-pbody {
  padding: clamp(18px, 2.5vw, 28px);
}
.doc-ph {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
}
.doc-ph-ico {
  width: 36px;
  height: 36px;
  background: rgba(22, 163, 74, 0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 15px;
  flex-shrink: 0;
}
.doc-ph span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  display: block;
}
.doc-ph strong {
  
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 800;
  color: var(--ink);
  display: block;
}
.doc-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 0;
  border-bottom: 1px solid var(--bdr);
}
.doc-row:last-child {
  border-bottom: none;
}
.doc-ico {
  width: 26px;
  height: 26px;
  background: rgba(22, 163, 74, 0.1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 10px;
  flex-shrink: 0;
}
.doc-row span {
  font-size: clamp(12px, 1.3vw, 13.5px);
  color: var(--t2);
}
.doc-or {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--t3);
  padding: 5px 0;
}
.req-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bdr);
}
.req-row:last-child {
  border-bottom: none;
}
.req-ico {
  width: 30px;
  height: 30px;
  background: rgba(22, 163, 74, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.req-l {
  font-size: clamp(12px, 1.3vw, 13.5px);
  font-weight: 600;
  color: var(--ink);
}
.req-s {
  font-size: clamp(10.5px, 1.1vw, 12px);
  color: var(--t3);
  margin-top: 2px;
}

/* ═══════════════════════════════
   TRUST
═══════════════════════════════ */
.trust-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-top: clamp(28px, 4vw, 52px);
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.tbg {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: 50px;
  padding: 9px 16px;
  transition: all 0.35s;
  cursor: default;
}
.tbg:hover {
  border-color: var(--green);
  background: rgba(22, 163, 74, 0.07);
  transform: translateY(-3px) scale(1.03);
}
.tbg i {
  color: var(--green);
  font-size: 15px;
}
.tbg span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}
.trust-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.tc {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: clamp(12px, 1.8vw, 18px);
  overflow: hidden;
  transition: all 0.35s;
  cursor: default;
}
.tc:hover {
  border-color: var(--green);
  background: rgba(22, 163, 74, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.1);
}
.tc-img {
  width: 100%;
  height: clamp(60px, 8vw, 80px);
  overflow: hidden;
}
.tc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.tc:hover .tc-img img {
  transform: scale(1.07);
}
.tc-body {
  padding: clamp(12px, 1.8vw, 18px);
}
.tc-ico {
  width: 36px;
  height: 36px;
  background: rgba(22, 163, 74, 0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 15px;
  margin-bottom: 10px;
  transition: all 0.3s;
}
.tc:hover .tc-ico {
  background: var(--green);
  color: #fff;
}
.tc h4 {
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.tc p {
  font-size: clamp(10.5px, 1.1vw, 12.5px);
  color: var(--t3);
  line-height: 1.6;
}

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 1.5vw, 18px);
  margin-top: clamp(28px, 4vw, 52px);
}
.test {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: clamp(14px, 2vw, 22px);
  overflow: hidden;
  transition: all 0.4s;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.test:hover {
  border-color: var(--green);
  box-shadow: 0 14px 38px rgba(22, 163, 74, 0.1);
  transform: translateY(-6px);
}
.test.feat {
  background: var(--ink);
  border-color: transparent;
}
.test.feat:hover {
  background: #142a1e;
}
.test-img {
  width: 100%;
  height: clamp(100px, 12vw, 130px);
  overflow: hidden;
  flex-shrink: 0;
}
.test-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.test:hover .test-img img {
  transform: scale(1.06);
}
.test-body {
  padding: clamp(16px, 2.2vw, 24px);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.test-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.test-stars i {
  color: var(--gold);
  font-size: 11px;
}
.test-q {
  font-size: clamp(12.5px, 1.3vw, 14px);
  line-height: 1.72;
  color: var(--t2);
  flex: 1;
  margin-bottom: 18px;
  font-style: italic;
}
.test.feat .test-q {
  color: rgba(255, 255, 255, 0.65);
}
.test-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.test-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.test-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.test-nm {
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 700;
  color: var(--ink);
}
.test.feat .test-nm {
  color: #fff;
}
.test-rl {
  font-size: clamp(10px, 1vw, 11px);
  color: var(--t3);
}

/* ═══════════════════════════════
   POLICY
═══════════════════════════════ */
.policy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: clamp(28px, 4vw, 52px);
}
.pol-col {
}
.pol-row {
  display: flex;
  gap: 14px;
  padding: clamp(12px, 1.8vw, 16px) 0;
  border-bottom: 1px solid var(--bdr);
}
.pol-row:last-child {
  border-bottom: none;
}
.pol-n {
  
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  color: var(--green);
  opacity: 0.32;
  line-height: 1;
  width: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pol-txt {
  font-size: clamp(12px, 1.2vw, 13.5px);
  color: var(--t2);
  line-height: 1.7;
}

/* ═══════════════════════════════
   FINAL CTA
═══════════════════════════════ */
#cta {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 9vw, 120px) 0;
  text-align: center;
  background: linear-gradient(
    155deg,
    rgba(22, 163, 74, 0.09) 0%,
    var(--bg) 50%,
    rgba(212, 160, 23, 0.07) 100%
  );
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.06;
}
.cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-wrap {
  position: relative;
  z-index: 2;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 22px;
}
.cta-h {
  
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 16px;
}
.cta-h .eg {
  color: var(--green);
}
.cta-p {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--t2);
  margin-bottom: 36px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}
.cta-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--bdr);
  padding: 11px 18px;
  border-radius: 50px;
  font-size: clamp(12px, 1.3vw, 13.5px);
  color: var(--t2);
  transition: all 0.3s;
}
.cta-link:hover {
  border-color: var(--green);
  background: rgba(22, 163, 74, 0.07);
  color: var(--green);
}
.cta-link i {
  color: var(--green);
}
.cta-addr {
  font-size: clamp(11px, 1.2vw, 12.5px);
  color: var(--t3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
}
.cta-addr i {
  color: var(--gold);
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: var(--ink);
  padding: clamp(18px, 2.5vw, 26px) clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.f-brand {
  
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.f-brand span {
  color: var(--gl);
}
.f-copy {
  font-size: 16px;
  color: #000;
}
.f-links {
  display: flex;
  gap: 18px;
}
.f-links a {
  font-size: 16px;
  color: #000;
  transition: color 0.2s;
}
.f-links a:hover {
  color: var(--gl);
}

/* WA FAB */
.wafab {
  position: fixed;
  bottom: clamp(18px, 3vw, 26px);
  right: clamp(18px, 3vw, 26px);
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  animation: wafl 2.2s ease-in-out infinite;
  transition: all 0.28s;
}

.wafab1 {
  position: fixed;
  bottom: clamp(18px, 3vw, 26px);
  left: clamp(18px, 3vw, 26px);
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0265e4;
  border: 1px solid #0265e4;
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 24px #5083c5;
  animation: wafl 2.2s ease-in-out infinite;
  transition: all 0.28s;
}

.wafab i {
  font-size: 20px;
}
.wafab:hover {
  background: #1baa52;
  transform: translateY(-3px) scale(1.04);
  animation: none;
  color: #fff;
}

.wafab1 i {
  font-size: 20px;
}
.wafab1:hover {
  background: #fff;
  color: #0265e4;
  border: 1px solid #0265e4;
  transform: translateY(-3px) scale(1.04);
  animation: none;

}
@keyframes wafl {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ═══════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════ */
@media (min-width: 600px) {
  .srv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .srv-card-wide {
    grid-column: span 2;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1081px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-right {
    display: flex;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .stat-c:nth-child(even) {
    border-right: 1px solid var(--bdr);
  }
  .stat-c:last-child {
    border-right: none;
  }
  .imp-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .ben-row {
    grid-template-columns: repeat(5, 1fr);
  }
  .who-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .price-feats {
    grid-template-columns: 1fr 1fr;
  }
  .srv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-cards {
    grid-template-columns: 1fr 1fr;
  }
  .journey-grid {
    grid-template-columns: 1fr 1fr;
  }
  .who-layout {
    grid-template-columns: 420px 1fr;
  }
  .price-layout {
    grid-template-columns: 1fr 1fr;
  }
  .docs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-layout {
    grid-template-columns: 1fr 1fr;
  }
  .policy-grid {
    grid-template-columns: 1fr 1fr;
  }
  .srv-intro {
    grid-template-columns: 1fr 1fr;
  }
}
/* mobile-first: all single-column by default, expanded in min-width blocks above */
@media (max-width: 720px) {
  #nav .nav-links {
    display: none;
  }
  .ham {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  .f-links {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero-h1 {
    font-size: clamp(20px, 7.5vw, 36px);
    letter-spacing: 0;
    line-height: 1.12;
  }
  .hn-v {
    font-size: 20px;
  }
  .hero-nums {
    gap: 12px;
  }
  .hero-badge {
    font-size: 10px;
    padding: 5px 12px;
  }
}
/* container queries fallback — use clamp() throughout for fluid sizing */
@media (min-width: 1400px) {
  .wrap {
    max-width: 1280px;
  }
}

/* ── MOBILE-FIRST CRITICAL FIXES ── */
@media (max-width: 480px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 20px 14px 32px;
  }
  .hero-h1 {
    font-size: clamp(26px, 8vw, 40px);
    letter-spacing: -0.5px;
    line-height: 1.06;
  }
  .hero-sub {
    font-size: 13.5px;
  }
  .hero-btns {
    gap: 10px;
  }
  .btn-p,
  .btn-s {
    padding: 12px 20px;
    font-size: 15px;
  }
  .h2 {
    font-size: clamp(22px, 7vw, 34px);
    letter-spacing: -0.3px;
  }
  .hero-nums {
    gap: 14px;
  }
  .hn-v {
    font-size: 22px;
  }
  .hero-right {
    display: none;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-n {
    font-size: 32px;
  }
  .stat-img {
    height: 50px;
  }
  .who-layout {
    grid-template-columns: 1fr;
  }
  .who-cards {
    grid-template-columns: 1fr 1fr;
  }
  .journey-grid {
    grid-template-columns: 1fr;
  }
  .journey-vis {
    display: none;
  }
  .srv-intro {
    grid-template-columns: 1fr;
  }
  .srv-grid {
    grid-template-columns: 1fr;
  }
  .srv-card-wide {
    grid-column: span 1;
  }
  .imp-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ben-row {
    grid-template-columns: 1fr 1fr;
  }
  .price-layout {
    grid-template-columns: 1fr;
  }
  .price-feats {
    grid-template-columns: 1fr;
  }
  .price-val {
    font-size: 52px;
  }
  .docs-grid {
    grid-template-columns: 1fr;
  }
  .trust-layout {
    grid-template-columns: 1fr;
  }
  .trust-cards {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .policy-grid {
    grid-template-columns: 1fr;
  }
  .cta-h {
    font-size: clamp(28px, 8vw, 42px);
    letter-spacing: -0.5px;
  }
  .cta-links {
    flex-direction: column;
    align-items: center;
  }
  .wafab {
    padding: 10px 14px;
    font-size: 15px;
  }
  .wafab i {
    font-size: 18px;
  }

  .wafab1 {
    padding: 10px 14px;
    font-size: 15px;
  }
  .wafab1 i {
    font-size: 18px;
  }

  footer {
    padding: 16px 14px;
    flex-direction: column;
    text-align: center;
  }
  .f-links {
    justify-content: center;
  }
  .tag {
    font-size: 10px;
  }
  .lead {
    font-size: 13.5px;
  }
  .jstep-num {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .who-card-lbl {
    font-size: 12px;
  }
  .wc-img {
    height: 65px;
  }
  .nav-name {
    font-size: 17px;
  }
  .sec {
    padding: 52px 0;
  }
  .imp-n {
    font-size: 38px;
  }
  .test-img {
    height: 85px;
  }
  .tc-img {
    height: 55px;
  }
}
@media (max-width: 360px) {
  .hero-h1 {
    font-size: 24px;
  }
  .h2 {
    font-size: 20px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-p,
  .btn-s {
    width: 100%;
    justify-content: center;
  }
  .who-cards {
    grid-template-columns: 1fr;
  }
  .imp-grid {
    grid-template-columns: 1fr;
  }
  .trust-cards {
    grid-template-columns: 1fr;
  }
  .stat-n {
    font-size: 28px;
  }
}

/* ═══════════════════════════════
   MOBILE-FIRST RESPONSIVE SYSTEM
   All grids default to 1-col (mobile).
   Expand at 480 / 640 / 1080 / 1400px
═══════════════════════════════ */

/* nav-cta hidden on small screens */
@media (max-width: 680px) {
  .nav-cta {
    display: none;
  }
  .ham {
    display: flex;
  }
  #nav .nav-links {
    display: none;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  .f-links {
    justify-content: center;
  }
}

/* 480px — very small phones */
@media (max-width: 480px) {
  .hero-h1 {
    font-size: clamp(26px, 8vw, 38px);
    letter-spacing: -0.5px;
    line-height: 1.08;
  }
  .hero-nums {
    gap: 14px;
  }
  .hn-v {
    font-size: 22px;
  }
  .who-cards {
    grid-template-columns: 1fr;
  }
  .imp-grid {
    grid-template-columns: 1fr;
  }
}

/* 640px — 2-col grids start appearing */
@media (min-width: 480px) {
  .who-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .imp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ben-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 640px — service cards, testimonials */
@media (min-width: 640px) {
  .srv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .srv-card-wide {
    grid-column: span 2;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-cards {
    grid-template-columns: 1fr 1fr;
  }
  .price-feats {
    grid-template-columns: 1fr 1fr;
  }
  .docs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .policy-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* 900px — two-column main layout starts */
@media (min-width: 900px) {
  .who-layout {
    grid-template-columns: 380px 1fr;
  }
  .journey-grid {
    grid-template-columns: 1fr 1fr;
  }
  .journey-vis {
    display: flex;
  }
  .price-layout {
    grid-template-columns: 1fr 1fr;
  }
  .trust-layout {
    grid-template-columns: 1fr 1fr;
  }
  .srv-intro {
    grid-template-columns: 1fr 1fr;
  }
  .who-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .imp-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .ben-row {
    grid-template-columns: repeat(5, 1fr);
  }
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .nav-cta {
    display: inline-flex;
  }
  .ham {
    display: none;
  }
}

/* 1080px — full desktop layout */
@media (min-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-right {
    display: flex;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .stat-c:nth-child(even) {
    border-right: 1px solid var(--bdr);
  }
  .stat-c:last-child {
    border-right: none;
  }
  .srv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #nav .nav-links {
    display: flex;
  }
}
