:root {
  --g0: #010803;
  --g1: #050e07;
  --g2: #091408;
  --green: #47FF7E;
  --green-dim: rgba(71, 255, 126, .10);
  --border-g: rgba(71, 255, 126, .2);
  --border: rgba(255, 255, 255, .07);
  --white: #F0FFF4;
  --muted: rgba(240, 255, 244, .42);
  --gold: #FFD060;
  --red: #FF5B5B;
  --mono: 'JetBrains Mono', monospace;
  --s: rgba(255, 255, 255, .035);
  --s2: rgba(255, 255, 255, .06);
}

:where(.page-template-template-third-page, .rh-tp-wrap) * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where(.page-template-template-third-page, .rh-tp-wrap) html {
  scroll-behavior: smooth;
}

body:where(.page-template-template-third-page) {
  background: var(--g0) !important;
  color: var(--white) !important;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(.rh-tp-wrap) {
  font-family: 'Inter', sans-serif;
  color: var(--white);
}

/* ═══ BACKGROUND ═══ */
:where(.page-template-template-third-page) #cvs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

:where(.page-template-template-third-page) .grid-o {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(71, 255, 126, .028) 1px, transparent 1px), linear-gradient(90deg, rgba(71, 255, 126, .028) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* CSS animated orbs */
:where(.page-template-template-third-page) .orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: orbf var(--d) ease-in-out infinite alternate;
}

.orb1 {
  width: 500px;
  height: 500px;
  background: rgba(71, 255, 126, .065);
  top: -100px;
  left: -100px;
  --d: 20s;
}

.orb2 {
  width: 600px;
  height: 600px;
  background: rgba(71, 255, 126, .045);
  top: 40%;
  right: -150px;
  --d: 25s;
  animation-delay: -10s;
}

.orb3 {
  width: 400px;
  height: 400px;
  background: rgba(71, 255, 126, .055);
  bottom: -80px;
  left: 35%;
  --d: 17s;
  animation-delay: -6s;
}

.orb4 {
  width: 300px;
  height: 300px;
  background: rgba(71, 255, 126, .04);
  top: 25%;
  left: 45%;
  --d: 14s;
  animation-delay: -3s;
}

@keyframes orbf {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(40px, -50px) scale(1.15);
  }
}

/* Scan line */
:where(.page-template-template-third-page) .scan {
  position: fixed;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(71, 255, 126, .15), transparent);
  z-index: 0;
  pointer-events: none;
  animation: scan 8s linear infinite;
}

@keyframes scan {
  0% {
    top: -2px;
  }

  100% {
    top: 100vh;
  }
}

/* ═══ WRAP ═══ */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* ═══ NAV ═══ */
:where(.page-template-template-third-page, .rh-tp-wrap) nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(1, 8, 3, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transform: none !important;
}

body.admin-bar:where(.page-template-template-third-page) nav,
body.admin-bar :where(.rh-tp-wrap) nav {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar:where(.page-template-template-third-page) nav,
  body.admin-bar :where(.rh-tp-wrap) nav {
    top: 46px;
  }
}

:where(.page-template-template-third-page, .rh-tp-wrap) .ni {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

:where(.page-template-template-third-page, .rh-tp-wrap) .logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

:where(.page-template-template-third-page, .rh-tp-wrap) .logo img {
  mix-blend-mode: screen;
  height: 38px;
  width: auto;
  display: block;
}

:where(.page-template-template-third-page, .rh-tp-wrap) .logo-svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

:where(.page-template-template-third-page, .rh-tp-wrap) .logo-t {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1;
}

:where(.page-template-template-third-page, .rh-tp-wrap) .logo-s {
  font-family: var(--mono);
  font-size: .5rem;
  color: var(--green);
  letter-spacing: .22em;
  display: block;
  margin-top: 2px;
}

:where(.page-template-template-third-page, .rh-tp-wrap) nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: flex-end;
  padding-right: 24px;
}

:where(.page-template-template-third-page, .rh-tp-wrap) nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: .2s;
  position: relative;
  padding-bottom: 2px;
}

:where(.page-template-template-third-page, .rh-tp-wrap) nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: .3s;
}

:where(.page-template-template-third-page, .rh-tp-wrap) nav a:hover {
  color: var(--white);
}

:where(.page-template-template-third-page, .rh-tp-wrap) nav a:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: auto;
  background: var(--green);
  color: #010803;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .05em;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: .25s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: #fff;
  color: #010803;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(71, 255, 126, .3);
}

/* ═══ TICKER ═══ */
.ticker {
  background: linear-gradient(90deg, var(--green), #a3ffca 50%, var(--green));
  margin-top: 0;
  padding: 9px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.tt {
  display: flex;
  white-space: nowrap;
  animation: tick 34s linear infinite;
}

.tt span {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: .67rem;
  font-weight: 500;
  color: #010803;
  letter-spacing: .08em;
  padding: 0 22px;
}

.tt span::after {
  content: '◆';
  margin-left: 22px;
  opacity: .3;
}

@keyframes tick {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ═══ HERO ═══ */
.hero {
  padding: 64px 0 72px;
  text-align: center;
  position: relative;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(71, 255, 126, .08);
  border: 1px solid var(--border-g);
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: .63rem;
  color: var(--green);
  letter-spacing: .12em;
}

.hdot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(71, 255, 126, .5)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(71, 255, 126, 0)
  }
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: .93;
  letter-spacing: -.025em;
  margin-bottom: 22px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--green) 0%, #a3ffca 50%, var(--green) 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0%
  }

  100% {
    background-position: 200%
  }
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 36px;
}

.hero-acts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-p {
  background: var(--green);
  color: #010803;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  padding: 15px 32px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .25s;
}

.btn-p:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(71, 255, 126, .3);
}

.btn-o {
  background: transparent;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border: 1px solid var(--border);
  cursor: pointer;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .25s;
}

.btn-o:hover {
  border-color: var(--green);
  color: var(--green);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.ht {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: .63rem;
  color: var(--muted);
  letter-spacing: .06em;
}

.ht .tk {
  color: var(--green);
}

.hero-nums {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hn {
  background: var(--s);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
  min-width: 120px;
  position: relative;
  overflow: hidden;
  transition: .3s;
}

.hn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.hn:hover {
  border-color: var(--border-g);
  transform: translateY(-2px);
}

.hn-v {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--green);
}

.hn-l {
  font-family: var(--mono);
  font-size: .56rem;
  color: var(--muted);
  letter-spacing: .1em;
  margin-top: 4px;
}

/* ═══ SECTION HEADER ═══ */
.sh {
  text-align: center;
  margin-bottom: 36px;
}

.sh-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: .6rem;
  color: var(--green);
  letter-spacing: .18em;
  margin-bottom: 12px;
}

.sh-tag::before,
.sh-tag::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--green);
}

.sh h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.sh h2 span {
  color: var(--green);
}

.sh p {
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.72;
  font-size: .93rem;
}

section {
  padding: 60px 0;
}

/* ═══ TRUST STRIP ═══ */
.ts-strip {
  background: var(--g1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ts-in {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.tc {
  padding: 24px 14px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: .3s;
}

.tc:last-child {
  border-right: none;
}

.tc:hover {
  background: var(--s);
}

.tc-n {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--green);
}

.tc-l {
  font-family: var(--mono);
  font-size: .54rem;
  color: var(--muted);
  letter-spacing: .1em;
  margin-top: 3px;
}

/* ═══ HOW IT WORKS ═══ */
.how-s {
  background: var(--g1);
  border-top: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--s);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.step {
  padding: 30px 22px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: .3s;
}

.step:last-child {
  border-right: none;
}

.step:hover {
  background: var(--s2);
}

.step-n {
  font-family: var(--mono);
  font-size: .56rem;
  color: var(--green);
  letter-spacing: .18em;
  margin-bottom: 12px;
}

.step-i {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.step-t {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 7px;
}

.step-d {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
}

.step-ar {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 24px;
  height: 24px;
  background: var(--g2);
  border: 1px solid var(--border-g);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: var(--green);
}

.step:last-child .step-ar {
  display: none;
}

/* ═══ PROOF - STACKED 1 BY 1 ═══ */
.proof-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.proof-card {
  background: var(--g1);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: .3s;
  position: relative;
}

.proof-card:hover {
  border-color: var(--border-g);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .5), 0 0 0 1px rgba(71, 255, 126, .08);
}

.proof-card-num {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-family: var(--mono);
  font-size: .58rem;
  color: #010803;
  background: var(--green);
  border: 1px solid var(--green);
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: .12em;
  font-weight: 700;
}

/* Image area */
.proof-img {
  aspect-ratio: 16/9;
  background: var(--g2);
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-img:hover .proof-hover-hint {
  opacity: 1;
}

.proof-hover-hint {
  position: absolute;
  inset: 0;
  background: rgba(1, 8, 3, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .3s;
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--green);
  letter-spacing: .12em;
  gap: 8px;
}

/* Placeholder */
.proof-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 48px 40px;
  pointer-events: none;
}

.proof-ph .ph-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px dashed rgba(71, 255, 126, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  position: relative;
}

.proof-ph .ph-ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(71, 255, 126, .15);
}

.proof-ph .ph-tag {
  font-family: var(--mono);
  font-size: .62rem;
  color: var(--green);
  background: rgba(71, 255, 126, .08);
  border: 1px solid var(--border-g);
  padding: 5px 16px;
  border-radius: 999px;
  letter-spacing: .12em;
}

.proof-ph .ph-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.proof-ph .ph-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
}

.proof-ph .ph-hint {
  font-family: var(--mono);
  font-size: .58rem;
  color: rgba(71, 255, 126, .4);
  letter-spacing: .1em;
}

/* Card footer */
.proof-footer {
  padding: 16px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pf-left {}

.pf-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .95rem;
}

.pf-meta {
  font-family: var(--mono);
  font-size: .58rem;
  color: var(--muted);
  margin-top: 3px;
}

.pf-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: .6rem;
  color: var(--green);
  background: rgba(71, 255, 126, .08);
  border: 1px solid var(--border-g);
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pf-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

/* ═══ LIGHTBOX ═══ */
.lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(1, 8, 3, .96);
  backdrop-filter: blur(16px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}

.lb.open {
  display: flex;
}

.lb img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .8);
  object-fit: contain;
  cursor: default;
}

.lb-x {
  position: fixed;
  top: 64px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--white);
  z-index: 10000;
  transition: .2s;
}

.lb-x:hover {
  border-color: var(--green);
  color: var(--green);
}

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  z-index: 10000;
  transition: .2s;
  font-size: 1rem;
}

.lb-nav:hover {
  border-color: var(--green);
  color: var(--green);
}

#lbP {
  left: 20px;
}

#lbN {
  right: 20px;
}

/* ═══ SERVICES ═══ */
.svcs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.svc {
  background: var(--s);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  transition: .35s;
  position: relative;
  overflow: hidden;
}

.svc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), #a3ffca);
  transform: scaleX(0);
  transform-origin: left;
  transition: .35s;
}

.svc:hover {
  border-color: var(--border-g);
  background: var(--s2);
  transform: translateY(-3px);
}

.svc:hover::after {
  transform: scaleX(1);
}

.svc-ic {
  width: 44px;
  height: 44px;
  background: var(--green-dim);
  border: 1px solid var(--border-g);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.svc-t {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 7px;
}

.svc-d {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ═══ BEFORE AFTER ═══ */
.pvs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
}

.pvs-col {
  background: var(--s);
  border: 1px solid;
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.pvs-bad {
  border-color: rgba(255, 91, 91, .2);
}

.pvs-bad::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.pvs-ok {
  border-color: var(--border-g);
}

.pvs-ok::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.pvs-h {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .04em;
  margin-bottom: 20px;
}

.pvs-bad .pvs-h {
  color: var(--red);
}

.pvs-ok .pvs-h {
  color: var(--green);
}

.pvs-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pvs-ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
}

.pvs-bad .pvs-ul li {
  background: rgba(255, 91, 91, .04);
}

.pvs-ok .pvs-ul li {
  background: rgba(71, 255, 126, .04);
}

.pvs-div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  background: var(--g2);
  border: 1px solid var(--border-g);
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: .75rem;
  color: var(--green);
  writing-mode: vertical-rl;
  letter-spacing: .18em;
  flex-shrink: 0;
}

/* ═══ TRUST VERIFIED BOX ═══ */
.tvb-section {
  background: var(--g1);
  border-top: 1px solid var(--border);
}

.tvb-outer {
  background: var(--s);
  border: 1px solid var(--border-g);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.tvb-outer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green) 40%, #a3ffca 60%, transparent);
}

.tvb-header {
  padding: 28px 32px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.tvb-header-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(71, 255, 126, .2), rgba(71, 255, 126, .05));
  border: 1px solid var(--border-g);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.tvb-header-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}

.tvb-header-sub {
  font-family: var(--mono);
  font-size: .58rem;
  color: var(--green);
  letter-spacing: .12em;
  margin-top: 2px;
}

.tvb-header-badge {
  margin-left: auto;
  font-family: var(--mono);
  font-size: .58rem;
  color: #010803;
  background: var(--green);
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* 2-row grid of trust items */
.tvb-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.tvb-item {
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: .3s;
  position: relative;
}

.tvb-item:hover {
  background: rgba(71, 255, 126, .04);
}

.tvb-item:nth-child(6n) {
  border-right: none;
}

.tvb-item:nth-last-child(-n+6) {
  border-bottom: none;
}

.tvb-ic {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.tvb-lbl {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  margin-bottom: 3px;
}

.tvb-sub {
  font-family: var(--mono);
  font-size: .55rem;
  color: var(--muted);
  letter-spacing: .06em;
  line-height: 1.5;
}

/* Verified tick overlay */
.tvb-item .vtick {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .5rem;
  color: #010803;
  font-weight: 700;
}

/* Bottom strip */
.tvb-bottom {
  padding: 20px 32px;
  background: rgba(71, 255, 126, .04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.tvb-seal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--muted);
}

.tvb-seal-icon {
  font-size: 1.4rem;
}

.tvb-seal span {
  color: var(--green);
  font-weight: 600;
}

/* ═══ GUARANTEE ═══ */
.guar {
  background: linear-gradient(135deg, rgba(71, 255, 126, .08), rgba(71, 255, 126, .02));
  border: 1px solid var(--border-g);
  border-radius: 18px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.guar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.guar-ic {
  font-size: 2.8rem;
  flex-shrink: 0;
}

.guar-t {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 7px;
}

.guar-t span {
  color: var(--green);
}

.guar-d {
  color: var(--muted);
  line-height: 1.7;
  font-size: .9rem;
}

.guar-bdg {
  flex-shrink: 0;
  text-align: center;
  background: var(--green);
  color: #010803;
  border-radius: 12px;
  padding: 18px 22px;
}

.guar-bdg-n {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
}

.guar-bdg-t {
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .1em;
  margin-top: 4px;
}

/* ═══ WHY TRUST US ═══ */
.wtu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.wtu {
  background: var(--s);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.wtu:hover {
  border-color: var(--border-g);
  transform: translateY(-3px);
}

.wtu::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(ellipse at 50% 0%, rgba(71, 255, 126, .05), transparent 55%);
  pointer-events: none;
}

.wtu-ic {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--green-dim);
  border: 1px solid var(--border-g);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.wtu-t {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 9px;
}

.wtu-d {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.68;
}

/* ═══ WA SLIDER ═══ */
.wa-s {
  background: var(--g0);
  border-top: 1px solid var(--border);
}

.wa-slider {
  overflow: hidden;
  margin-top: 40px;
}

.wa-track {
  display: flex;
  gap: 14px;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}

.wa-card {
  flex: 0 0 calc(20% - 11.2px);
  min-width: 170px;
  background: var(--s);
  border: 1px solid var(--border);
  border-radius: 13px;
  overflow: hidden;
  transition: .3s;
}

.wa-card:hover {
  border-color: var(--border-g);
}

.wa-img {
  height: 560px;
  background: var(--g2);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.wa-img::-webkit-scrollbar {
  width: 4px;
}

.wa-img::-webkit-scrollbar-track {
  background: var(--g2);
}

.wa-img::-webkit-scrollbar-thumb {
  background: rgba(71, 255, 126, .3);
  border-radius: 2px;
}

.wa-img::-webkit-scrollbar-thumb:hover {
  background: rgba(71, 255, 126, .6);
}

.wa-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  position: relative;
}

.wa-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 16px;
  text-align: center;
}

.wa-ph .wpi {
  font-size: 1.7rem;
}

.wa-ph .wpt {
  font-family: var(--mono);
  font-size: .54rem;
  color: var(--muted);
  letter-spacing: .07em;
  line-height: 1.7;
}

.wa-ft {
  padding: 12px 13px;
  border-top: 1px solid var(--border);
}

.wa-nm {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .83rem;
}

.wa-rl {
  font-family: var(--mono);
  font-size: .54rem;
  color: var(--muted);
  margin-top: 1px;
}

.wa-st {
  color: var(--gold);
  font-size: .65rem;
  margin-top: 3px;
}

.sl-ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 20px;
}

.sl-btn {
  width: 38px;
  height: 38px;
  background: var(--s);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s;
  color: var(--white);
}

.sl-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.sl-dots {
  display: flex;
  gap: 5px;
}

.sl-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: .3s;
}

.sl-dot.active {
  background: var(--green);
  width: 16px;
  border-radius: 3px;
}

/* ═══ PREVIEW SCROLL BOX ═══ */
@property --prv-a {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.prv-scroll {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  background-image:
    linear-gradient(var(--g2), var(--g2)),
    conic-gradient(from var(--prv-a),
      transparent 0% 60%,
      rgba(71, 255, 126, .15) 68%,
      rgba(71, 255, 126, .9) 75%,
      #a3ffca 80%,
      rgba(71, 255, 126, .9) 85%,
      rgba(71, 255, 126, .15) 92%,
      transparent 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  animation: prvSpin 3.5s linear infinite;
  transition: transform 0.3s, box-shadow 0.3s;
}

@keyframes prvSpin {
  to {
    --prv-a: 360deg;
  }
}

.prv-scroll:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(71, 255, 126, .18);
}

.prv-scroll img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.anim-border {
  border: 2px solid transparent !important;
  background-image:
    linear-gradient(var(--ab-bg, var(--g1)), var(--ab-bg, var(--g1))),
    conic-gradient(from var(--prv-a),
      transparent 0% 60%,
      rgba(71, 255, 126, .15) 68%,
      rgba(71, 255, 126, .9) 75%,
      #a3ffca 80%,
      rgba(71, 255, 126, .9) 85%,
      rgba(71, 255, 126, .15) 92%,
      transparent 100%) !important;
  background-origin: border-box !important;
  background-clip: padding-box, border-box !important;
  animation: prvSpin 3.5s linear infinite;
}

/* ═══ FLOW ═══ */
.flow {
  display: flex;
  background: var(--s);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.fl {
  flex: 1;
  padding: 26px 16px;
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: .3s;
}

.fl:last-child {
  border-right: none;
}

.fl:hover {
  background: var(--s2);
}

.fl-n {
  font-family: var(--mono);
  font-size: .53rem;
  color: var(--muted);
  letter-spacing: .15em;
  margin-bottom: 9px;
}

.fl-i {
  font-size: 1.5rem;
  margin-bottom: 9px;
}

.fl-t {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 5px;
}

.fl-d {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.55;
}

.fl-hl {
  color: var(--green);
  font-weight: 600;
}

.fl-ar {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 20px;
  height: 20px;
  background: var(--g2);
  border: 1px solid var(--border-g);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: var(--green);
}

.fl:last-child .fl-ar {
  display: none;
}

/* ═══ FAQ ═══ */
.faq-s {
  background: var(--g1);
  border-top: 1px solid var(--border);
}

.faq-w {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 13px;
  margin-bottom: 9px;
  overflow: hidden;
  transition: .3s;
}

.faq-item.open {
  border-color: rgba(71, 255, 126, .35);
  background: rgba(255, 255, 255, .01);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
}

.faq-head {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--s);
  transition: .3s;
}

.faq-head:hover {
  background: var(--s2);
}

.faq-q {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--white);
  padding-right: 20px;
}

.faq-x {
  color: var(--green);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item.open .faq-x {
  transform: rotate(45deg);
  color: var(--red);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(0, 1, 0, 1);
}

.faq-item.open .faq-body {
  max-height: 1000px;
  transition: max-height .6s ease-in-out;
}

.faq-a {
  padding: 0 28px 28px 28px;
  color: var(--muted);
  line-height: 1.7;
  font-size: .95rem;
}

/* ═══ MOBILE NAV ═══ */
@media (max-width: 900px) {
  :where(.page-template-template-third-page, .rh-tp-wrap) nav ul {
    display: none !important;
  }
}

.faq-item.open {
  border-color: var(--border-g);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  transition: .2s;
  gap: 14px;
}

.faq-q:hover {
  color: var(--green);
}

.faq-ic {
  width: 26px;
  height: 26px;
  background: var(--green-dim);
  border: 1px solid var(--border-g);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--green);
  flex-shrink: 0;
  transition: .3s;
}

.faq-item.open .faq-ic {
  transform: rotate(45deg);
  background: var(--green);
  color: #010803;
}

.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.72;
}

.faq-item.open .faq-a {
  display: block;
}

/* ═══ CTA ═══ */
.cta-s {
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse at 50% -20%, rgba(71, 255, 126, .07), transparent 65%);
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 208, 96, .08);
  border: 1px solid rgba(255, 208, 96, .2);
  padding: 6px 18px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: .6rem;
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: 24px;
}

.cta-h {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.3rem, 5vw, 4rem);
  letter-spacing: -.025em;
  line-height: 1.1;
  max-width: 640px;
  margin: 0 auto 18px;
}

.cta-h span {
  color: var(--green);
}

.cta-p {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.72;
  font-size: .97rem;
}

.cta-pills {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--muted);
}

.cta-pill span {
  color: var(--green);
}

/* ═══ PRICING ═══ */
.pricing-s {
  background: var(--g0);
  border-top: 1px solid var(--border);
}

.pg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.pc {
  background: var(--s);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: .3s;
}

.pc:hover {
  border-color: var(--border-g);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .5);
}

.pc-hot {
  border-color: var(--border-g);
  background: linear-gradient(160deg, rgba(71, 255, 126, .08) 0%, var(--s) 55%);
}

.pc-hot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.pc-hot-badge {
  background: var(--green);
  color: #010803;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: .64rem;
  letter-spacing: .16em;
  padding: 8px 0;
  text-align: center;
}

.pc-inner {
  padding: 26px 24px 0;
}

.pc-head {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 18px;
}

.pc-ico {
  width: 50px;
  height: 50px;
  background: var(--green-dim);
  border: 1px solid var(--border-g);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pc-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.2;
  margin-bottom: 5px;
}

.pc-for {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.5;
}

.pc-price-box {
  border: 1.5px dashed rgba(71, 255, 126, .32);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
  margin-bottom: 16px;
  background: rgba(71, 255, 126, .025);
}

.pc-amt {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--green);
}

.pc-start {
  font-family: var(--mono);
  font-size: .58rem;
  color: var(--muted);
  letter-spacing: .18em;
  margin-top: 5px;
}

.pc-tag {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(71, 255, 126, .07);
  border: 1px solid var(--border-g);
  padding: 9px 14px;
  border-radius: 9px;
  margin-bottom: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .79rem;
  color: var(--green);
}

.pc-tag-dot {
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: #010803;
  flex-shrink: 0;
}

.pc-desc {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 18px;
}

.pc-fl {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .1em;
  background: var(--g2);
  padding: 7px 13px;
  border-radius: 7px;
  margin-bottom: 12px;
  display: inline-block;
}

.pc-feat {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pc-feat-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.pc-feat li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.4;
}

.pc-feat li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}

.pc-foot {
  border-top: 1px solid var(--border);
  margin-top: 20px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(71, 255, 126, .03);
}

.pc-foot-ic {
  font-size: 1.3rem;
}

.pc-foot-t {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  color: var(--green);
}

.pc-foot-d {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 1px;
}

.pc-cta-w {
  padding: 18px 24px 24px;
}

.pc-cta {
  display: block;
  text-align: center;
  background: var(--s2);
  border: 1px solid var(--border-g);
  color: var(--green);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  padding: 13px;
  border-radius: 9px;
  text-decoration: none;
  transition: .25s;
}

.pc-cta:hover {
  background: var(--green);
  color: #010803;
  transform: translateY(-1px);
}

.pc-hot .pc-cta {
  background: var(--green);
  color: #010803;
}

.pc-hot .pc-cta:hover {
  background: #fff;
}

@media(max-width:820px) {
  .pg {
    grid-template-columns: 1fr;
  }

  .pc-feat-2 {
    grid-template-columns: 1fr;
  }
}

/* ═══ FOOTER ═══ */
footer {
  background: var(--g1);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.fi {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

footer p {
  font-size: .76rem;
  color: var(--muted);
  font-family: var(--mono);
}

.ft-links {
  display: flex;
  gap: 18px;
}

.ft-links a {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--muted);
  text-decoration: none;
  transition: .2s;
}

.ft-links a:hover {
  color: var(--green);
}

/* Centered footer layout */
.fi.fi-centered {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 32px;
}

.fi-logo img {
  height: 40px;
  width: auto;
}

.fi-contacts {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.fi-link {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--muted);
  text-decoration: none;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.fi-link:hover {
  color: var(--green);
}

.fi-link-wa:hover {
  color: #25D366;
}

.fi-dot {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--border);
  margin: 0 2px;
}

.fi-copy {
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--muted);
}

/* ═══ FINE PRINT ═══ */
.fine-print {
  border-top: 1px solid rgba(255, 255, 255, .04);
  padding: 18px 0 14px;
}

.fine-print-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.fine-print p {
  font-family: var(--mono);
  font-size: .56rem;
  color: rgba(240, 255, 244, .2);
  line-height: 1.85;
  letter-spacing: .01em;
}

.fine-print a {
  color: rgba(240, 255, 244, .28);
  text-decoration: underline;
  text-decoration-color: rgba(240, 255, 244, .12);
  transition: .2s;
}

.fine-print a:hover {
  color: rgba(240, 255, 244, .45);
}

.footer-bottom {
  background: var(--g0);
  border-top: 1px solid var(--border);
  padding: 14px 32px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-family: var(--mono);
  font-size: .6rem;
  color: rgba(240, 255, 244, .28);
  line-height: 1.6;
}

.footer-bottom a {
  color: var(--green);
  text-decoration: none;
}

/* ═══ REVEAL ═══ */
:where(.page-template-template-third-page) .rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

:where(.page-template-template-third-page) .rv.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

.d3 {
  transition-delay: .3s
}

.d4 {
  transition-delay: .4s
}

/* ═══ BASE RESPONSIVE ═══ */
@media(max-width:1024px) {
  .ts-in {
    grid-template-columns: repeat(3, 1fr);
  }

  .svcs {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .wtu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pvs {
    grid-template-columns: 1fr;
  }

  .pvs-div {
    writing-mode: horizontal-tb;
    width: auto;
    height: 42px;
    padding: 0 22px;
  }

  .guar {
    flex-direction: column;
    text-align: center;
  }

  .tvb-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tvb-item:nth-child(3n) {
    border-right: none;
  }

  .tvb-item:nth-child(6n) {
    border-right: 1px solid var(--border);
  }
}

@media(max-width:700px) {
  nav ul {
    display: none;
  }

  .wrap {
    padding: 0 16px;
  }

  .ts-in {
    grid-template-columns: repeat(2, 1fr);
  }

  .svcs {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .wtu-grid {
    grid-template-columns: 1fr;
  }

  .tvb-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow {
    flex-direction: column;
  }

  .fl {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .fl:last-child {
    border-bottom: none;
  }

  .fl-ar {
    display: none;
  }

  .hero h1 {
    font-size: 2.6rem;
  }
}

/* ═══ SCREEN-FRIENDLY IMPROVEMENTS ═══ */

/* Prevent overflow on all devices */
* {
  -webkit-tap-highlight-color: transparent;
}

img,
svg,
iframe {
  max-width: 100%;
}

/* Better touch targets */
a,
button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

nav a {
  min-height: unset;
}

.sl-btn {
  min-height: 38px;
}

/* Smooth scrolling + overscroll */
html {
  -webkit-overflow-scrolling: touch;
}

/* Better hero on very small screens */
@media(max-width:400px) {
  .hero h1 {
    font-size: 2.2rem !important;
  }

  .hero-acts {
    flex-direction: column;
    align-items: center;
  }

  .btn-p,
  .btn-o {
    width: 100%;
    justify-content: center;
  }

  .wrap {
    padding: 0 14px;
  }

  .hn {
    min-width: 90px;
    padding: 14px 12px;
  }

  .hn-v {
    font-size: 1.4rem;
  }
}

/* 375px–600px (phones) */
@media(max-width:600px) {
  section {
    padding: 48px 0;
  }

  .hero {
    padding: 48px 0 56px;
  }

  .hero-nums {
    gap: 8px;
  }

  .hn {
    min-width: 86px;
    padding: 12px 10px;
  }

  .proof-img {
    aspect-ratio: 4/3;
  }

  .guar {
    padding: 24px 20px;
  }

  .guar-bdg {
    padding: 14px 16px;
  }

  .guar-bdg-n {
    font-size: 1.4rem;
  }

  .tvb-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tvb-item:nth-child(2n) {
    border-right: none;
  }

  .tvb-item:nth-child(4n) {
    border-right: 1px solid var(--border);
  }

  .sh h2 {
    font-size: 1.7rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step-ar {
    display: none;
  }

  .fi {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .ft-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .fine-print-inner {
    padding: 0 14px;
  }

  .footer-bottom {
    padding: 14px 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pg {
    grid-template-columns: 1fr;
  }

  .pc-feat-2 {
    grid-template-columns: 1fr;
  }

  .wtu-grid {
    grid-template-columns: 1fr;
  }
}

/* 601px–768px (large phones / small tablets) */
@media(min-width:601px) and (max-width:768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .tvb-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wtu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pg {
    grid-template-columns: 1fr;
  }
}

/* 769px–1024px (tablets) */
@media(min-width:769px) and (max-width:1024px) {
  .wtu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large screens: prevent content stretching too wide */
@media(min-width:1440px) {
  .wrap {
    max-width: 1300px;
  }
}

/* Fix wa-card slider on mobile */
@media(max-width:600px) {
  .wa-card {
    flex: 0 0 calc(100% - 8px);
    min-width: unset;
  }
}

@media(min-width:601px) and (max-width:900px) {
  .wa-card {
    flex: 0 0 calc(33.33% - 10px);
    min-width: unset;
  }
}

/* Proof stack - better on phones */
@media(max-width:820px) {
  .proof-stack {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media(max-width:600px) {
  .proof-ph {
    padding: 32px 20px;
  }

  .proof-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Flow section responsive */
@media(max-width:900px) {
  .flow {
    flex-wrap: wrap;
  }

  .fl {
    flex: 0 0 calc(50% - 1px);
  }
}

@media(max-width:500px) {
  .fl {
    flex: 0 0 100%;
  }
}

/* Pricing responsive */
@media(max-width:900px) {
  .pg {
    grid-template-columns: 1fr;
  }
}

/* SVG/Canvas performance */
#cvs {
  will-change: transform;
}

/* Focus outlines for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* Prevent horizontal scroll from orbs */
.orb1,
.orb2,
.orb3,
.orb4 {
  max-width: 100vw;
  overflow: hidden;
}

@media(max-width:820px) {
  section:has(.sh-tag:contains('STARTER PLAN')) .svcs {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media(max-width:500px) {
  section:has(.sh-tag:contains('STARTER PLAN')) .svcs {
    grid-template-columns: 1fr !important;
  }

  section:has(.sh-tag:contains('COMPLETE DIGITAL STORE')) .svcs {
    grid-template-columns: 1fr !important;
  }
}



.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  transition: .3s;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .5);
  background: #20bb5a;
}

.wa-float svg {
  flex-shrink: 0;
}

@media(max-width:820px) {
  section:has(.sh-tag:contains('STARTER PLAN')) .svcs {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media(max-width:500px) {
  section:has(.sh-tag:contains('STARTER PLAN')) .svcs {
    grid-template-columns: 1fr !important;
  }

  section:has(.sh-tag:contains('COMPLETE DIGITAL STORE')) .svcs {
    grid-template-columns: 1fr !important;
  }
}



.prv-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.prv-modal.open {
  display: flex;
}

.prv-modal-content {
  max-width: 90vw;
  width: 900px;
  height: 90vh;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--g1);
  border-radius: 12px;
  border: 1px solid var(--border-g);
  padding: 52px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  scroll-behavior: smooth;
}

.prv-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--s2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  border: 1px solid var(--border);
  transition: 0.2s;
}

.prv-close:hover {
  border-color: var(--green);
  color: var(--green);
}

.prv-modal-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: none;
  object-fit: unset;
}

.prv-modal-placeholder {
  font-size: 4rem;
  margin-bottom: 16px;
}

.prv-modal-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  color: var(--white);
}

.prv-box:hover {
  transform: scale(1.02);
  border-color: var(--green) !important;
  background: var(--g1) !important;
}


html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* Hide Astra theme elements that bleed through */
#ast-scroll-top { display: none !important; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Hide WhatsApp float */
.wa-float { display: none !important; }

/* ═══ LIGHT MODE OVERRIDES FOR LANDING PAGE ═══ */
/* Automatically invert TP sections when placed on the white Landing Page */
.page-template-template-landing-page .rh-tp-wrap {
  --g0: transparent;
  --g1: transparent;
  --g2: #f8fafc;
  --green: #16a34a; /* Darker green for visibility on light bg */
  --green-dim: rgba(22, 163, 74, 0.1);
  --border-g: rgba(22, 163, 74, 0.2);
  --border: rgba(0, 0, 0, 0.12);
  --white: #0f172a; /* Make text dark */
  --muted: #475569; /* Make muted text dark gray */
  --s: #f1f5f9; /* Solid light gray so boxes are visible */
  --s2: #e2e8f0; /* Solid darker gray on hover */
  background: transparent !important;
}

/* ═══ DARK MODE OVERRIDES FOR SECOND PAGE ═══ */
/* Make background transparent when placed on Second Page */
.page-template-template-second-page .rh-tp-wrap {
  --g0: transparent;
  --g1: transparent;
  background: transparent !important;
}

/* Force transparent background on TP sections to blend into LP and SP */
.page-template-template-landing-page .rh-tp-wrap section,
.page-template-template-second-page .rh-tp-wrap section {
  background: transparent !important;
}

.page-template-template-landing-page .rh-tp-wrap footer,
.page-template-template-second-page .rh-tp-wrap footer {
  background: transparent !important;
}

.page-template-template-landing-page .rh-tp-wrap .hero h1 em {
  /* Ensure gradient text is legible on white */
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #16a34a 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Light mode button hovers */
.page-template-template-landing-page .rh-tp-wrap .btn-p:hover,
.page-template-template-landing-page .rh-tp-wrap .nav-cta:hover,
.page-template-template-landing-page .rh-tp-wrap .p-btn:hover {
  background: #0f172a !important;
  color: #ffffff !important;
}

.page-template-template-landing-page .rh-tp-wrap .btn-o:hover {
  background: #f1f5f9;
}

/* Fix hardcoded footer colors and hero pill in Light Mode */
.page-template-template-landing-page .rh-tp-wrap .fine-print p {
  color: #64748b; /* Slate 500 */
}

.page-template-template-landing-page .rh-tp-wrap .fine-print a {
  color: #475569; /* Slate 600 */
  text-decoration-color: #cbd5e1;
}

.page-template-template-landing-page .rh-tp-wrap .fine-print a:hover {
  color: #0f172a;
}

.page-template-template-landing-page .rh-tp-wrap .footer-bottom p {
  color: #64748b;
}

.page-template-template-landing-page .rh-tp-wrap .hero-pill {
  color: #000000 !important;
  border: 1px solid #000000 !important;
  background: #f8fafc !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
}

.page-template-template-landing-page .rh-tp-wrap .hero-pill .hdot {
  background: #000000 !important;
}
