/*
Theme Name: Astra Child - EquiGuard Shield
Theme URI: https://equiguardshield.com
Description: FORFX.com exact design match - Complete Webflow system
Author: EquiGuard Team
Template: astra
Version: 2.1.1
License: GNU General Public License v2 or later
Text Domain: astra-child
*/

/* 
 * ============================================
 * FORFX.COM EXACT DESIGN MATCH
 * ============================================
 * Complete Webflow CSS study se banaya gaya
 * Har element exactly FORFX.com se match karta hai
 */

/* ============================================
   CSS VARIABLES - FORFX Color System
   ============================================ */
:root {
    --black: #04010a;
    --white: #ececec;
    --white-smoke: #f4f4f4;
    --plum: #bd9af8;
    --deep-purple: #722be6;
    --blue-violet: #3f7bff;
}

/* ============================================
   CRITICAL: DARK BACKGROUND - FORFX Match
   ============================================ */

/* Force DARK background everywhere */
html,
body {
    background-color: #04010a !important;
    background: #04010a !important;
    color: #f4f4f4 !important;
    min-width: 320px;
}

/* Desktop site on mobile - ensure proper scaling */
@media screen and (min-width: 768px) {
    html, body {
        min-width: 100% !important;
    }
    
    .navbar-links-wrap {
        display: flex !important;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-secondary-navbar {
        display: none !important;
    }
    
    body.logged-in .navbar {
        display: flex !important;
    }
}

/* Force desktop view when body has desktop-view class (for "Request Desktop Site") */
body.desktop-view .navbar-links-wrap {
    display: flex !important;
}

body.desktop-view .hamburger {
    display: none !important;
}

body.desktop-view .mobile-menu {
    display: none !important;
}

body.desktop-view .mobile-secondary-navbar {
    display: none !important;
}

body.desktop-view.logged-in .navbar {
    display: flex !important;
}

/* Prevent scrolling when menu opens */
body.menu-open {
    overflow: hidden !important;
}

/* Hide navbar logo when menu is open */
body.menu-open .navbar-logo-wrap {
    opacity: 0 !important;
    visibility: hidden !important;
}

/* ============================================
   USER PROFILE LOGIN BUTTON
   ============================================ */
.user-profile {
    width: 90px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    background: linear-gradient(to bottom right, #2e8eff 0%, rgba(46, 142, 255, 0) 30%);
    background-color: rgba(46, 142, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.user-profile:hover,
.user-profile:focus {
    background-color: rgba(46, 142, 255, 0.5);
    box-shadow: 0 0 10px rgba(46, 142, 255, 0.4);
    outline: none;
    text-decoration: none;
}

.user-profile-inner {
    width: 86px;
    height: 32px;
    border-radius: 8px;
    background-color: #04010a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ececec;
    font-weight: 500;
}

.user-profile-inner svg {
    width: 14px;
    height: 14px;
    fill: #ececec !important;
}

.user-profile-inner p {
    margin: 0;
    color: #ececec !important;
    font-weight: 500;
    font-size: 14px !important;
}

/* Get Started Button - wider and bigger */
.user-profile.get-started-btn {
    width: 120px;
    height: 40px;
}

.user-profile.get-started-btn .user-profile-inner {
    width: 116px;
    height: 36px;
}

/* Button group - less gap between buttons */
.button-group {
    gap: 8px !important;
}

/* Remove Astra's white backgrounds */
#page,
.site,
.ast-container,
.site-content,
#content,
main,
.entry-content,
.ast-article-single,
.ast-separate-container .ast-article-post,
.ast-separate-container .ast-article-single,
.ast-separate-container .comment-respond,
.ast-separate-container .ast-comment-list li,
.ast-separate-container .ast-woocommerce-container,
.ast-separate-container .error-404,
.ast-separate-container .no-results {
    background-color: transparent !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove Astra padding/margins */
.ast-separate-container .site-main > .ast-row,
#primary,
.site-main,
.ast-container {
    margin: 0 !important;
    padding: 0 !important;
}

/* ============================================
   NAVBAR FIX - Prevent Hero Override
   ============================================ */

.navbar {
    z-index: 1000 !important;
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    position: absolute !important;
    top: 15px !important;
    left: 0 !important;
    right: 0 !important;
    pointer-events: auto !important;
    display: block !important;
}

.navbar-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

/* Desktop: Both logged-in and guest users - same layout */
@media screen and (min-width: 768px) {
    /* Logo - Fixed to left corner for all users */
    .navbar-logo-wrap {
        position: fixed !important;
        left: 30px !important;
        top: 20px !important;
        z-index: 1001 !important;
        margin: 0 !important;
    }
    
    /* Buttons - Fixed to right corner for all users */
    .button-group {
        position: fixed !important;
        right: 30px !important;
        top: 20px !important;
        z-index: 1001 !important;
        margin: 0 !important;
    }
    
    /* Center links - navbar style for all users with round border (Webflow exact) */
    .navbar-links-wrap {
        position: relative !important;
        flex: 0 0 auto !important;
        gap: 2.5rem !important;
        display: flex !important;
        align-items: center !important;
        background: transparent !important;
        padding: 0.2rem 1.5rem !important;
        border-radius: 6.25rem !important;
        border: 1px solid rgba(236, 236, 236, 0.12) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
    }
    
    .navbar-links-wrap .navbar-links {
        font-size: 14px !important;
        font-weight: 400 !important;
        letter-spacing: 0.3px !important;
        color: #ececec !important;
        text-decoration: none !important;
        transition: opacity 0.2s ease !important;
    }
    
    .navbar-links-wrap .navbar-links:hover {
        opacity: 0.8 !important;
    }
    
    /* Logged-in users specific - keep same styles */
    .logged-in .navbar-container {
        justify-content: center !important;
    }
    
    .logged-in .navbar-links-wrap {
        gap: 30px !important;
    }
}

/* Logo image quality improvement - all screens */
.navbar-logo-wrap img {
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    backface-visibility: hidden !important;
    transform: translateZ(0) !important;
}

/* Logo position - consistent across all pages */
.navbar-logo-wrap {
    margin-left: 20px !important;
}

/* Desktop: Hide hamburger, show normal layout */
@media screen and (min-width: 992px) {
    .hamburger {
        display: none !important;
    }
    
    .navbar-logo-wrap {
        order: 0 !important;
    }
    
    .button-group {
        order: 2 !important;
    }
}

/* Navbar Links - No color change on hover */
.navbar-links {
    color: #ececec !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease !important;
    outline: none !important;
    font-size: 14px !important;
}

.navbar .navbar-links,
.navbar-container .navbar-links,
.navbar-links-wrap .navbar-links {
    font-size: 14px !important;
}

.navbar-links:hover {
    color: #ececec !important;
    opacity: 0.8 !important;
}

.navbar-links:focus,
.navbar-links:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Remove focus outline from all navbar elements */
.navbar a,
.navbar button,
.navbar-logo-wrap a,
.navbar-logo-wrap img {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.navbar a:focus,
.navbar button:focus,
.navbar a:active,
.navbar button:active {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* Navbar should NOT overlap hero content */
.hero-section {
    position: relative !important;
    z-index: 1 !important;
}

.hero-wrap {
    position: relative !important;
    z-index: 1 !important;
    padding-top: 8rem !important; /* Space for navbar */
}

/* ============================================
   TYPOGRAPHY - Inter + Lyon Text (Notion Style)
   ============================================ */

/* Import Inter from Google Fonts - All weights */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables for Font Families */
:root {
    --font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --font-family-serif: Georgia, 'Times New Roman', serif;
}

/* Force Inter font on everything */
* {
    font-family: var(--font-family-sans) !important;
}

/* H1 - Hero heading (Reduced size, Extra Bold - Inter) */
h1 {
    letter-spacing: -1.5px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    font-family: var(--font-family-sans) !important;
}

/* Hero Slash - Purple Color */
.hero-slash {
    color: #bd9af8 !important;
    font-weight: 700 !important;
    margin: 0 0.5rem !important;
    display: inline-block !important;
}

/* H2 - Section headings (Bold - Inter) */
h2 {
    letter-spacing: -1.5px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-size: 3rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    font-family: var(--font-family-sans) !important;
}

/* H4 - Pricing headings (Semi-Bold - Inter) */
h4 {
    letter-spacing: -1px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    font-family: var(--font-family-sans) !important;
}

/* H5 - Card titles (Semi-Bold - Inter) */
h5 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
    font-family: var(--font-family-sans) !important;
}

/* H6 - Small headings (Medium - Inter) */
h6 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    color: #ffffff !important;
    font-family: var(--font-family-sans) !important;
}

/* Paragraph - Regular weight for body text (Inter) */
p {
    margin-bottom: 0 !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: #f4f4f4 !important;
    line-height: 1.6 !important;
    font-family: var(--font-family-sans) !important;
}

/* H3 - Subheadings (Bold - Inter) */
h3 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
    font-family: var(--font-family-sans) !important;
    letter-spacing: -0.5px !important;
}

/* ============================================
   RESPONSIVE TYPOGRAPHY - FORFX Exact
   ============================================ */

@media screen and (max-width: 991px) {
    h1 {
        font-size: 2.75rem !important;
    }
    
    h2 {
        letter-spacing: -1px !important;
        font-size: 2.75rem !important;
    }
    
    h4 {
        font-size: 1.75rem !important;
    }
    
    h5 {
        font-size: 1.25rem !important;
    }
    
    .padding-section-large {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 2.25rem !important;
    }
    
    h4 {
        font-size: 1.5rem !important;
        line-height: 1.4 !important;
    }
    
    h5 {
        font-size: 1.25rem !important;
    }
    
    h6 {
        font-size: 1.125rem !important;
    }
    
    .hero-wrap {
        padding: 5rem 2rem !important;
        min-height: 350px !important;
        border-radius: 0 !important;
    }
    
    .hero-section {
        padding: 0 !important;
    }
    
    .padding-section-large {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .container-large,
    .container-medium,
    .container-small {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
    
    /* Hide desktop navbar, show mobile menu */
    .navbar {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
    
    .navbar-links-wrap {
        display: none !important;
    }
    
    .button-group {
        gap: 0.5rem !important;
    }
    
    .button {
        font-size: 0.875rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    /* Cards responsive */
    .cards {
        min-height: 100% !important;
        padding: 1.5rem !important;
    }
    
    .cards-wrap {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-gap: 16px !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    /* CTA responsive */
    .cta-component {
        padding: 3rem 2rem !important;
    }
}

@media screen and (max-width: 479px) {
    h1 {
        font-size: 1.75rem !important;
    }
    
    h2 {
        font-size: 1.875rem !important;
    }
    
    .hero-wrap {
        padding: 4rem 1.5rem !important;
        min-height: 300px !important;
    }
    
    .container-large,
    .container-medium,
    .container-small {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .navbar {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .padding-section-large {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .cards {
        padding: 1.25rem !important;
        min-height: auto !important;
    }
    
    .cards-wrap {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
    }
    
    .cta-component {
        padding: 2rem 1.5rem !important;
    }
    
    .button-group:not(#mobile-cta-buttons) {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    /* NAVBAR button-group stays row */
    #mobile-cta-buttons {
        flex-direction: row !important;
        width: auto !important;
    }
    
    .button {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ============================================
   CARDS - FORFX Exact Design
   ============================================ */

.cards {
    background: rgba(255, 255, 255, .015) !important;
    background-color: rgba(255, 255, 255, .015) !important;
    border-radius: 12px !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 160px !important;
    padding: 45px 18px 18px 18px !important;
    display: flex !important;
    position: relative !important;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05), 0px 8px 15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    transition: box-shadow .25s !important;
    overflow: hidden !important;
    cursor: pointer !important;
}

.cards h5,
.cards h4 {
    z-index: 2;
    position: relative;
    margin: 12px 0 4px 0 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 2 !important;
    color: #FFFFFF !important;
}

.cards p {
    z-index: 2;
    position: relative;
    margin: 0 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #A1A1AA !important;
}

.cards .icon-1x1-medium {
    z-index: 2;
    position: relative;
    display: table !important;
    padding: 8px !important;
    width: auto !important;
    height: auto !important;
}

.cards .icon-1x1-medium::after {
    content: '';
    position: absolute;
    inset: 4.5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
    transition: background-color .25s, border-color .25s;
}

.cards .icon-1x1-medium img {
    position: relative;
    z-index: 1;
    display: block;
    width: 24px !important;
    height: 24px !important;
    transform: translateZ(0);
    transition: filter .25s;
}

.cards:hover {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.04), 0px 15px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
}

.cards:hover .icon-1x1-medium::after {
    background-color: rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.2);
}

.cards:hover .icon-1x1-medium img {
    filter: brightness(1.3) saturate(1.2);
}

/* Shine Effect for .cards */
.cards .shine {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transition: opacity .5s;
}

.cards .shine::before {
    content: '';
    width: 150%;
    padding-bottom: 150%;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 55%;
    filter: blur(35px);
    opacity: 0.1;
    transform: translateX(-50%);
    background-image: conic-gradient(from 205deg at 50% 50%, rgba(16, 185, 129, 0) 0deg, #10B981 25deg, rgba(52, 211, 153, 0.18) 295deg, rgba(16, 185, 129, 0) 360deg);
}

.cards:hover .shine {
    opacity: 1;
    transition-duration: .5s;
    transition-delay: 0s;
}

/* Background with Tiles and Lines for .cards */
.cards .background {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
    mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
}

.cards .tiles {
    opacity: 0;
    transition: opacity .25s;
}

.cards .tile {
    position: absolute;
    background-color: rgba(16, 185, 129, 0.05);
    animation-duration: 8s;
    animation-iteration-count: infinite;
    opacity: 0;
}

.cards .tile.tile-4,
.cards .tile.tile-6,
.cards .tile.tile-10 {
    animation-delay: -2s;
}

.cards .tile.tile-3,
.cards .tile.tile-5,
.cards .tile.tile-8 {
    animation-delay: -4s;
}

.cards .tile.tile-2,
.cards .tile.tile-9 {
    animation-delay: -6s;
}

.cards .tile.tile-1 {
    top: 0;
    left: 0;
    height: 10%;
    width: 22.5%;
}

.cards .tile.tile-2 {
    top: 0;
    left: 22.5%;
    height: 10%;
    width: 27.5%;
}

.cards .tile.tile-3 {
    top: 0;
    left: 50%;
    height: 10%;
    width: 27.5%;
}

.cards .tile.tile-4 {
    top: 0;
    left: 77.5%;
    height: 10%;
    width: 22.5%;
}

.cards .tile.tile-5 {
    top: 10%;
    left: 0;
    height: 22.5%;
    width: 22.5%;
}

.cards .tile.tile-6 {
    top: 10%;
    left: 22.5%;
    height: 22.5%;
    width: 27.5%;
}

.cards .tile.tile-7 {
    top: 10%;
    left: 50%;
    height: 22.5%;
    width: 27.5%;
}

.cards .tile.tile-8 {
    top: 10%;
    left: 77.5%;
    height: 22.5%;
    width: 22.5%;
}

.cards .tile.tile-9 {
    top: 32.5%;
    left: 50%;
    height: 22.5%;
    width: 27.5%;
}

.cards .tile.tile-10 {
    top: 32.5%;
    left: 77.5%;
    height: 22.5%;
    width: 22.5%;
}

.cards:hover .tiles {
    opacity: 1;
    transition-delay: .25s;
}

.cards:hover .tile {
    animation-name: tile;
}

@keyframes tile {
    0%, 12.5%, 100% {
        opacity: 1;
    }
    25%, 82.5% {
        opacity: 0;
    }
}

/* Lines for .cards */
.cards .line {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .35s;
}

.cards .line::before,
.cards .line::after {
    content: '';
    position: absolute;
    background-color: #2A2B2C;
    transition: transform .35s;
}

.cards .line::before {
    left: 0;
    right: 0;
    height: 1px;
    transform-origin: 0 50%;
    transform: scaleX(0);
}

.cards .line::after {
    top: 0;
    bottom: 0;
    width: 1px;
    transform-origin: 50% 0;
    transform: scaleY(0);
}

.cards .line.line-1::before {
    top: 10%;
}

.cards .line.line-1::after {
    left: 22.5%;
}

.cards .line.line-1::before,
.cards .line.line-1::after {
    transition-delay: .3s;
}

.cards .line.line-2::before {
    top: 32.5%;
}

.cards .line.line-2::after {
    left: 50%;
}

.cards .line.line-2::before,
.cards .line.line-2::after {
    transition-delay: .15s;
}

.cards .line.line-3::before {
    top: 55%;
}

.cards .line.line-3::after {
    right: 22.5%;
}

.cards:hover .line {
    opacity: 1;
    transition-duration: .15s;
}

.cards:hover .line::before {
    transform: scaleX(1);
}

.cards:hover .line::after {
    transform: scaleY(1);
}

.cards:hover .line.line-1::before,
.cards:hover .line.line-1::after {
    transition-delay: 0s;
}

.cards:hover .line.line-2::before,
.cards:hover .line.line-2::after {
    transition-delay: .15s;
}

.cards:hover .line.line-3::before,
.cards:hover .line.line-3::after {
    transition-delay: .3s;
}

/* Cards Container - FORFX Exact */
.cards-container {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 62.25rem !important;
    display: flex !important;
}

/* Cards Wrap - FORFX Exact */
.cards-wrap {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-gap: 20px !important;
    grid-auto-rows: 1fr !important;
    position: relative !important;
    z-index: 1 !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
}

/* Prop Firm Cards - 4 in a row */
.cards-wrap.prop-firm-cards {
    grid-template-columns: repeat(4, 1fr) !important;
    max-width: 1200px !important;
    grid-gap: 16px !important;
}

.cards-wrap.prop-firm-cards .cards {
    min-height: 140px !important;
    padding: 40px 14px 14px 14px !important;
}

@media screen and (max-width: 991px) {
    .cards-wrap.prop-firm-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media screen and (max-width: 479px) {
    .cards-wrap.prop-firm-cards {
        grid-template-columns: 1fr !important;
    }
}

/* Icon Container */
.icon-1x1-medium {
    width: 3.5rem !important;
    height: 3.5rem !important;
    flex-shrink: 0 !important;
}

/* ============================================
   BUTTONS - Inter Font
   ============================================ */

.button {
    color: var(--black) !important;
    text-align: center !important;
    background-color: #ececec !important;
    border-radius: 3.125rem !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0.5rem 1.5rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    line-height: 1.71 !important;
    transition: transform 0.3s !important;
    display: flex !important;
    text-decoration: none !important;
    font-family: var(--font-family-sans) !important;
}

.button:hover {
    transform: scale(0.97) !important;
}

.button:active {
    transform: scale(0.94) !important;
}

.button.is-gradiant {
    background-image: linear-gradient(148deg, #ae75db, #933bd8 20%, #722be6 51%, #3f7bff 75%, #316cffcc) !important;
    box-shadow: inset 0 0 0 2px rgba(236, 236, 236, 0.2) !important;
    color: #ececec !important;
    background-color: transparent !important;
}

.button.is-blur {
    border: 1px solid rgba(236, 236, 236, 0.12) !important;
    color: var(--white) !important;
    background-color: rgba(236, 236, 236, 0.06) !important;
}

.button.width-large {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
}

/* ============================================
   3D PRICING CARDS - New Design
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");

:root {
    --card-color: #1b4cc8;
}

.pricing {
    padding: 60px 0;
    background: transparent;
}

.pricing__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.pricing__title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
    line-height: 1;
}

.pricing-card {
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .015);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s ease;
    transform: perspective(1000px);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05), 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: perspective(1000px) scale(0.97) translateZ(10px) rotateY(-10deg);
}

.pricing-card:not(.pricing-card_premium):hover {
    border: 2px solid #722be6 !important;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05), 0px 8px 15px rgba(0, 0, 0, 0.1) !important;
}

.pricing-card_premium:hover {
    border: 2px solid #3f7bff !important;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05), 0px 8px 15px rgba(0, 0, 0, 0.1) !important;
}

.pricing-card:hover .pricing-card__top {
    transform: perspective(1000px) translateZ(5px) scale(1.01) translateX(-20px) translateY(-15px);
    opacity: 0.9;
}

.pricing-card:hover .pricing-card__button a {
    transform: perspective(1000px) translateZ(5px) scale(1.01) translateX(-15px) translateY(5px);
}

.pricing-card__top {
    transition: all 0.6s ease;
    border-radius: 15px 15px 0 0;
    background: var(--card-color);
    position: relative;
    padding: 20px 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    transform: perspective(1000px);
}

.pricing-card__title {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
}

.pricing-card__price-original {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    align-self: flex-end;
    margin-bottom: 5px;
}

.pricing-card__price {
    font-weight: 700;
    font-size: 24px;
    align-self: flex-end;
}

.pricing-card__price span {
    font-weight: 300;
    font-size: 14px;
}

.pricing-card__body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: transparent;
}

.pricing-card__pluses {
    flex: 1;
    margin-bottom: 30px;
}

.pricing-card__plus {
    font-size: 16px;
    color: #f4f4f4;
    display: flex;
    align-items: center;
    font-weight: 300;
}

.pricing-card__plus:not(:last-child) {
    margin-bottom: 10px;
}

.pricing-card__plus-icon {
    margin-right: 15px;
    line-height: 1;
    color: var(--card-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card__plus-text,
.pricing-card__button {
    display: flex;
    justify-content: flex-end;
}

.pricing-card__plus-text a,
.pricing-card__button a {
    display: inline-flex;
    height: 40px;
    width: 160px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--card-color);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.6s ease;
    border: 1px solid transparent;
    transform: perspective(1000px);
}

.pricing-card {
    --card-color: #722be6;
}

.pricing-card_premium {
    --card-color: #3f7bff;
}

/* Material Icons Support */
.material-icons {
    font-family: 'Material Icons' !important;
    font-weight: normal !important;
    font-style: normal !important;
    font-size: 20px !important;
    display: inline-block !important;
    line-height: 1 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    word-wrap: normal !important;
    white-space: nowrap !important;
    direction: ltr !important;
    -webkit-font-smoothing: antialiased !important;
    text-rendering: optimizeLegibility !important;
    -moz-osx-font-smoothing: grayscale !important;
    font-feature-settings: 'liga' !important;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pricing__title {
        font-size: 40px;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 767px) {
    .pricing__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .pricing__title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .pricing-card__top {
        padding: 15px 20px;
        text-align: left;
        align-items: flex-start;
    }
    
    .pricing-card__title {
        font-size: 22px;
        margin-bottom: 8px;
        text-align: left;
    }
    
    .pricing-card__price-original {
        align-self: flex-end;
        margin-bottom: 3px;
    }
    
    .pricing-card__price {
        font-size: 18px;
        align-self: flex-end;
    }
    
    .pricing-card__body {
        padding: 20px;
    }
    
    .pricing-card__plus {
        font-size: 14px;
    }
    
    .pricing-card__pluses {
        margin-bottom: 20px;
    }
    
    .pricing-card__plus:not(:last-child) {
        margin-bottom: 8px;
    }
    
    .pricing-card__button a {
        height: 34px;
        width: 130px;
        font-size: 14px;
        border-radius: 8px;
    }
}

/* ============================================
   CTA COMPONENT - FORFX Exact
   ============================================ */

.cta-component {
    text-align: center !important;
    background-image: url('../images/Noise.png') !important;
    background-repeat: repeat !important;
    background-size: 88px !important;
    border: 2px solid rgba(189, 154, 248, 0.2) !important;
    border-radius: 1rem !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    padding: 4.9375rem 6.3125rem !important;
    display: flex !important;
    position: relative !important;
    overflow: hidden !important;
}

/* ============================================
   SECTION TITLE WRAP - FORFX Exact
   ============================================ */

.section-title-wrap {
    flex-direction: column !important;
    justify-content: center !important;
    margin-bottom: 3rem !important;
    align-items: center !important;
    margin-bottom: 5rem !important;
    display: flex !important;
    position: static !important;
}

/* ============================================
   FEATURES WRAP - FORFX Exact
   ============================================ */

.features-wrap {
    grid-column-gap: 1.5rem !important;
    grid-row-gap: 1.5rem !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    max-width: 62.25rem !important;
    display: flex !important;
}

/* ============================================
   RESPONSIVE - FORFX Exact Breakpoints
   ============================================ */

@media screen and (max-width: 991px) {
    .container-large {
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important;
    }
    
    .padding-section-large {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    
    .hero-wrap {
        border-radius: 0 !important;
    }
    
    .hero-section {
        padding: 0 !important;
    }
    
    .navbar-container {
        padding: 0 2.5rem !important;
    }
    
    .cards {
        min-height: 100% !important;
        padding: 2rem !important;
    }
    
    .cta-component {
        padding: 4rem !important;
    }
}

@media screen and (max-width: 767px) {
    .container-large {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
    
    .padding-section-large {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .hero-wrap {
        justify-content: flex-start !important;
    }
    
    .navbar {
        position: fixed !important;
    }
    
    .navbar-container {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
    
    .cards {
        padding: 1.25rem !important;
        min-height: auto !important;
    }
    
    .cards-wrap {
        grid-template-columns: 1fr !important;
    }
    
    .pricing-col {
        min-width: 100% !important;
    }
    
    .button-group:not(#mobile-cta-buttons) {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .button {
        width: 100% !important;
    }
    
    .cta-component {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
    
    .features-wrap {
        flex-direction: column !important;
    }
}

/* ============================================
   WordPress Admin Bar Fix
   ============================================ */

.admin-bar .navbar {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    .admin-bar .navbar {
        top: 46px !important;
    }
}

/* ============================================
   SMOOTH ANIMATIONS
   ============================================ */

html {
    scroll-behavior: smooth !important;
}

section {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================
   WORKFLOW CARDS - FORFX Style
   ============================================ */

.workflow-card {
    position: relative !important;
    overflow: visible !important;
}

.workflow-number-badge {
    position: absolute !important;
    top: -0.75rem !important;
    right: 1.5rem !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #722be6, #3f7bff) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #ececec !important;
    box-shadow: 0 0 20px rgba(114, 43, 230, 0.4) !important;
    z-index: 10 !important;
}

/* Responsive Workflow Cards */
@media screen and (max-width: 767px) {
    .workflow-number-badge {
        width: 2rem !important;
        height: 2rem !important;
        font-size: 0.875rem !important;
        top: -0.5rem !important;
        right: 1rem !important;
    }
}


/* ============================================
   TEXT SIZES - FORFX Exact
   ============================================ */

.text-size-medium {
    font-size: 1.125rem !important;
    line-height: 1.5 !important;
}

.text-size-large {
    font-size: 1.25rem !important;
    line-height: 1.5 !important;
}

.text-color-white-smoke {
    color: #f4f4f4 !important;
}

.opacity-64 {
    opacity: 0.64 !important;
}

/* ============================================
   HERO SECTION - FORFX Exact
   ============================================ */

.hero-section {
    padding: 1.5rem !important;
    position: relative !important;
    background: #000000 !important;
}

.hero-wrap {
    background: #04010a !important;
    background-image: url('assets/Hero image/Matrix.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 1rem !important;
    padding: 6rem 3rem !important;
    min-height: 400px !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Pure Black overlay - No purple tint */
.hero-wrap::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.95) !important;
    z-index: 0 !important;
}

/* Floating Orbs */
.hero-wrap::after {
    content: '' !important;
    position: absolute !important;
    width: 600px !important;
    height: 600px !important;
    background: radial-gradient(circle, rgba(114, 43, 230, 0.2) 0%, transparent 70%) !important;
    border-radius: 50% !important;
    top: -200px !important;
    right: -200px !important;
    animation: orbFloat 15s ease-in-out infinite !important;
    z-index: 0 !important;
    filter: blur(60px) !important;
}

@keyframes meshMove {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50% !important;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 60% 40% !important;
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) !important;
    }
    33% {
        transform: translate(-50px, 50px) scale(1.1) !important;
    }
    66% {
        transform: translate(50px, -30px) scale(0.9) !important;
    }
}

.flex-vertical-center {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 2 !important;
}

.circle-gradiant {
    position: absolute !important;
    width: 25rem !important;
    height: 25rem !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(189, 154, 248, 0.15) 0%, rgba(114, 43, 230, 0.08) 40%, transparent 70%) !important;
    filter: blur(80px) !important;
    pointer-events: none !important;
    z-index: 1 !important;
    animation: pulseGlow 8s ease-in-out infinite !important;
}

.circle-gradiant:nth-child(2) {
    animation-delay: 2s !important;
}

.circle-gradiant:nth-child(3) {
    animation-delay: 4s !important;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6 !important;
        transform: scale(1) !important;
    }
    50% {
        opacity: 1 !important;
        transform: scale(1.1) !important;
    }
}

/* ============================================
   MOBILE HAMBURGER MENU (Future Enhancement)
   ============================================ */

.navbar-mobile-toggle {
    display: none !important;
    width: 2rem !important;
    height: 2rem !important;
    flex-direction: column !important;
    justify-content: space-around !important;
    cursor: pointer !important;
}

.navbar-mobile-toggle span {
    width: 100% !important;
    height: 2px !important;
    background: #ececec !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
}

@media screen and (max-width: 767px) {
    .navbar-mobile-toggle {
        display: flex !important;
    }
}

/* ============================================
   SECTION BACKGROUNDS - FORFX Exact
   ============================================ */

.section.is-purple {
    background-image: linear-gradient(135deg, rgba(189, 154, 248, 0.05), rgba(189, 154, 248, 0.02)) !important;
    padding: 4rem 0 !important;
}

@media screen and (max-width: 767px) {
    .section.is-purple {
        padding: 3rem 0 !important;
    }
}


/* ============================================
   HERO SECTION - Enhanced Styling
   ============================================ */

/* Hero Tag with Icon */
.hero-tag {
    display: inline-flex !important;
    align-items: center !important;
    animation: fadeInDown 0.6s ease-out !important;
}

/* Hero Headline Split Style - Black Weight (Inter) */
.hero-headline {
    animation: fadeInUp 0.8s ease-out 0.2s backwards !important;
    font-weight: 900 !important;
    font-family: var(--font-family-sans) !important;
    letter-spacing: -2px !important;
}

.hero-headline-line1 {
    display: inline-block !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    font-family: var(--font-family-sans) !important;
}

.hero-headline-line2 {
    display: inline-block !important;
    background-image: linear-gradient(135deg, #bd9af8, #722be6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 900 !important;
    font-family: var(--font-family-sans) !important;
}

/* Hero Subheadline */
.hero-subheadline {
    animation: fadeInUp 1s ease-out 0.4s backwards !important;
    max-width: 42rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.highlight-purple {
    color: #bd9af8 !important;
    font-weight: 500 !important;
}

/* Button Group Enhancement */
.button-group {
    animation: fadeInUp 1.2s ease-out 0.6s backwards !important;
}

/* Desktop only - relative positioning */
@media screen and (min-width: 992px) {
    .button-group {
        position: relative;
    }
}

/* Fix button-group to prevent shifting when logout button expands - MOBILE ONLY */
@media screen and (max-width: 767px) {
    .button-group .Btn {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Reserve space for logout button */
    .button-group:has(.Btn) {
        min-width: 95px;
        height: 40px;
        position: relative;
    }
}

/* Desktop: Logout button normal flow */
@media screen and (min-width: 768px) {
    .button-group .Btn {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
    }
    
    .button-group:has(.Btn) {
        min-width: auto;
        height: auto;
    }
}

/* Animated Logout Button */
.Btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 40px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background-color: transparent;
    text-decoration: none;
}

/* icon */
.Btn .sign {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.Btn .sign svg {
    width: 16px;
    height: 16px;
}

.Btn .sign svg path {
    fill: white;
}

/* text */
.Btn .text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* hover effect - expand button */
.Btn:hover {
    width: 95px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.Btn:hover .sign {
    width: 35%;
    padding-left: 8px;
}

.Btn:hover .text {
    opacity: 1;
    width: 65%;
    padding-right: 10px;
}

/* button click effect */
.Btn:active {
    transform: none;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero */
@media screen and (max-width: 767px) {
    .hero-headline-line1,
    .hero-headline-line2 {
        display: block !important;
    }
    
    .hero-subheadline {
        font-size: 1rem !important;
    }
    
    .hero-tag svg {
        width: 14px !important;
        height: 14px !important;
    }
}


/* ============================================
   HOW IT WORKS - Animated Steps Section
   ============================================ */

.sticky-steps-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-gap: 32px !important;
    grid-auto-rows: 1fr !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.sticky-text_wrapper.steps {
    background: rgba(255, 255, 255, .015) !important;
    background-color: rgba(255, 255, 255, .015) !important;
    border-radius: 15px !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 200px !important;
    padding: 60px 24px 24px 24px !important;
    display: flex !important;
    position: relative !important;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05), 0px 8px 15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    transition: box-shadow .25s !important;
    overflow: hidden !important;
    cursor: pointer !important;
}

.sticky-text_wrapper.steps:hover {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.04), 0px 15px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
}

.sticky-text_wrapper.steps.first {
    margin-top: 0 !important;
}

.sticky-text_wrapper.steps.third {
    margin-bottom: 0 !important;
}

/* Staggered layout - odd cards up, even cards down */
.sticky-text_wrapper.steps:nth-child(odd) {
    margin-top: 0 !important;
}

.sticky-text_wrapper.steps:nth-child(even) {
    margin-top: 40px !important;
}

.step-number-large {
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
    font-size: 6rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    color: rgba(255, 255, 255, 0.05) !important;
    z-index: 0 !important;
    pointer-events: none !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
}

.step-content {
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    z-index: 2 !important;
}



/* Shine, Tiles, Lines for steps */
.sticky-text_wrapper.steps .shine {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transition: opacity .5s;
}

.sticky-text_wrapper.steps .shine::before {
    content: '';
    width: 150%;
    padding-bottom: 150%;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 55%;
    filter: blur(35px);
    opacity: 0.1;
    transform: translateX(-50%);
    background-image: conic-gradient(from 205deg at 50% 50%, rgba(16, 185, 129, 0) 0deg, #10B981 25deg, rgba(52, 211, 153, 0.18) 295deg, rgba(16, 185, 129, 0) 360deg);
}

.sticky-text_wrapper.steps:hover .shine {
    opacity: 1;
    transition-duration: .5s;
    transition-delay: 0s;
}

.sticky-text_wrapper.steps .background {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
    mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
}

.sticky-text_wrapper.steps .tiles {
    opacity: 0;
    transition: opacity .25s;
}

.sticky-text_wrapper.steps .tile {
    position: absolute;
    background-color: rgba(16, 185, 129, 0.05);
    animation-duration: 8s;
    animation-iteration-count: infinite;
    opacity: 0;
}

.sticky-text_wrapper.steps:hover .tiles {
    opacity: 1;
    transition-delay: .25s;
}

.sticky-text_wrapper.steps:hover .tile {
    animation-name: tile;
}

.sticky-text_wrapper.steps .line {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .35s;
}

.sticky-text_wrapper.steps .line::before,
.sticky-text_wrapper.steps .line::after {
    content: '';
    position: absolute;
    background-color: #2A2B2C;
    transition: transform .35s;
}

.sticky-text_wrapper.steps .line::before {
    left: 0;
    right: 0;
    height: 1px;
    transform-origin: 0 50%;
    transform: scaleX(0);
}

.sticky-text_wrapper.steps .line::after {
    top: 0;
    bottom: 0;
    width: 1px;
    transform-origin: 50% 0;
    transform: scaleY(0);
}

.sticky-text_wrapper.steps:hover .line {
    opacity: 1;
    transition-duration: .15s;
}

.sticky-text_wrapper.steps:hover .line::before {
    transform: scaleX(1);
}

.sticky-text_wrapper.steps:hover .line::after {
    transform: scaleY(1);
}

/* Tiles positioning for steps */
.sticky-text_wrapper.steps .tile.tile-1 { top: 0; left: 0; height: 10%; width: 22.5%; }
.sticky-text_wrapper.steps .tile.tile-2 { top: 0; left: 22.5%; height: 10%; width: 27.5%; }
.sticky-text_wrapper.steps .tile.tile-3 { top: 0; left: 50%; height: 10%; width: 27.5%; }
.sticky-text_wrapper.steps .tile.tile-4 { top: 0; left: 77.5%; height: 10%; width: 22.5%; }
.sticky-text_wrapper.steps .tile.tile-5 { top: 10%; left: 0; height: 22.5%; width: 22.5%; }
.sticky-text_wrapper.steps .tile.tile-6 { top: 10%; left: 22.5%; height: 22.5%; width: 27.5%; }
.sticky-text_wrapper.steps .tile.tile-7 { top: 10%; left: 50%; height: 22.5%; width: 27.5%; }
.sticky-text_wrapper.steps .tile.tile-8 { top: 10%; left: 77.5%; height: 22.5%; width: 22.5%; }
.sticky-text_wrapper.steps .tile.tile-9 { top: 32.5%; left: 50%; height: 22.5%; width: 27.5%; }
.sticky-text_wrapper.steps .tile.tile-10 { top: 32.5%; left: 77.5%; height: 22.5%; width: 22.5%; }

.sticky-text_wrapper.steps .tile.tile-4,
.sticky-text_wrapper.steps .tile.tile-6,
.sticky-text_wrapper.steps .tile.tile-10 { animation-delay: -2s; }

.sticky-text_wrapper.steps .tile.tile-3,
.sticky-text_wrapper.steps .tile.tile-5,
.sticky-text_wrapper.steps .tile.tile-8 { animation-delay: -4s; }

.sticky-text_wrapper.steps .tile.tile-2,
.sticky-text_wrapper.steps .tile.tile-9 { animation-delay: -6s; }

/* Lines positioning for steps */
.sticky-text_wrapper.steps .line.line-1::before { top: 10%; }
.sticky-text_wrapper.steps .line.line-1::after { left: 22.5%; }
.sticky-text_wrapper.steps .line.line-1::before,
.sticky-text_wrapper.steps .line.line-1::after { transition-delay: .3s; }

.sticky-text_wrapper.steps .line.line-2::before { top: 32.5%; }
.sticky-text_wrapper.steps .line.line-2::after { left: 50%; }
.sticky-text_wrapper.steps .line.line-2::before,
.sticky-text_wrapper.steps .line.line-2::after { transition-delay: .15s; }

.sticky-text_wrapper.steps .line.line-3::before { top: 55%; }
.sticky-text_wrapper.steps .line.line-3::after { right: 22.5%; }

.sticky-text_wrapper.steps:hover .line.line-1::before,
.sticky-text_wrapper.steps:hover .line.line-1::after { transition-delay: 0s; }

.sticky-text_wrapper.steps:hover .line.line-2::before,
.sticky-text_wrapper.steps:hover .line.line-2::after { transition-delay: .15s; }

.sticky-text_wrapper.steps:hover .line.line-3::before,
.sticky-text_wrapper.steps:hover .line.line-3::after { transition-delay: .3s; }

.step-content h3 {
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
    color: #FFFFFF !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.3 !important;
}

.step-content p {
    font-size: 14px !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
    line-height: 1.7 !important;
    color: #A1A1AA !important;
}

.step-content ul {
    list-style: none !important;
    padding-left: 0 !important;
}

.step-content ul li {
    position: relative !important;
    padding-left: 1.5rem !important;
}

.step-content ul li::before {
    content: '→' !important;
    position: absolute !important;
    left: 0 !important;
    color: #bd9af8 !important;
    font-weight: 700 !important;
}

/* Responsive Steps */
@media screen and (max-width: 991px) {
    .step-number-large {
        font-size: 6rem !important;
    }
}

@media screen and (max-width: 767px) {
    .sticky-steps-container {
        grid-template-columns: 1fr !important;
    }
    
    .sticky-text_wrapper.steps:nth-child(even) {
        margin-top: 0 !important;
    }
    
    .step-number-large {
        font-size: 4rem !important;
        top: 5px !important;
        right: 10px !important;
    }
}


/* ============================================
   FAQ PAGE - Webflow Exact Styling
   ============================================ */

.faq-item {
    border: 1px solid rgba(236, 236, 236, 0.2) !important;
    border-radius: 1rem !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
    padding: 1.5rem !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.faq-item:hover {
    border-color: rgba(189, 154, 248, 0.3) !important;
    background: linear-gradient(135deg, rgba(189, 154, 248, 0.02), rgba(189, 154, 248, 0.01)) !important;
}

.faq-toggle {
    white-space: normal !important;
    word-break: normal !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1.5rem !important;
    display: flex !important;
    position: static !important;
    cursor: pointer !important;
    user-select: none !important;
}

.faq-icon {
    flex-shrink: 0 !important;
    width: 2rem !important;
    height: 2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #bd9af8 !important;
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    transition: transform 0.3s ease !important;
}

.faq-content-wrap {
    background-color: transparent !important;
    width: 100% !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease-out !important;
    position: relative !important;
}

.faq-content-wrap.w--open {
    max-height: 600px !important;
    display: flex !important;
    align-items: flex-start !important;
}

.faq-content {
    width: 100% !important;
    height: 100% !important;
    padding-top: 1rem !important;
}

.background-animation {
    z-index: -1 !important;
    background-image: linear-gradient(290deg, rgba(236, 236, 236, 0), rgba(236, 236, 236, 0.02) 44.54%, rgba(189, 154, 248, 0.08)) !important;
    position: absolute !important;
    inset: 0 !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.faq-item:hover .background-animation {
    opacity: 1 !important;
}

/* FAQ Section Headings */
.faq-section-heading {
    color: #ececec !important;
    margin-top: 3rem !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important;
}

.faq-section-heading:first-of-type {
    margin-top: 2rem !important;
}

/* Responsive FAQ */
@media screen and (max-width: 991px) {
    .faq-toggle {
        font-size: 1.25rem !important;
    }
    
    .faq-item {
        padding: 1.25rem !important;
    }
}

@media screen and (max-width: 767px) {
    .faq-toggle {
        font-size: 1.2rem !important;
    }
    
    .faq-item {
        padding: 1rem !important;
    }
    
    .faq-section-heading {
        font-size: 1.5rem !important;
        margin-top: 3rem !important;
        margin-bottom: 1.5rem !important;
    }
}


/* ============================================
   CONTACT PAGE - Modern Design
   ============================================ */

.contact-card {
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.contact-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 32px rgba(189, 154, 248, 0.2) !important;
}

.contact-card h5 {
    color: #ececec !important;
}

.contact-form {
    background: linear-gradient(135deg, rgba(189, 154, 248, 0.05), rgba(189, 154, 248, 0.02)) !important;
    border: 1px solid rgba(189, 154, 248, 0.1) !important;
    border-radius: 1rem !important;
    padding: 2.5rem !important;
}

.contact-form .text-field {
    background: rgba(236, 236, 236, 0.05) !important;
    border: 1px solid rgba(236, 236, 236, 0.1) !important;
    border-radius: 0.5rem !important;
    padding: 0.875rem 1rem !important;
    color: #ececec !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.contact-form .text-field:focus {
    border-color: rgba(189, 154, 248, 0.5) !important;
    background: rgba(236, 236, 236, 0.08) !important;
    outline: none !important;
}

.contact-form .text-field::placeholder {
    color: rgba(236, 236, 236, 0.4) !important;
}

.contact-form label {
    color: #ececec !important;
    font-weight: 500 !important;
    font-size: 0.875rem !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

/* Responsive Contact */
@media screen and (max-width: 767px) {
    .contact-form {
        padding: 1.5rem !important;
    }
}


/* ============================================
   MOBILE MENU - Modern Hamburger Overlay
   ============================================ */

.mobile-menu-toggle {
    display: none !important;
    background: none !important;
    border: none !important;
    padding: 0.5rem !important;
    cursor: pointer !important;
    transition: transform 0.3s ease !important;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1) !important;
}

.mobile-menu-toggle .menu-icon {
    width: 28px !important;
    height: 28px !important;
    display: block !important;
}

.mobile-menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: linear-gradient(135deg, #04010a 0%, #0b0d1e 50%, #04010a 100%) !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2rem !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.4s ease, visibility 0.4s ease !important;
}

.mobile-menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-menu-close {
    position: absolute !important;
    top: 1.5rem !important;
    right: 1.5rem !important;
    background: none !important;
    border: none !important;
    padding: 0.5rem !important;
    cursor: pointer !important;
    transition: transform 0.3s ease !important;
    z-index: 10000 !important;
}

.mobile-menu-close:hover {
    transform: rotate(90deg) scale(1.1) !important;
}

.mobile-menu-close img {
    width: 32px !important;
    height: 32px !important;
    display: block !important;
}

.mobile-menu-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important;
    margin-bottom: 3rem !important;
}

.mobile-menu-link {
    color: #ececec !important;
    font-size: 1.75rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    opacity: 0 !important;
    transform: translateY(20px) !important;
}

.mobile-menu-overlay.active .mobile-menu-link {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(1) {
    transition-delay: 0.1s !important;
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(2) {
    transition-delay: 0.2s !important;
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(3) {
    transition-delay: 0.3s !important;
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(4) {
    transition-delay: 0.4s !important;
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(5) {
    transition-delay: 0.5s !important;
}

.mobile-menu-link:hover {
    color: #bd9af8 !important;
    transform: translateX(10px) !important;
}

.mobile-menu-buttons {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 300px !important;
    opacity: 0 !important;
    transform: translateY(20px) !important;
}

.mobile-menu-overlay.active .mobile-menu-buttons {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.4s ease 0.6s, transform 0.4s ease 0.6s !important;
}

/* Show mobile menu toggle on mobile */
@media screen and (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .navbar-links-wrap {
        display: none !important;
    }
    
    /* Button group visible on mobile - right corner */
    .navbar-container > .button-group {
        display: flex !important;
        flex-direction: row !important;
        margin-left: auto !important;
        gap: 10px !important;
    }
}

@media screen and (max-width: 479px) {
    .mobile-menu-link {
        font-size: 1.5rem !important;
    }
    
    .mobile-menu-nav {
        gap: 1.25rem !important;
    }
    
    /* Button group visible on smallest screens too */
    .navbar-container > .button-group {
        display: flex !important;
        flex-direction: row !important;
        margin-left: auto !important;
        gap: 8px !important;
        padding-right: 5px !important;
    }
    
    /* Smaller buttons on very small screens */
    .navbar-container > .button-group .user-profile {
        width: 55px !important;
        height: 26px !important;
    }
    
    .navbar-container > .button-group .user-profile .user-profile-inner {
        width: 51px !important;
        height: 22px !important;
    }
    
    .navbar-container > .button-group .user-profile .user-profile-inner p {
        font-size: 9px !important;
    }
    
    .navbar-container > .button-group .user-profile .user-profile-inner svg {
        width: 9px !important;
        height: 9px !important;
    }
    
    .navbar-container > .button-group .user-profile.get-started-btn {
        width: 65px !important;
        height: 26px !important;
    }
    
    .navbar-container > .button-group .user-profile.get-started-btn .user-profile-inner {
        width: 61px !important;
        height: 22px !important;
    }
}

/* ============================================
   MOBILE MENU - NEW STRUCTURE
   ============================================ */

/* Animated Hamburger Menu */
.hamburger {
    cursor: pointer !important;
    display: none !important;
    position: relative !important;
    z-index: 1000 !important;
    flex-shrink: 0 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.hamburger input {
    display: none !important;
}

.hamburger svg {
    /* The size of the SVG defines the overall size */
    height: 3em !important;
    width: auto !important;
    display: block !important;
    /* Define the transition for transforming the SVG */
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.line {
    fill: none !important;
    stroke: white !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    stroke-width: 2 !important;
    /* Define the transition for transforming the Stroke */
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.line-top-bottom {
    stroke-dasharray: 12 63 !important;
}

.hamburger input:checked + svg {
    transform: rotate(-45deg) !important;
}

.hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300 !important;
    stroke-dashoffset: -32.42 !important;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-menu-header img {
    display: none !important;
}

/* Hamburger in mobile menu header - always show as X */
.hamburger-close {
    display: flex !important;
}

.hamburger-close svg {
    transform: rotate(-45deg) !important;
}

.hamburger-close svg .line-top-bottom {
    stroke-dasharray: 20 300 !important;
    stroke-dashoffset: -32.42 !important;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.mobile-menu-link {
    color: #ececec !important;
    font-size: 1.75rem;
    font-weight: 500;
    text-decoration: none;
    opacity: 0 !important;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.mobile-menu.active .mobile-menu-link,
.mobile-menu.active .mobile-menu-nav .mobile-menu-link,
.mobile-menu.active .mobile-menu-nav a {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.mobile-menu.active .mobile-menu-link:nth-child(1) {
    transition-delay: 0.1s !important;
}

.mobile-menu.active .mobile-menu-link:nth-child(2) {
    transition-delay: 0.2s !important;
}

.mobile-menu.active .mobile-menu-link:nth-child(3) {
    transition-delay: 0.3s !important;
}

.mobile-menu.active .mobile-menu-link:nth-child(4) {
    transition-delay: 0.4s !important;
}

.mobile-menu-link:hover {
    color: #bd9af8 !important;
    transform: translateX(10px);
}

.mobile-menu.active .mobile-menu-link:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-menu.active .mobile-menu-link:nth-child(6) {
    transition-delay: 0.6s;
}

.mobile-menu-link:hover {
    color: #bd9af8;
    transform: translateX(10px);
}

.mobile-menu-footer {
    display: none !important;
}

/* Show mobile menu button on mobile phones only - Tablet shows desktop view */
@media screen and (max-width: 767px) {
    /* Fix navbar position on mobile */
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background-color: rgba(4, 1, 10, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        padding-top: 0.35rem !important;
        padding-bottom: 0.35rem !important;
        z-index: 10000 !important;
        overflow: visible !important;
    }
    
    .navbar-container {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        max-width: 100% !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        gap: 0 !important;
        position: relative !important;
        width: 100% !important;
    }
    
    /* Logo first - left side */
    .navbar-container > .navbar-logo-wrap {
        display: flex !important;
        align-items: center !important;
        order: 1 !important;
        flex: 0 0 auto !important;
        z-index: 10 !important;
        position: relative !important;
        margin-left: 10px !important;
        margin-right: auto !important;
    }
    
    /* Mobile logo size - smaller for mobile */
    .navbar-container > .navbar-logo-wrap img {
        height: 35px !important;
        width: auto !important;
        max-width: 130px !important;
        object-fit: contain !important;
        object-position: left center !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
        max-height: 35px !important;
        image-rendering: -webkit-optimize-contrast !important;
        image-rendering: crisp-edges !important;
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
    }
    
    .navbar-container > .navbar-logo-wrap a {
        display: flex !important;
        align-items: center !important;
        z-index: 10 !important;
        position: relative !important;
    }

    .navbar-links-wrap {
        display: none !important;
    }

    /* Buttons in middle-right */
    .navbar-container > .button-group {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        flex-shrink: 0 !important;
        order: 2 !important;
        margin-left: auto !important;
        margin-right: 8px !important;
    }
    
    /* Hamburger last - right side after buttons */
    .navbar-container > .hamburger,
    .navbar-container > .mobile-menu-button,
    .navbar-container > #mobile-menu-btn {
        display: flex !important;
        z-index: 1 !important;
        order: 3 !important;
        flex-shrink: 0 !important;
        position: relative !important;
        margin-right: 5px !important;
    }
    
    .navbar-container > .hamburger svg {
        width: 2.5em !important;
        height: 2.5em !important;
    }
    
    /* Mobile buttons - bigger size */
    .button-group .user-profile {
        width: 75px !important;
        height: 32px !important;
        border-radius: 7px !important;
    }
    
    .button-group .user-profile .user-profile-inner {
        width: 71px !important;
        height: 28px !important;
        border-radius: 6px !important;
        gap: 5px !important;
    }
    
    .button-group .user-profile .user-profile-inner svg {
        width: 12px !important;
        height: 12px !important;
    }
    
    .button-group .user-profile .user-profile-inner p {
        font-size: 11px !important;
    }
    
    .button-group .user-profile.get-started-btn {
        width: 85px !important;
        height: 32px !important;
    }
    
    .button-group .user-profile.get-started-btn .user-profile-inner {
        width: 81px !important;
        height: 28px !important;
    }
    
    /* Mobile logout button - same size and position as login button */
    .button-group .Btn {
        transform: scale(0.8) !important;
        transform-origin: right center !important;
        position: relative !important;
        top: 0 !important;
        margin: 0 !important;
    }
    
    /* Mobile: expand on first click, logout on second click */
    .button-group .Btn.expanded {
        width: 95px !important;
    }
    
    /* Mobile login button - keep animation, just smaller */
    .button-group .animated-login-button {
        transform: scale(0.75) !important;
        transform-origin: right center !important;
    }
}

@media screen and (max-width: 479px) {
    .mobile-menu-link {
        font-size: 1.5rem;
    }
    
    .mobile-menu-nav {
        gap: 1.25rem;
    }
    
    .mobile-menu-content {
        padding: 1.5rem;
    }
}

/* ============================================
   PMPRO SPECIFIC OVERRIDES & FIXES
   ============================================ */

/* Force PMPro forms to use our design system */
#pmpro_form .pmpro_checkout,
#pmpro_form .pmpro_form,
.pmpro_checkout-fields {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* PMPro Input Fields - Force our styling */
#pmpro_form input[type="text"],
#pmpro_form input[type="email"],
#pmpro_form input[type="password"],
#pmpro_form input[type="tel"],
#pmpro_form select,
#pmpro_form textarea {
    width: 100% !important;
    padding: 0.875rem 1.25rem !important;
    background: rgba(236, 236, 236, 0.04) !important;
    border: 1px solid rgba(236, 236, 236, 0.2) !important;
    border-radius: 0.5rem !important;
    color: #ececec !important;
    font-size: 1rem !important;
    font-family: inherit !important;
    transition: all 0.3s ease !important;
    text-align: left !important;
}

#pmpro_form input[type="text"]:focus,
#pmpro_form input[type="email"]:focus,
#pmpro_form input[type="password"]:focus,
#pmpro_form input[type="tel"]:focus,
#pmpro_form select:focus,
#pmpro_form textarea:focus {
    background: rgba(236, 236, 236, 0.08) !important;
    border-color: #bd9af8 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(189, 154, 248, 0.1) !important;
}

/* PMPro Labels */
#pmpro_form label {
    display: block !important;
    margin-bottom: 0.5rem !important;
    color: #ececec !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
}

/* PMPro Checkboxes */
#pmpro_form input[type="checkbox"] {
    width: auto !important;
    margin-right: 0.5rem !important;
}

/* PMPro Error Fields */
#pmpro_form .pmpro_error,
#pmpro_form input.pmpro_error {
    border-color: #ff4444 !important;
    background: rgba(255, 68, 68, 0.1) !important;
}

/* PMPro Messages */
.pmpro_message {
    padding: 1rem !important;
    margin-bottom: 1.5rem !important;
    border-radius: 0.5rem !important;
    font-size: 0.875rem !important;
}

.pmpro_message.pmpro_error {
    background: linear-gradient(135deg, #ff4444, #cc0000) !important;
    color: #fff !important;
}

.pmpro_message.pmpro_success {
    background: linear-gradient(135deg, var(--deep-purple), var(--blue-violet)) !important;
    color: #fff !important;
}

/* PMPro Submit Buttons */
#pmpro_form .pmpro_btn,
#pmpro_form input[type="submit"],
#pmpro_form button[type="submit"] {
    width: 100% !important;
    padding: 1rem 2rem !important;
    background: linear-gradient(135deg, #6b21a8, #7c3aed) !important;
    border: none !important;
    border-radius: 0.5rem !important;
    color: #ececec !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#pmpro_form .pmpro_btn:hover,
#pmpro_form input[type="submit"]:hover,
#pmpro_form button[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(107, 33, 168, 0.3) !important;
}

/* Remove PMPro default styling */
#pmpro_form .pmpro_checkout-field,
#pmpro_form .pmpro_checkout-fields {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* PMPro Required Asterisk */
#pmpro_form .pmpro_required {
    color: #ff4444 !important;
}

/* PMPro Hint Text */
#pmpro_form .pmpro_hint,
#pmpro_form .lite {
    color: rgba(236, 236, 236, 0.64) !important;
    font-size: 0.75rem !important;
    margin-top: 0.5rem !important;
}

/* Login Form Specific */
#loginform input[type="text"],
#loginform input[type="password"] {
    width: 100% !important;
    padding: 0.875rem 1.25rem !important;
    background: rgba(236, 236, 236, 0.04) !important;
    border: 1px solid rgba(236, 236, 236, 0.2) !important;
    border-radius: 0.5rem !important;
    color: #ececec !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

#loginform input[type="text"]:focus,
#loginform input[type="password"]:focus {
    background: rgba(236, 236, 236, 0.08) !important;
    border-color: #bd9af8 !important;
    outline: none !important;
}

#loginform label {
    display: block !important;
    margin-bottom: 0.5rem !important;
    color: #ececec !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
}

#loginform .button-primary,
#loginform #wp-submit {
    width: 100% !important;
    padding: 1rem 2rem !important;
    background: linear-gradient(135deg, #6b21a8, #7c3aed) !important;
    border: none !important;
    border-radius: 0.5rem !important;
    color: #ececec !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

#loginform .button-primary:hover,
#loginform #wp-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(107, 33, 168, 0.3) !important;
}

/* Pricing Grid Fixes */
.pricing-grid {
    background: linear-gradient(135deg, rgba(189, 154, 248, 0.05), rgba(189, 154, 248, 0.02)) !important;
    border: 1px solid rgba(189, 154, 248, 0.1) !important;
    border-radius: 1rem !important;
    padding: 2.5rem !important;
    position: relative !important;
}

.pricing-head-detail h3 {
    color: #bd9af8 !important;
    margin-bottom: 0.75rem !important;
}

.pricing-details-wrap {
    margin: 2rem 0 !important;
}

.pricing-item {
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(236, 236, 236, 0.1) !important;
}

.pricing-item.border-none {
    border-bottom: none !important;
}

.pricing-info {
    display: flex !important;
    align-items: center !important;
    color: #ececec !important;
}

.pricing-margin {
    height: 1px !important;
    background: rgba(236, 236, 236, 0.2) !important;
    margin: 2rem 0 !important;
}

/* Responsive Fixes */
@media screen and (max-width: 991px) {
    .w-layout-grid[style*="grid-template-columns: 1.5fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

@media screen and (max-width: 767px) {
    .w-layout-grid[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    .w-layout-grid[style*="grid-template-columns: 1fr 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   SLASH BUTTON STYLES - Home Page Buttons
   ============================================ */

/* Slash Button Base */
.slash-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, sans-serif;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    user-select: none;
}

/* Navbar buttons - fixed width */
.navbar .slash-btn {
    width: 110px;
    height: 40px;
    font-size: 14px;
}

.navbar .slash-btn .slash-btn-content {
    width: 100%;
    height: 100%;
}

.navbar .slash-btn-inverse .slash-btn-content {
    padding-left: 22.6px;
    padding-right: 16px;
}

.navbar .slash-btn:not(.slash-btn-inverse) .slash-btn-content {
    padding-left: 16px;
    padding-right: 22.6px;
}

.slash-btn:focus {
    outline: none;
}

.slash-btn-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-left: 16px;
    padding-right: 22.6px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.slash-btn-content:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 1px;
    border-top-right-radius: 12.6px;
    border-bottom-right-radius: 7.2px;
    transform: translate(-6px) skew(-22deg);
    z-index: -1;
    transition: all 0.1s ease-in-out;
}

.slash-btn-label {
    position: relative;
    z-index: 2;
}

/* White Slash Button */
.slash-btn-white .slash-btn-content:after {
    background: #ffffff;
}

.slash-btn-white:hover .slash-btn-content:after {
    background: rgba(255, 255, 255, 0.9);
}

.slash-btn-white:active .slash-btn-content:after {
    background: rgba(255, 255, 255, 0.8);
}

.slash-btn-white .slash-btn-label {
    color: #000000;
}

/* Gradient Slash Button (Blue/Purple) */
.slash-btn-gradient .slash-btn-content:after {
    background: linear-gradient(75deg, #00bce6, #2962ff 50.31%, #d500f9);
}

.slash-btn-gradient:hover .slash-btn-content:after {
    background: linear-gradient(75deg, #00bce6, #2962ff 50.31%, #d500f9);
    filter: brightness(1.1);
}

.slash-btn-gradient:active .slash-btn-content:after {
    background: linear-gradient(75deg, #00bce6, #2962ff 50.31%, #d500f9);
    filter: brightness(0.9);
}

.slash-btn-gradient .slash-btn-label {
    color: #ffffff;
}

/* Pulse Heartbeat Animation */
@keyframes pulse {
    0%, 100% {
        transform: translate(-6px) skew(-22deg) scale(1);
    }
    50% {
        transform: translate(-6px) skew(-22deg) scale(1.05);
    }
}

@keyframes pulseInverse {
    0%, 100% {
        transform: translate(6px) skew(22deg) scale(1);
    }
    50% {
        transform: translate(6px) skew(22deg) scale(1.05);
    }
}

/* Red Gradient Slash Button (Trading Red) */
.slash-btn-red .slash-btn-content:after {
    background: linear-gradient(135deg, #8b0000 0%, #b71c1c 25%, #d32f2f 50%, #f7525f 75%, #ff6b76 100%);
}

.slash-btn-red:hover .slash-btn-content:after {
    animation: pulse 1.5s ease-in-out infinite;
}

.slash-btn-red:active .slash-btn-content:after {
    animation: none;
    transform: translate(-6px) skew(-22deg) scale(0.95);
}

.slash-btn-red .slash-btn-label {
    color: #ffffff;
}

/* Animated Login Button */
.animated-login-button {
    position: relative;
    cursor: pointer;
    border: none;
    width: 65px;
    height: 32px;
    background: #000;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.animated-login-button .text {
    position: relative;
    z-index: 1;
    font-size: 12px;
    font-weight: 500;
    color: #fff !important;
}

.animated-login-button:hover .text {
    color: #fff !important;
}

.animated-login-button::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at 50% 50%, #0000 0, #0000 20%, #00000066 50%), 
                radial-gradient(ellipse 100% 100%, #fff, #fff0);
    background-size: 3px 3px, auto auto;
    transition: 0.3s;
}

.animated-login-button:hover::before {
    opacity: 0.2;
}

.animated-login-button .a {
    pointer-events: none;
    position: absolute;
    --w: 2px;
    --t: -40px;
    --s: calc(var(--t) * -1);
    --e: calc(100% + var(--t));
    --g: #fff0, #fff3 var(--s), #fffa var(--s), #fff, #fffa var(--e), #fff3 var(--e), #fff0;
}

.animated-login-button .a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(4px) url(#unopaq);
    z-index: -2;
}

.animated-login-button .a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(10px) url(#unopaq);
    opacity: 0;
    z-index: -2;
    transition: 0.3s;
}

.animated-login-button:hover .a::after {
    opacity: 1;
}

.animated-login-button .l {
    left: -2px;
}

.animated-login-button .r {
    right: -2px;
}

.animated-login-button .l,
.animated-login-button .r {
    background: linear-gradient(var(--g));
    top: var(--t);
    bottom: var(--t);
    width: var(--w);
}

.animated-login-button .t {
    top: -2px;
}

.animated-login-button .b {
    bottom: -2px;
}

.animated-login-button .t,
.animated-login-button .b {
    background: linear-gradient(90deg, var(--g));
    left: var(--t);
    right: var(--t);
    height: var(--w);
}

/* Inverse button (for Login) - Slant opposite direction */
.slash-btn-inverse .slash-btn-content {
    padding-left: 22.6px;
    padding-right: 16px;
}

.slash-btn-inverse .slash-btn-content:after {
    transform: translate(6px) skew(22deg);
    border-top-right-radius: 7.2px;
    border-bottom-right-radius: 12.6px;
    border-top-left-radius: 12.6px;
    border-bottom-left-radius: 7.2px;
}

.slash-btn-inverse:hover .slash-btn-content:after {
    animation: pulseInverse 1.5s ease-in-out infinite;
}

.slash-btn-inverse:active .slash-btn-content:after {
    animation: none;
    transform: translate(6px) skew(22deg) scale(0.95);
}

/* ============================================
   STACKED FEATURE CARDS - Home Page
   ============================================ */

.feature-cards-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem auto;
    max-width: 1200px;
    padding: 2rem;
}

.feature-cards-container .notification {
    display: flex;
    flex-direction: column;
    isolation: isolate;
    position: relative;
    width: 22rem;
    min-height: 14rem;
    background: rgba(255, 255, 255, .015);
    border-radius: 1rem;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    --gradient: linear-gradient(to bottom, #2eadff, #3d83ff, #7e61ff);
    --color: #32a6ff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05), 0px 8px 15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding-top: 3.5rem;
}

.feature-cards-container .notification:before {
    position: absolute;
    content: "";
    inset: 0.0625rem;
    border-radius: 0.9375rem;
    background: #08060f;
    z-index: 2;
}

.feature-cards-container .notification:after {
    position: absolute;
    content: "";
    width: 0.3rem;
    inset: 0.75rem auto 0.75rem 0.6rem;
    border-radius: 0.15rem;
    background: var(--gradient);
    transition: transform 300ms ease;
    z-index: 4;
}

.feature-cards-container .notification:hover {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.04), 0px 15px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.feature-cards-container .notification:hover:after {
    transform: translateX(0.2rem);
}

.feature-cards-container .notititle {
    color: var(--color);
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 18px;
    transition: transform 300ms ease;
    z-index: 5;
    line-height: 1.5;
}

.feature-cards-container .notification:hover .notititle {
    transform: translateX(0.2rem);
}

.feature-cards-container .notibody {
    color: #A1A1AA;
    padding: 0 1.5rem 1rem 1.5rem;
    transition: transform 300ms ease;
    z-index: 5;
    font-size: 15px;
    line-height: 1.7;
}

.feature-cards-container .notification:hover .notibody {
    transform: translateX(0.3rem);
}

.feature-cards-container .notiglow,
.feature-cards-container .notiborderglow {
    position: absolute;
    width: 20rem;
    height: 20rem;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle closest-side at center, white, transparent);
    opacity: 0;
    transition: opacity 300ms ease;
}

.feature-cards-container .notiglow {
    z-index: 3;
}

.feature-cards-container .notiborderglow {
    z-index: 1;
}

.feature-cards-container .notification:hover .notiglow {
    opacity: 0.1;
}

.feature-cards-container .notification:hover .notiborderglow {
    opacity: 0.1;
}

@media screen and (max-width: 768px) {
    .feature-cards-container {
        gap: 15px;
        padding: 0 1rem;
    }
    
    .feature-cards-container .card {
        width: 170px;
        height: 230px;
    }
    
    .feature-cards-container .card::before {
        width: 180px;
        height: 240px;
    }
}

/* ============================================
   HOME PAGE - HOW IT WORKS CARDS (New Design)
   ============================================ */

.home-how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 32px;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.home-how-it-works-card {
    background-color: rgba(255, 255, 255, .015);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05), 0px 8px 15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 60px 24px 24px 24px;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    transition: box-shadow .25s;
    overflow: hidden;
    min-height: 200px;
}

.home-how-it-works-card .icon {
    z-index: 2;
    position: relative;
    display: table;
    padding: 6px;
    margin-bottom: 8px;
}

.home-how-it-works-card .icon::after {
    content: '';
    position: absolute;
    inset: 3.5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
    transition: background-color .25s, border-color .25s;
}

.home-how-it-works-card .icon svg,
.home-how-it-works-card .icon img {
    position: relative;
    z-index: 1;
    display: block;
    width: 20px;
    height: 20px;
    transform: translateZ(0);
    color: #D4D4D8;
    transition: color .25s, filter .25s;
}

.home-how-it-works-card h4 {
    z-index: 2;
    position: relative;
    margin: 0 0 10px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
    color: #FFFFFF;
}

.home-how-it-works-card p {
    z-index: 2;
    position: relative;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #A1A1AA;
}

.home-how-it-works-card .shine {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transition: opacity .5s;
}

.home-how-it-works-card .shine::before {
    content: '';
    width: 150%;
    padding-bottom: 150%;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 55%;
    filter: blur(35px);
    opacity: 0.1;
    transform: translateX(-50%);
    background-image: conic-gradient(from 205deg at 50% 50%, rgba(16, 185, 129, 0) 0deg, #10B981 25deg, rgba(52, 211, 153, 0.18) 295deg, rgba(16, 185, 129, 0) 360deg);
}

.home-how-it-works-card .background {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
    mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
}

.home-how-it-works-card:hover {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.04), 0px 15px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.home-how-it-works-card:hover .icon::after {
    background-color: rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.2);
}

.home-how-it-works-card:hover .icon svg,
.home-how-it-works-card:hover .icon img {
    color: #34D399;
    filter: brightness(1.2);
}

.home-how-it-works-card:hover .shine {
    opacity: 1;
    transition-duration: .5s;
    transition-delay: 0s;
}

.home-how-it-works-card:hover .tiles {
    opacity: 1;
    transition-delay: .25s;
}

.home-how-it-works-card:hover .tile {
    animation-name: tile;
}

.home-how-it-works-card:hover .line {
    opacity: 1;
    transition-duration: .15s;
}

.home-how-it-works-card:hover .line::before {
    transform: scaleX(1);
}

.home-how-it-works-card:hover .line::after {
    transform: scaleY(1);
}

.home-how-it-works-card:hover .line.line-1::before,
.home-how-it-works-card:hover .line.line-1::after {
    transition-delay: 0s;
}

.home-how-it-works-card:hover .line.line-2::before,
.home-how-it-works-card:hover .line.line-2::after {
    transition-delay: .15s;
}

.home-how-it-works-card:hover .line.line-3::before,
.home-how-it-works-card:hover .line.line-3::after {
    transition-delay: .3s;
}

/* Tiles for home-how-it-works-card */
.home-how-it-works-card .tiles {
    opacity: 0;
    transition: opacity .25s;
}

.home-how-it-works-card .tile {
    position: absolute;
    background-color: rgba(16, 185, 129, 0.05);
    animation-duration: 8s;
    animation-iteration-count: infinite;
    opacity: 0;
}

.home-how-it-works-card .tile.tile-4,
.home-how-it-works-card .tile.tile-6,
.home-how-it-works-card .tile.tile-10 {
    animation-delay: -2s;
}

.home-how-it-works-card .tile.tile-3,
.home-how-it-works-card .tile.tile-5,
.home-how-it-works-card .tile.tile-8 {
    animation-delay: -4s;
}

.home-how-it-works-card .tile.tile-2,
.home-how-it-works-card .tile.tile-9 {
    animation-delay: -6s;
}

.home-how-it-works-card .tile.tile-1 {
    top: 0;
    left: 0;
    height: 10%;
    width: 22.5%;
}

.home-how-it-works-card .tile.tile-2 {
    top: 0;
    left: 22.5%;
    height: 10%;
    width: 27.5%;
}

.home-how-it-works-card .tile.tile-3 {
    top: 0;
    left: 50%;
    height: 10%;
    width: 27.5%;
}

.home-how-it-works-card .tile.tile-4 {
    top: 0;
    left: 77.5%;
    height: 10%;
    width: 22.5%;
}

.home-how-it-works-card .tile.tile-5 {
    top: 10%;
    left: 0;
    height: 22.5%;
    width: 22.5%;
}

.home-how-it-works-card .tile.tile-6 {
    top: 10%;
    left: 22.5%;
    height: 22.5%;
    width: 27.5%;
}

.home-how-it-works-card .tile.tile-7 {
    top: 10%;
    left: 50%;
    height: 22.5%;
    width: 27.5%;
}

.home-how-it-works-card .tile.tile-8 {
    top: 10%;
    left: 77.5%;
    height: 22.5%;
    width: 22.5%;
}

.home-how-it-works-card .tile.tile-9 {
    top: 32.5%;
    left: 50%;
    height: 22.5%;
    width: 27.5%;
}

.home-how-it-works-card .tile.tile-10 {
    top: 32.5%;
    left: 77.5%;
    height: 22.5%;
    width: 22.5%;
}

/* Lines for home-how-it-works-card */
.home-how-it-works-card .line {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .35s;
}

.home-how-it-works-card .line::before,
.home-how-it-works-card .line::after {
    content: '';
    position: absolute;
    background-color: #2A2B2C;
    transition: transform .35s;
}

.home-how-it-works-card .line::before {
    left: 0;
    right: 0;
    height: 1px;
    transform-origin: 0 50%;
    transform: scaleX(0);
}

.home-how-it-works-card .line::after {
    top: 0;
    bottom: 0;
    width: 1px;
    transform-origin: 50% 0;
    transform: scaleY(0);
}

.home-how-it-works-card .line.line-1::before {
    top: 10%;
}

.home-how-it-works-card .line.line-1::after {
    left: 22.5%;
}

.home-how-it-works-card .line.line-1::before,
.home-how-it-works-card .line.line-1::after {
    transition-delay: .3s;
}

.home-how-it-works-card .line.line-2::before {
    top: 32.5%;
}

.home-how-it-works-card .line.line-2::after {
    left: 50%;
}

.home-how-it-works-card .line.line-2::before,
.home-how-it-works-card .line.line-2::after {
    transition-delay: .15s;
}

.home-how-it-works-card .line.line-3::before {
    top: 55%;
}

.home-how-it-works-card .line.line-3::after {
    right: 22.5%;
}

/* Responsive */
@media screen and (max-width: 767px) {
    .home-how-it-works-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}


/* ============================================
   HOME PAGE - HOW IT WORKS SECTION CARDS
   ============================================ */

.how-it-works-cards {
    position: relative;
    height: 420px;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.how-it-works-cards .work-card {
    display: flex !important;
    height: 380px !important;
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    background: #08060f !important;
    background-color: #08060f !important;
    border-radius: 10px !important;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05), 0px 8px 15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    transition: 0.4s ease-out !important;
    position: relative !important;
    left: 0px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
}

.how-it-works-cards .work-card:not(:first-child) {
    margin-left: -50px !important;
}

.how-it-works-cards .work-card:hover {
    transform: translateY(-20px) !important;
    transition: 0.4s ease-out !important;
    z-index: 10 !important;
}

.how-it-works-cards .work-card:hover ~ .work-card {
    position: relative !important;
    left: 50px !important;
    transition: 0.4s ease-out !important;
}

.how-it-works-cards .title {
    color: #FFFFFF !important;
    font-weight: 600 !important;
    position: absolute;
    left: 20px;
    top: 25px;
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
}

.how-it-works-cards .subtitle {
    color: #A1A1AA !important;
    font-weight: 300 !important;
    position: absolute;
    left: 20px;
    top: 190px;
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    text-align: left;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
}

.how-it-works-cards .step-number {
    position: absolute !important;
    bottom: 20px !important;
    left: 20px !important;
    font-size: 5rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    color: rgba(255, 255, 255, 0.015) !important;
    z-index: 0 !important;
    pointer-events: none !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
}

.how-it-works-cards .bar {
    position: absolute;
    top: 130px;
    left: 20px;
    height: 5px;
    width: 230px;
}

.how-it-works-cards .emptybar {
    background-color: #2e3033;
    width: 100%;
    height: 100%;
}

.how-it-works-cards .filledbar {
    position: absolute;
    top: 0px;
    z-index: 3;
    width: 0px;
    height: 100%;
    background: rgb(0,154,217);
    background: linear-gradient(90deg, rgba(0,154,217,1) 0%, rgba(217,147,0,1) 65%, rgba(255,186,0,1) 100%);
    transition: 0.6s ease-out;
}

.how-it-works-cards .work-card:hover .filledbar {
    width: 200px;
    transition: 0.4s ease-out;
}

/* Desktop view - ensure cards display properly */
@media screen and (min-width: 769px) {
    .how-it-works-cards {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        overflow: visible !important;
    }
    
    .how-it-works-cards .work-card {
        width: 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
        height: 380px !important;
        flex-shrink: 0 !important;
    }
}

/* Mobile phones only */
@media screen and (max-width: 768px) {
    .how-it-works-cards {
        flex-wrap: wrap;
        height: auto;
        width: 100%;
        gap: 1rem;
    }
    
    .how-it-works-cards .work-card {
        width: 100% !important;
        max-width: 320px !important;
        height: 320px !important;
        margin: 0 auto !important;
    }
    
    .how-it-works-cards .work-card:not(:first-child) {
        margin-left: 0 !important;
        margin-top: 0 !important;
    }
    
    .how-it-works-cards .work-card:hover {
        transform: none !important;
    }
    
    .how-it-works-cards .work-card:hover ~ .work-card {
        left: 0 !important;
    }
}


/* Animated Gradient Button */
.feature-cards-container + .btn-wrapper {
    text-align: center;
    margin: 2rem auto;
}

.btn {
    --border-color: linear-gradient(-45deg, #2eadff, #3d83ff, #7e61ff);
    --border-width: 0.125em;
    --curve-size: 0.5em;
    --blur: 30px;
    --bg: #080312;
    --color: #ffffff;
    color: var(--color);
    cursor: pointer;
    position: relative;
    isolation: isolate;
    display: inline-grid;
    place-content: center;
    padding: 0.5em 1.5em;
    font-size: 14px;
    border: 0;
    text-transform: uppercase;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
    clip-path: polygon(
        0% var(--curve-size),
        var(--curve-size) 0,
        100% 0,
        100% calc(100% - var(--curve-size)),
        calc(100% - var(--curve-size)) 100%,
        0 100%
    );
    transition: color 250ms;
    text-decoration: none;
}

.btn::after,
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
}

.btn::before {
    background: var(--border-color);
    background-size: 300% 300%;
    animation: move-bg7234 5s ease infinite;
    z-index: -2;
}

@keyframes move-bg7234 {
    0% {
        background-position: 31% 0%;
    }
    50% {
        background-position: 70% 100%;
    }
    100% {
        background-position: 31% 0%;
    }
}

.btn::after {
    background: var(--bg);
    z-index: -1;
    clip-path: polygon(
        var(--border-width) calc(var(--curve-size) + var(--border-width) * 0.5),
        calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width),
        calc(100% - var(--border-width)) var(--border-width),
        calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
        calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width)),
        var(--border-width) calc(100% - var(--border-width))
    );
    transition: clip-path 500ms;
}

.btn:where(:hover, :focus)::after {
    clip-path: polygon(
        calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
        calc(100% - var(--border-width)) var(--border-width),
        calc(100% - var(--border-width)) var(--border-width),
        calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
        calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width)),
        calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width))
    );
    transition: 200ms;
}

.btn:where(:hover, :focus) {
    color: #000 !important;
}


/* Platforms Container - 4 in One Line */
.platforms-container {
    padding: 3rem 2rem;
    margin: 3rem auto;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    background: transparent;
    border: none;
}

.platform-item:hover {
    transform: translateY(-5px);
}

.platform-item.coming-soon {
    opacity: 0.7;
}

.platform-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    background: transparent !important;
    border: none !important;
    outline: none;
    display: block;
    box-shadow: none !important;
}

.platform-item h6 {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    white-space: nowrap;
}

/* Eclipse Animation for Badges */
@keyframes eclipse {
    0% {
        transform: translateX(110%);
    }
    100% {
        transform: translateX(-110%);
    }
}

.platform-badge {
    display: inline-block;
    margin-top: 0.75rem;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.platform-badge .badge-glow {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    overflow: hidden;
    filter: blur(2px);
}

.platform-badge .eclipse {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    transform: translateX(50%);
    filter: blur(2px);
    animation: eclipse 3s linear infinite;
    z-index: -1;
}

.platform-badge .eclipse.glow {
    background-image: radial-gradient(circle at 50% 50%, transparent, black), linear-gradient(white, white);
}

.platform-badge .badge-content {
    position: relative;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: white;
    font-weight: 300;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.platform-badge .badge-inner {
    margin: 2px;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.95);
    white-space: nowrap;
}

/* Coming Soon Badge - Red/White */
.platform-badge .eclipse {
    background: #ef4444;
}

/* Supported Badge - Green */
.platform-badge.supported .eclipse {
    background: #22c55e;
}

@media (max-width: 768px) {
    .platforms-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
}


/* ============================================
   HOME PAGE SECTION SPACING OVERRIDES - AGGRESSIVE
   ============================================ */

/* CRITICAL: Balanced section padding for ALL screen sizes */
.page-template-page-home .padding-section-large,
body.page-template-page-home .padding-section-large,
.page-template-page-home section.padding-section-large {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Section title spacing for home page */
.page-template-page-home .section-title-wrap {
    margin-bottom: 3rem !important;
}

.page-template-page-home .margin-bottom {
    margin-bottom: 0.5rem !important;
}

.page-template-page-home .margin-top {
    margin-top: 0.5rem !important;
}

.page-template-page-home .margin-xsmall {
    margin: 0.5rem !important;
}

.page-template-page-home .margin-small {
    margin: 0.75rem !important;
}

.page-template-page-home .margin-medium {
    margin: 1rem !important;
}

.page-template-page-home .btn-wrapper {
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
}

.page-template-page-home .feature-cards-container {
    margin-bottom: 1.5rem !important;
}

.page-template-page-home .platforms-container {
    margin-bottom: 0 !important;
}

.page-template-page-home .how-it-works-cards {
    margin-bottom: 1rem !important;
}

.page-template-page-home .pricing {
    margin-bottom: 0 !important;
}

.page-template-page-home .cta-component {
    padding: 2rem !important;
}

/* Desktop - Keep same balanced spacing */
@media screen and (min-width: 768px) {
    .page-template-page-home .padding-section-large,
    body.page-template-page-home .padding-section-large,
    .page-template-page-home section.padding-section-large {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .page-template-page-home .section-title-wrap {
        margin-bottom: 3rem !important;
    }
}

/* Large Desktop - Still balanced spacing */
@media screen and (min-width: 1024px) {
    .page-template-page-home .padding-section-large,
    body.page-template-page-home .padding-section-large,
    .page-template-page-home section.padding-section-large {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .page-template-page-home .section-title-wrap {
        margin-bottom: 3rem !important;
    }
}

/* APPLY SAME BALANCED SPACING TO ALL OTHER PAGES */
/* Section title spacing for all pages */
.page-template-page-how-it-works .section-title-wrap,
.page-template-page-service-levels .section-title-wrap,
.page-template-page-faq .section-title-wrap {
    margin-bottom: 3rem !important;
}
/* How It Works Page */
.page-template-page-how-it-works .padding-section-large,
body.page-template-page-how-it-works .padding-section-large,
.page-template-page-how-it-works section.padding-section-large {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Service Levels Page */
.page-template-page-service-levels .padding-section-large,
body.page-template-page-service-levels .padding-section-large,
.page-template-page-service-levels section.padding-section-large {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* FAQ Page */
.page-template-page-faq .padding-section-large,
body.page-template-page-faq .padding-section-large,
.page-template-page-faq section.padding-section-large {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Contact Page */
.page-template-page-contact .padding-section-large,
body.page-template-page-contact .padding-section-large,
.page-template-page-contact section.padding-section-large {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Template Pages - Account Dashboard, Trading Dashboard, Accounts List */
.page-template-template-account-dashboard .padding-section-large,
body.page-template-template-account-dashboard .padding-section-large,
.page-template-template-account-dashboard section.padding-section-large,
.page-template-template-trading-dashboard .padding-section-large,
body.page-template-template-trading-dashboard .padding-section-large,
.page-template-template-trading-dashboard section.padding-section-large,
.page-template-template-accounts-list .padding-section-large,
body.page-template-template-accounts-list .padding-section-large,
.page-template-template-accounts-list section.padding-section-large {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* PMPro Pages - Levels, Billing, Cancel, Confirmation, Invoice, Member Profile, Orders */
body.pmpro-levels .padding-section-large,
body.pmpro-billing .padding-section-large,
body.pmpro-cancel .padding-section-large,
body.pmpro-confirmation .padding-section-large,
body.pmpro-invoice .padding-section-large,
body.pmpro-member-profile-edit .padding-section-large,
body.pmpro-membership-orders .padding-section-large,
body.pmpro-account .padding-section-large {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Page Header - Add padding to prevent font clipping */
section[style*="padding: 8rem 0 0"] h1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* Desktop - Keep same balanced spacing for all pages */
@media screen and (min-width: 768px) {
    .page-template-page-how-it-works .padding-section-large,
    body.page-template-page-how-it-works .padding-section-large,
    .page-template-page-how-it-works section.padding-section-large,
    .page-template-page-service-levels .padding-section-large,
    body.page-template-page-service-levels .padding-section-large,
    .page-template-page-service-levels section.padding-section-large,
    .page-template-page-faq .padding-section-large,
    body.page-template-page-faq .padding-section-large,
    .page-template-page-faq section.padding-section-large,
    .page-template-page-contact .padding-section-large,
    body.page-template-page-contact .padding-section-large,
    .page-template-page-contact section.padding-section-large,
    .page-template-template-account-dashboard .padding-section-large,
    body.page-template-template-account-dashboard .padding-section-large,
    .page-template-template-account-dashboard section.padding-section-large,
    .page-template-template-trading-dashboard .padding-section-large,
    body.page-template-template-trading-dashboard .padding-section-large,
    .page-template-template-trading-dashboard section.padding-section-large,
    .page-template-template-accounts-list .padding-section-large,
    body.page-template-template-accounts-list .padding-section-large,
    .page-template-template-accounts-list section.padding-section-large {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .page-template-page-how-it-works .section-title-wrap,
    .page-template-page-service-levels .section-title-wrap,
    .page-template-page-faq .section-title-wrap {
        margin-bottom: 3rem !important;
    }
}

/* Large Desktop - Still balanced spacing for all pages */
@media screen and (min-width: 1024px) {
    .page-template-page-how-it-works .padding-section-large,
    body.page-template-page-how-it-works .padding-section-large,
    .page-template-page-how-it-works section.padding-section-large,
    .page-template-page-service-levels .padding-section-large,
    body.page-template-page-service-levels .padding-section-large,
    .page-template-page-service-levels section.padding-section-large,
    .page-template-page-faq .padding-section-large,
    body.page-template-page-faq .padding-section-large,
    .page-template-page-faq section.padding-section-large,
    .page-template-page-contact .padding-section-large,
    body.page-template-page-contact .padding-section-large,
    .page-template-page-contact section.padding-section-large,
    .page-template-template-account-dashboard .padding-section-large,
    body.page-template-template-account-dashboard .padding-section-large,
    .page-template-template-account-dashboard section.padding-section-large,
    .page-template-template-trading-dashboard .padding-section-large,
    body.page-template-template-trading-dashboard .padding-section-large,
    .page-template-template-trading-dashboard section.padding-section-large,
    .page-template-template-accounts-list .padding-section-large,
    body.page-template-template-accounts-list .padding-section-large,
    .page-template-template-accounts-list section.padding-section-large,
    body.pmpro-levels .padding-section-large,
    body.pmpro-billing .padding-section-large,
    body.pmpro-cancel .padding-section-large,
    body.pmpro-confirmation .padding-section-large,
    body.pmpro-invoice .padding-section-large,
    body.pmpro-member-profile-edit .padding-section-large,
    body.pmpro-membership-orders .padding-section-large,
    body.pmpro-account .padding-section-large {
        padding-top: 3rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .page-template-page-home .section-title-wrap {
        margin-bottom: 2rem !important;
    }
    
    .page-template-page-home .btn-wrapper {
        margin-top: 1.5rem !important;
    }
    
    .page-template-page-home .cta-component {
        padding: 2.5rem !important;
    }
}


/* ============================================
   PMPRO ACCOUNT PAGE SPECIFIC OVERRIDES
   ============================================ */

/* Force Account Page Cards to Display Properly */
.pmpro-account-page .cards {
    background: rgba(255, 255, 255, .015) !important;
    border-radius: 15px !important;
    min-height: 200px !important;
    padding: 24px !important;
    margin-bottom: 1.5rem !important;
}

.pmpro-account-page .cards h5 {
    font-size: 18px !important;
    line-height: 1.4 !important;
    margin: 12px 0 8px 0 !important;
}

.pmpro-account-page .cards p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin: 0 0 8px 0 !important;
}

/* Account Page Tab Buttons */
.account-tab {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

/* Account Page Headings */
.pmpro-account-page h4 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
    margin-bottom: 2rem !important;
}


/* ============================================
   MOBILE NAV BUTTONS FOR LOGGED-IN USERS
   ============================================ */

/* Hide on desktop */
.mobile-nav-buttons {
    display: none;
}

/* Show on mobile for logged-in users */
@media screen and (max-width: 991px) {
    .mobile-nav-buttons {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-left: auto;
        margin-right: 10px;
    }
    
    .mobile-nav-btn {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 8px 12px;
        background: rgba(124, 58, 237, 0.15);
        border: 1px solid rgba(124, 58, 237, 0.4);
        border-radius: 20px;
        color: #bd9af8;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .mobile-nav-btn:hover,
    .mobile-nav-btn:active {
        background: rgba(124, 58, 237, 0.3);
        color: #fff;
        transform: scale(1.02);
    }
    
    .mobile-nav-btn svg {
        flex-shrink: 0;
    }
    
    /* Adjust logout button position when mobile nav buttons are present */
    .logged-in .button-group {
        margin-left: 0;
    }
}

/* Extra small screens - stack or smaller buttons */
@media screen and (max-width: 480px) {
    .mobile-nav-buttons {
        gap: 5px;
    }
    
    .mobile-nav-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .mobile-nav-btn span {
        display: none;
    }
    
    .mobile-nav-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   MOBILE SECONDARY NAVBAR (Logged-in Users)
   ============================================ */
.mobile-secondary-navbar {
    display: none;
}

@media (max-width: 767px) {
    /* HIDE main navbar for logged-in users on mobile phones only */
    body.logged-in .navbar {
        display: none !important;
    }
    
    /* Show secondary navbar at TOP for logged-in users */
    .mobile-secondary-navbar {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(15, 10, 30, 0.98) 0%, rgba(25, 15, 45, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(124, 58, 237, 0.3);
        z-index: 1000;
        padding: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .secondary-nav-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        max-width: 100%;
        padding: 12px 10px;
        padding-top: 15px;
    }
    
    .secondary-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 8px 12px;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 11px;
        font-weight: 500;
        border-radius: 10px;
        transition: all 0.3s ease;
        gap: 4px;
        min-width: 65px;
    }
    
    .secondary-nav-item svg {
        width: 22px;
        height: 22px;
        stroke-width: 1.8;
        transition: all 0.3s ease;
    }
    
    .secondary-nav-item span {
        white-space: nowrap;
    }
    
    .secondary-nav-item:hover,
    .secondary-nav-item:active {
        color: #fff;
        background: rgba(124, 58, 237, 0.2);
    }
    
    .secondary-nav-item.active {
        color: #a78bfa;
        background: rgba(124, 58, 237, 0.15);
    }
    
    .secondary-nav-item.active svg {
        stroke: #a78bfa;
    }
    
    .secondary-nav-item.logout-item {
        color: rgba(239, 68, 68, 0.8);
    }
    
    .secondary-nav-item.logout-item:hover,
    .secondary-nav-item.logout-item:active {
        color: #ef4444;
        background: rgba(239, 68, 68, 0.15);
    }
    
    .secondary-nav-item.logout-item svg {
        stroke: currentColor;
    }
    
    /* Adjust body padding for logged-in users - only secondary navbar height */
    body.logged-in {
        padding-top: 70px !important;
    }
}

@media (max-width: 480px) {
    .secondary-nav-container {
        padding: 10px 5px;
        padding-top: 12px;
    }
    
    .secondary-nav-item {
        padding: 6px 8px;
        font-size: 10px;
        min-width: 55px;
    }
    
    .secondary-nav-item svg {
        width: 20px;
        height: 20px;
    }
    
    body.logged-in {
        padding-top: 65px !important;
    }
}

/* Admin bar adjustments for secondary navbar - mobile phones only */
@media (max-width: 767px) {
    .admin-bar .mobile-secondary-navbar {
        top: 32px;
    }
    
    body.admin-bar.logged-in {
        padding-top: 102px !important;
    }
}

@media (max-width: 782px) {
    .admin-bar .mobile-secondary-navbar {
        top: 46px;
    }
    
    body.admin-bar.logged-in {
        padding-top: 116px !important;
    }
}

@media (max-width: 480px) {
    .admin-bar .mobile-secondary-navbar {
        top: 46px;
    }
    
    body.admin-bar.logged-in {
        padding-top: 111px !important;
    }
}


/* ============================================
   MOBILE NAVBAR FIX - BUTTONS RIGHT CORNER
   ============================================ */

/* Desktop: Hide spacer */
.navbar-spacer {
    display: none !important;
}

/* Mobile phones only - Tablet shows desktop view */
@media screen and (max-width: 767px) {
    /* Navbar container - relative for absolute positioning */
    .navbar .navbar-container {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        position: relative !important;
    }
    
    /* Logo stays its size */
    .navbar .navbar-container .navbar-logo-wrap,
    .navbar-container > .navbar-logo-wrap {
        flex: 0 0 auto !important;
    }
    
    /* Hide spacer - not needed with absolute positioning */
    .navbar-spacer {
        display: none !important;
    }
    
    /* Buttons - FORCE absolute position to right corner using ID */
    #mobile-cta-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        position: absolute !important;
        right: 8px !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media screen and (max-width: 479px) {
    #mobile-cta-buttons {
        gap: 6px !important;
        right: 5px !important;
    }
}
