:root {
  --black: #08080f;
  --hero-bg: #0b0b14;
  --white: #ffffff;
  --off: #ebebed;
  --orange: #ff5c1a;
  --orange2: #ff8540;
  --blue: #1a56ff;
  --ink: #111118;
  --muted: #5a5a68;
  --gray: #9898a0;
  --card-d: rgba(16, 16, 28, 0.65);
  --bd-d: rgba(255, 255, 255, .07);
  --bd-l: rgba(0, 0, 0, .08);
  --accent-glow: rgba(255, 92, 26, 0.15);
  --accent-blue: rgba(26, 86, 255, 0.12);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
  background: var(--black);
  color: var(--white)
}

/* ── CURSOR ── */
#cur {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
  box-shadow: 0 0 12px var(--orange)
}

#cur2 {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 92, 26, .5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left .1s ease, top .1s ease, width .3s, height .3s, border-color .3s
}

#trail-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997
}

/* ── 3D HERO CANVAS ── */
#hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0
}

/* ── CARD 3D TILT ── */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform .08s ease
}

/* ── FLOATING SHAPES ── */
.shape-float {
  position: absolute;
  pointer-events: none;
  animation: floatShape linear infinite
}

@keyframes floatShape {
  0% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(-30px) rotate(180deg)
  }

  100% {
    transform: translateY(0) rotate(360deg)
  }
}

nav {
  position: fixed;
  top: 0;
  height: 80px;
  width: 100%;
  z-index: 500;
  padding: 0 64px;              /* FIXED */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bd-d);
}
.logo img {
  height: 60px;     /* control by height */
  width: auto;
  display: block;
    transition: 0.3s;

}
.logo img:hover {
  transform: scale(1.05);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 38px
}

nav a {
  text-decoration: none;
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s
}

nav a:hover {
  color: var(--white)
}

.ncta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background .2s, transform .2s !important
}

.ncta:hover {
  background: var(--orange2) !important;
  transform: scale(1.04) !important
}



@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .25
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: .55;
    transform: translate(-50%, -50%) scale(1)
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12)
  }
}

@keyframes scrollX {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.98)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 90px;
  background: var(--hero-bg);
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 40%, var(--accent-glow) 0%, transparent 65%),
    radial-gradient(circle 400px at 15% 30%, var(--accent-blue) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-blue), transparent 70%);
  bottom: 10%;
  right: -5%;
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite reverse
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 92, 26, .1);
  border: 1px solid rgba(255, 92, 26, .3);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 32px;
  animation: fadeUp .7s ease both
}

.bdot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(54px, 9vw, 116px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -3.5px;
  margin-bottom: 30px;
  animation: fadeUp .7s .1s ease both
}

.h1o {
  color: var(--orange);
  display: block
}

.h1g {
  color: var(--gray);
  display: block;
  font-size: .72em
}

.hero-sub {
  font-size: 18px;
  color: var(--gray);
  max-width: 500px;
  line-height: 1.72;
  margin-bottom: 46px;
  animation: fadeUp .7s .2s ease both
}

.hbtns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 76px;
  animation: fadeUp .7s .3s ease both
}

.btn-p {
  background: var(--orange);
  color: #fff;
  padding: 15px 34px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all .25s;
  font-family: 'Plus Jakarta Sans', sans-serif
}

.btn-p:hover {
  background: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255, 92, 26, .28)
}

.btn-g {
  background: transparent;
  color: var(--white);
  padding: 15px 34px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--bd-d);
  transition: all .25s;
  font-family: 'Plus Jakarta Sans', sans-serif
}

.btn-g:hover {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .04)
}

.hstats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .7s .4s ease both
}

.stat {
  text-align: center
}

.snum {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800
}

.snum em {
  font-style: normal;
  color: var(--orange)
}

.slbl {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px
}

/* MARQUEE BRIDGE */
.mwrap {
  overflow: hidden;
  background: linear-gradient(180deg, var(--hero-bg) 0%, var(--off) 100%);
  border-top: 1px solid var(--bd-d)
}

.minner {
  padding: 18px 0;
  border-bottom: 1px solid var(--bd-l)
}

.mtrack {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scrollX 22s linear infinite
}

.mitem {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 18px
}

.mitem::after {
  content: '✦';
  color: var(--orange);
  font-size: 9px
}

/* LIGHT SECTION */
.ls {
  background: var(--off);
  color: var(--ink);
  padding: 100px 64px
}

.ls .sec-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 14px
}

.ls .sec-ttl {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  color: var(--ink)
}

.ls .sec-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.72;
  max-width: 480px
}

/* SERVICES */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 56px
}

@media (max-width: 1300px) {
  .svc-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

.svc-card {
  background: #f5f5f7;
  border: 1px solid var(--bd-l);
  border-radius: 20px;
  padding: 38px 34px;
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden
}

.svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08), 0 0 24px rgba(255, 92, 26, 0.15);
  border-color: rgba(255, 92, 26, 0.25);
}

.svc-card:hover::after {
  transform: scaleX(1)
}

.svc-icon {
  font-size: 34px;
  margin-bottom: 18px;
  display: block
}

.svc-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: -.3px
}

.svc-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72
}

.svc-tag {
  display: inline-block;
  margin-top: 18px;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(255, 92, 26, .08);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600
}

/* PROCESS DARK */
.proc {
  background: var(--black);
  color: var(--white);
  padding: 100px 64px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--bd-d);
  border-bottom: 1px solid var(--bd-d)
}

.proc::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-blue), transparent 70%);
  top: -10%;
  left: -10%;
  pointer-events: none;
  opacity: 0.6;
}

.proc .sec-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 14px
}

.proc .sec-ttl {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 18px
}

.proc .sec-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.72;
  max-width: 480px
}

.proc::before {
  content: 'HOW IT WORKS';
  position: absolute;
  top: 40px;
  right: -10px;
  font-family: 'Outfit', sans-serif;
  font-size: 110px;
  font-weight: 800;
  color: rgba(255, 255, 255, .016);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -4px
}

.proc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 56px
}

.ptabs {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.ptab {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 26px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s;
  position: relative;
  overflow: hidden
}

.ptab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(255, 92, 26, .07), rgba(26, 86, 255, .04));
  opacity: 0;
  transition: opacity .3s
}

.ptab:hover::before,
.ptab.active::before {
  opacity: 1
}

.ptab.active {
  border-color: rgba(255, 92, 26, .32);
  background: rgba(255, 92, 26, .05)
}

.pt-num {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  min-width: 26px;
  transition: color .3s
}

.ptab.active .pt-num {
  color: var(--orange)
}

.pt-bar {
  width: 3px;
  height: 34px;
  border-radius: 10px;
  background: var(--bd-d);
  transition: background .3s;
  flex-shrink: 0
}

.ptab.active .pt-bar {
  background: var(--orange)
}

.pt-info {
  flex: 1
}

.pt-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
  transition: color .3s
}

.ptab.active .pt-title {
  color: var(--white)
}

.ptab:not(.active) .pt-title {
  color: var(--gray)
}

.pt-hint {
  font-size: 12px;
  color: var(--gray)
}

.pt-ico {
  font-size: 24px;
  opacity: .35;
  transition: opacity .3s, transform .3s
}

.ptab.active .pt-ico {
  opacity: 1;
  transform: scale(1.18)
}

.ppanel {
  position: sticky;
  top: 110px
}

.pdetail {
  display: none;
  animation: panelIn .42s cubic-bezier(.16, 1, .3, 1) both
}

.pdetail.active {
  display: block
}

.pd-card {
  background: var(--card-d);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--bd-d);
  border-radius: 22px;
  padding: 44px 42px;
  position: relative;
  overflow: hidden
}

.pd-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 92, 26, .13), transparent 70%);
  pointer-events: none
}

.pd-bnum {
  font-family: 'Outfit', sans-serif;
  font-size: 76px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 92, 26, .1);
  position: absolute;
  top: 24px;
  right: 36px;
  pointer-events: none
}

.pd-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px
}

.pd-ttl {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.12
}

.pd-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.76;
  margin-bottom: 26px
}

.pd-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.pd-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5
}

.chk {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 92, 26, .13);
  border: 1px solid rgba(255, 92, 26, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: var(--orange);
  margin-top: 1px
}

.pd-dur {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--bd-d);
  border-radius: 100px;
  font-size: 13px;
  color: var(--gray)
}

.pd-dur strong {
  color: var(--white);
  font-weight: 600
}

.pdots {
  display: flex;
  gap: 7px;
  margin-top: 24px
}

.pdot {
  height: 4px;
  border-radius: 10px;
  background: var(--bd-d);
  transition: all .4s;
  cursor: pointer
}

.pdot.active {
  background: var(--orange);
  width: 26px !important
}

.pdot:not(.active) {
  width: 12px
}

@media(max-width:900px) {
  .proc-layout {
    grid-template-columns: 1fr
  }

  .ppanel {
    position: static
  }
}

/* PRICING LIGHT */
.pricing-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px
}

.currency-toggle {
  display: flex;
  gap: 0;
  background: #ebebea;
  border-radius: 100px;
  padding: 4px
}

.ctab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  color: var(--muted);
  border: none;
  background: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif
}

.ctab.on {
  background: #f5f5f7;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px
}

.pc {
  background: #f5f5f7;
  border: 1.5px solid var(--bd-l);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  transition: all .35s;
  overflow: hidden;
  cursor: pointer;
}

.pc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 92, 26, .04), transparent 60%);
  opacity: 0;
  transition: opacity .35s
}

.pc:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, .12)
}

.pc:hover::before {
  opacity: 1
}

.pc.hot {
  border-color: var(--orange);
  background: linear-gradient(160deg, #fdf4f0, #f5f5f7)
}

.pc-badge {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--orange);
  color: #fff;
  padding: 5px 16px;
  border-radius: 0 0 14px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px
}

.pc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px
}

.pc-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink)
}

.pc-icon {
  font-size: 28px
}

.pc-price-wrap {
  margin: 14px 0 6px
}

.pc-main-price {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px
}

.pc-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange)
}

.pc-num {
  color: var(--ink)
}

.pc-per {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 2px
}

.pc-alt-prices {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px
}

.pc-alt {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--off);
  border: 1px solid var(--bd-l);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500
}

.pc-alt em {
  font-style: normal;
  color: var(--ink);
  font-weight: 600
}

.pc-div {
  height: 1px;
  background: var(--bd-l);
  margin: 20px 0
}

.pc-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px
}

.pc-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.pc-feats li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4
}

.pc-chk {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 92, 26, .1);
  border: 1px solid rgba(255, 92, 26, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 9px;
  color: var(--orange);
  margin-top: 1px
}

.pc-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-top: 26px;
  transition: all .25s;
  font-family: 'Plus Jakarta Sans', sans-serif
}

.pc-out {
  border: 1.5px solid var(--bd-l);
  color: var(--ink)
}

.pc-out:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 92, 26, .03)
}

.pc-fill {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 92, 26, .25)
}

.pc-fill:hover {
  background: var(--orange2);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(255, 92, 26, .35)
}

.pc-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--muted)
}

.pc-note strong {
  color: var(--ink)
}

/* TESTIMONIALS WHITE */
.tgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px
}

.tcard {
  background: #f5f5f7;
  border: 1.5px solid var(--bd-l);
  border-radius: 22px;
  padding: 32px;
  transition: all .35s;
  position: relative;
  overflow: hidden
}

.tcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s
}

.tcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .1);
  border-color: rgba(255, 92, 26, .2)
}

.tcard:hover::before {
  transform: scaleX(1)
}

.tcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px
}

.tavatar-wrap {
  display: flex;
  align-items: center;
  gap: 12px
}

.tavatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(255, 92, 26, .2)
}

.taname {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink)
}

.tarole {
  font-size: 12px;
  color: var(--gray);
  margin-top: 1px
}

.tstars {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 1px
}

.tquote {
  font-size: 28px;
  color: rgba(255, 92, 26, .15);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px
}

.tcard p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.76;
  font-style: italic;
  margin-bottom: 22px
}

.tresults {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.tres {
  background: var(--off);
  border: 1px solid var(--bd-l);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  flex: 1;
  min-width: 80px
}

.tres-num {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1
}

.tres-lbl {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px
}

.tplatform {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  padding: 4px 12px;
  background: rgba(255, 92, 26, .06);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange)
}

/* CTA DARK */
.cta-wrap {
  padding: 0 64px 100px;
  background: var(--off)
}

.cta-box {
  background: linear-gradient(140deg, #0f0408, #08080f, #030812);
  border: 1px solid rgba(255, 92, 26, .2);
  border-radius: 28px;
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 92, 26, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 92, 26, .04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none
}

.cta-glow {
  position: absolute;
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, var(--accent-glow), var(--accent-blue), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ctaPulse 5s ease-in-out infinite
}

.cta-glow2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(26, 86, 255, .08), transparent 70%);
  top: 10%;
  right: 5%;
  pointer-events: none
}

@keyframes ctaPulse {

  0%,
  100% {
    opacity: .7;
    transform: translate(-50%, -50%) scale(1)
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1)
  }
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 92, 26, .1);
  border: 1px solid rgba(255, 92, 26, .25);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 28px;
  position: relative
}

.cta-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -2.5px;
  margin-bottom: 16px;
  position: relative;
  line-height: 1
}

.cta-sub {
  color: var(--gray);
  font-size: 17px;
  margin-bottom: 48px;
  position: relative;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 52px
}

.cta-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative
}

.ctrust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray)
}

.ctrust-icon {
  font-size: 16px
}

/* FOOTER DARK */
footer {
  background: var(--black);
  border-top: 1px solid var(--bd-d);
  padding: 60px 64px
}

.ft {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px
}

.fb .logo {
  margin-bottom: 12px;
  height: 40px;
  width: auto;
}

.fb p {
  font-size: 14px;
  color: var(--gray);
  max-width: 240px;
  line-height: 1.7
}

.fl h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px
}

.fl ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.fl a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s
}

.fl a:hover {
  color: var(--white)
}

.fb2 {
  border-top: 1px solid var(--bd-d);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--gray)
}

.socials {
  display: flex;
  gap: 12px
}

.socl {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--bd-d);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  color: var(--gray);
  transition: all .2s
}

.socl:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px)
}

.rev {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease
}

.rev.vis {
  opacity: 1;
  transform: translateY(0)
}

/* ── CONTACT SECTION ───────────────────────────────────── */
.contact-section {
  background: var(--black);
  color: var(--white);
  padding: 100px 64px;
  position: relative;
  overflow: hidden
}

.contact-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 92, 26, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 92, 26, .03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none
}

.contact-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow), var(--accent-blue), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: contactPulse 6s ease-in-out infinite
}

@keyframes contactPulse {
  0%, 100% { opacity: .6; transform: translate(-50%, -50%) scale(1) }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15) }
}

.form-highlight {
  animation: formFlash 2s ease-out;
}

@keyframes formFlash {
  0% { box-shadow: 0 0 0 0 rgba(255, 92, 26, 0.4); border-color: var(--orange); }
  50% { box-shadow: 0 0 40px 10px rgba(255, 92, 26, 0.2); border-color: var(--orange); }
  100% { box-shadow: 0 0 0 0 rgba(255, 92, 26, 0); border-color: var(--bd-d); }
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.contact-header {
  text-align: center;
  margin-bottom: 60px
}

.contact-header .sec-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 14px
}

.contact-header .sec-ttl {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 18px
}

.contact-header .sec-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.72;
  max-width: 500px;
  margin: 0 auto
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ci-card {
  background: var(--card-d);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--bd-d);
  border-radius: 16px;
  padding: 24px;
  transition: all .25s;
  display: block;
  text-decoration: none;
  color: inherit;
}

.ci-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 92, 26, 0.4);
  background: rgba(16, 16, 28, 0.85);
}

.ci-icon {
  font-size: 28px;
  margin-bottom: 14px
}

.ci-title {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-bottom: 6px
}

.ci-detail {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px
}

.ci-sub {
  font-size: 13px;
  color: var(--gray)
}

/* Social Links */
.ci-social {
  background: var(--card-d);
  border: 1px solid var(--bd-d);
  border-radius: 16px;
  padding: 24px;
  margin-top: 8px;
  transition: all .25s
}

.ci-social-title {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-bottom: 16px
}

.ci-social-links {
  display: flex;
  gap: 12px
}

.csl {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 92, 26, .1);
  border: 1px solid rgba(255, 92, 26, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  transition: all .25s
}

.csl:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 92, 26, .3)
}

/* Contact Form */
.contact-form-wrap {
  position: relative
}

.contact-form {
  background: var(--card-d);
  border: 1px solid var(--bd-d);
  border-radius: 22px;
  padding: 40px;
  position: relative;
  overflow: hidden
}

.contact-form::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 92, 26, .08), transparent 70%);
  pointer-events: none
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cf-full {
  margin-bottom: 24px
}

.cf-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray)
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--bd-d);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .25s;
  outline: none
}

.cf-group input::placeholder,
.cf-group textarea::placeholder {
  color: var(--muted)
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 92, 26, .05)
}

.cf-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a5a68' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px
}

.cf-group select option {
  background: var(--card-d);
  color: var(--white)
}

.cf-group textarea {
  resize: vertical;
  min-height: 120px
}

.cf-submit {
  width: 100%;
  padding: 18px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif
}

.cf-submit:hover {
  background: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 92, 26, .35)
}

/* Contact Trust */
.contact-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--bd-d)
}

.ct-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray)
}

.ct-icon {
  font-size: 16px
}

/* Responsive */
@media(max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr
  }
  
  .contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
  }
  
  .ci-social {
    grid-column: span 2
  }
}

@media(max-width: 600px) {
  .contact-section {
    padding: 70px 24px
  }
  
  .contact-info {
    grid-template-columns: 1fr
  }
  
  .ci-social {
    grid-column: span 1
  }
  
  .cf-row {
    grid-template-columns: 1fr
  }
  
  .contact-form {
    padding: 28px 22px
  }
  
  .contact-trust {
    gap: 16px
  }
  
  .ct-item {
    font-size: 12px
  }
}

/* FOUNDERS SECTION */
.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.founder-card {
  background: #f5f5f7;
  border: 1px solid var(--bd-l);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: block;
}

.founder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 92, 26, 0.3);
}

.founder-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.founder-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.founder-role {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .founder-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── RESPONSIVE & MOBILE STYLES ────────────────────────── */
.menu-toggle {
  display: none;
}

@media (max-width: 991px) {
  nav {
    padding: 0 24px;
    height: 70px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
  }
  .menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  nav ul {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 70px);
    background: rgba(8, 8, 15, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 30px 24px;
    transition: 0.3s ease-in-out;
    border-left: 1px solid var(--bd-d);
    z-index: 499;
  }
  nav ul.nav-active {
    right: 0;
  }
  .hero {
    padding: 120px 20px 60px;
  }
  .hero h1 {
    font-size: clamp(40px, 8vw, 60px);
  }
  .hstats {
    gap: 30px;
  }
  .snum {
    font-size: 28px;
  }
  .ls, .proc, .contact-section, .cta-wrap {
    padding: 60px 20px;
  }
  .pd-card {
    padding: 30px 20px;
  }
  .proc-layout, .svc-grid, .founder-grid, .contact-grid {
    gap: 30px;
  }
  .ft {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .fb {
    grid-column: span 2;
  }
  .fb p {
    max-width: 400px;
  }
  footer {
    padding: 50px 24px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(32px, 10vw, 48px);
    letter-spacing: -1px;
  }
  .hero-sub {
    font-size: 15px;
  }
  .hbtns {
    flex-direction: column;
    width: 100%;
  }
  .btn-p, .btn-g {
    width: 100%;
    text-align: center;
  }
  .mitem {
    font-size: 11px;
  }
  .pd-bnum {
    font-size: 50px;
    top: 10px;
    right: 15px;
  }
  .pd-card::after {
    display: none;
  }
  .contact-form::after {
    display: none;
  }
  .ft {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fb {
    grid-column: span 1;
  }
  .fb2 {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding-top: 24px;
  }
}

