@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200..800&display=swap');

:root {
    --bg-dark: #050912;
    --brand-purple: #2f2ce8;
    --brand-yellow: #FDCC29;
    --accent-teal: #00FFD1;
    --white: #FFFFFF;
    --light-gray: #b0b8c1;
    --brand-purple-hover: #2f2ce8;
    --brand-yellow-hover: #e5b925;
    --card-bg-light: rgba(255, 255, 255, 0.03);
    --font-primary: 'Outfit', sans-serif;
    --card-radius: clamp(12px, 1.6vw, 20px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.5;
}

html, body {
    overflow-x: clip;
}
/* Premium Site Preloader */
.site-preloader {
    position: fixed;
    inset: 0;
    background: #06050a;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.loader-content {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
}

.loader-ring:nth-child(1) {
    border-top-color: #2c16ee;
    animation: loaderSpin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader-ring:nth-child(2) {
    width: 75%; height: 75%;
    border-right-color: #d8b4fe;
    animation: loaderSpinReverse 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader-ring:nth-child(3) {
    width: 50%; height: 50%;
    border-bottom-color: #84ccfc;
    animation: loaderSpin 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader-logo {
    width: 50px;
    animation: loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderSpin {
    100% { transform: rotate(360deg); }
}

@keyframes loaderSpinReverse {
    100% { transform: rotate(-360deg); }
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.8)); }
    50% { transform: scale(0.85); opacity: 0.6; filter: drop-shadow(0 0 0 rgba(139, 92, 246, 0)); }
}

/* GSAP Initialization Utilities */
.gsap-reveal-target {
    visibility: hidden; /* FOUC Prevention */
}

/* Lenis Smooth Scroll Recommended CSS */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {margin: 0;}
h1 {font-size: clamp(30px, 3.5vw, 54px);font-weight: 600;}
h2 {font-size: clamp(26px, 2.5vw, 40px);font-weight: 700;}
h3 {font-size: clamp(22px, 1.6vw, 26px);font-weight: 500;}
h4 {font-size: clamp(18px, 1.4vw, 20px);font-weight: 500;}
h5 {font-size: clamp(16px, 2vw, 20px);font-weight: 600;}
h6 {font-size: clamp(16px, 2vw, 18px);font-weight: 600;}
p{font-size: clamp(14px, 2vw, 16px);font-weight: 400;line-height: 1.6;}
ul {margin: 0;padding: 0;}
li {margin: 0;padding: 0;list-style: none;}
a {text-decoration: none;display: inline-block;font-size: 16px;font-weight: 400;}
img {max-width: 100%;height: auto;display: flex;}
video, iframe{width: 100%;}
.container {
    max-width: 1400px;
    width: 94%;
    margin: 0 auto;
}
.text-center{text-align: center;}

button{
    border: none;
    outline: 0;
    cursor: pointer;
}

/* Global Button Hover Standardization */
button, .btn-primary, .btn-partner, .btn-deposit, .btn-hero, .btn-steps, .btn-outline-dark, .btn-login {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary:hover, .btn-partner:hover, .btn-deposit:hover, .btn-hero:hover, .btn-steps:hover, .btn-outline-dark:hover, .btn-login:hover {
    transform: translateY(-5px) scale(1.02);
    filter: brightness(1.1);
    box-shadow: 0 20px 40px rgba(74, 13, 85, 0.15);
}

/* Unique Sweeping Shine Effect */
.btn-primary, .btn-partner, .btn-deposit, .btn-hero, .btn-steps {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-partner::after, .btn-deposit::after, .btn-hero::after, .btn-steps::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
}

.btn-primary:hover::after, .btn-partner:hover::after, .btn-deposit:hover::after, .btn-hero:hover::after, .btn-steps:hover::after {
    left: 125%;
}

.text-left {
    text-align: left;
}

.section-spacing{
    margin-bottom: clamp(50px, 5vw, 100px);
}

/* Header Styles */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 2000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    background-color: rgb(0, 0, 0);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-img {
    max-height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--brand-purple);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
}

.top-nav a {
    color: var(--brand-yellow);
    font-weight: 500;
}

.divider {
    color: #333;
}

.site-menu-item{
    padding: 32px 0;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white) !important;
}

.lang-selector img {
    width: 20px;
    border-radius: 2px;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-login {
    color: var(--brand-purple);
    font-weight: 600;
    font-size: 15px;
}

.btn-primary {
    background-color: var(--brand-purple);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background-color: var(--brand-purple-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 13, 85, 0.2);
}



.site-menu-nav {
    margin-left: auto;
    margin-right: 8px;
}

.site-menu-backdrop {
    position: fixed;
    top: 150px;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* @media (min-width: 1101px) {
    .site-menu-nav:has(.has-submenu:hover) ~ .site-menu-backdrop,
    .site-menu-nav:has(.has-submenu.is-expanded) ~ .site-menu-backdrop {
        opacity: 1;
        visibility: visible;
    }
} */

.site-menu-list {
    display: flex;
    align-items: center;
    gap: 30px;
}



.site-menu-link,
.site-menu-trigger {
    color: #f9f9fa;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-menu-link::after {
    content: '\f178'; /* Long Arrow Right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--brand-purple);
    opacity: 1;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateX(-5px);
}

.site-menu-link--no-arrow::after {
    content: none !important;
    display: none !important;
}

.site-menu-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.site-menu-link:hover,
.site-menu-trigger:hover {
    color: var(--brand-purple);
}

.site-menu-trigger {
    background: transparent;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-family: inherit;
    text-transform: capitalize;
}

.site-menu-trigger svg {
    width: 15px;
    height: 15px;
    transition: transform 0.25s ease;
}

.has-submenu:hover .site-menu-trigger svg,
.has-submenu.is-expanded .site-menu-trigger svg {
    transform: rotate(180deg);
}

.site-mega {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: min(1400px, 96%);
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
    padding: 50px 0;
    display: none;
    z-index: 120;
    border-radius: 0 0 24px 24px;
    animation: menuFadeIn 0.3s ease-out forwards;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, .15);
    background-color: #fff !important;
    box-shadow: 0 3px 56px #00000029;
}

@keyframes menuFadeIn {
    from { opacity: 0; transform: translate(-50%, 15px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.site-mega-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-mega-inner {
    display: flex;
    gap: 80px;
    align-items: stretch;
}

.site-mega-left {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.site-mega-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.site-mega-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-mega-label {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.site-mega-link {
    /* font-size: 17px; */
    /* font-weight: 700; */
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-mega-link:hover {
    color: var(--brand-purple);
    transform: translateX(4px);
}

.site-mega-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-mega-all {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: underline;
    text-underline-offset: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-mega-all i {
    font-size: 12px;
}

.site-mega-stores {
    display: flex;
    gap: 15px;
}

.site-mega-stores img {
    height: 38px;
    width: auto;
    transition: transform 0.2s ease;
}

.site-mega-stores a:hover img {
    transform: translateY(-2px);
}

.site-mega-right {
    flex: 1;
}

.site-mega-promo-card {
    background: #0f172a;
    border-radius: var(--card-radius);
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
}

.promo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #def71c;
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.promo-content {
    position: relative;
    z-index: 5;
    max-width: 60%;
}

.site-mega-promo-card h2 {
    color: #fff;
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 800;
}

.site-mega-promo-card p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.site-mega-promo-card .btn-primary {
    background: #2563eb;
    border: none;
    font-size: 14px;
    padding: 12px 24px;
}

.promo-visual {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 60%;
    z-index: 1;
    opacity: 0.8;
}

.promo-visual img {
    width: 100%;
    height: auto;
    transform: rotate(-10deg);
}

.promo-card-wl {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.has-submenu:hover .site-mega {
    display: block;
}

.site-drawer-promo {
    display: none;
}

.has-submenu:hover .site-mega,
.has-submenu.is-expanded .site-mega {
    display: flex;
}

.site-menu-actions {
    display: flex;
    align-items: center;
}

.site-menu-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 6px 0;
}

.site-menu-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #111827;
    margin-bottom: 5px;
}

.site-menu-toggle-line:last-child {
    margin-bottom: 0;
}

body.site-menu-open .site-menu-toggle-line {
    margin-bottom: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    background: #111827 !important; /* Ensure visibility on white drawer */
}

body.site-menu-open .site-menu-toggle-line:nth-child(1) {
    transform: translateY(-2px) rotate(45deg);
}

body.site-menu-open .site-menu-toggle-line:nth-child(2) {
    opacity: 0;
}

body.site-menu-open .site-menu-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section Styles */
.hero-section,
.inner-hero {
    height: 650px;
    padding: 60px 0 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: url(/assets/image/herobanner-bg1.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f7f9;
}

/* Specific Inner Hero Variants - Standardized */
.inner-hero.mobileapp-hero,
.inner-hero.payment-hero,
.inner-hero.webtrade-hero,
.inner-hero.crmbrief-hero,
.inner-hero.pamm-hero,
.inner-hero.ibmgmt-hero,
.inner-hero.copytrade-hero,
.inner-hero.pricingcrm-hero,
.inner-hero.clientportal-hero,
.inner-hero.adminpanel-hero,
.inner-hero.seo-hero,
.inner-hero.dm-hero {
    background-image: url(../images/herobanner-bg.png) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
}

/* Force all inner-hero text to white to stay readable on the dark banner */
.inner-hero .hero-title {
    color: #fff !important;
}

.inner-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

.inner-hero .hero-tag {
    color: #FDCC29 !important;
}

.inner-hero .accent-purple,
.inner-hero .accent-teal {
    color: #FDCC29 !important;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 10;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    text-align: left;
    /* margin-top: -100px; */
}

.hero-tag {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-purple);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #050912;
    text-align: left;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    /* color: var(--white); */
    margin-bottom: clamp(20px, 4vw, 40px);
    opacity: 0.9;
    text-align: left;
    max-width: 100%;
}

.hero-cta {
    text-align: left;
    margin-top: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-cta .btn-primary {
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    background: #FDCC29;
}

.btn-primary.btn-outline-dark{
    color: #FDCC29;
    background: transparent;
    border: 1px solid #FDCC29;
}


.btn-hero {
    background-color: var(--white);
    color: #005dab;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    font-size: 24px;
    /* color: var(--white); */
    opacity: 0.9;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info strong {
    font-size: 20px;
    font-weight: 700;
}

.stat-info span {
    font-size: 13px;
    opacity: 0.8;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.main-visual {
    max-width: 110%;
    transform: translateX(10%);
    /* filter: drop-shadow(0 30px 60px rgba(0,0,0,0.2)); */
}

/* Stack Section (Logo Slider/Grid) */
/* .stack-section {
    padding: 60px 0;
    background-color: #f8f9fb;
} */

.stack-title {
    margin-bottom: 20px;
}

.stack-subtitle {
    color: #666;
    margin-bottom: 40px;
}

.logo-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo-card {
    background: #FFFFFF;
    padding: 10px;
    border-radius: 12px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); */
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.slider-logo-img {
    max-height: 65px;
    width: auto;
    object-fit: contain;
    /* filter: grayscale(1);
    opacity: 0.7; */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo-card:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.1);
}

.logo-card:hover .slider-logo-img {
    filter: grayscale(0);
    opacity: 1;
}

.cta-info {
    margin-top: 15px;
    font-size: 13px;
    color: var(--light-gray);
}

.assets-label {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 500;
}

/* Asset Cards */
.asset-cards {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.asset-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
    cursor: pointer;
    min-width: 220px;
}

.asset-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.asset-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.asset-icon {
    display: flex;
    position: relative;
}

.asset-icon .flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.2);
}

.asset-icon .flag:last-child {
    margin-left: -10px;
}

.asset-icon i {
    font-size: 20px;
    color: var(--white);
}

.gold-icon i { color: #ffd700; }
.coffee-icon i { color: #6f4e37; }
.apple-icon i { color: #fff; }

.asset-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.asset-name {
    font-size: 16px;
    font-weight: 700;
}

.asset-sub {
    font-size: 11px;
    color: var(--light-gray);
    white-space: nowrap;
}

/* Mobile Responsiveness */
.tech-section {
    /* padding: 120px 0; */
    background-color: #FFFFFF;
    background-image: url('../images/tech_section_bg.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
}



.tech-container {
    position: relative;
    z-index: 2;
}

.tech-header {
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tech-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #050912;
}

.accent-teal, .tech-card h3 span.accent-teal {
    color: var(--brand-purple);
}

.tech-card h3 i {
    color: var(--brand-yellow); /* Switch card icons to brand yellow */
    font-size: 18px;
    margin-right: 5px;
}

.tech-description {
    font-size: 16px;
    color: var(--light-gray);
    line-height: 1.7;
    opacity: 0.8;
}

/* New Grid logic is below in .tech-grid-main */

/* Base Card Styles */
.tech-card {
    background: #000000;
    border: none;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
/* Main Tech Grid Layout */
.tech-grid-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: minmax(160px, auto);
    gap: 20px;
}

/* Featured Large Card - Spans 4 Rows on the left */
.featured-card {
    grid-column: 1 / 2;
    grid-row: span 4;
    display: flex;
    flex-direction: column;
    min-height: 700px;
}

.featured-card .mobile-mockup {
    margin-top: auto;
    text-align: center;
    /* padding-bottom: 20px; */
    position: relative;
    z-index: 3;
}

.featured-card .mobile-mockup img {
    /* max-width: 65%;
    filter: drop-shadow(0 20px 40px rgba(0, 255, 209, 0.4)); */
    transition: transform 0.6s ease;
}

.featured-card:hover .mobile-mockup img {
    transform: translateY(-10px) scale(1.05);
}

/* Sub-grid items (Small Cards) */
.grid-item {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Last item spans 2 columns to fill the row */
.last-grid-item {
    grid-column: span 2;
}

/* Remove old sub-grid styles */

.card-overlay-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.card-overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.tech-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

.tech-card:hover::after {
    opacity: 0.8;
}

.tech-card:hover .card-overlay-img img {
    transform: scale(1.1);
}

/* Card Content Z-index */
.card-text {
    position: relative;
    z-index: 5;
    padding: 30px;
}

/* Card Typography */
.tech-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space for the arrow */
    gap: 10px;
}

.icon-arrow {
    font-size: 16px;
    color: var(--brand-yellow);
    transition: transform 0.3s ease;
}

.tech-card:hover .icon-arrow {
    transform: translate(4px, -4px);
}

.tech-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 280px;
}

.tech-card h3 i {
    color: var(--brand-yellow); /* Switch card icons to brand yellow for branding */
    font-size: 18px;
    margin-right: 5px;
}

/* Responsive */
/* Steps Section */
.steps-section {
    /* padding: 100px 0; */
    background-color: #FFFFFF;
}

.steps-title {
    /* font-size: clamp(32px, 3.5vw, 42px); */
    font-weight: 700;
    margin-bottom: 20px;
    color: #050912;
}

.accent-purple {
    color: var(--brand-purple);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.steps-launch-bg {
    background-color: #f8f9fb;
    padding: clamp(60px, 8vw, 110px) 0;
}

/* Same 4+2 behavior for sections using steps-grid */
.steps-grid > .step-card:nth-last-child(2):nth-child(4n + 1) {
    grid-column: 1 / span 2;
}
.steps-grid > .step-card:nth-last-child(1):nth-child(4n + 2) {
    grid-column: 3 / span 2;
}

.step-card {
    background: #FFF;
    padding: clamp(20px, 3vw, 30px);
    border-radius: clamp(10px, 2vw, 20px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #edf0f5;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

/* .step-card:hover {
    transform: translateY(-10px);
    background: #FFFFFF;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--brand-purple);
} */

.step-number {
    width: 45px;
    height: 45px;
    background-color: var(--brand-purple);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #050912;
}

.step-card p {
    /* font-size: 15px; */
    color: #666;
    /* line-height: 1.6; */
}

.step-card-highlight {
    /* background: linear-gradient(135deg, rgba(74, 13, 85, 0.08) 0%, rgba(253, 204, 41, 0.14) 100%); */
    /* background: linear-gradient(135deg, 
    rgba(156, 135, 250, 0.15) 0%, 
    rgba(103, 36, 246, 0.05) 50%, 
    rgba(109, 41, 226, 0.15) 100%); */
    /* border: 1px solid rgba(26, 53, 255, 0.25); */
    box-shadow: 0 10px 25px rgba(8, 56, 231, 0.08);
}

/* .step-card-highlight h3 {
    color: #2f2ce8;
} */

.step-card-highlight p {
    color: #2f2f36;
    font-weight: 600;
}

.btn-steps {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--brand-purple);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* box-shadow: 0 10px 20px rgba(74, 13, 85, 0.2); */
}

.btn-steps:hover {
    background-color: var(--brand-purple-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(74, 13, 85, 0.3);
    color: var(--brand-yellow);
}

/* Traders' Favourites Section */
.favs-section {
    /* padding: 100px 0; */
    background-color: #FFFFFF;
}

.favs-title {
    font-size: clamp(32px, 3.5vw, 42px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #0946d4;
}

.favs-description {
    margin-bottom: clamp(20px, 5vw, 30px);
}

.favs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.fav-card {
    border-radius: clamp(10px, 2vw, 20px);
    padding: clamp(30px, 4vw, 40px) clamp(20px, 3vw, 30px);
    /* min-height: 400px; */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* color: #FFFFFF; */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(33, 17, 48, 0.1);
}

.fav-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.spreads-card {
    grid-column: span 7;
    background: #FFF;
}

.bonus-card {
    grid-column: span 5;
    /* background: linear-gradient(135deg, 
    rgba(140, 48, 97, 0.15) 0%, 
    rgba(107, 28, 76, 0.05) 50%, 
    rgba(74, 13, 85, 0.15) 100%); */
}

.comp-card {
    grid-column: span 5;
    background: #f8f9fb;
}

.copy-card {
    grid-column: span 7;
    background: #FDCC291A;
}

.fav-content {
    position: relative;
    z-index: 10;
    /* max-width: 320px; */
    text-align: left;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}



.fav-card h3 {
    /* font-size: 32px; */
    font-weight: 700;
    margin-bottom: 10px;
    /* color: #FFFFFF; */
    line-height: 1.2;
}

.fav-card p {
    /* font-size: 15px; */
    /* opacity: 0.85; */
    /* margin-bottom: 35px; */
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.fav-link {
    color: var(--brand-purple);
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fav-link:hover {
    gap: 15px;
    color: #000000;
}

.fav-img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 65%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.fav-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
    transition: transform 0.6s ease;
}

.fav-card:hover .fav-img img {
    transform: scale(1.05);
}

.icon-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 180px;
    opacity: 0.1;
    position: absolute;
    right: -30px;
    bottom: -30px;
    transform: rotate(-15deg);
}

/* Leading CRM Provider Section */
.leading-section {
    background-color: #FFFFFF;
}

.leading-title {
    /* font-size: clamp(32px, 3.5vw, 42px); */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #050912;
}

.leading-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 24px;
}

.lead-card {
    border-radius: clamp(10px, 2vw, 20px);
    padding: clamp(20px, 2.5vw, 35px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease;
}

.lead-card:hover {
    transform: translateY(-5px);
}

.lead-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #050912;
    line-height: 1.2;
}

.lead-info p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.lead-stat {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.6;
    margin-top: auto;
}

.lead-icon {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card-flexible {
    grid-column: span 2;
    background-color: #f7f7f8; /* Light teal pastel */
}

.card-flexible .lead-icon { color: var(--brand-purple); }

.card-competitive {
    grid-column: span 1;
    grid-row: span 2;
    background-color: #f4f4f7;
    color: #000000;
}

.card-competitive .lead-info h3, 
.card-competitive .lead-info p {
    color: #141414;
}

.card-competitive .lead-icon { color: #050912; }

.card-reliability {
    grid-column: span 1;
    background-color: #f7f7f8; /* Light purple pastel */
}

.card-scalability {
    grid-column: span 1;
    background-color: #f5f5f7;
}

.card-support {
    grid-column: span 1;
    background-color: #f8f9fb;
}

.card-stability {
    grid-column: span 1;
    background-color: #f8f9fb;
}

.card-stability .lead-icon { color: var(--brand-purple); }

/* Mobile CTA Section */
.mobile-cta-section {
    
    border-radius: 30px;
    margin: 0 auto 100px;
    padding: 0;
    overflow: hidden;
    color: #050912;
    max-width: 1400px;
}

.mobile-cta-container {
    display: grid;
    border-radius: 30px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "head head"
        "content visual";
    align-items: center;
    gap: 24px 28px;
    padding: 40px 44px;
    position: relative;
    background: #f8f9fb;
    /* padding-bottom: 0; */
}

.mobile-cta-head {
    grid-area: head;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.mobile-cta-title {
    /* font-size: clamp(32px, 4vw, 56px); */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #050912;
}

.mobile-cta-subtitle {
    color: #475569;
    /* font-size: 20px; */
    margin-bottom: 0;
}

.mobile-cta-content {
    grid-area: content;
}

.mobile-cta-features {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
    flex-wrap: wrap;
    color: #000000;
}

.mobile-cta-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}

.mobile-cta-features i {
    color: var(--brand-purple); /* Teal Accent */
    font-size: 20px;
}

.mobile-cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    max-width: 520px;
}

.mobile-cta-buttons img {
    height: 48px;   /* dono same height */
    width: auto;
    object-fit: contain;
    display: block;
}
/* .btn-app-store, .btn-google-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #000000;
    border-radius: 12px;
    background: #fff;
    color: #000000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
} */

.btn-app-store:hover, .btn-google-play:hover {
    border-color: var(--brand-purple);
    transform: translateY(-2px);
}

.btn-app-store img, .btn-google-play img {
    width: 100%;
    max-width: 210px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.mobile-cta-mockups {
    grid-area: visual;
    position: relative;
    height: 100%;
    /* min-height: 320px; */
}

.mockup-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.phone-mockup {
    /* width: 260px */
    /* border-radius: 40px; */
    transition: transform 0.5s ease;
}

.phone-2 {
    position: absolute;
    right: 0;
    z-index: 1;
    opacity: 0.7;
    transform: translateX(36px) translateY(62px) rotate(8deg);
}

.deposit-box {
    background: linear-gradient(135deg, #1a0624 0%, #2f2ce8 100%);
    border-radius: clamp(20px, 4vw, 32px);
    padding: clamp(30px, 5vw, 60px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    /* box-shadow: 0 30px 60px rgba(74, 13, 85, 0.3);.partner-section */
}

.web-terminal-section .deposit-box {
    background-image: url('../images/web-terminal-bg.png'), linear-gradient(135deg, #7a78fd 0%, #2f2ce8 100%);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat, no-repeat;
}

.deposit-box .accent-teal{
    color: var(--brand-yellow);
}
.deposit-content {
    flex: 1;
    z-index: 10;
}

.deposit-title {
    /* font-size: clamp(32px, 4vw, 48px); */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    text-align: left;
}

.deposit-features {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.deposit-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(14px, 2vw, 16px);
    color: var(--white);
    text-align: left;
}

.deposit-features li i {
    font-size: 18px;
    color: var(--brand-yellow);
}

.btn-deposit {
    background: var(--brand-yellow);
    color: var(--brand-purple);
    padding: 12px 20px;
    border-radius: 7px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-deposit:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(253, 204, 41, 0.4);
}

.deposit-footnote {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.6;
}

.deposit-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}
.deposit-visual img{
    margin-bottom: -120px;
}
/* .withdraw-desk-img {
    max-width: 550px;
    height: auto;
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    transition: transform 0.8s ease;
} */


.partner-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 25px;
}

.partner-main-card {
    background: linear-gradient(135deg, #00A9E7 0%, #0076B1 100%);
    background: var(--brand-purple);
    border-radius: clamp(10px, 2vw, 20px);
    padding: clamp(40px, 5vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    color: var(--white);
    min-height: 100%;
}

.partner-title {
    /* font-size: clamp(32px, 3.5vw, 42px); */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.btn-partner {
    background: var(--white);
    color: var(--brand-purple);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: fit-content;
}

.btn-partner:hover {
    background: var(--brand-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.partner-main-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 65%;
    transform: translate(10%, 10%);
}

.laptop-img {
    /* width: 100%; */
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.partner-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.partner-feature-card {
    background: #f8f9fb;
    border-radius: clamp(10px, 2vw, 20px);
    padding: clamp(20px, 3vw, 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #edf0f5;
    position: relative;
    overflow: hidden;
}

.partner-feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 40px 80px rgba(74, 13, 85, 0.12);
    background: var(--white);
    border-color: var(--brand-purple);
}

.partner-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--brand-purple);
    opacity: 0.03;
    transition: height 0.4s ease;
}

.partner-feature-card:hover::after {
    height: 100%;
}

.partner-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #050912;
    line-height: 1.2;
}

.feature-icon {
    align-self: flex-end;
    /* width: 150px; */
    margin-top: 10px;
}

.feature-icon img {
    width: 100%;
}

/* Footer Styles */
.main-footer {
   background-color: #F6F7FA;
    padding: clamp(40px, 3vw, 60px) 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1.5fr;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 25px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: #050912;
    margin-bottom: clamp(15px, 3vw, 30px);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li:last-child{
    margin-bottom: 0;
}

.footer-col ul li a, 
.footer-col ul li span {
    font-size: 14px;
    color: #666;
    transition: color 0.3s;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--brand-purple);
}

.footer-col ul li i {
    color: var(--brand-purple);
    font-size: 16px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding: 20px 0;
    text-align: center;
}

.regulatory-notice p {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 15px;
}

.regulatory-notice p strong {
    color: #666;
}

.copyright-bar {
    background-color: var(--brand-purple);
    padding: 15px 0;
    color: var(--white);
    text-align: center;
}

.copyright-bar p {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 400;
}

/* .inner-hero {
            min-height: 60vh;
            padding-top: 50px;
            padding-bottom: 50px;
        } */
        .inner-hero .hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.inner-hero .hero-visual img {
    width: 100%;
    max-width: 570px;
    height: auto;
    /* max-height: 490px; */
    object-fit: cover;
}

.generic-img {
    border-radius: clamp(10px, 2vw, 20px);
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.u-inline-1{max-height: 400px; width: 100%;}
.u-inline-2{margin-bottom: 40px; color: #666; font-size: 16px; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.6;}
.u-inline-3{background: #7c77ff; border-top: 5px solid #2f2ce8;}
.u-inline-4{color: #2f2ce8;}
.u-inline-5{color: #444;}
.u-inline-6{background: #FDCC291A; border-top: 5px solid #FDCC29;}
.u-inline-7{color: #050912;}
.u-inline-8{background: #390a42; color: #fff; padding: clamp(40px, 5vw, 80px) 0;}
.u-inline-9{margin-bottom: 30px;}
.u-inline-10{ font-weight: 700; color: #fff; margin-bottom: 20px;}
.u-inline-11{font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.6; max-width: 800px; margin: 0 auto;}
.u-inline-12{text-align: center; margin-bottom: 40px; justify-content: center; gap: 40px;}
.u-inline-13{font-size: clamp(36px, 5vw, 48px); font-weight: 700; color: #fff; margin-bottom: 10px;}
.u-inline-14{color: rgba(255,255,255,0.9);}
.u-inline-15{margin-top: clamp(20px, 5vw, 50px);}
.u-inline-16{font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.7); max-width: 900px; margin: 0 auto;}
.u-inline-17{min-height: auto; align-items: center; text-align: center; justify-content: center; padding: 80px 40px; background:#aa6cfb;}
.u-inline-18{max-width: 800px; color:#000;text-align: center;margin: 0 auto;}
.u-inline-19{color:#000;}
.u-inline-20{margin-bottom: clamp(20px, 5vw, 40px); color:#333;}
.u-inline-21{margin: 0 auto; background:#000; color:#fff;}

.u-inline-22{margin-bottom: 40px; color: #666; font-size: 16px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6;}
.u-inline-23{text-align: center; padding: clamp(20px, 5vw, 40px) 20px;}
.u-inline-24{font-size: 36px; color: #2f2ce8;}
/* .u-inline-25{margin-bottom: 15px;} */
.u-inline-26{font-weight: 500;}
.u-inline-27{color: #000; text-decoration: none;}
.u-inline-28{font-size: 14px; color: #666;}
.u-inline-29{margin-bottom: 10px; font-weight: 500; color: #000;}
.u-inline-30{font-size: 14px; color: #666; line-height: 1.6;}
.u-inline-31{min-height: auto; align-items: center; text-align: center; justify-content: center; padding: 80px 40px;}
.u-inline-32{max-width: 800px;}
.u-inline-33{margin-bottom: 25px; line-height: 1.3;}
.u-inline-34{margin-bottom: clamp(20px, 5vw, 40px); opacity: 0.9;}
.u-inline-35{margin: 0 auto;}

        .grid-4-cols {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
        .branding-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }
        .branding-card {
            background: #f8f9fb;
            border: 1px solid #F3EAE0;
            border-radius: 12px;
            padding: 35px 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .branding-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }
        .branding-icon {
            font-size: 42px;
            margin-bottom: 12px;
        }
        .branding-card strong {
            color: #050912;
            font-size: 18px;
            margin-bottom: 10px;
        }
        .branding-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }
.u-inline-36{font-size: 16px; margin-bottom: 50px;}
.u-inline-37{color: #4285F4;}
.u-inline-38{color: #1877F2;}
.u-inline-39{color: #000000;}
.u-inline-40{color: #FFD500; text-shadow: 0 0 1px #d6b300;}
.u-inline-41{color: #0A66C2;}
.u-inline-42{background: #2f2ce8;}
.u-inline-43{color: #fff;}
.u-inline-44{color: rgba(255,255,255,0.8);}
.u-inline-45{background: #fff; text-align: center;}
.u-inline-46{max-width: 800px; margin: 0 auto;}
/* .u-inline-47{font-size: 36px;} */
.u-inline-48{ margin-top: 20px; color: #666; line-height: 1.6;}

        .steps-5-wrapper {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 25px;
            /* margin-bottom: 60px; */
        }
        .steps-5-wrapper .step-card {
            grid-column: span 2;
            margin: 0;
            max-width: none;
            min-width: 0;
        }
        .steps-5-wrapper .step-card:nth-child(4) {
            grid-column: 1 / span 3;
        }
        .steps-5-wrapper .step-card:nth-child(5) {
            grid-column: 4 / span 3;
        }
        @media (max-width: 1199px) {
            .steps-5-wrapper {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .steps-5-wrapper .step-card,
            .steps-5-wrapper .step-card:nth-child(4),
            .steps-5-wrapper .step-card:nth-child(5) {
                grid-column: span 1;
            }
        }
        @media (max-width: 640px) {
            .steps-5-wrapper {
                grid-template-columns: 1fr;
            }
        }
.u-inline-49{margin-top:20px; color:#666; font-size:14px; text-transform:uppercase; letter-spacing:1px; font-weight:600;}
.u-inline-50{margin-bottom: 30px; color: #666; font-size: 16px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6;}
.u-inline-51{max-width: 1000px; margin: 0 auto; margin-top: 40px;}
.u-inline-52{width: 100%;}
.u-inline-53{margin-bottom:10px; color:var(--brand-yellow); font-size:14px; text-transform:uppercase; letter-spacing:1px; font-weight:600;}
/* .u-inline-54{margin-bottom: 25px; line-height: 1.6; font-size: 16px;} */
.u-inline-55{margin-top: 20px;}
.u-inline-56{margin-top:20px;}
.u-inline-57{border-radius: var(--card-radius); object-fit: cover;}
.u-inline-58{display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; align-items: center;}
.u-inline-59{background: linear-gradient(135deg, #2f2ce8 0%, #1a0624 100%); padding: 50px;}
.u-inline-60{color:rgba(255,255,255,0.7); font-size:14px; text-transform:uppercase; letter-spacing:1px; font-weight:600;}
.u-inline-61{font-size: 16px; margin-bottom: 30px; line-height: 1.6; color: rgba(255,255,255,0.8);}
.u-inline-62{display: grid; grid-template-columns: 1fr; gap: 20px;}
.u-inline-63{font-size: 14px; margin-top: 10px; color: #666; line-height:1.5;}

        
        /* Ecosystem Grid */
        .eco-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .eco-card {
            background: #fff;
            padding: clamp(20px, 5vw, 30px);
            border-radius: clamp(12px, 2vw, 24px);
            border: 1px solid #eee;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }
        
        .eco-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(74, 13, 85, 0.08);
            border-color: #2f2ce8;
        }

        .eco-icon {
            width: 60px;
            height: 60px;
            background: #aa6cfb;
            color: #2f2ce8;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(18px, 2vw, 24px);
            margin-bottom: clamp(12px, 2vw, 25px);
        }

        .eco-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #050912;
        }

        .eco-card p {
            color: #666;
            line-height: 1.6;
            font-size: 15px;
        }
.u-inline-64{font-weight: 700; text-transform: uppercase; font-size: 14px; margin-bottom: 15px; display: block; letter-spacing: 1px;}
.u-inline-65{margin-bottom: clamp(20px, 4vw, 40px); color: #666; max-width: 800px; margin-left: auto; margin-right: auto;}
.u-inline-66{background: linear-gradient(135deg, #050912 0%, #1a0624 100%);}
.u-inline-67{color: rgba(255,255,255,0.8); margin-bottom: 30px; line-height: 1.6;}
.u-inline-68{color: #fff; margin-bottom: clamp(20px, 4vw, 40px);}
.u-inline-69{max-height: 500px; object-fit: contain;}
.u-inline-70{background: #aa6cfb; padding: clamp(50px, 5vw, 100px) clamp(20px, 5vw, 40px); border-radius: clamp(20px, 2vw, 40px); text-align: center;}
.u-inline-71{ margin-bottom: clamp(12px, 2vw, 25px); color: #2f2ce8;}
.u-inline-72{margin-bottom: clamp(20px, 5vw, 40px); max-width: 700px; margin-left: auto; margin-right: auto; color: #050912; opacity: 0.8;}
/* .u-inline-73{padding: clamp(12px, 2vw, 18px) clamp(45px, 5vw, 90px); font-size: clamp(16px, 2vw, 20px); background: #2f2ce8;} */

.partner-section .partner-main-card{
    background-image: url(../images/cta-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
        .grid-3-cols {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        /* Partner Grid Layout CSS */
        .partner-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 30px;
            align-items: stretch;
        }
        .partner-main-card {
            background: #2f2ce8;
            color: #fff;
            padding: clamp(30px, 5vw, 50px);
            border-radius: clamp(10px, 2vw, 24px);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            /* min-height: 500px; */
        }
        .partner-features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        /* .partner-feature-card {
            background: #f8f9fb;
            padding: 30px;
            border-radius: var(--card-radius);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease;
        } */
        .partner-feature-card:hover {
            transform: translateY(-5px);
        }
        .btn-partner {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            color: #2f2ce8;
            padding: 12px 25px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            width: fit-content;
        }
        .laptop-img {
            max-width: 120%;
            position: absolute;
            bottom: -50px;
            right: -50px;
            transform: rotate(-5deg);
        }

        .benefits-clean{    
            padding: clamp(50px, 5vw, 100px) 0;
        }
.u-inline-74{grid-column: span 7; background: #aa6cfb; }
.u-inline-75{max-width: 450px;}
.u-inline-76{color: #2f2ce8; opacity: 0.8;}
.u-inline-77{color: #341de3; opacity: 0.05;}
.u-inline-78{grid-column: span 5; background: #2f2ce8;  color: #fff;}
.u-inline-79{color: rgba(255,255,255,0.85);}
.u-inline-80{color: #FDCC29;}
.u-inline-81{color: #fff; opacity: 0.1;}
.u-inline-82{grid-column: span 5; background: #f8f9fb; }
.u-inline-83{color: #666;}
.u-inline-84{grid-column: span 7; background: #FDCC291A;}
.u-inline-85{color: #050912; opacity: 0.7;}
.u-inline-86{color: #FDCC29; opacity: 0.1;}
.u-inline-87{grid-column: span 6; background: #f8f9fb; }
.u-inline-88{color: #050912; font-size: 26px;}
.u-inline-89{grid-column: span 6; background: #aa6cfb; }
.u-inline-90{color: #2f2ce8; font-size: 26px;}
.u-inline-91{background: #fff;}
.u-inline-92{display: grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(20px, 5vw, 40px); align-items: center;}
.u-inline-93{width: 100%; border-radius: var(--card-radius);}
.u-inline-94{font-weight: 700; text-transform: uppercase; font-size: 14px; margin-bottom: 15px; display: block;}
.u-inline-95{ font-weight: 700; color: #050912; margin-bottom: 25px; line-height: 1.2;}
.u-inline-96{color: #666; line-height: 1.6; margin-bottom: 35px;}
/* .u-inline-97{padding: 15px 35px; background: #2f2ce8;} */
.u-inline-98{background: #fafaf6;}
.u-inline-99{margin-bottom: clamp(20px, 5vw, 40px);}
/* .u-inline-100{font-size: 36px; font-weight: 700; color: #050912; margin-bottom: 15px;} */
/* .u-inline-101{color: #666; font-size: 18px;} */
.u-inline-102{font-weight: 700; text-transform: uppercase; font-size: 14px; margin-bottom: 20px; display: block; opacity: 0.8;}
.u-inline-103{margin-bottom: 10px;}
.u-inline-104{font-size: 14px; color: #666; line-height: 1.5;}
.u-inline-105{align-self: flex-end; opacity: 0.8;}
.u-inline-106{font-size: 40px; color: #60a5fa;}
.u-inline-107{font-size: 40px; color: #d8b4fe;}
.u-inline-108{font-size: 40px; color: #fca5a5;}
.u-inline-109{font-size: 40px; color: #fde68a;}
.u-inline-110{padding-top: 0;}
/* .u-inline-111{ background:#aa6cfb;} */

        
        .hero-title {
            /* font-size: 64px; */
            font-weight: 800;
            /* line-height: 1.1; */
            margin-bottom: 25px;
        }

        /* Sticky Feature Section */
        .sticky-section {
            padding: 100px 0;
            background: #fff;
        }

        .sticky-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            position: relative;
        }

        .sticky-visual {
            position: sticky;
            top: 150px;
            height: calc(100vh - 200px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sticky-phone {
            width: 100%;
            max-width: 380px;
            position: relative;
            z-index: 2;
        }

        .floating-3d {
            position: absolute;
            width: 100px;
            z-index: 3;
        }

        .feature-scroll {
            padding: 50px 0;
        }

        .feature-block {
            min-height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 0;
        }

        .feature-block h2 {
            font-size: 42px;
            margin-bottom: 25px;
            color: #050912;
        }

        .feature-block p {
            font-size: 18px;
            color: #666;
            line-height: 1.8;
            max-width: 500px;
        }
        .steps-section {
            background-image: url('../images/eco-grid-bg.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Ecosystem Grid */
        .eco-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .eco-item {
            background: #f8f9fb;
            padding: clamp(15px, 5vw, 30px);
            padding-bottom: calc(clamp(15px, 5vw, 30px) + 44px + 15px); /* explicitly accounts for absolute .eco-arrow height */
            border-radius: var(--card-radius);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            color: #000;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .eco-arrow {
            margin-top: auto;
            align-self: flex-end;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: rgba(0,0,0,0.05); /* faint inner circle */
            border-radius: 50%;
            margin-top: 20px;
            font-size: 18px;
            transition: transform 0.3s ease, background 0.3s ease;
            position: absolute;
            bottom: 30px;
            right: 30px;
            color: #000;
        }

        .eco-arrow i {
            transform: rotate(-45deg);
            transition: transform 0.3s ease;
        }

        .eco-item:hover .eco-arrow {
            background: rgba(0,0,0,0.1);
        }
        
        .eco-item:hover .eco-arrow i {
            transform: rotate(0deg) translateX(0);
        }

        .eco-item h4{
            margin-bottom: 10px;
            font-size: clamp(18px, 1.6vw, 22px);
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .eco-item:hover {
            transform: translateY(-5px);
        }

        /* Eco Item Individual Styles */
        .eco-color-1 { background: #f5f7fc; color: #000; }
        /* .eco-color-1:hover { background: #846cfb; } */
        /* .eco-color-1:hover h4 { color: #2f2ce8; } */

        .eco-color-2 { background: #f5f7fc !important; color: #000 !important; }
        .eco-color-2 h4, .eco-color-2 p { color: #000 !important; }
        /* .eco-color-2:hover { background: #5554b7 !important; } */
        
        .eco-color-2 .eco-arrow { background: rgba(255,255,255,0.15) !important; color: #fff !important; }
        .eco-color-2:hover .eco-arrow { background: rgba(255,255,255,0.25) !important; }

        .eco-color-3 { background: #f5f7fc; color: #000; }
        /* .eco-color-3:hover { background: #5f71ff; } */
        .eco-color-3 h4 { color: #000000; }

        /* .eco-color-4 { background: linear-gradient(135deg, rgba(15, 8, 37, 0.08) 0%, rgba(45, 41, 253, 0.14) 100%); color: #000; } */
        /* .eco-color-4:hover { background: linear-gradient(135deg, rgba(23, 13, 85, 0.15) 0%, rgba(79, 79, 249, 0.25) 100%); } */
        .eco-color-4 h4 { color: #000; }
        
        .eco-span-2-col { grid-column: span 2; }
        .eco-span-2-row { grid-row: span 2; }
        .eco-span-3-col { grid-column: span 3; }
        .eco-span-4-col { grid-column: span 4; }

        /* Download Section */
        .download-box {
            text-align: center;
            background: #050912;
            padding: clamp(50px, 5vw, 100px) clamp(20px, 5vw, 40px);
            border-radius: clamp(20px, 5vw, 40px);
            color: #fff;
            /* margin-top: 100px; */
        }

        .qr-wrapper {
            background: #fff;
            padding: 15px;
            border-radius: var(--card-radius);
            display: inline-block;
            margin-bottom: 30px;
        }

        /* App User Guide Section */
        .guide-section {
            padding: 100px 0 40px;
            background: #fdfdfd;
            position: relative;
        }

        .guide-scroll-wrapper {
            position: sticky;
            top: 120px;
            z-index: 2;
            min-height: calc(100vh - 120px);
            display: flex;
            align-items: center;
        }

        .guide-scroll-track {
            margin-top: 40px;
        }

        .guide-scroll-step {
            height: 100vh;
        }

        .guide-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .guide-nav {
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
        }

        .guide-nav::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #eee;
            z-index: 1;
        }

        .guide-step {
            display: flex;
            align-items: center;
            gap: 20px;
            cursor: pointer;
            padding: 15px;
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            z-index: 2;
        }

        .guide-step.active {
            background: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .step-num {
            width: 40px;
            height: 40px;
            background: #fff;
            border: 2px solid #eee;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #666;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .guide-step.active .step-num {
            background: #2f2ce8;
            border-color: #2f2ce8;
            color: #fff;
        }

        .step-title {
            font-size: 18px;
            font-weight: 600;
            color: #666;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .guide-step.active .step-title {
            color: #050912;
        }

        .guide-content-box {
            background: #fff;
            padding: 50px;
            border-radius: 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.03);
            position: relative;
            overflow: hidden;
        }

        #guide-title,
        #guide-desc,
        #guide-img,
        .guide-bg-num {
            transition: opacity 0.4s ease, transform 0.4s ease;
            will-change: opacity, transform;
        }

        .guide-content-box.is-updating #guide-title,
        .guide-content-box.is-updating #guide-desc {
            opacity: 0;
            transform: translateY(10px);
        }

        .guide-content-box.is-updating #guide-img {
            opacity: 0;
            transform: scale(0.96);
        }

        .guide-content-box.is-updating .guide-bg-num {
            opacity: 0.3;
            transform: translateY(-8px);
        }

        .guide-bg-num {
            position: absolute;
            top: -20px;
            right: -20px;
            font-size: 150px;
            font-weight: 900;
            color: rgba(74, 13, 85, 0.03);
            line-height: 1;
        }
.u-inline-112{padding: 18px 40px; font-size: 18px;}
.u-inline-113{position: relative;}
.u-inline-114{max-height: 600px; transform: rotate(-5deg); filter: drop-shadow(0 30px 60px rgba(0,0,0,0.2));}
.u-inline-115{top: 10%; right: -10%; width: 140px;}
.u-inline-116{bottom: 15%; left: -15%; width: 120px;}
.u-inline-117{position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 120%; height: 120%; background: radial-gradient(circle, rgba(74, 13, 85, 0.05) 0%, rgba(255,255,255,0) 70%); z-index: 1;}
.u-inline-118{font-weight: 700; text-transform: uppercase; font-size: 14px; margin-bottom: 10px; display: block;}
.u-inline-119{background: #fafafb;}
.u-inline-120{margin-bottom: 80px;}
.u-inline-121{font-size: 48px;}
.u-inline-122{color: #666; font-size: 20px;}
.u-inline-123{max-height: 500px;}
.u-inline-124{font-size: 32px; margin-bottom: 20px; color: #2f2ce8;}
.u-inline-125{font-size: 18px; color: #666; line-height: 1.8; margin-bottom: 30px;}
.u-inline-126{background: #FDCC29; color: #050912;}
.u-inline-127{background: #fff; padding-top: 50px;}
.u-inline-128{color: #666; font-size: 20px; max-width: 800px; margin: 0 auto;}
.u-inline-129{background: #aa6cfb; width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px;}
.u-inline-130{font-size: 24px; color: #2f2ce8;}
.u-inline-131{font-size: 22px; margin-bottom: 15px;}
.u-inline-132{background: #e6f7f7; width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px;}
.u-inline-133{font-size: 24px; color: #008080;}
.u-inline-134{background: #fff4e6; width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px;}
.u-inline-135{font-size: 24px; color: #FDCC29;}
.u-inline-136{width: 150px;}
.u-inline-137{font-size: 42px; margin-bottom: 20px;}
.u-inline-138{font-size: 18px; margin-bottom: 40px; opacity: 0.8; max-width: 600px; margin-left: auto; margin-right: auto;}
.u-inline-139{justify-content: center;}
.u-inline-140{background: #fff; color: #000;}

        
        /* Grid Custom Styles */
        .hosting-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 25px;
        }
        
        .hosting-card {
            padding: clamp(20px, 5vw, 40px);
            border-radius: clamp(10px, 5vw, 24px);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .hosting-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .card-purple { background: #2f2ce8; color: #fff; }
        .card-light-purple { background: #aa6cfb; color: #2f2ce8; }
        .card-yellow { background: #FDCC291A; color: #050912; }
        .card-grey { background: #f8f9fb; color: #050912; }

        .stat-badge {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            display: inline-block;
            padding: 5px 12px;
            border-radius: var(--card-radius);
            background: rgba(255,255,255,0.1);
        }

        .card-light-purple .stat-badge { background: rgba(74, 13, 85, 0.1); }
        .card-yellow .stat-badge { background: rgba(253, 204, 41, 0.2); }
        .card-grey .stat-badge { background: rgba(5, 9, 18, 0.05); }

        .icon-box {
            font-size: 40px;
            margin-top: 30px;
            opacity: 0.8;
            align-self: flex-end;
        }
.u-inline-141{grid-column: span 7;}
.u-inline-142{margin-top: 15px; opacity: 0.9; line-height: 1.6;}
.u-inline-143{grid-column: span 5;}
.u-inline-144{margin-top: 15px; line-height: 1.6;}
.u-inline-145{grid-column: span 6;}
.u-inline-146{grid-column: span 6; padding: 0;}
.u-inline-147{padding: clamp(20px, 5vw, 40px); height: 100%; display: flex; flex-direction: column; justify-content: space-between; z-index: 2; position: relative; background: linear-gradient(to right, rgba(74, 13, 85, 0.95), rgba(74, 13, 85, 0.4));}
.u-inline-148{margin-top: 15px; opacity: 0.9; line-height: 1.6; max-width: 300px;}
.u-inline-149{position: absolute; top: 0; right: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.8; z-index: 1;}
.u-inline-150{margin-bottom: 10px; color: #2f2ce8;}
.u-inline-151{margin-right: 10px;}
.u-inline-152{color: #666; line-height: 1.6;}
.u-inline-153{margin-bottom: 40px;}
.u-inline-154{grid-template-columns: 1fr;}
.two-col-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left !important;
}
.two-col-card .partner-main-content {
    margin: 0;
    max-width: 100%;
}
.two-col-card .btn-partner, .two-col-card .btn-primary {
    margin-left: 0 !important;
    margin-right: auto !important;
}
@media (max-width: 1199px) {
    .two-col-card {
        grid-template-columns: 1fr;
        text-align: center !important;
    }
    .two-col-card .btn-partner, .two-col-card .btn-primary {
        margin: 0 auto !important;
    }
}

.u-inline-155{background: #aa6cfb; color: #2f2ce8; text-align: center;}
.u-inline-156{max-width: 900px; margin: 0 auto;}
.u-inline-157{margin-bottom: clamp(15px, 5vw, 25px);}
.u-inline-158{margin-bottom: clamp(20px, 5vw, 40px); line-height: 1.6;}
.u-inline-159{background: #2f2ce8; color: #fff; margin: 0 auto; margin-bottom: 40px;}
.u-inline-160{width: 100%; margin-top: 20px;}
.u-inline-161{background: #050912; padding: clamp(50px, 5vw, 100px) clamp(20px, 5vw, 40px); border-radius: clamp(20px, 5vw, 40px); text-align: center; color: #fff;}
.u-inline-162{ margin-bottom: 25px; line-height: 1.2;}
.u-inline-163{margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; opacity: 0.8;}
/* .u-inline-164{padding: 18px 45px; font-size: 18px;} */

/* .u-inline-165{min-height: auto; padding-top: 60px; padding-bottom: 60px;} */
.u-inline-166{max-height: 350px; object-fit: contain;}
.u-inline-167{margin-top: 10px; margin-left: 15px;}
.u-inline-168{list-style: disc !important; padding-bottom: 5px; font-size: 14px; color: #fff;}
.u-inline-169{margin-bottom: 40px; font-size: 24px; font-weight: 600;}

.legal-hero {
            min-height: 45vh;
            padding-top: 150px;
            padding-bottom: 40px;
        }
        .legal-page { margin-bottom: 100px; }
        .policy-panel {
            background: #fff;
            border: 1px solid rgba(74, 13, 85, 0.1);
            border-radius: 22px;
            padding: 36px;
            box-shadow: 0 20px 45px rgba(5, 9, 18, 0.06);
        }
        .policy-head h2 {
            color: #2f2ce8;
            margin-bottom: 10px;
        }
        .policy-head p {
            color: #6b7280;
            margin-bottom: 24px;
        }
        .policy-list {
            display: grid;
            gap: 14px;
        }
        .policy-item {
            border: 1px solid rgba(74, 13, 85, 0.1);
            border-radius: 16px;
            padding: 18px;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 14px;
            align-items: start;
            background: #fffdfa;
        }
        .policy-badge {
            min-width: 40px;
            height: 40px;
            border-radius: 12px;
            background: #fff7d6;
            color: #2f2ce8;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .policy-item h3 {
            margin-bottom: 6px;
            color: #111827;
            font-size: 22px;
        }
        .policy-item .item-sub {
            color: #6b7280;
            margin-bottom: 10px;
        }
        .policy-points {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px 16px;
            padding-left: 0;
        }
        .policy-points li {
            color: #4b5563;
            font-size: 15px;
            line-height: 1.5;
            position: relative;
            padding-left: 16px;
        }
        .policy-points li::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 2px;
            background: #FDCC29;
            position: absolute;
            left: 0;
            top: 8px;
        }
.u-inline-170{min-height: auto; gap: 30px; flex-direction: row-reverse;}
/* .u-inline-171{padding-left: 40px;} */
.u-inline-172{font-size: 20px; font-weight: 600; margin-bottom: 10px; color: #FDCC29;}
.u-inline-173{margin-bottom: 25px; line-height: 1.6; font-size: 16px; color: rgba(255,255,255,0.8);}
.u-inline-174{background:#FDCC29; color:#000;}
.u-inline-175{position: absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; opacity: 0.05; pointer-events: none;}
.u-inline-176{justify-content: flex-start;}
/* .u-inline-177{max-height: 350px;} */
.u-inline-178{min-height: auto; align-items: center; text-align: center; justify-content: center; padding: clamp(40px, 5vw, 100px) clamp(20px, 5vw, 40px); background: #000; color: #fff;}
.u-inline-179{margin-bottom: 25px; line-height: 1.3; color: #fff;}
.u-inline-180{margin: 0 auto; background: #FDCC29; color: #000;}

        .legal-page { margin-bottom: 100px; }
        .policy-item.highlight {
            border-color: rgba(253, 204, 41, 0.9);
            background: #fffdfa;
        }

        /* Hero visual adjustment for web platform mockup */
        .hero-visual-web {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            position: relative;
        }
        
        .hero-visual-web .main-visual {
            max-width: 140%; /* Increase to show the dual monitor mockup better */
            transform: translateX(15%);
        }
.u-inline-181{min-height: auto; padding-top: clamp(40px, 5vw, 60px); padding-bottom: clamp(40px, 5vw, 60px); flex-direction: row-reverse;}
.u-inline-182{max-height: 400px; object-fit: contain; transform: translateX(-30px);}

.u-inline-183{background: #f8f9fb;padding: clamp(50px, 5vw, 100px) 0;}
.u-inline-184{background:#fff;}
.u-inline-185{width: 100%; margin-top: 50px;}

.u-inline-186{background:#2f2ce8;}
.u-inline-187{color:#fff !important;}
.u-inline-188{color:rgba(255,255,255,0.8) !important;}
.u-inline-189{color:#050912;}
.u-inline-190{background: #aa6cfb;}
.u-inline-191{background: #2f2ce820;}
.u-inline-192{background: #FDCC291A;}


.partner-title.u-inline-19{
    color: #FFF;
}

.partner-main-content.u-inline-18 .u-inline-20{
    color: #FFFFFF;
}

/* Homepage brief layout helpers */
.btn-outline-dark {
    background: #fff;
    color: #050912;
    border: 1px solid #e5e7eb;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border: 1px solid #e8eaf0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.trust-item {
    padding: 18px 16px;
    border-right: 1px solid #eef0f6;
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    color: #2f2ce8;
    margin-bottom: 8px;
}

.trust-item h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #050912;
}

.trust-item p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.two-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-products-grid .spreads-card,
.two-products-grid .bonus-card {
    grid-column: span 1;
}

.product-card {
    min-height: 100%;
    /* border-left: 4px solid transparent; */
}

/* .product-crm {
    border-left-color: #2f2ce8;
}

.product-wl {
    border-left-color: #FDCC29;
} */

.product-tags {
    font-size: 13px;
    line-height: 1.6;
    color: #475569;
}

.services-section {
    background-color: #f8f9fb;
    padding: clamp(60px, 8vw, 100px) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.services-grid .step-card {
    background: #fff;
    border: 1px solid #eceff5;
    border-radius: var(--card-radius);
    padding: 30px 25px;
    padding-bottom: 80px; /* space for absolute arrow */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    display: block;
    position: relative;
}

.services-grid .step-card:hover {
    transform: translateY(-5px);
    /* border-color: #aa6cfb; */
    box-shadow: 0 10px 30px rgba(74, 13, 85, 0.05);
}

.services-grid .step-card:hover .eco-arrow {
    background: rgba(0,0,0,0.1);
}

.services-grid .step-card:hover .eco-arrow i {
    transform: rotate(0deg);
}

.services-grid .step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2f2ce8;
}

.services-grid .step-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.timeline-badge {
    display: inline-block;
    margin: 15px 0;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(74, 13, 85, 0.08);
    color: #2f2ce8;
    font-weight: 700;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.region-card {
    background: #f8f9fb;
    border: 1px solid #eceff5;
    border-radius: 14px;
    padding: 22px;
}

.region-card h3 {
    margin-bottom: 8px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.testimonial-card p {
    font-style: italic;
}

.testimonials-feedback {
    background: #f8f7fb;
    padding: clamp(50px, 5vw, 100px) 0;
}

.testimonials-feedback-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 24px;
}

.feedback-card {
    background: #fff;
    border: 1px solid #eceaf5;
    border-radius: 16px;
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* min-height: 320px; */
}

.feedback-card p {
    color: #121826;
    line-height: 1.7;
    margin-bottom: 26px;
}

.feedback-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.feedback-meta h4 {
    margin-bottom: 4px;
    color: #050912;
}

.feedback-meta span {
    color: #2a3344;
}

.feedback-meta img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.final-cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.mobile-cta-features-long {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 20px;
}

/* Header inline-style replacements */
.site-mega-store-block {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.site-mega-mini-title {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px;
}

.site-store-badge {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.site-store-badge-sm {
    height: 32px;
    width: auto;
    border-radius: 4px;
}

.site-mega-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-mega-promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-mega-tag-tight {
    margin: 0;
    align-self: flex-start;
}

.site-mega-promo-title-light {
    color: #fff;
    margin: 0;
}

.site-mega-promo-link-light {
    color: #fff;
}

.site-mega-item-full {
    grid-column: 1 / -1;
}

.site-drawer-store-row {
    display: flex;
    gap: 10px;
    margin: 16px;
    justify-content: center;
}

/* Mobile app page (PDF brief mapping) */
.mobile-app-page .section-spacing {
    margin-bottom: clamp(60px, 6vw, 100px);
}

.mobileapp-hero {
    background: linear-gradient(135deg, #1a0624 0%, #2f2ce8 65%, #2a0b39 100%);
    color: #fff;
}

.mobileapp-hero .hero-title,
.mobileapp-hero .hero-subtitle,
.mobileapp-hero .hero-tag {
    color: #fff;
}

.mobileapp-hero .accent-purple {
    color: #FDCC29;
}

.mobileapp-target {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 760px;
}

.mobileapp-store-row {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.mobileapp-trust-stat {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.mobileapp-hero-visual {
    justify-content: center;
}

.mobileapp-phone-stack {
    position: relative;
    width: min(640px, 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobileapp-phone-main {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.mobileapp-phone-main:hover {
    transform: translateY(-10px);
}

.mobileapp-section-subtitle {
    max-width: 860px;
    margin: 16px auto 0;
    color: #5f6674;
}

.mobileapp-section-light {
    background: #fafaf6;
    padding: clamp(60px, 6vw, 90px) 0;
}

.mobileapp-section-soft {
    background: #f6f3fa;
    padding: clamp(60px, 6vw, 90px) 0;
}

.mobileapp-reasons-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.mobileapp-reason-card,
.mobileapp-feature-card {
    background: #fff;
    border: 1px solid #eceaf2;
    border-radius: 16px;
    padding: 24px 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mobileapp-reason-card:hover,
.mobileapp-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    border-color: rgba(74, 13, 85, 0.4);
}

.mobileapp-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(74, 13, 85, 0.1);
    color: #2f2ce8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.mobileapp-reason-card h3,
.mobileapp-feature-card h3,
.mobileapp-screen-card h3,
.mobileapp-cta-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

.mobileapp-reason-card p,
.mobileapp-feature-card p,
.mobileapp-screen-card p,
.mobileapp-cta-card p {
    color: #5f6674;
    line-height: 1.65;
    letter-spacing: 0.2px;
}

.mobileapp-feature-grid {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.mobileapp-feature-grid-trading {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mobileapp-feature-grid-portal {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mobileapp-feature-highlight {
    border-color: rgba(74, 13, 85, 0.35);
    background: linear-gradient(135deg, rgba(74, 13, 85, 0.08) 0%, rgba(253, 204, 41, 0.16) 100%);
}

.mobileapp-publish-wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: stretch;
}

.mobileapp-publish-content {
    background: #fff;
    border: 1px solid #eceaf2;
    border-radius: var(--card-radius);
    padding: clamp(28px, 3vw, 40px);
}

.mobileapp-publish-list {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.mobileapp-publish-list li {
    position: relative;
    padding-left: 16px;
    color: #394356;
    font-size: 15px;
    line-height: 1.55;
}

.mobileapp-publish-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: #FDCC29;
}

.mobileapp-publish-visual {
    background-image: url(../images/mobile-bg.png) !important;
    border-radius: var(--card-radius);
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}

.mobileapp-publish-phone {
    width: min(320px, 100%);
    margin: 0 auto;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.4));
}

.mobileapp-store-mockups {
    display: flex;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.mobileapp-store-card {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 12px;
    /* padding: 14px 16px; */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobileapp-store-link {
    display: inline-block;
    margin-bottom: 6px;
}

.mobileapp-store-badge {
    height: 44px;
    width: auto;
    border-radius: 8px;
}

.mobileapp-store-card p {
    font-size: 14px;
    color: #4b5563;
}

.mobileapp-screens-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mobileapp-screen-card {
    background: #fff;
    border: 1px solid #eceaf2;
    border-radius: 16px;
    padding: 18px;
}

.mobileapp-screen-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 14px;
    background: #0f172a;
}

.mobileapp-spec-table-wrap {
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8eaf2;
}

.mobileapp-spec-table {
    width: 100%;
    border-collapse: collapse;
}

.mobileapp-spec-table th,
.mobileapp-spec-table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #edf0f6;
}

.mobileapp-spec-table tr:last-child th,
.mobileapp-spec-table tr:last-child td {
    border-bottom: none;
}

.mobileapp-spec-table tr:nth-child(even) {
    background: #fafbff;
}

.mobileapp-spec-table th {
    width: 240px;
    font-size: 15px;
    color: #0f172a;
    font-weight: 700;
}

.mobileapp-spec-table td {
    color: #475569;
    font-size: 15px;
}

.mobileapp-final-cta {
    background: linear-gradient(135deg, #1a0624 0%, #2f2ce8 65%, #2a0b39 100%);
    border-radius: var(--card-radius);
    padding: clamp(34px, 5vw, 58px);
}

.mobileapp-final-title {
    color: #fff;
}

.mobileapp-final-title .accent-purple {
    color: #FDCC29;
}

.mobileapp-final-subtitle {
    color: rgba(255, 255, 255, 0.86);
    max-width: 760px;
    margin: 14px auto 0;
}

.mobileapp-cta-cards {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mobileapp-cta-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
}

.mobileapp-cta-card i {
    color: #2f2ce8;
    font-size: 24px;
    margin-bottom: 12px;
}

.mobileapp-cta-card .btn-primary {
    margin-top: 14px;
}

.mobileapp-store-row-center {
    justify-content: center;
    margin-top: 24px;
}

/* Payment gateway page (PDF brief mapping) */
/* .payment-page .section-spacing {
    margin-bottom: clamp(60px, 6vw, 100px);
} */

.payment-hero {
    background: linear-gradient(135deg, #1a0624 0%, #2f2ce8 65%, #2a0b39 100%);
    color: #fff;
}

.payment-hero .hero-title,
.payment-hero .hero-subtitle,
.payment-hero .hero-tag {
    color: #fff;
}

.payment-hero .accent-purple,
.payment-final-title .accent-purple {
    color: #FDCC29;
}

.payment-target {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.86);
}

.payment-hero-visual {
    justify-content: center;
}

.payment-logo-grid {
    width: min(620px, 100%);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.payment-logo-chip {
    min-height: 82px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(3px);
}

.payment-logo-chip i {
    font-size: 24px;
    color: #FDCC29;
}

.payment-subtitle {
    max-width: 880px;
    margin: 16px auto 0;
    color: #5f6674;
}

.payment-why {
    background: #fafaf6;
    padding: clamp(60px, 6vw, 90px) 0;
}

.payment-pain-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.payment-pain-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--brand-purple);
    border-top: 4px solid var(--brand-purple);
    padding: 20px 18px;
}

.payment-pain-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.payment-pain-card p {
    color: #586377;
    line-height: 1.6;
}

.payment-solution-card {
    margin-top: 16px;
    border-radius: 14px;
    background: #2f2ce8;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-solution-card i {
    color: #FDCC29;
    font-size: 22px;
}

.payment-solution-card p {
    color: rgba(255, 255, 255, 0.9);
}

.payment-category-grid,
.payment-admin-grid,
.payment-security-row,
.payment-shot-tabs {
    margin-top: 30px;
    display: grid;
    gap: 18px;
}

.payment-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.payment-admin-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.payment-security-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-shot-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-category-card,
.payment-admin-card,
.payment-shot-card {
    background: #fff;
    border: 1px solid #eceaf2;
    border-radius: 16px;
    padding: 20px;
}

/* .payment-admin {
    background: #f2f9f3;
    padding: clamp(60px, 6vw, 90px) 0;
} */

/* .payment-admin-card {
    background: #f7fff8;
    border-color: #d7efdb;
} */

.payment-category-card h3,
.payment-admin-card h3,
.payment-security-item h3,
.payment-shot-card h3,
.payment-final-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

.payment-category-card p,
.payment-admin-card p,
.payment-security-item p,
.payment-shot-card p,
.payment-final-card p {
    color: #5f6674;
    line-height: 1.62;
}

.payment-flow {
    background: #f8f9fb;
    padding: clamp(60px, 6vw, 90px) 0;
}

.payment-flow-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.payment-flow-col {
    background: #fff;
    border: 1px solid #eceaf2;
    border-radius: 16px;
    padding: 24px 22px;
}

.payment-flow-col h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.payment-steps {
    display: grid;
    gap: 10px;
}

.payment-steps li {
    list-style: decimal;
    margin-left: 18px;
    color: #475569;
    line-height: 1.6;
    font-size: 15px;
}

.payment-time-badge {
    margin-top: 14px;
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(74, 13, 85, 0.08);
    color: #2f2ce8;
    font-weight: 700;
    font-size: 14px;
}

.payment-security {
    background: #fbfcff;
    padding: clamp(60px, 6vw, 90px) 0;
}

.payment-security-item {
    background: #fff;
    border: 1px solid #eceaf2;
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
}

.payment-security-item i {
    color: #2f2ce8;
    font-size: 24px;
    margin-bottom: 12px;
}

.payment-shot-card img {
    margin-top: 14px;
    width: 100%;
    border-radius: 12px;
}

.payment-final-cta {
    border-radius: var(--card-radius);
    background: linear-gradient(135deg, #1a0624 0%, #2f2ce8 65%, #2a0b39 100%);
    padding: clamp(34px, 5vw, 58px);
}

.payment-final-title {
    color: #fff;
}

.payment-final-sub {
    margin: 14px auto 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
}

.payment-final-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.payment-final-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 20px;
    text-align: center;
}

.payment-final-card i {
    color: #2f2ce8;
    font-size: 24px;
    margin-bottom: 10px;
}

.payment-final-card .btn-primary {
    margin-top: 12px;
}

.payment-final-logos {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-final-logos span {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
}

.payment-final-logos i {
    color: #FDCC29;
}

/* Web trading page (PDF brief mapping) */
.webtrade-page .section-spacing {
    margin-bottom: clamp(60px, 6vw, 100px);
}

.webtrade-hero {
    background: linear-gradient(135deg, #1a0624 0%, #2f2ce8 65%, #2a0b39 100%);
    color: #fff;
}

.webtrade-hero .hero-title,
.webtrade-hero .hero-subtitle,
.webtrade-hero .hero-tag {
    color: #fff;
}

.webtrade-hero .accent-purple,
.webtrade-final-title .accent-purple {
    color: #FDCC29;
}

.webtrade-target {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.86);
}

.webtrade-hero-visual {
    justify-content: center;
}

.webtrade-hero-visual .main-visual {
    max-width: min(820px, 100%);
    transform: none;
}

.webtrade-subtitle {
    max-width: 880px;
    margin: 16px auto 0;
    color: #5f6674;
}

.webtrade-problem {
    background: #fafaf6;
    padding: clamp(60px, 6vw, 90px) 0;
}

.webtrade-problem-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 20px;
}

.webtrade-pain-list {
    display: grid;
    gap: 12px;
}

.webtrade-pain-item {
    background: #fff;
    border: 1px solid #2f2ce850;
    border-radius: 14px;
    border-left: 4px solid var(--brand-purple);
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.webtrade-pain-item span {
    min-width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #2f2ce850;
    color: var(--brand-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.webtrade-pain-item p {
    color: #475569;
    line-height: 1.6;
}

.webtrade-solution-card {
    border-radius: 16px;
    background: #2f2ce8;
    color: #fff;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.webtrade-solution-card i {
    color: #FDCC29;
    font-size: 26px;
}

.webtrade-solution-card h3 {
    color: #fff;
    font-size: 24px;
}

.webtrade-solution-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
}

.webtrade-feature-grid,
.webtrade-branding-grid,
.webtrade-device-row,
.webtrade-integration-grid,
.webtrade-shot-grid {
    margin-top: 30px;
    display: grid;
    gap: 18px;
}

.webtrade-feature-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.webtrade-branding {
    background: #f6f3fa;
    padding: clamp(60px, 6vw, 90px) 0;
}

.webtrade-branding-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.webtrade-device-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.webtrade-integration {
    background: #f8f9fb;
    padding: clamp(60px, 6vw, 90px) 0;
}

.webtrade-integration-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.webtrade-screens {
    background: #fbfcff;
    padding: clamp(60px, 6vw, 90px) 0;
}

.webtrade-shot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.webtrade-feature-card,
.webtrade-brand-card,
.webtrade-device-card,
.webtrade-integration-card,
.webtrade-shot-card,
.webtrade-final-card {
    background: #fff;
    border: 1px solid #eceaf2;
    border-radius: 16px;
    padding: 20px;
}

.webtrade-feature-card h3,
.webtrade-brand-card h3,
.webtrade-device-card h3,
.webtrade-integration-card h3,
.webtrade-shot-card h3,
.webtrade-final-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

.webtrade-feature-card p,
.webtrade-brand-card p,
.webtrade-device-card p,
.webtrade-integration-card p,
.webtrade-shot-card p,
.webtrade-final-card p {
    color: #5f6674;
    line-height: 1.62;
}

.webtrade-feature-highlight {
    border-color: rgba(74, 13, 85, 0.35);
    background: linear-gradient(135deg, rgba(74, 13, 85, 0.08) 0%, rgba(253, 204, 41, 0.16) 100%);
}

.webtrade-device-card img,
.webtrade-shot-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 12px;
}

.webtrade-browser-strip {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.webtrade-browser-strip span {
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(74, 13, 85, 0.08);
    color: #2f2ce8;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
}

.webtrade-compat-note {
    margin-top: 14px;
    text-align: center;
    color: #5f6674;
}

.webtrade-arch {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 10px;
    align-items: center;
}

.webtrade-arch > div {
    background: #fff;
    border: 1px solid #dde2ee;
    border-radius: 12px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0f172a;
}

.webtrade-arch > span {
    color: #2f2ce8;
    font-size: 13px;
    font-weight: 700;
}

.webtrade-final-cta {
    border-radius: var(--card-radius);
    background: linear-gradient(135deg, #1a0624 0%, #2f2ce8 65%, #2a0b39 100%);
    padding: clamp(34px, 5vw, 58px);
}

.webtrade-final-title {
    color: #fff;
}

.webtrade-final-sub {
    margin: 14px auto 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
}

.webtrade-final-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.webtrade-final-card {
    text-align: center;
}

.webtrade-final-card i {
    color: #2f2ce8;
    font-size: 24px;
    margin-bottom: 10px;
}

.webtrade-final-card .btn-primary {
    margin-top: 12px;
}

/* Forex CRM brief page */
.crmbrief-page .section-spacing {
    margin-bottom: clamp(60px, 6vw, 100px) !important;
}

.crmbrief-hero {
    background: linear-gradient(135deg, #1a0624 0%, #2f2ce8 65%, #2a0b39 100%);
    color: #fff;
}

.crmbrief-hero .hero-title,
.crmbrief-hero .hero-subtitle,
.crmbrief-hero .hero-tag {
    color: #fff;
}

.crmbrief-hero .accent-purple {
    color: #FDCC29;
}

.crmbrief-hooks {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.crmbrief-hooks span {
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
}

/* .crmbrief-trust {
    padding-top: 14px;
} */

.crmbrief-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid #e8eaf0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.crmbrief-trust-grid > div {
    padding: 18px 14px;
    border-right: 1px solid #eef0f6;
    text-align: center;
}

.crmbrief-trust-grid > div:last-child {
    border-right: none;
}

.crmbrief-trust-grid strong {
    display: block;
    color: #2f2ce8;
    font-size: 24px;
    margin-bottom: 6px;
}

.crmbrief-trust-grid span {
    color: #475569;
    font-size: 13px;
    font-weight: 600;
}

.crmbrief-problem {
    background: #fafaf6;
    padding: clamp(60px, 6vw, 90px) 0;
}

.crmbrief-problem-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
}

.crmbrief-pains {
    background: #f8f9fb;
    border: 1px solid #eceff6;
    border-radius: 16px;
    padding: 24px;
}

.crmbrief-pains h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.crmbrief-pains ul {
    display: grid;
    gap: 10px;
}

.crmbrief-pains li {
    list-style: none;
    color: #475569;
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
}

.crmbrief-pains li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: #2f2ce8;
}

.crmbrief-solution {
    background: #2f2ce8;
    border-radius: 16px;
    padding: 24px 22px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.crmbrief-solution i {
    color: #FDCC29;
    font-size: 24px;
}

.crmbrief-solution p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
}

.crmbrief-feature-grid,
.crmbrief-steps,
.crmbrief-screen-grid,
.crmbrief-integration-grid,
.crmbrief-testimonial-grid {
    margin-top: 30px;
    display: grid;
    gap: 18px;
}

.crmbrief-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.crmbrief-feature-grid .crmbrief-feature-card:first-child {
    grid-column: span 2;
    background: linear-gradient(135deg, #fdfcfd 0%, #f5f3ff 100%);
    border-left: 5px solid var(--brand-purple);
    padding: 34px;
}

/* .crmbrief-feature-grid .crmbrief-feature-card:first-child h3 {
    font-size: 26px;
    background: linear-gradient(to right, #2f2ce8, #7C1A99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.crmbrief-feature-grid .crmbrief-feature-card:first-child p {
    font-size: 18px;
    max-width: 800px;
}

.crmbrief-feature-card {
    background: #fff;
    border: 1px solid #eceaf2;
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.crmbrief-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    border-color: rgba(74, 13, 85, 0.4);
}

.crmbrief-feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

.crmbrief-feature-card p {
    color: #5f6674;
    line-height: 1.62;
}

.crmbrief-process {
    background: #f8f9fb;
    padding: clamp(60px, 6vw, 90px) 0;
}

.crmbrief-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    position: relative;
}

.crmbrief-step {
    background: #fff;
    border: 1px solid #eceaf2;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
}

.crmbrief-step span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2f2ce8;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.crmbrief-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.crmbrief-step p {
    color: #5f6674;
}

.crmbrief-screens,
.clientportal-screens,
.adminpanel-screens,
.payment-screens,
.ib-screens,
.webt-screens,
.pamm-screens,
.copyt-screens {
    background: #fbfcff;
    padding: clamp(60px, 6vw, 90px) 0;
}

.crmbrief-tabs,
.clientportal-tabs,
.portal-tabs,
.adminpanel-tabs,
.payment-tabs,
.ib-tabs,
.webt-tabs,
.pamm-tabs,
.copyt-tabs,
.liquidity-tabs,
.fixapi-tabs {
    margin-top: 30px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    background: #fff;
    padding: 8px;
    border-radius: clamp(15px, 3vw, 50px);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(74, 13, 85, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.crmbrief-tabs span,
.clientportal-tabs span,
.portal-tabs span,
.adminpanel-tabs span,
.payment-tabs span,
.ib-tabs span,
.webt-tabs span,
.pamm-tabs span,
.copyt-tabs span,
.liquidity-tabs span,
.fixapi-tabs span {
    cursor: pointer;
    padding: 9px 18px;
    border-radius: 100px;
    color: #64748b;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.crmbrief-tabs span.active,
.clientportal-tabs span.active,
.portal-tabs span.active,
.adminpanel-tabs span.active,
.payment-tabs span.active,
.ib-tabs span.active,
.webt-tabs span.active,
.pamm-tabs span.active,
.copyt-tabs span.active,
.liquidity-tabs span.active,
.fixapi-tabs span.active {
    background: #2f2ce8;
    color: #fff;
    box-shadow: 0 8px 20px rgba(74, 13, 85, 0.4);
    transform: scale(1.02);
}

.crmbrief-tabs span:hover:not(.active),
.clientportal-tabs span:hover:not(.active),
.portal-tabs span:hover:not(.active),
.adminpanel-tabs span:hover:not(.active),
.payment-tabs span:hover:not(.active),
.ib-tabs span:hover:not(.active),
.webt-tabs span:hover:not(.active),
.pamm-tabs span:hover:not(.active),
.copyt-tabs span:hover:not(.active),
.liquidity-tabs span:hover:not(.active),
.fixapi-tabs span:hover:not(.active) {
    background: rgba(74, 13, 85, 0.05);
    color: #2f2ce8;
}

.crmbrief-tab-window {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.crmbrief-tab-panel {
    display: none;
}

.crmbrief-tab-panel.active {
    display: block;
    animation: tabFadeIn 0.6s ease forwards;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.crmbrief-tab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-text-side {
    padding-right: 20px;
}

.tab-text-side h3 {
    font-size: clamp(24px, 3vw, 36px);
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 700;
}

.tab-text-side p {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 30px;
}

.tab-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1e293b;
    font-size: 15px;
}

.tab-feature-list li i {
    color: #2f2ce8;
    font-size: 18px;
}

.tab-image-side {
    position: relative;
}

.tab-image-side img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border: 1px solid #e2e8f0;
    transition: transform 0.5s ease;
}

.crmbrief-tab-panel:hover .tab-image-side img {
    transform: translateY(-10px);
}

@media (max-width: 1199px) {
    .crmbrief-tab-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .tab-text-side {
        padding-right: 0;
        order: 2;
    }
    
    .tab-feature-list {
        display: inline-block;
        text-align: left;
    }
    
    .tab-image-side {
        order: 1;
    }
}

/* .crmbrief-integrations {
    background: #fafaf6;
    padding: clamp(60px, 6vw, 90px) 0;
} */

.crmbrief-integration-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.crmbrief-integration-grid > div {
    background: #fff;
    border: 1px solid #eceaf2;
    border-radius: 16px;
    padding: 20px;
}

.crmbrief-integration-grid i {
    color: #2f2ce8;
    font-size: 22px;
    margin-bottom: 10px;
}

.crmbrief-integration-grid h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

.crmbrief-integration-grid p {
    color: #5f6674;
}

.crmbrief-tech-link-wrap {
    margin-top: 22px;
}

.crmbrief-testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.crmbrief-testimonial-grid article {
    background: #fff;
    border: 1px solid #eceaf2;
    border-radius: 16px;
    padding: 24px;
}

.crmbrief-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #2f2ce8;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.crmbrief-testimonial-grid p {
    color: #334155;
    margin-bottom: 14px;
}

.crmbrief-testimonial-grid h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.crmbrief-testimonial-grid span {
    color: #64748b;
    font-size: 14px;
}

/* Client portal brief page */
.clientportal-page .section-spacing {
    margin-bottom: clamp(60px, 6vw, 100px);
}

.clientportal-hero {
    background: linear-gradient(135deg, #1a0624 0%, #2f2ce8 65%, #2a0b39 100%);
    color: #fff;
}

.clientportal-hero .hero-title,
.clientportal-hero .hero-subtitle,
.clientportal-hero .hero-tag {
    color: #fff;
}

.clientportal-hero .accent-purple {
    color: #FDCC29;
}

.clientportal-target {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.86);
}

.clientportal-what,
.clientportal-admin,
.clientportal-screens,
.clientportal-integrations,
.clientportal-testimonials {
    padding: clamp(60px, 6vw, 90px) 0;
}

.clientportal-what {
    background: #fafaf6;
}

.clientportal-admin {
    background: #f6f3fa;
}

.clientportal-screens {
    background: #fbfcff;
}

.clientportal-integrations {
    background: #fafaf6;
}

.clientportal-subtitle {
    max-width: 860px;
    margin: 16px auto 0;
    color: #5f6674;
}

.clientportal-what-grid,
.clientportal-feature-grid,
.clientportal-admin-grid,
.clientportal-branding-grid,
.clientportal-screen-grid,
.clientportal-security-row,
.clientportal-integration-grid,
.clientportal-testimonial-grid {
    margin-top: 30px;
    display: grid;
    gap: 18px;
}

.clientportal-what-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.clientportal-feature-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.clientportal-admin-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clientportal-branding-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clientportal-screen-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clientportal-security-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clientportal-integration-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clientportal-testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clientportal-what-grid article,
.clientportal-feature-card,
.clientportal-admin-grid article,
.clientportal-branding-grid article,
.clientportal-screen-grid article,
.clientportal-security-row article,
.clientportal-integration-grid article,
.clientportal-testimonial-grid article,
.clientportal-compare-card {
    background: #fff;
    border: 1px solid #eceaf2;
    border-radius: 16px;
    padding: 20px;
}

.clientportal-admin-grid article {
    /* background: #f8f3ff; */
    border-color: rgba(74, 13, 85, 0.2);
}

.clientportal-what-grid i,
.clientportal-security-row i {
    color: #2f2ce8;
    font-size: 22px;
    margin-bottom: 10px;
}

.clientportal-what-grid h3,
.clientportal-feature-card h3,
.clientportal-admin-grid h3,
.clientportal-branding-grid h3,
.clientportal-screen-grid h3,
.clientportal-security-row h3,
.clientportal-integration-grid h3,
.clientportal-testimonial-grid h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

.clientportal-what-grid p,
.clientportal-feature-card p,
.clientportal-admin-grid p,
.clientportal-branding-grid p,
.clientportal-security-row p,
.clientportal-integration-grid p,
.clientportal-testimonial-grid p {
    color: #5f6674;
    line-height: 1.62;
}

.clientportal-feature-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.clientportal-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    border-color: rgba(74, 13, 85, 0.35);
}

.clientportal-compare {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.clientportal-compare-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.clientportal-compare-card p {
    color: #5f6674;
}

.clientportal-compare-card.is-brand {
    border-color: rgba(74, 13, 85, 0.3);
    background: linear-gradient(135deg, rgba(74, 13, 85, 0.08) 0%, rgba(253, 204, 41, 0.16) 100%);
}

.clientportal-tabs {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.clientportal-tabs span {
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(74, 13, 85, 0.08);
    color: #2f2ce8;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
}

.clientportal-screen-grid img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
}

.clientportal-logo-row {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.clientportal-logo-row span {
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #d7dce8;
    background: #fff;
    color: #334155;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
}

.clientportal-tech-link {
    margin-top: 20px;
}

.clientportal-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2f2ce8;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.clientportal-testimonial-grid p {
    font-style: italic;
}

.clientportal-testimonial-grid span {
    color: #64748b;
    font-size: 14px;
}

/* Admin panel brief page */
/* .adminpanel-page .section-spacing {
    margin-bottom: clamp(60px, 6vw, 100px);
} */

.adminpanel-hero {
    background: linear-gradient(135deg, #1a0624 0%, #2f2ce8 65%, #2a0b39 100%);
    color: #fff;
}

.adminpanel-hero .hero-title,
.adminpanel-hero .hero-subtitle,
.adminpanel-hero .hero-tag {
    color: #fff;
}

.adminpanel-hero .accent-purple {
    color: #FDCC29;
}

.adminpanel-target {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.86);
}

.adminpanel-what,
.adminpanel-finance,
.adminpanel-compliance,
.adminpanel-reports,
.adminpanel-screens {
    padding: clamp(60px, 6vw, 90px) 0;
}

.adminpanel-what {
    background: #fafaf6;
}

.adminpanel-finance {
    background: #f3fbf5;
}

.adminpanel-compliance {
    background: #f6f3fa;
}

.adminpanel-reports {
    background: #f8f9fb;
}

.adminpanel-screens {
    background: #fbfcff;
}

.adminpanel-subtitle {
    max-width: 860px;
    margin: 16px auto 0;
    color: #5f6674;
}

.adminpanel-what-grid,
.adminpanel-grid,
.adminpanel-screen-grid,
.adminpanel-security-row {
    margin-top: 30px;
    display: grid;
    gap: 18px;
}

.adminpanel-what-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.adminpanel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.adminpanel-screen-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.adminpanel-security-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.adminpanel-what-grid article,
.adminpanel-grid article,
.adminpanel-screen-grid article,
.adminpanel-security-row article {
    background: #fff;
    border: 1px solid #eceaf2;
    border-radius: 16px;
    padding: 20px;
}
.nav-bento-block ul li a::before
/* .adminpanel-grid-finance article {
    border-color: rgba(22, 163, 74, 0.25);
    background: #f7fff8;
} */

.adminpanel-grid-compliance article {
    border-color: rgba(74, 13, 85, 0.22);
    background: #fbf8ff;
}

.adminpanel-what-grid i,
.adminpanel-security-row i {
    color: #2f2ce8;
    font-size: 22px;
    margin-bottom: 10px;
}

.adminpanel-what-grid h3,
.adminpanel-grid h3,
.adminpanel-screen-grid h3,
.adminpanel-security-row h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}
.adminpanel-screen-grid h3{
    margin-top: 10px;
    margin-bottom: 0;
}
.adminpanel-screen-grid h3,
.adminpanel-screen-grid h3 div{
    text-align: center !important;
}

.adminpanel-what-grid p,
.adminpanel-grid p,
.adminpanel-security-row p {
    color: #5f6674;
    line-height: 1.62;
}

.adminpanel-ib-tree {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 10px;
    align-items: center;
}

.adminpanel-ib-tree > div {
    min-height: 54px;
    border: 1px solid #dde2ee;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0f172a;
}

.adminpanel-ib-tree > span {
    color: #2f2ce8;
    font-weight: 700;
}

.adminpanel-export-row {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.adminpanel-export-row span {
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(74, 13, 85, 0.08);
    color: #2f2ce8;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
}

.adminpanel-report-shot {
    margin-top: 20px;
}

.adminpanel-report-shot img,
.adminpanel-screen-grid img {
    width: 100%;
    border-radius: 12px;
}

.adminpanel-tabs {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.adminpanel-tabs span {
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(74, 13, 85, 0.08);
    color: #2f2ce8;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
}

/* IB management brief page */
.ibmgmt-page .section-spacing {
    margin-bottom: clamp(60px, 6vw, 100px);
}

.ibmgmt-hero {
    background: linear-gradient(135deg, #1a0624 0%, #2f2ce8 65%, #2a0b39 100%);
    color: #fff;
}

.ibmgmt-hero .hero-title,
.ibmgmt-hero .hero-subtitle,
.ibmgmt-hero .hero-tag {
    color: #fff;
}

.ibmgmt-hero .accent-purple {
    color: #FDCC29;
}

.ibmgmt-target {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.86);
}

.ibmgmt-what,
.ibmgmt-models,
.ibmgmt-screens,
.ibmgmt-integration {
    padding: clamp(60px, 6vw, 90px) 0;
}

.ibmgmt-what {
    background: #fafaf6;
}

.ibmgmt-models {
    background: #f8f9fb;
}

.ibmgmt-screens {
    background: #fbfcff;
}

.ibmgmt-integration {
    background: #f6f3fa;
}

.ibmgmt-subtitle {
    max-width: 860px;
    margin: 16px auto 0;
    color: #5f6674;
}

.ibmgmt-tree-hero {
    width: min(620px, 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    padding: 18px;
    display: grid;
    gap: 12px;
}

.ibmgmt-tree-mid,
.ibmgmt-tree-bottom {
    display: grid;
    gap: 10px;
}

.ibmgmt-tree-mid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ibmgmt-tree-bottom {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ibmgmt-node {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    min-height: 58px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.ibmgmt-node small {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
}

.ibmgmt-node-master {
    background: rgba(253, 204, 41, 0.15);
    border-color: rgba(253, 204, 41, 0.35);
}

.ibmgmt-tree-bottom article {
    min-height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.ibmgmt-flow {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.ibmgmt-flow article,
.ibmgmt-grid article,
.ibmgmt-screen-grid article {
    background: #fff;
    border: 1px solid #eceaf2;
    border-radius: 16px;
    padding: 20px;
}

.ibmgmt-flow i {
    color: #2f2ce8;
    font-size: 22px;
    margin-bottom: 8px;
}

.ibmgmt-flow h3,
.ibmgmt-grid h3,
.ibmgmt-screen-grid h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

.ibmgmt-flow p,
.ibmgmt-grid p,
.ibmgmt-screen-grid p {
    color: #5f6674;
    line-height: 1.62;
}

.ibmgmt-grid,
.ibmgmt-screen-grid {
    margin-top: 30px;
    display: grid;
    gap: 18px;
}

.ibmgmt-grid-portal {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ibmgmt-grid-admin {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ibmgmt-grid-models {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ibmgmt-grid-network {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ibmgmt-grid-integration {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ibmgmt-screen-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ibmgmt-grid-portal article {
    background: #fbf8ff;
    border-color: rgba(74, 13, 85, 0.2);
}

.ibmgmt-grid-models code {
    margin-top: 10px;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 8px;
    background: #f3f4f8;
    color: #334155;
    font-size: 12px;
    font-weight: 700;
}

.ibmgmt-tree-full {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.ibmgmt-lvl {
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 18px 14px;
    text-align: center;
    background: #fff;
    font-weight: 700;
    color: #0f172a;
}

.ibmgmt-lvl small {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
}

.ibmgmt-lvl-1 {
    background: rgba(74, 13, 85, 0.12);
}

.ibmgmt-lvl-2 {
    background: rgba(74, 13, 85, 0.08);
}

.ibmgmt-lvl-3 {
    background: rgba(74, 13, 85, 0.05);
}

.ibmgmt-tabs {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.ibmgmt-tabs article {
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(74, 13, 85, 0.08);
    color: #2f2ce8;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
}

.ibmgmt-screen-grid img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
}

.ibmgmt-arch {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 10px;
    align-items: center;
}

.ibmgmt-arch-node {
    min-height: 54px;
    border: 1px solid #dde2ee;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0f172a;
}

.ibmgmt-arch-link {
    color: #2f2ce8;
    font-size: 13px;
    font-weight: 700;
}

/* PAMM Module Styles */
.pamm-page .section-spacing {
    padding: 80px 0;
}

.pamm-hero {
    background: #0f172a;
    color: #fff;
}

.pamm-hero .hero-title,
.pamm-hero .hero-subtitle,
.pamm-hero .hero-tag {
    color: #fff;
}

.pamm-hero .accent-purple {
    color: #9d4edd;
}

.pamm-target {
    margin-top: 15px;
    font-size: 14px;
    color: #cbd5e1;
    font-weight: 500;
}

.pamm-what,
.pamm-fm-features,
.pamm-inv-features,
.pamm-admin-control,
.pamm-vs-mam,
.pamm-screens,
.pamm-integration {
    background: #fff;
}

.pamm-what {
    background: #f8fafc;
}

.pamm-inv-features {
    background: #f4f7fa;
}

.pamm-vs-mam {
    background: #fbf8ff;
}

.pamm-subtitle {
    margin: 15px auto 0;
    max-width: 800px;
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

.pamm-diagram {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    width: 100%;
}

.pamm-manager {
    grid-column: span 2;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(157, 78, 221, 0.5);
    padding: 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pamm-manager i {
    font-size: 28px;
    color: #9d4edd;
}

.pamm-manager .pamm-info {
    display: flex;
    flex-direction: column;
}

.pamm-manager strong {
    font-size: 18px;
    color: #fff;
}

.pamm-manager span {
    font-size: 13px;
    color: #94a3b8;
}

.pamm-manager .pamm-positive {
    color: #10b981;
    font-weight: 700;
    margin-top: 4px;
}

.pamm-connections {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
}

.pamm-investor:nth-child(3) {
    grid-column: span 2;
}

.pamm-investor {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}



.pamm-investor {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    position: relative;
}



.pamm-investor i {
    color: #cbd5e1;
    font-size: 22px;
    margin-bottom: 0;
}

.pamm-investor strong {
    color: #fff;
    font-size: 14px;
}

.pamm-investor div {
    display: flex;
    flex-direction: column;
}

.pamm-investor strong {
    font-size: 14px;
    color: #fff;
    margin-bottom: 2px;
}

.pamm-investor span {
    font-size: 12px;
    color: #94a3b8;
}

.pamm-investor .pamm-positive {
    color: #10b981;
    font-weight: 700;
}

.pamm-flow {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    margin-top: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.pamm-flow article,
.pamm-grid article,
.pamm-screen-grid article {
    background: #fff;
    border: 1px solid #dde2ee;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pamm-flow article {
    flex: 1;
    min-width: 200px;
}

.pamm-revenue-callout {
    background: #fffbef !important;
    border-color: #f59e0b !important;
}

.pamm-highlight {
    display: inline-block;
    margin-top: 10px;
    color: #b45309;
    font-size: 13px;
    font-weight: 700;
    background: #fef3c7;
    padding: 4px 8px;
    border-radius: 6px;
}

.pamm-flow i,
.pamm-grid i {
    font-size: 26px;
    color: #2f2ce8;
    margin-bottom: 16px;
    display: block;
}

/* .pamm-grid-fm article i {
    color: #d97706;
}

.pamm-grid-fm article {
    background: #fffbeb;
    border-color: #fcd34d;
} */

/* .pamm-grid-inv article i {
    color: #0284c7;
}

.pamm-grid-inv article {
    background: #f0f9ff;
    border-color: #bae6fd;
} */

.pamm-grid-admin article {
    border-left: 4px solid #2f2ce8;
}

.pamm-flow h3,
.pamm-grid h3,
.pamm-screen-grid h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

.pamm-flow p,
.pamm-grid p,
.pamm-screen-grid p {
    color: #5f6674;
    line-height: 1.62;
    font-size: 15px;
}

.pamm-grid,
.pamm-screen-grid {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.pamm-grid-fm,
.pamm-grid-inv {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pamm-grid-admin {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pamm-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.pamm-compare-card {
    background: #fff;
    border: 1px solid #dde2ee;
    border-radius: 16px;
    padding: 30px;
}

.pamm-compare-card h3 {
    font-size: 22px;
    color: #2f2ce8;
    margin-bottom: 15px;
}

.pamm-compare-card p {
    color: #5f6674;
    line-height: 1.6;
    margin-bottom: 15px;
}

.pamm-compare-card strong {
    display: block;
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 5px;
}

.pamm-compare-unified {
    margin-top: 20px;
    text-align: center;
}

.pamm-compare-unified article {
    background: #2f2ce8;
    color: #fff;
    border-radius: 16px;
    padding: 24px;
}

.pamm-compare-unified h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.pamm-compare-unified p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.pamm-tabs {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.pamm-tabs article {
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(74, 13, 85, 0.08);
    color: #2f2ce8;
    font-size: 14px;
    font-weight: 700;
}

.pamm-screen-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pamm-screen-grid img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 15px;
}

.pamm-arch {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 15px;
    align-items: center;
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #dde2ee;
}

.pamm-arch-node {
    min-height: 60px;
    background: #fff;
    border: 2px solid #2f2ce8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    padding: 10px;
}

.pamm-arch-link {
    color: #2f2ce8;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    position: relative;
}

/* .pamm-arch-link::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: block;
    margin-top: 5px;
} */

.pamm-grid-integration {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 30px;
}

.pamm-grid-integration article {
    padding: 20px;
}

.pamm-grid-integration h3 {
    font-size: 18px;
}

/* Copy Trading Page Styles */
.copytrade-page .section-spacing {
    padding: 80px 0;
}

.copytrade-hero {
    background: #0f172a;
    color: #fff;
}

.copytrade-hero .hero-title,
.copytrade-hero .hero-subtitle,
.copytrade-hero .hero-tag {
    color: #fff;
}

.copytrade-hero .accent-purple {
    color: #9d4edd;
}

.copytrade-target {
    margin-top: 15px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
}

.copytrade-subtitle {
    margin: 15px auto 0;
    max-width: 820px;
    color: #64748b;
    line-height: 1.6;
}

.copytrade-marketplace {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 100%;
}

.copytrade-card:first-child {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copytrade-card:first-child .copytrade-btn {
    margin-top: 0;
}

.copytrade-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 16px;
}

.copytrade-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 6px;
}

.copytrade-metric {
    color: #10b981;
    font-weight: 700;
}

.copytrade-card p {
    color: #dbe4ef;
    font-size: 13px;
}

.copytrade-btn {
    margin-top: 10px;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff;
    color: #2f2ce8;
    font-weight: 700;
    font-size: 12px;
}

.copytrade-reasons {
    margin-top: 40px;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

.copytrade-reasons article:first-child {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, #2f2ce8 0%, #1e1b4b 100%);
    color: #fff;
    padding: 40px;
    border: none;
    position: relative;
    overflow: hidden;
}

.copytrade-reasons article:first-child::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.copytrade-reasons article:first-child i {
    color: var(--brand-yellow);
    font-size: 56px;
    margin-bottom: 0;
}

.copytrade-reasons article:first-child h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 12px;
}

.copytrade-reasons article:first-child p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    max-width: 600px;
}

.copytrade-reasons article:first-child span {
    background: var(--brand-yellow);
    color: #000;
}

.copytrade-reasons article,
.copytrade-grid article,
.copytrade-screen-grid article,
.copytrade-steps-grid article {
    background: #fff;
    border: 1px solid #dde2ee;
    border-radius: 16px;
    padding: 22px;
}

.copytrade-reasons i,
.copytrade-grid i {
    color: #2f2ce8;
    font-size: 24px;
    margin-bottom: 14px;
}

.copytrade-reasons h3,
.copytrade-grid h3,
.copytrade-screen-grid h3,
.copytrade-steps-grid h3 {
    color: #0f172a;
    font-size: 20px;
    margin-bottom: 10px;
}

.copytrade-reasons p,
.copytrade-grid p,
.copytrade-screen-grid p,
.copytrade-steps-grid p {
    color: #5f6674;
    line-height: 1.62;
}

.copytrade-reasons span {
    margin-top: 8px;
    display: inline-block;
    padding: 5px 8px;
    border-radius: 8px;
    background: #eef2ff;
    color: #4338ca;
    font-weight: 700;
    font-size: 12px;
}

.copytrade-provider {
    background: #fffaf0;
}

/* .copytrade-follower {
    background: #f0f9ff;
} */

.copytrade-grid {
    margin-top: 30px;
    display: grid;
    gap: 18px;
}

.copytrade-grid-provider,
.copytrade-grid-follower {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* .copytrade-grid-provider article i {
    color: #d97706;
} */

/* .copytrade-grid-follower article i {
    color: #0284c7;
} */

.copytrade-grid-admin {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.copytrade-grid-admin article {
    border-left: 4px solid #2f2ce8;
}

.copytrade-steps-grid {
    margin-top: 30px;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.copytrade-step-no {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #2f2ce8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 12px;
}

.copytrade-steps-grid img,
.copytrade-screen-grid img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-top: 10px;
}

.copytrade-tabs {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.copytrade-tabs article {
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(74, 13, 85, 0.08);
    color: #2f2ce8;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
}

.copytrade-screen-grid {
    margin-top: 20px;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.copytrade-arch {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 10px;
    align-items: center;
}

.copytrade-arch-node {
    min-height: 54px;
    border: 1px solid #dde2ee;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    padding: 10px;
}

.copytrade-arch-link {
    color: #2f2ce8;
    font-size: 13px;
    font-weight: 700;
}

.copytrade-grid-integration {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* Forex CRM Pricing Page Styles */
.pricingcrm-page .section-spacing {
    padding: 80px 0;
}

.pricingcrm-hero {
    background: #f8fafc;
}

.pricingcrm-hero .hero-title,
.pricingcrm-hero .hero-subtitle,
.pricingcrm-hero .hero-tag {
    color: #0f172a;
}

.pricingcrm-trust-line {
    margin-top: 14px;
    font-weight: 700;
    color: #FFF;
}

.pricingcrm-plan-badges {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pricingcrm-plan-badges article {
    border-radius: 999px;
    border: 1px solid #d9c8dd;
    background: #fff;
    color: #2f2ce8;
    padding: 8px 14px;
    font-weight: 700;
}

.pricingcrm-hero-visual {
    justify-content: flex-end;
}

.pricingcrm-hero-panel {
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    border: 1px solid #dce6fb;
    background: linear-gradient(160deg, #ffffff 0%, #f7f9ff 60%, #f4f1ff 100%);
    box-shadow: 0 20px 44px rgba(30, 58, 138, 0.12);
    padding: 18px;
    display: grid;
    gap: 12px;
}

.pricingcrm-hero-pill {
    border-radius: 12px;
    border: 1px solid #dbe7ff;
    background: #fff;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pricingcrm-hero-pill span {
    color: #2f2ce8;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.pricingcrm-hero-pill strong {
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
}

.pricingcrm-hero-pill-popular {
    border-color: #cdb9ff;
    background: linear-gradient(120deg, #ede9fe 0%, #f5f3ff 100%);
}

.pricingcrm-hero-note {
    border-radius: 12px;
    background: #0f172a;
    padding: 12px 14px;
}

.pricingcrm-hero-note p {
    margin: 0;
    color: #e2e8f0;
    font-weight: 700;
    font-size: 14px;
}

.pricingcrm-cards {
    margin-top: 30px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricingcrm-plan-card {
    border: 1px solid #e5e7eb;
    border-radius: var(--card-radius);
    background: #fff;
    padding: 0;
    position: relative;
    /* overflow: hidden; */
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    min-height: 100%;
}

.pricingcrm-plan-head {
    margin: 10px;
    border-radius: 12px;
    padding: 14px 16px 16px;
    background: linear-gradient(103.88deg, #3D0353 -0.96%, #5F0C7A 49.52%, #7C1A99 100%);

    color: #fff;
}

.pricingcrm-plan-head h3 {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 4px;
    color: #fff;
}

.pricingcrm-plan-head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 15px;
}

.pricingcrm-plan-body {
    padding: 10px 18px 10px;
}

.pricingcrm-plan-body article {
    padding: 11px 0;
    border-bottom: 1px solid #e9edf5;
}

.pricingcrm-plan-body article:last-child {
    border-bottom: 0;
}

.pricingcrm-plan-body span {
    display: block;
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 4px;
}

.pricingcrm-plan-body strong {
    color: #111827;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
}

.pricingcrm-plan-body article:first-child strong {
    font-size: 33px;
    line-height: 1;
    font-weight: 900;
    color: #1f2937;
}

.pricingcrm-plan-card .btn-primary {
    margin: 12px 18px 18px;
    width: calc(100% - 36px);
    justify-content: center;
    min-height: 48px;
    text-align: center;
}

.pricingcrm-badge {
    position: absolute;
    top: 30px;
    right: 20px;
    background: var(--brand-yellow);
    color: #111827;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    box-shadow: 0 12px 30px rgba(74, 13, 85, 0.4);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricingcrm-popular {
    border: 2px solid #6d28d9;
    box-shadow: 0 16px 34px rgba(109, 40, 217, 0.18);
}

/* .pricingcrm-popular .pricingcrm-plan-head {
    margin-top: 34px;
} */

.pricingcrm-popular .pricingcrm-plan-head i {
    margin-left: 6px;
}

/* .pricingcrm-enterprise { 
    border: 2px solid var(--brand-purple);
} */

/* .pricingcrm-enterprise .pricingcrm-plan-head {
    background: linear-gradient(130deg, #173ea5 0%, #2563eb 55%, #763ced 100%);
    
} */

.pricingcrm-plan-card:hover {
    transform: translateY(-3px);
    transition: transform 0.25s ease;
}

.pricingcrm-table-wrap {
    margin-top: 28px;
    padding: 10px;
    background: linear-gradient(145deg, #eef2ff 0%, #f8fafc 55%, #f5f3ff 100%);
    overflow-x: auto;
    border: 1px solid #dbe3f2;
    border-radius: var(--card-radius);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.pricingcrm-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 860px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

.pricingcrm-table thead th {
    background: linear-gradient(103.88deg, #3D0353 -0.96%, #5F0C7A 49.52%, #7C1A99 100%);
    color: #fff;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid #1f324d;
    font-size: 14px;
    letter-spacing: 0.2px;
    position: sticky;
    top: 0;
    z-index: 2;
}

.pricingcrm-table tbody td {
    padding: 13px 16px;
    border-bottom: 1px solid #edf2f7;
    color: #334155;
    font-size: 14px;
}

.pricingcrm-table tbody tr:nth-child(even) {
    background: #fbfdff;
}

.pricingcrm-table tbody tr:hover {
    background: #f8fbff;
}

.pricingcrm-table thead th:nth-child(3),
.pricingcrm-table tbody td:nth-child(3) {
    background: #f7f2ff;
    color: #0f172a;
}

.pricingcrm-table th:first-child,
.pricingcrm-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
}

.pricingcrm-table thead th:first-child {
    z-index: 3;
}

.pricingcrm-table tbody td:first-child {
    background: inherit;
    font-weight: 700;
    color: #0f172a;
}

.pricingcrm-diff-row td {
    color: #047857;
    font-weight: 800;
    background: #ecfdf5 !important;
}

.pricingcrm-diff-row td:first-child {
    color: #065f46;
}

.pricingcrm-subtitle {
    margin: 14px auto 0;
    max-width: 760px;
    color: #64748b;
}

.pricingcrm-include-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.pricingcrm-yes,
.pricingcrm-no {
    border-radius: var(--card-radius);
    border: 1px solid transparent;
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.pricingcrm-yes h3 {
    color: #065f46;
    margin-bottom: 14px;
    font-size: 34px;
    line-height: 1.05;
}

.pricingcrm-no h3 {
    color: var(--pricing-accent-red, #c53030);
    margin-bottom: 14px;
    font-size: 34px;
    line-height: 1.05;
}

.pricingcrm-yes {
    background:
        radial-gradient(circle at 0% 0%, rgba(34, 197, 94, 0.2), transparent 45%),
        linear-gradient(165deg, #ffffff 0%, #f0fdf4 100%);
    border-color: #bbf7d0;
}

.pricingcrm-no {
    background:
        radial-gradient(circle at 0% 0%, rgba(239, 68, 68, 0.2), transparent 45%),
        linear-gradient(165deg, #ffffff 0%, #fff1f2 100%);
    border-color: #fecaca;
}

.pricingcrm-yes::after,
.pricingcrm-no::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    border-bottom-left-radius: 110px;
    opacity: 0.2;
}

.pricingcrm-yes::after {
    background: #16a34a;
}

.pricingcrm-no::after {
    background: #dc2626;
}

.pricingcrm-yes ul,
.pricingcrm-no ul {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1.45;
}

.pricingcrm-yes li,
.pricingcrm-no li {
    position: relative;
    padding: 9px 12px 9px 36px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 17px;
}

.pricingcrm-yes li {
    background: rgba(240, 253, 244, 0.95);
    border: 1px solid #dcfce7;
    color: #064e3b;
}

.pricingcrm-no li {
    background: rgba(255, 241, 242, 0.95);
    border: 1px solid #ffe4e6;
    color: #7f1d1d;
}

.pricingcrm-yes li::before,
.pricingcrm-no li::before {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.pricingcrm-yes li::before {
    content: "âœ“";
    background: #16a34a;
    color: #fff;
}

.pricingcrm-no li::before {
    content: "âœ•";
    background: #dc2626;
    color: #fff;
}

.pricingcrm-no-note {
    margin-top: 14px;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.2;
    color: #b45309;
    background: linear-gradient(90deg, #fff7ed 0%, #ffedd5 100%);
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 10px 14px;
}

.pricingcrm-addon-grid {
    margin-top: 30px;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricingcrm-addon-grid article {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    padding: 20px;
}

.pricingcrm-addon-grid h3 {
    color: #0f172a;
    margin-bottom: 8px;
}

.pricingcrm-addon-grid p {
    color: #64748b;
    margin-bottom: 10px;
}

.pricingcrm-addon-grid span {
    display: inline-block;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
}

.pricingcrm-faq-grid {
    margin-top: 30px;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricingcrm-faq-grid article {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    padding: 20px;
}

.pricingcrm-faq-grid h3 {
    color: #0f172a;
    margin-bottom: 8px;
}

.pricingcrm-faq-grid p {
    color: #64748b;
    line-height: 1.6;
}

.pricingcrm-cta-trust {
    margin-top: 12px;
    color: #d4a017;
    font-weight: 700;
}



.webtrade-problem {
            padding: 0;
            background: 0;
        }
        .webtrade-problem-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 60px;
        }
        .webtrade-pain-card {
            background: #fff;
            padding: 30px 25px;
            border-radius: var(--card-radius);
            position: relative;
            display: flex;
            flex-direction: column;
            /* min-height: 280px; */
            border: 1px solid #f0f0f0;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }
        .webtrade-pain-card:nth-child(odd) {
            background: linear-gradient(135deg, 
    rgba(140, 48, 97, 0.15) 0%, 
    rgba(107, 28, 76, 0.05) 50%, 
    rgba(74, 13, 85, 0.15) 100%);
        }
        .webtrade-pain-card h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--brand-purple);
            font-weight: 700;
            line-height: 1.3;
        }
        .webtrade-pain-card p {
            font-size: 14px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 40px;
        }
        .webtrade-pain-card .detail-icon {
            position: absolute;
            bottom: 25px;
            right: 25px;
            width: 35px;
            height: 35px;
            background: rgba(74, 13, 85, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-purple);
            transition: 0.3s;
        }
        .webtrade-pain-card:hover .detail-icon {
            background: var(--brand-purple);
            color: #fff;
        }

.site-mega-link {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-mega-link::before {
    content: '\f178'; /* Long Arrow Right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    color: var(--brand-purple);
    /* opacity: 0; */
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin-right: -5px;
}

.site-mega-link:hover {
    color: var(--brand-purple);
}

.site-mega-link:hover::before {
    opacity: 1;
    margin-right: 5px;
}

.site-mega-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-mega-all {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: underline;
    text-underline-offset: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-mega-all::after {
    content: '\f178';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--brand-purple);
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.site-mega-all:hover {
    color: var(--brand-purple);
    gap: 15px;
}

.site-mega-all i {
    display: none;
}

.site-mega-stores {
    display: flex;
    gap: 12px;
    align-items: center;
}

.site-mega-stores img {
    height: 32px;
    width: auto;
    transition: transform 0.2s ease;
    display: block;
}

.site-mega-stores a:hover img {
    transform: translateY(-2px);
}

.site-mega-right {
    flex: 1;
}

.site-mega-promo-card {
    background: #0f172a;
    border-radius: var(--card-radius);
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
}

.promo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #def71c;
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.promo-content {
    position: relative;
    z-index: 5;
    max-width: 60%;
}

.site-mega-promo-card h2 {
    color: #fff;
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 800;
}

.site-mega-promo-card p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.site-mega-promo-card .btn-primary {
    background: #2563eb;
    border: none;
    font-size: 14px;
    padding: 12px 24px;
}

.promo-visual {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 60%;
    z-index: 1;
    opacity: 0.8;
}

.promo-visual img {
    width: 100%;
    height: auto;
    transform: rotate(-10deg);
}

.promo-card-wl {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.has-submenu:hover .site-mega {
    display: block;
}

.site-drawer-promo {
    display: none;
}

.has-submenu:hover .site-mega,
.has-submenu.is-expanded .site-mega {
    display: flex;
}

.site-menu-actions {
    display: flex;
    align-items: center;
}

.site-menu-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 6px 0;
}

/* Redundant styles removed - consolidated in main header section */

/* ==========================================================================
   ULTRA-UNIQUE ELITE FOOTER (Next-Gen Light Aesthetic)
   ========================================================================== */

.elite-footer {
    background: #f8fafc;
    position: relative;
    padding: clamp(30px, 5vw, 40px) 0;
    color: #1e293b;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    border-top: 1px solid #e2e8f0;
}

/* Enhanced Dynamic Glows (Light Mode) */
.elite-footer::before {
    content: '';
    position: absolute;
    top: -300px;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.elite-footer::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(253, 204, 41, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* .elite-footer .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
} */

/* --- Block 1: Split Brand Hero --- */
.footer-hero-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    margin-bottom: 60px;
}

.brand-intro-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border-radius: var(--card-radius);
    padding: 30px; /* Kept user reduction */
}

.brand-intro-card .footer-logo {
    /* width: 200px; */
    margin-bottom: 25px;
}

.brand-intro-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    max-width: 600px;
}

.location-hq-card {
    background: linear-gradient(135deg, rgba(74, 13, 85, 0.08) 0%, rgba(253, 204, 41, 0.14) 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border-radius: var(--card-radius);
    overflow: hidden;
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.location-map-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.1; /* Reduced for light mode legibility */
    transition: transform 0.8s ease;
    filter: grayscale(1);
}

.location-hq-card:hover .location-map-bg {
    transform: scale(1.1);
}

.location-content {
    position: relative;
    z-index: 2;
}

.location-tag {
display: inline-block;
    padding: 6px 16px;
    /* background: rgb(147 51 234 / 22%); */
    border: 1px solid rgba(147, 51, 234, 0.1);
    border-radius: 99px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-purple);
    margin-bottom: 20px;
    font-weight: 600;
}

.location-hq-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.location-hq-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

/* --- Block 2: Interactive Bento Nav --- */
.footer-bento-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.nav-bento-block {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 15px; /* Kept user reduction */
    border-radius: 15px; /* Kept user reduction */
    transition: all 0.4s ease;
}

.nav-bento-block:hover {
    background: #fdfdfd;
    border-color: var(--brand-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.nav-bento-block h4 {
    font-size: 14px; /* Kept user increase */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-purple);
    margin-bottom: 15px; /* Kept user reduction */
    font-weight: 800;
}

.nav-bento-block ul {
    list-style: none;
}

.nav-bento-block ul li {
    margin-bottom: 12px;
}

.nav-bento-block ul li a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-bento-block ul li a::before {
    content: '\f178'; /* Long Arrow Right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    color: var(--brand-purple);
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.6;
}

.nav-bento-block ul li a:hover {
    color: var(--brand-purple);
    padding-left: 8px;
}

.nav-bento-block ul li a:hover::before {
    opacity: 1;
    transform: translateX(4px);
}

/* --- Block 3: Protocols and Notice --- */
.footer-protocol-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--card-radius);
    padding: clamp(20px, 5vw, 30px);
    margin-bottom: 30px;
}

.protocol-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 20px;
}

.prot-item {
    display: flex;
    gap: 24px;
}

.prot-icon-circle {
    width: 56px;
    height: 56px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--card-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-purple);
    font-size: 20px;
}

.prot-text span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.prot-text p {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.regulatory-notice-text {
    font-size: 13px;
    color: #64748b;
    line-height: 1.8;
}

/* --- Block 4: Final Bar --- */
.footer-final-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.footer-final-bar p {
    /* font-size: 14px; */
    color: #94a3b8;
}

.elite-social {
    display: flex;
    gap: 12px;
}

.elite-social a {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.elite-social a:hover {
    background: var(--brand-purple);
    color: #fff;
    transform: rotate(8deg) scale(1.1);
    border-color: var(--brand-purple);
}

@media (max-width: 1200px) {
    .footer-bento-nav {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .footer-hero-split {
        grid-template-columns: 1fr;
    }
    .protocol-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 640px) {
    .footer-bento-nav {
        grid-template-columns: repeat(1, 1fr);
    }
    .footer-final-bar {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .brand-intro-card, .location-hq-card {
        padding: 40px 30px;
    }
}

/* --- Block 0.5: Institutional Marquee (Full Width Top) --- */
.footer-dna-marquee {
    padding: 0 0 25px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    user-select: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.marquee-scroll {
    display: inline-flex;
    animation: marqueeMove 60s linear infinite;
}

.marquee-item {
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 0 30px;
    display: flex;
    align-items: center;
    letter-spacing: -1px;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.marquee-item:hover {
    transform: scale(1.05);
}

/* Solid Two-Color Cycle (Purple & Blue) */
.marquee-item:nth-child(odd) {
    color: #2f2ce8; /* Solid Purple */
}

.marquee-item:nth-child(even) {
    color: var(--brand-yellow); /* Solid Blue */
}

@keyframes marqueeMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .marquee-item {
        font-size: 32px;
        padding: 0 25px;
    }
}

@media (max-width: 640px) {
    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
/* --- Shared Pricing Hub Styles (Sync with White Label) --- */
/* --- Shared Pricing Hub Styles (Sync with White Label) --- */

.benefits-grid { 
    display: grid; 
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 40px; 
    margin-top: 60px; 
}
.benefit-box { 
    background: #fff; 
    padding: 40px; 
    border-radius: var(--card-radius); 
    border: 1px solid #eee; 
    height: 100%; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.benefit-box.not-charged { 
    background: #fffafb; 
    border-color: #fee2e2; 
}
.benefit-box h3 { 
    font-size: 24px; 
    font-weight: 900; 
    margin-bottom: 15px; 
    color: #1a1a1a;
}
.benefit-box p { 
    font-size: 15px; 
    color: #666; 
    margin-bottom: 30px; 
}
.benefit-list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; 
}
.not-charged .benefit-list { 
    grid-template-columns: 1fr; 
}
.benefit-list li { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-size: 14px; 
    color: #333; 
    font-weight: 600; 
}
.benefit-list li i.fa-circle-check { 
    color: var(--pricing-accent-green); 
    font-size: 16px;
}
.benefit-list li i.fa-circle-xmark { 
    color: var(--pricing-accent-red); 
    font-size: 16px;
}

@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit-list { grid-template-columns: 1fr; }
}

/* FAQ Accordion Styles */
.faq-accordion { max-width: 900px; margin: 30px auto 0; }
.faq-item { border: 1px solid #eee; border-radius: var(--card-radius); margin-bottom: 15px; overflow: hidden; background: #fff; transition: 0.3s; }
.faq-question { padding: 25px 30px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: #1a1a1a; transition: 0.3s; }
.faq-question:hover { background: #fcfcfc; color: var(--brand-purple); }
.faq-answer { padding: 0 30px; max-height: 0; overflow: hidden; transition: 0.3s ease-out; font-size: 15px; color: #555; line-height: 1.6; }
.faq-item.active { border-color: var(--brand-purple); box-shadow: 0 10px 25px rgba(0,0,0,0.04); }
.faq-item.active .faq-answer { padding-bottom: 30px; max-height: 400px; }
.faq-icon { transition: 0.3s; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--brand-purple); }
 

/* --- Floating Action Buttons (Sticky Hub) --- */
.floating-hub {
    position: fixed;
    bottom: 120px !important;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10000;
    pointer-events: none;
}

.floating-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    cursor: pointer;
    border: none;
    outline: none;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* WhatsApp Specific with Pulse */
.btn-whatsapp {
    background: #25d366;
}

.btn-telegram {
    background: #0088cc;
}

.btn-whatsapp::before,
.btn-telegram::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    animation: buttonPulse 2s infinite;
    opacity: 0.6;
}

@keyframes buttonPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}


/* Back to Top Specific */
.btn-back-to-top {
    background: var(--brand-purple);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.btn-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.btn-message{
    background: linear-gradient(135deg,#4facfe,#007aff);
    color:#fff;
}
@media (max-width: 768px) {
    .floating-hub {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}