/* =============================================
   PayModum WordPress Theme — Main Stylesheet
   ============================================= */

/* ---------- Google Font: Onest is loaded via functions.php ---------- */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-primary: #6C3CFF;
  --color-primary-h: #5528e0;
  --color-teal: #00D4AA;
  --color-dark: #1A1A2E;
  --color-text: #2D2D4E;
  --color-muted: #6B7280;
  --color-border: #E5E7EB;
  --color-bg: #FAFAFA;
  --color-white: #FFFFFF;

  --font-base: 'Onest', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, .10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .14);
  --transition: 0.525s ease;
  --container: 1280px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* =============================================
   LOGO SVG MARK
   ============================================= */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo svg {
  flex-shrink: 0;
}

.logo-text {
  display: inline-block;
}

.logo-pay {
  color: var(--color-primary);
}

.logo-mod {
  color: var(--color-dark);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.site-header .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
  justify-content: space-between;
}

/* ---- Primary Navigation ---- */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.primary-nav>li {
  position: relative;
}

/* Top-level links */
.primary-nav>li>a,
.primary-nav>li>button.nav-top {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  line-height: inherit;
}

.primary-nav>li>a:hover,
.primary-nav>li>button.nav-top:hover,
.primary-nav>li.menu-item-has-children:hover>a,
.primary-nav>li.menu-item-has-children:hover>button.nav-top {
  color: var(--color-primary);
  background: rgba(108, 60, 255, .06);
}

/* Chevron icon */
.nav-chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform var(--transition);
  stroke: currentColor;
}

.primary-nav>li.menu-item-has-children:hover .nav-chevron,
.primary-nav>li.menu-item-has-children.open .nav-chevron {
  transform: rotate(180deg);
}

/* ── SUBMENU FIX: invisible hover bridge so gap doesn't close menu ── */
.primary-nav>li.menu-item-has-children {
  /* Extend the hover zone downward so mouse doesn't "leave" the li */
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  /* etc */
}

/* The visible card lives inside this inner wrapper */
.sub-menu-inner {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .14);
  border: 1px solid #E5E7EB;
  padding: 8px;
}

.primary-nav>li.menu-item-has-children:hover .sub-menu,
.primary-nav>li.menu-item-has-children.open .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sub-menu-inner li a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #2D2D4E;
  border-radius: 6px;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.sub-menu-inner li a:hover {
  background: rgba(108, 60, 255, .06);
  color: #6C3CFF;
}

/* ---- Header Actions ---- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-login {
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  background: transparent;
  transition: background var(--transition), color var(--transition);
}

.btn-login:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary {
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-primary);
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--color-primary-h);
  border-color: var(--color-primary-h);
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  transition: background var(--transition);
  background: none;
  border: none;
}

.hamburger:hover {
  background: rgba(108, 60, 255, .08);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  height: auto;
  /* Auto height based on content */
  overflow: visible;
  /* No scrollbar */
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 16px 24px 24px;
  gap: 4px;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu a {
  display: block;
  padding: 12px 14px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.mobile-menu a:hover {
  background: rgba(108, 60, 255, .06);
  color: var(--color-primary);
}

.mobile-menu .mobile-sub-menu {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.mobile-menu .mobile-sub-menu.open {
  max-height: 400px;
  opacity: 1;
}

.mobile-menu .mobile-sub-menu a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-muted);
}

.mobile-menu .mobile-sub-menu a:hover {
  color: var(--color-primary);
}

.mobile-nav-actions {
  display: flex;
  gap: 10px;
  padding: 12px 14px 0;
}

.mobile-nav-actions .btn-login,
.mobile-nav-actions .btn-primary {
  flex: 1;
  text-align: center;
}

nav#mobile-menu {
  background: linear-gradient(180deg, #F4F1FE 0%, #FFFFFF 100%);
}

nav#mobile-menu a.btn-primary {
  color: #fff;
}

.mobile-item-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-item-wrap .nav-top {
  flex: 1;
}

.mobile-parent-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.mobile-parent-toggle:hover {
  background: rgba(108, 60, 255, .06);
  color: var(--color-primary);
}

.mobile-parent-toggle .nav-chevron {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.mobile-parent-toggle[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.wrap-mobile {
  display: none;
}

/* ---- Mobile Sub Menu Override ---- */
@media (max-width: 899px) {

  .wrap-mobile {
    display: flex;
  }

  /* match your breakpoint */
  .mobile-menu .sub-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    min-width: unset !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0 0 0 16px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    /* Animation via max-height */
    display: block !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease !important;
  }

  .mobile-menu .sub-menu.open {
    max-height: 500px;
  }

  .mobile-menu .sub-menu .sub-menu-inner {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 0 10px 0;
  }

  nav#mobile-menu>ul>li {
    border-bottom: 1px solid #e9e9e9;
  }

  nav#mobile-menu>ul>li:last-child {
    border: none !important;
  }

  .mobile-menu .sub-menu .sub-menu-inner>ul>li {
    border-bottom: 1px solid #e9e9e9;
  }

  .mobile-menu .sub-menu .sub-menu-inner>ul>li:last-child {
    border: none !important;
  }

  .mobile-menu .sub-menu .sub-menu-inner>ul>li a {
    font-size: 15px !important;
  }
}

/* =============================================
   MAIN CONTENT AREA
   ============================================= */
#main {
  min-height: 60vh;
}

.site-content {
  padding: 60px 0;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding-top: 64px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 320px;
  font-weight: 600;
}

.footer-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--color-primary);
}

.footer-contact svg {
  flex-shrink: 0;
}

/* Footer columns */
.footer-col h5 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
}

.footer-col a,
.footer-col ul li a {
  display: block;
  font-size: 0.9rem;
  color: var(--color-muted);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover,
.footer-col ul li a:hover {
  color: var(--color-primary);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 0.82rem;
  color: var(--color-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--color-muted);
  text-decoration: underline;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--color-primary);
}

.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-muted);
  border: 1px solid var(--color-border);
  transition: background var(--transition), color var(--transition);
}

.footer-socials a:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* =============================================
   WIDGET AREAS
   ============================================= */
.widget {
  margin-bottom: 24px;
}

.widget-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}

.widget ul li {
  padding: 3px 0;
}

.widget ul li a {
  font-size: 0.9rem;
  color: var(--color-muted);
  transition: color var(--transition);
}

.widget ul li a:hover {
  color: var(--color-primary);
}

/* Footer brand & social widget overrides */
.footer-brand .widget {
  margin-bottom: 0;
}

.footer-brand .widget p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 320px;
  font-weight: 600;
}

.footer-socials .widget {
  margin-bottom: 0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-socials .widget a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-muted);
  border: 1px solid var(--color-border);
  transition: background var(--transition), color var(--transition);
}

.footer-socials .widget a:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {

  .primary-nav,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: flex !important;
  }
}

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/*
Theme Name: Woodmart Child
Theme URI: https://woodmart.xtemos.com/
Template: woodmart
Author: XTemos
Author URI: http://themeforest.net/user/xtemos
Description: ThemeForest Premium Theme
Tags: one-column,two-columns,right-sidebar,custom-header,custom-menu,editor-style,featured-images,microformats,post-formats,sticky-post,translation-ready
Version: 8.3.6.1771050297
Updated: 2026-02-14 06:24:57

*/

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

:root {
  --primary: #6C2BD9;
  --primary-dark: #5521B5;
  --primary-light: #8B5CF6;
  --accent-green: #3DD68C;
  --dark: #0C0C0E;
  --dark-secondary: #2D2D44;
  --text: #333;
  --text-secondary: #626262;
  --text-light: #999;
  --bg: #FFF;
  --bg-light: #F8F9FC;
  --bg-purple: #F3EEFF;
  --border: #E5E7EB;
  --gradient-purple: linear-gradient(135deg, #6C2BD9 0%, #8B5CF6 100%);
  --gradient-dark-bg: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, .12);
  --shadow-purple: 0 4px 20px rgba(108, 43, 217, .15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font: 'Onest', sans-serif;
  --font-hand: 'Caveat', cursive;
  --ease: 0.3s cubic-bezier(.4, 0, .2, 1)
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%
}

.container-in {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px
}

.wd-content-layout {
  padding: 0;
}

/* Scroll Animations */
.anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.anim.v {
  opacity: 1;
  transform: translateY(0)
}

.anim.d1 {
  transition-delay: .1s
}

.anim.d2 {
  transition-delay: .2s
}

.anim.d3 {
  transition-delay: .3s
}

.anim.d4 {
  transition-delay: .4s
}

.anim.d5 {
  transition-delay: .5s
}

.anim-l {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.anim-r {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.anim-l.v,
.anim-r.v {
  opacity: 1;
  transform: translateX(0)
}

.anim-s {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.anim-s.v {
  opacity: 1;
  transform: scale(1)
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--ease)
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm)
}

.header .container-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px
}

.logo {
  display: flex;
  align-items: center
}

.logo img {
  height: 38px;
  width: auto
}

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

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-link:hover {
  color: var(--primary);
  background: var(--bg-purple)
}

.nav-link .ch {
  width: 12px;
  height: 12px;
  transition: var(--ease)
}

.nav-link:hover .ch {
  transform: rotate(180deg)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px
}

.btn-login {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  transition: var(--ease);
  font-family: var(--font)
}

.btn-login:hover {
  background: var(--primary);
  color: #fff
}

.btn-primary {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--gradient-purple);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--ease);
  font-family: var(--font);
  position: relative;
  overflow: hidden
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: left .5s
}

.btn-primary:hover::after {
  left: 100%
}

.btn-primary:hover {
  box-shadow: var(--shadow-purple);
  transform: translateY(-1px)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--ease)
}

.hamburger.on span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.on span:nth-child(2) {
  opacity: 0
}

.hamburger.on span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.mob-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 24px;
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1)
}

.mob-menu.on {
  transform: translateX(0)
}

.mob-menu .nav-link {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--border)
}

.mob-menu .nav-actions {
  margin-top: 24px;
  flex-direction: column
}

.mob-menu .nav-actions .btn-login,
.mob-menu .nav-actions .btn-primary {
  width: 100%;
  text-align: center
}

/* HERO */
.hero {
  padding: 150px 0 120px;
  position: relative;
  overflow: hidden
}

.hero .container-in {
  position: relative;
  display: flex;
  align-items: center;
	gap: 30px;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2
}

.hero-title {
  font-family: 'Onest', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 112%;
  background: linear-gradient(180deg, #0C0C0E 0%, #626262 110.6%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px
}

.hero-title .ia {
  font-style: italic;
  -webkit-text-fill-color: var(--primary)
}

.hero-title .hl {
  -webkit-text-fill-color: var(--primary)
}

.hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text)
}

.hero-badge svg {
  color: var(--primary);
  flex-shrink: 0
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-purple);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font);
  transition: var(--ease);
  position: relative;
  overflow: hidden
}

.btn-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: left .5s
}

.btn-hero:hover::after {
  left: 100%
}

.btn-hero:hover {
  box-shadow: 0 8px 30px rgba(108, 43, 217, .35);
  transform: translateY(-2px);
  color: #fff;
}

.globe-container {
  max-width: 540px;
}

.hero-title span {
  background: none;
  /* remove gradient */
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #6C2BD9;
  /* your custom color */
  background-clip: initial;
  color: #6C2BD9;
  /* fallback */
}

/* PAYMENT METHODS */
.payment-methods {
  padding: 80px 0 100px;
  text-align: center
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2
}

.section-title span {
  color: #6C2BD9;
}

.section-title .count {
  color: var(--primary)
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto 40px;
  line-height: 1.7
}

.region-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap
}

.region-tab {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--ease);
  font-family: var(--font)
}

.region-tab.active,
.region-tab:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--bg-purple)
}

.payment-info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text);
  font-weight: 600
}

.payment-info-bar .cb {
  background: var(--primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 13px
}

.payment-info-bar span {
  color: var(--text-secondary);
  font-weight: 400
}

.payment-grid {
  display: flex;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--ease);
  cursor: default;
  background: #f7f8fb;
}

.payment-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-purple);
  transform: translateY(-4px)
}

.payment-card.feat {
  border-color: var(--primary);
  background: linear-gradient(135deg, #F3EEFF, #E8DEFF)
}

.payment-grid {
  margin-bottom: 50px;
}

.pi {
  width: 90px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: var(--bg-light)
}

.pi.visa {
  background: #1A1F71;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  font-style: italic
}

.pi.mc {
  background: #EB001B;
  color: #fff;
  font-size: 10px
}

.pi.pp {
  background: #003087;
  color: #009CDE;
  font-size: 12px;
  font-weight: 800
}

.pi.amex {
  background: #006FCF;
  color: #fff;
  font-size: 10px;
  font-weight: 700
}

.pi.ap {
  background: #000;
  color: #fff;
  font-size: 16px
}

.pi.gp {
  background: #4285F4;
  color: #fff;
  font-size: 16px
}

.pi.kl {
  background: #FFB3C7;
  color: #0A0B09;
  font-size: 10px;
  font-weight: 800
}

.pi.st {
  background: #635BFF;
  color: #fff;
  font-size: 10px;
  font-weight: 700
}

.pi.ideal {
  background: #CC0066;
  color: #fff;
  font-size: 10px;
  font-weight: 700
}

.pi.sepa {
  background: #2C4B9D;
  color: #fff;
  font-size: 9px;
  font-weight: 700
}

.pi.rev {
  background: #191C1F;
  color: #fff;
  font-size: 10px;
  font-weight: 700
}

.pi.sof {
  background: #EF809F;
  color: #fff;
  font-size: 9px;
  font-weight: 700
}

.pi.tru {
  background: #0EE06E;
  color: #fff;
  font-size: 9px;
  font-weight: 700
}

.pi.skr {
  background: #862165;
  color: #fff;
  font-size: 10px;
  font-weight: 700
}

.pi.net {
  background: #6D9B36;
  color: #fff;
  font-size: 9px;
  font-weight: 700
}

.pi.ps {
  background: #003C78;
  color: #fff;
  font-size: 9px;
  font-weight: 700
}

.pcn {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500
}

/* INDUSTRIES */
.industries {
  padding: 80px 0 100px;
  background: var(--bg-light)
}

.industry-card h3 {
  display: flex;
  gap: 10px;
}

.industries-grid .lm {
  color: #000;
}

.industries-grid .lm:hover svg {
  transform: rotate(45deg);
}

.industries .section-title,
.industries .section-desc {
  text-align: center
}

.industries-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px
}

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

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

.industries-grid.two {
  grid-template-columns: 1fr 1fr;
}

.industry-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--ease);
  position: relative;
  overflow: hidden
}

.industry-card {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.ind-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-purple);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary)
}

.industry-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px
}

.industry-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px
}

.lm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--ease)
}

.lm:hover {
  gap: 10px
}

.lm svg {
  transition: var(--ease)
}

.lm:hover svg {
  transform: translateX(4px)
}

/* SOLUTIONS BANNER */
.solutions-banner {
  padding: 100px 0;
  position: relative;
  overflow: hidden
}

.solutions-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  pointer-events: none
}

.solutions-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  pointer-events: none
}

.solutions-banner .container-in {
  position: relative;
  text-align: center
}

.solutions-banner h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px
}

.solutions-banner>.container-in>p {
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 48px
}

.sol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px
}

.sol-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  transition: var(--ease)
}

.sol-item:hover {
  background: rgba(255, 255, 255, .06);
  transform: translateY(-4px)
}

.sol-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secondary:after {
  display: none !important;
}

.secondary {
  background: #fff !important;
  color: #000 !important;
}

.sol-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px
}

.sol-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6
}

.btn-expert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-purple);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font);
  transition: var(--ease)
}

.btn-expert:hover {
  box-shadow: 0 8px 30px rgba(108, 43, 217, .4);
  transform: translateY(-2px)
}

.title-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.title-wrap div * {
  text-align: left !important;
}

.title-wrap div p {
  font-weight: 700;
  font-size: 20px;
}

.industries-grid.two>div:last-child {
  grid-column: 1 / -1;
}

/* WHY PAYMODUM */
.why-section {
  padding: 100px 0
}

.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px
}

.why-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2
}

.why-header h2 .hw {
  font-family: var(--font-hand);
  font-size: 42px;
  color: var(--primary);
  display: block
}

.why-header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-top: 8px
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px
}

.why-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: var(--ease)
}

.why-item:hover {
  background: var(--bg-light)
}

.wi-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--primary);
  margin-top: 2px
}

.why-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px
}

.why-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7
}

/* HOW IT WORKS */
.how-it-works {
  padding: 80px 0 80px;
}

.how-it-works .section-title {
  text-align: center
}

.how-it-works .section-desc {
  text-align: center;
  margin-bottom: 60px
}

.steps-list {
  max-width: 1000px;
  margin: 0 auto
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 15px;
  border-bottom: none;
  cursor: pointer;
  transition: var(--ease);
  background: #fafbfc;
  border-radius: 10px;
  border: 1px solid #e8e9ef;
}

.step-item:hover {
  padding-left: 8px
}

.step-num {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.step-content {
  flex: 1
}

.step-item p {
    opacity: 0;
    transition: 0.4s ease all;
    height: 0px;
}

.step-item.active p {
    height: auto;
    opacity: 1;
}
.step-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.step-content p {
  font-size: 16px !important;
  color: #000 !important;
  line-height: 1.6;
  margin-bottom: 10px;
  overflow: visible !important;
}

.step-item.active .step-content p {
  max-height: 120px;
  margin-top: 10px
}

.step-toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: var(--ease)
}

.step-item.active .step-toggle {
  transform: rotate(45deg);

}

/* CTA */
.cta-section {
  padding: 0px 0 80px
}

.cta-section .cta-box {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-box {
  border-radius: var(--radius-xl);
  padding: 30px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 70%)
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(61, 214, 140, .15) 0%, transparent 70%)
}

.cta-content {
  position: relative;
  z-index: 1
}

.cta-content h3 {
  font-size: 32px;
  color: #000;
  margin-bottom: 8px;
  font-weight: 700;
}

.cta-content p {
  font-size: 16px;
  color: rgba(4, 4, 4, 0.8);
  margin: 0;
}

.btn-cta {
  position: relative;
  z-index: 1;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  background: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font);
  transition: var(--ease);
  white-space: nowrap;
  text-transform: capitalize;
}


/* FOOTER */
.widget-title {
  font-size: 18px;
  text-transform: capitalize;
}

footer a {
  color: #000;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.textwidget * {
  color: #000;
}

.wd-copyrights * {
  font-size: 15px;
  color: #000;
}

.wd-copyrights {
  border: none;
}

.container.main-footer {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 25px;
}

.footer {
  padding: 60px 0 24px;
  border-top: 1px solid var(--border)
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px
}

.footer-brand .logo {
  margin-bottom: 16px
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
  font-style: italic
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-contact a {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--ease)
}

.footer-contact a:hover {
  color: var(--primary)
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: var(--ease)
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 4px
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-light)
}

.footer-bottom-links {
  display: flex;
  gap: 24px
}

.footer-bottom-links a:hover {
  color: var(--primary)
}

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

.footer-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--ease)
}

.footer-socials a:hover {
  background: var(--primary);
  color: #fff
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .hero-title {
    font-size: 44px
  }

  .globe-container {
    width: 380px;
    height: 380px;
    right: -60px
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr
  }

  .footer-brand {
    grid-column: 1/-1
  }
}

@media(max-width:768px) {
  .title-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .title-wrap p {
    font-size: 16px !important;
  }

  .payment-card {
    padding: 8px 12px;
	          width: 160px;
  }

  .hero .container-in {
    flex-direction: column;
  }

  .globe-container video {
    width: 100%;
  }

  .nav,
  .nav-actions {
    display: none
  }


  .mob-menu {
    display: block
  }

  .hero {
    padding: 110px 0 60px
  }

  .hero-title {
    font-size: 34px
  }

  .section-title {
    font-size: 28px
  }

  .industries-grid {
    grid-template-columns: 1fr !important;
  }

  .sol-grid {
    grid-template-columns: 1fr  !important;
  }

  .why-header {
    grid-template-columns: 1fr  !important;;
    gap: 16px
  }

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

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
    gap: 24px
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center
  }
}

@media(max-width:480px) {
  .hero-title {
    font-size: 28px
  }

  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

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

  .region-tabs {
    gap: 4px
  }

  .region-tab {
    padding: 6px 14px;
    font-size: 12px
  }

  .footer-top {
    grid-template-columns: 1fr
  }
}

/* KEYFRAMES */
@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: .4
  }

  50% {
    opacity: .9
  }
}

@keyframes dash-draw {
  to {
    stroke-dashoffset: 0
  }
}

.float-anim {
  animation: float 6s ease-in-out infinite
}

.globe-dot {
  animation: pulse 3s ease-in-out infinite
}

.globe-dot:nth-child(2) {
  animation-delay: .5s
}

.globe-dot:nth-child(3) {
  animation-delay: 1s
}

.globe-dot:nth-child(4) {
  animation-delay: 1.5s
}

.globe-dot:nth-child(5) {
  animation-delay: 2s
}

.conn-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: dash-draw 2s cubic-bezier(.4, 0, .2, 1) forwards
}

.conn-line:nth-child(2) {
  animation-delay: .3s
}

.conn-line:nth-child(3) {
  animation-delay: .6s
}

::-webkit-scrollbar {
  width: 8px
}

::-webkit-scrollbar-track {
  background: var(--bg-light)
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary)
}

/* ============ GATEWAY HERO ============ */
.gw-hero {
  padding: 180px 0 100px;
  background: linear-gradient(180deg, #F4F1FE 0%, #FFFFFF 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gw-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(108, 43, 217, .05) 0%, transparent 65%);
  pointer-events: none
}

.gw-hero .container {
  position: relative
}

.btn-hero-fill:hover {
  color: #fff;
}

.gw-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #22E3AF29;
  color: #000;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
}

.gw-badge svg {
  flex-shrink: 0
}

.gw-hero h1 {
  font-weight: 700;
  font-size: 64px;
  line-height: 112%;
  background: linear-gradient(180deg, #0C0C0E 0%, #626262 110.6%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  max-width: 1112px;
  margin-left: auto;
  margin-right: auto;
}

.gw-hero .desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 32px
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap
}

.btn-hero-fill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-purple);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-hero-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: left .5s
}

.btn-hero-fill:hover::after {
  left: 100%
}

.btn-hero-fill:hover {
  box-shadow: 0 8px 30px rgba(108, 43, 217, .35);
  transform: translateY(-2px)
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 700;
  color: #4C14E9;
  background: #fff;
  border: 2px solid #4C14E9;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--ease);
}

.btn-hero-outline:hover {
  border-color: var(--primary);
  color: var(--primary)
}


/* ============ WHY BUSINESSES CHOOSE ============ */
.why-choose {
  padding: 100px 0;
  background: #FAFBFC;
}

.why-choose .section-title {
  text-align: center;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

section.why-choose.with-no-link p.section-subtitle {
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.why-card {
  background: #F4F1FE;
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: \'\';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--gradient-purple);
  transition: width .5s cubic-bezier(.16, 1, .3, 1);
}

.why-card:hover::after {
  width: 100%
}

/* .why-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px)
} */

.why-card-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-purple);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.why-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px
}

.why-card p {
  font-size: 16px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 0px;
  font-weight: 600;
}

.cta-card h4 {
  font-size: 36px;
  font-weight: 900 !important;
  line-height: 1.1;

}

a.btn-cta-card {
  background: #fff;
  font-size: 16px !important;
  font-weight: 700;
  padding: 16px 14px;
  border-radius: 12px;
}

.why-card p {
  margin-bottom: 45px;
}

/* ============ RESPONSIVE ============ */
@media(max-width:1024px) {
  .page-hero h1 {
    font-size: 40px
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr
  }

  .footer-brand {
    grid-column: 1/-1
  }
}

@media(max-width:768px) {

  .nav,
  .nav-actions {
    display: none
  }

  .mob-menu {
    display: block
  }

  .page-hero {
    padding: 110px 0 50px
  }

  .page-hero h1 {
    font-size: 32px
  }

  .page-hero .subtitle {
    font-size: 16px
  }

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

  .why-grid,
  .industries-grid.grid-3,
  .industries-grid.grid-2 {
    grid-template-columns: 1fr !important;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center
  }

  .gw-hero {
    padding: 110px 0 50px;
  }

  why-card h4 {
    font-size: 22px;
  }

  .cta-card h4 {
    font-size: 28px;
  }
}

@media(max-width:480px) {
  .gw-hero h1 {
    font-size: 32px !important;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* Keyframes */
@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

::-webkit-scrollbar {
  width: 8px
}

::-webkit-scrollbar-track {
  background: var(--bg-light)
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary)
}

.quote-content {
  padding: 80px;
  text-align: center;
  background: linear-gradient(180deg, #F4F1FE 0%, #FFFFFF 100%);
  border-radius: 56px;
}

.quote-content p {
  margin: 0;
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
}

@media(max-width:768px) {
  .quote-content {
    padding: 40px;
  }

  .quote-content p {
    font-size: 24px;
    line-height: 30px;
  }
}


/* ===== HOW IT WORKS ===== */
.how-it-works .section-title h2 {
  font-size: 36px;
}

.how-it-works .section-title h2 span {
  color: var(--purple);
}

.how-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 20px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 20px;
  position: relative;
}

.step-number-wrapper {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid #101727;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.step-line {
  width: 2px;
  flex: 1;
  background: #101727;
  margin-top: 4px;
}

.step:last-child .step-line {
  display: none;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #101727;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 10px;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 14px;
  background: #22E3AF14;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.step-tag.purple {
  background: rgba(108, 58, 237, 0.08);
  color: var(--purple);
}

.step-tag.teal {
  background: rgba(13, 148, 136, 0.08);
  color: var(--teal);
}

.how-it-works .section-desc {
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

.dashboard-mock {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-tab {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
}

.dash-tab.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.dash-row {
  display: flex;
  gap: 12px;
}

.dash-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 16px;
}

.dash-card-label {
  font-size: 11px;
  color: var(--gray-400);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dash-card-value {
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.dash-card-sub {
  font-size: 11px;
  color: var(--teal-light);
  margin-top: 2px;
}

.dash-transaction {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
}

.dash-tx-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-tx-icon {
  width: 32px;
  height: 32px;
  background: var(--purple);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
}

.dash-tx-info .tx-name {
  font-size: 13px;
  font-weight: 600;
  color: white;
}

.dash-tx-info .tx-id {
  font-size: 11px;
  color: var(--gray-400);
}

.dash-tx-badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

.dash-tx-badge.approved {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
}

.dash-route {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.dash-route-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.dash-route-text {
  font-size: 12px;
  color: var(--gray-400);
}

.dash-route-text span {
  color: white;
  font-weight: 500;
}

.hero-img img {
  width: 250px;
  margin-bottom: 25px;
}

.how-content.only-timeline {
  grid-template-columns: 1fr;
  margin-top: 50px;
}

span.flow-pill {
  background: #602FE90A;
  padding: 12px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #6c2bd9;
}

.flow-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  gap: 5px;
  flex-wrap: wrap;
}

/*Infobox Without Link*/
section.why-choose.with-no-link {
  background: transparent;
  padding: 0;
}

section.why-choose.with-no-link .container-in {
  padding: 80px 50px;
  background: linear-gradient(180deg, #F4F1FE 0, #FFFFFF 40%);
  border-radius: 50px;
}

section.why-choose.with-no-link .step-box {
  display: flex;
  text-align: center;
  padding: 50px 0;
  justify-content: space-around;
  gap: 10px;
}

section.why-choose.with-no-link .step-box .step {
  flex-direction: column;
}

/* Page Section Title */
section.why-choose.with-no-link p.section-subtitle {
  text-align: center;
  font-size: 16px;
}

section.why-choose {
  margin: 50px 0;
}

/* Dark Mode Solution (Icon Box) */
section.solutions-banner.light-mode h2.section-title {
  color: #000;
}

section.solutions-banner.light-mode .sol-item {
  background: #FAFBFC;
}

section.solutions-banner.light-mode .sol-item img {
  width: 56px;
}

section.solutions-banner.light-mode .sol-item * {
  color: #000;
}

section.solutions-banner.light-mode .sol-item h4 {
  font-size: 18px;
}

/* Quote Section Update */
section.quote-section h2 {
  font-size: 48px;
}

.quote-content {
  font-size: 16px;
  line-height: 1.6;
}

section.quote-section.with-list .quote-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

section.quote-section.with-list .lists {
  text-align: left;
}

section.quote-section.with-list .lists .list {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

section.quote-section.with-list .lists .list svg {
  width: 40px !important;
  height: 40px !important;
  display: block !important;
}

section.quote-section.with-list .lists .list:last-child {
  margin: 0 !important;
}

section.quote-section.with-list .lists .list h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

section.quote-section.with-list .lists .list p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1 !important;
}

section.quote-section.with-list .quote-content>div {
  text-align: left;
}

section.quote-section.with-list .quote-content>div h2 {
  font-size: 38px;
  margin-bottom: 30px;
}

@media(max-width:768px) {
  .how-it-works {
    padding: 40px 0;
  }

  .how-content {
    grid-template-columns: 1fr;
  }

  section.why-choose.with-no-link .container-in {
    padding: 50px 20px;
  }

  section.why-choose.with-no-link .step-box {
    flex-direction: column;
    padding: 6px 0px 35px;
    gap: 15px;
  }

  section.why-choose.with-no-link .step-box .step {
    gap: 2px;
  }

  section.why-choose.with-no-link .step-box .step h3 {
    margin: 0;
  }

  /* Quote Section Update */
  section.quote-section.with-list .quote-content {
    grid-template-columns: 1fr;
  }


}


/* Logo Size */
a.custom-logo-link img {
  max-width: 128px;
}

/* Counter Up Section */
.stats-banner {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 43, 217, .3) 0%, transparent 70%);
  pointer-events: none
}

.stats-banner h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
  z-index: 1
}

.stats-banner .sub-s {
  font-size: 16px;
  color: #FFFF;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1
}

.stat-item {
  text-align: center
}

.stat-num {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1
}

.stat-label {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}

.btn-expert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  background: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font);
  transition: var(--ease);
  position: relative;
  z-index: 1
}

.btn-expert:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
  transform: translateY(-2px)
}

/*Light Mode Solution*/
section.solutions-banner.light-mode p {
  color: #000;
}

@media(max-width:768px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: 64px
  }
}