/* Online Pay Portals — Dark Fintech Theme v2 */

:root {
  --bg: #06081a;
  --bg-2: #0a0d2c;
  --bg-3: #10143d;
  --surface: rgba(255, 255, 255, .04);
  --surface-2: rgba(255, 255, 255, .06);
  --border: rgba(255, 255, 255, .08);
  --border-strong: rgba(255, 255, 255, .14);
  --text: #e9ecff;
  --text-soft: #a6acd6;
  --text-mute: #7077a8;
  --neon-purple: #8b5cf6;
  --neon-pink: #ec4899;
  --neon-blue: #22d3ee;
  --neon-violet: #a855f7;
  --hero-grad: radial-gradient(60% 60% at 80% 10%, rgba(236, 72, 153, .22), transparent 65%), radial-gradient(50% 60% at 10% 80%, rgba(124, 58, 237, .28), transparent 65%), linear-gradient(135deg, #0a0322 0%, #1a0540 50%, #3b0764 100%);
  --grad-primary: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c026d3 100%);
  --grad-soft: linear-gradient(135deg, rgba(139, 92, 246, .18), rgba(236, 72, 153, .12) 60%, rgba(34, 211, 238, .14));
  --grad-text: linear-gradient(90deg, #c4b5fd 0%, #f9a8d4 50%, #67e8f9 100%);
  --grad-pink: linear-gradient(135deg, #a21caf 0%, #c026d3 50%, #db2777 100%);
  --grad-accent: linear-gradient(135deg, #7c3aed 0%, #db2777 50%, #f43f5e 100%);
  --grad-neon: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --shadow-glow: 0 30px 80px -20px rgba(139, 92, 246, .45), 0 0 0 1px rgba(255, 255, 255, .04) inset;
  --shadow-card: 0 20px 60px -25px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .05) inset;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Ambient background glow that follows the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 12% -10%, rgba(139, 92, 246, .28), transparent 60%),
    radial-gradient(800px 600px at 95% 10%, rgba(236, 72, 153, .22), transparent 60%),
    radial-gradient(900px 700px at 50% 110%, rgba(34, 211, 238, .18), transparent 60%);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px) 0 0/40px 40px,
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px) 0 0/40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  z-index: -1;
  pointer-events: none;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px
}

h1,
h2,
h3,
h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0 0 .3em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  letter-spacing: -.015em;
  margin-top: 18px;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -.01em
}

p {
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0 0 1em
}

a {
  color: #c4b5fd;
  text-decoration: none;
  transition: color .2s
}

a:hover {
  color: #fff
}

.text-grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-center {
  text-align: center
}

.mt-4 {
  margin-top: 2rem
}

/* ---------- NAV ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  background: rgba(6, 8, 26, .72);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 74px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 24px -6px rgba(139, 92, 246, .6);
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
  flex: 1;
  justify-content: center
}

.nav-links>li>a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-soft);
  font-weight: 500;
  font-size: .94rem;
  transition: color .2s, background .2s;
  height: 65px;
  align-items: center;
}

.nav-links>li>a:hover {
  color: #fff;
  background: transparent;
}

.has-menu {
  position: relative
}

.has-menu>a::after {
  content: "";
  position: absolute;
  top: 54%;
  clip-path: polygon(0 0, 47% 100%, 100% 0);
  width: 8px;
  height: 6px;
  background: #8f95ba;
  transform: translateY(-50%);
  right: -2px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 260px;
  padding: 10px;
  background: rgba(16, 20, 61, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 60;
}

.dropdown.lg {
  min-width: 680px;
  display: none;
  flex-direction: row;
  flex-wrap: wrap
}

.dropdown.lg a {
  flex: 0 0 calc(50% - 4px)
}

.dropdown a {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--text-soft);
  font-size: .88rem
}

.dropdown a:hover {
  background: rgba(139, 92, 246, .15);
  color: #fff
}

.has-menu:hover .dropdown {
  display: flex
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: .95rem;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, filter .2s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  position: relative
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(168, 85, 247, .65), inset 0 1px 0 rgba(255, 255, 255, .18)
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 18px 40px -10px rgba(168, 85, 247, .8);
  filter: brightness(1.08);
}

.btn-pink {
  background: var(--grad-pink);
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(219, 39, 119, .6)
}

.btn-pink:hover {
  transform: translateY(-2px);
  color: #fff;
  filter: brightness(1.08)
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-strong)
}

.btn-ghost:hover {
  background: var(--glass);
  color: #fff
}

.btn-light {
  background: #fff;
  color: #1a0540
}

.btn-light:hover {
  transform: translateY(-2px);
  color: #1a0540;
  background: #f5f3ff
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem
}

.btn-glow {
  position: relative
}

.btn-glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: var(--grad-accent);
  filter: blur(14px);
  opacity: .6;
  z-index: -1;
  transition: opacity .25s
}

.btn-glow:hover::before {
  opacity: .9
}

/* ---------- HERO ---------- */
.hero {
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-grad);
  pointer-events: none;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative
}

.hero h1 {
  margin-top: 18px;
  max-width: 965px;
}

.hero .lead {
  font-size: 1.18rem;
  color: var(--text-soft);
  max-width: 965px;
  margin: 18px 0 30px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-mute);
  font-size: .92rem
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glow)
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 8, 26, .6));
  pointer-events: none;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto
}

/* Floating glow orbs around hero image */
.hero-image::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: conic-gradient(from 180deg, rgba(139, 92, 246, .5), rgba(236, 72, 153, .4), rgba(34, 211, 238, .4), rgba(139, 92, 246, .5));
  filter: blur(40px);
  opacity: .5;
  z-index: -1;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(139, 92, 246, .14);
  color: #c4b5fd;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(139, 92, 246, .3);
}

.eyebrow.on-dark {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .18)
}

/* ---------- SECTIONS ---------- */
section {
  padding: 90px 0;
  position: relative
}

section.tight {
  padding: 60px 0
}

section.soft {
  background: linear-gradient(180deg, rgba(139, 92, 246, .04), transparent);
}

section.dark {
  background: linear-gradient(135deg, #0a0d2c 0%, #1a1042 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 50%, rgba(236, 72, 153, .18), transparent 70%);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center
}

/* .section-head .eyebrow {
  margin-bottom: 18px
} */

.section-head p {
  font-size: 1.08rem;
  color: var(--text-soft)
}


.trust {
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, .02)
}

.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap
}

.trust-row .pay {
  height: 34px;
  display: inline-flex;
  align-items: center;
  color: #c7c0e0;
  opacity: .92;
  transition: opacity .2s, transform .2s
}

.trust-row .pay:hover {
  opacity: 1;
  transform: translateY(-2px)
}

.trust-row .pay svg {
  height: 30px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(168, 85, 247, .18))
}

.trust-label {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 18px;
  font-weight: 600
}

/* ---------- GRIDS / CARDS ---------- */
.grid {
  display: grid;
  gap: 24px
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr)
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr)
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(139, 92, 246, .18), transparent 50%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, .4);
  background: var(--surface-2);
  box-shadow: 0 24px 60px -20px rgba(139, 92, 246, .5);
}

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

.card .icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--grad-primary);
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px -6px rgba(139, 92, 246, .55);
}

.card h3 {
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.5;
}

.card p {
  color: var(--text-soft);
  margin: 0;
  font-size: .95rem
}

/* ---------- INDUSTRY GRID ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.ind-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
  backdrop-filter: blur(8px);
  transition: all .25s ease;
}

.ind-card:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, .18), rgba(236, 72, 153, .1));
  border-color: rgba(139, 92, 246, .45);
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 16px 30px -16px rgba(139, 92, 246, .6);
}

.ind-card .ico {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 6px rgba(139, 92, 246, .5))
}

/* ---------- SPLIT ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  position: relative
}

.split-img img {
  display: block;
  width: 100%;
  height: auto
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0
}

.checklist li {
  position: relative;
  padding: 10px 0 10px 34px;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--grad-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .8rem;
  font-weight: 700;
  box-shadow: 0 6px 14px -4px rgba(139, 92, 246, .6);
}

/* ---------- STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1
}

.stat {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.stat .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.stat .label {
  color: var(--text-soft);
  font-size: .92rem;
  font-weight: 500
}

/* ---------- TESTIMONIAL ---------- */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: transform .3s ease, border-color .3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 72, 153, .35)
}

.testimonial blockquote {
  margin: 0 0 22px;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 500
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 6px 16px -4px rgba(139, 92, 246, .5);
}

.t-author .name {
  color: #fff;
  font-weight: 600;
  font-size: .95rem
}

.t-author .role {
  color: var(--text-mute);
  font-size: .85rem
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item[open] {
  border-color: rgba(139, 92, 246, .4)
}

.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--neon-purple);
  font-weight: 300;
  transition: transform .25s
}

.faq-item[open] summary::after {
  transform: rotate(45deg)
}

.faq-body {
  padding: 0 22px 20px;
  color: var(--text-soft);
  line-height: 1.65
}

/* ---------- CTA BAND ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 48px;
  background: linear-gradient(135deg, #1a0f4a 0%, #3b0764 50%, #831843 100%);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: 0 30px 80px -20px rgba(139, 92, 246, .45);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 250px at 0% 0%, rgba(139, 92, 246, .4), transparent 60%),
    radial-gradient(500px 250px at 100% 100%, rgba(34, 211, 238, .3), transparent 60%);
  pointer-events: none;
}

.cta-band>* {
  position: relative;
  z-index: 1
}

.cta-band h2 {
  color: #fff;
  margin: 0 0 6px
}

.cta-band p {
  color: rgba(255, 255, 255, .85);
  margin: 0;
  font-size: 1.02rem
}

/* ---------- STICKY CTA ---------- */
.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 18px 40px -10px rgba(236, 72, 153, .6), 0 0 0 1px rgba(255, 255, 255, .1) inset;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 18px 40px -10px rgba(236, 72, 153, .6), 0 0 0 0 rgba(236, 72, 153, .4)
  }

  50% {
    box-shadow: 0 18px 40px -10px rgba(236, 72, 153, .6), 0 0 0 14px rgba(236, 72, 153, 0)
  }
}

.sticky-cta:hover {
  transform: translateY(-3px);
  color: #fff
}

/* ---------- MODAL ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(3, 4, 12, .78);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn .25s ease;
}

.modal-backdrop.show {
  display: flex
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.modal {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: linear-gradient(160deg, #10143d 0%, #1a0f4a 100%);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 38px;
  box-shadow: 0 40px 100px -20px rgba(139, 92, 246, .5), 0 0 0 1px rgba(255, 255, 255, .06) inset;
  animation: slideUp .3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .08);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: background .2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, .18)
}

.modal h3 {
  color: #fff;
  margin: 14px 0 8px;
  font-size: 1.55rem
}

.modal-sub {
  color: var(--text-soft);
  margin-bottom: 24px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 14px 0;
}

.lbl {
  display: block;
  font-size: .82rem;
  color: var(--text-soft);
  font-weight: 500;
  margin-bottom: 6px
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: #fff;
  font-size: .95rem;
  transition: border-color .2s, background .2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--neon-purple);
  background: rgba(139, 92, 246, .08)
}

.form-control::placeholder {
  color: var(--text-mute)
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23a6acd6' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px
}

.modal .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px
}

/* ---------- FOOTER ---------- */
footer {
  background: linear-gradient(180deg, transparent, #04050f);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
  color: var(--text-soft);
  position: relative;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px
}

.foot-grid h4 {
  color: #fff;
  font-size: .95rem;
  margin: 0 0 18px;
  letter-spacing: .04em;
  text-transform: uppercase
}

.foot-grid ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.foot-grid li {
  margin-bottom: 10px
}

.foot-grid a {
  color: var(--text-soft);
  font-size: .92rem
}

.foot-grid a:hover {
  color: #fff
}

.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .86rem;
  color: var(--text-mute);
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
  opacity: 1;
  transform: translateY(0)
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(10, 13, 44, .98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.show {
    display: flex
  }

  .nav-links>li>a {
    padding: 14px;
    border-radius: 8px;
    height: auto;
  }

  .has-menu>a::after {
    display: none
  }

  .dropdown,
  .dropdown.lg {
    position: static;
    display: none;
    box-shadow: none;
    background: rgba(255, 255, 255, .03);
    margin: 6px 0;
    min-width: 0;
    flex-direction: column
  }

  .dropdown.lg a {
    flex: 1
  }

  .has-menu.open .dropdown,
  .has-menu.open .dropdown.lg {
    display: flex
  }

  .nav-toggle {
    display: block
  }

  .nav-cta .btn-ghost {
    display: none
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .split {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr
  }

  .grid-2 {
    grid-template-columns: 1fr
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .cta-band {
    padding: 32px;
    text-align: center;
    justify-content: center
  }

  section {
    padding: 64px 0
  }

  .hero {
    padding: 64px 0 50px
  }
}

@media (max-width:560px) {
  .industry-grid {
    grid-template-columns: 1fr
  }

  .stats {
    grid-template-columns: 1fr
  }

  .foot-grid {
    grid-template-columns: 1fr
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
    padding: 12px 18px;
    font-size: .88rem
  }

  .modal {
    padding: 26px
  }
}

/* Footer alias classes used by markup */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px
}

.footer-grid h4 {
  color: #fff;
  font-size: .95rem;
  margin: 0 0 18px;
  letter-spacing: .04em;
  text-transform: uppercase
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer-grid li {
  margin-bottom: 10px
}

.footer-grid a {
  color: var(--text-soft);
  font-size: .92rem
}

.footer-grid a:hover {
  color: #fff
}

.footer-grid p {
  color: var(--text-soft);
  font-size: .92rem
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .86rem;
  color: var(--text-mute)
}

@media (max-width:980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px
  }
}

@media (max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr
  }
}

.nav-cta .btn-ghost {
  display: none;
}

.nav-cta .btn-ghost {
  display: none;
}

.trustTwo {
  padding: 22px 0;
}

.page-with-form {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start
}

.prose h2 {
  margin-top: 2.4rem;
  font-size: 1.7rem
}

.prose h3 {
  margin-top: 1.8rem;
  color: #fff
}

.prose p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-soft)
}

.prose ul {
  padding-left: 0;
  list-style: none;
  margin: 1rem 0 1.5rem
}

.prose ul li {
  position: relative;
  padding: 6px 0 6px 28px;
  color: var(--text-soft)
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-primary)
}

.prose strong {
  color: #fff;
  font-weight: 600
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 1.5rem 0
}

@media(max-width:640px) {
  .feature-row {
    grid-template-columns: 1fr
  }
}

.feature-box {
  padding: 22px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border)
}

.feature-box h4 {
  font-size: 1rem;
  color: #fff;
  margin: 0 0 .5rem
}

.feature-box p {
  margin: 0;
  font-size: .92rem;
  color: var(--text-soft)
}


.side-form {
  position: sticky;
  top: 96px;
  background: linear-gradient(180deg, rgba(124, 58, 237, .10), rgba(219, 39, 119, .06));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: sticky
}

.side-form::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219, 39, 119, .4), transparent 70%);
  pointer-events: none
}

.side-form h3 {
  font-size: 1.3rem;
  margin-bottom: .4rem;
  position: relative;
  margin-top: 18px;
}

.side-form .sub {
  color: var(--text-soft);
  font-size: .92rem;
  margin-bottom: 1.3rem;
  position: relative
}

.side-form form {
  position: relative
}

.side-form .form-row {
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 12px
}

.side-form .form-row+.form-row {
  margin-top: 0
}

.side-form label.lbl {
  font-size: .78rem;
  margin-bottom: 5px
}

.side-form .form-control {
  padding: 11px 14px;
  font-size: .9rem
}

.side-form button[type=submit] {
  width: 100%;
  justify-content: center;
  margin-top: 6px
}

.side-form .trust-mini {
  margin-top: 14px;
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center
}


section.alt,
.faqSec {
  background: linear-gradient(180deg, rgba(139, 92, 246, .04), transparent);
}

select.form-control option {
  color: #000;
}


.heroImg {
  position: absolute;
  bottom: -5rem;
  top: auto;
  left: auto;
  right: -18rem;
}

.heroImg img {
  width: 66rem;
}

.logo img {
  width: 11rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}



.blogSec figure img {
  width: 100%;
  border-radius: 10px;
}

.blogSec figure {
  margin: 0 0 1rem;
}



.card .btn-lg {
  margin-top: 1rem;
}

.dropdown.lg h5 {
  width: 100%;
  margin: 1rem 0 10px;
}

.dropdown.lg h5 a {
  font-size: 1.125rem;
  text-transform: capitalize;
}

.dropdown.lg h5 a:hover {
  background: transparent;
}

.loginSec {
  height: 100vh;
  display: flex;
  align-items: center;
}

.loginSec img {
  width: 22rem;
  margin-bottom: 2rem;
}

.loginSec form input {
  width: 100%;
  height: 3rem;
  margin: 8px 0;
  border-radius: 6px;
  padding: 1rem;
  border: none;
}

.loginSec form a {
  margin: 1rem 0;
  display: block;
}

.loginSec form button {
  width: 100%;
  justify-content: center;
  margin-top: 5px;
}

.btnFlex button {
  margin: 1rem 0;
}

.payForm input {
  margin-bottom: 1rem !important;
}

.payForm {
  display: none;
}

.termsPrivacy ul li {
    color: var(--text-soft);
}
.contactInner .card {
    max-width: 850px;
    margin: 0 auto;
}
@media(max-width:640px) {
  html {
    font-size: 14px;
  }

  .heroImg {
    z-index: -1;
    right: -10rem;
  }

  .heroImg img {
    width: 30rem;
    opacity: 0.2;
  }

  .btn-lg {
    padding: 15px 20px;
    font-size: 14px;
  }

  .hero .lead {
    font-size: 1rem;
  }

  .hero-meta {
    display: none;
  }

  .trust-row {
    gap: 1rem 10px;
  }

  .trust {
    padding: 2rem 0;
  }

  section {
    padding: 2rem 0 !important;
  }

  p {
    font-size: 14px;
  }

  .card {
    padding: 1.5rem;
  }

  .cta-band {
    padding: 1.5rem;
  }

  .footer-grid {
    margin-bottom: 1rem;
  }

  .nav-wrap .btn {
    display: none;
  }

  .nav {
    justify-content: space-between;
  }

  .nav-toggle {
    font-size: 2rem;
  }

  .hero-image.reveal.in {
    display: none;
  }
  .contactInner .card {
    max-width: 100%;
}
}

.hero .btn.btn-light {
    display: none;
}