/* CSS for Landing Page */
:root {
    --primary: #ff9000;
    --primary-dark: #e67e00;
    --primary-light: #ffa733;
    --secondary: #1a1a2e;
    --accent: #00d1b2;
    --accent-dark: #00b39e;
    --dark: #16213e;
    --light: #f8f9fa;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --text-dark: #333;
    --text-light: #fff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, .16);
    --transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    /* Fix for 100vh issue on iOS */
    .hero-section, 
    [data-v-7b3cab25] .hero-section,
    .sticky-container,
    [data-v-71684993] .sticky-container {
        height: -webkit-fill-available;
    }
    
    /* Fix for backdrop-filter on iOS */
    .header,
    .box.glassy,
    [data-v-266c9379] .header {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.98); /* Fallback */
    }
    
    /* Fix for sticky positioning on iOS */
    .sticky-container.is-pinned,
    [data-v-71684993] .sticky-container.is-pinned {
        position: -webkit-sticky;
        position: sticky;
    }
    
    /* Fix for smooth scrolling on iOS */
    html {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }
    
    /* Fix for fixed positioning issues on iOS */
    .fixed-top-wrapper,
    .header {
        position: -webkit-sticky;
        position: sticky;
    }
    
    /* Fix for 3D transforms on iOS */
    .hero-image img,
    .card-3d,
    [data-v-f7534374] .card-3d {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
    
    /* Fix for gradient performance on iOS */
    .bg-primary,
    .hero-section,
    [data-v-887cbdfe] .hero-section,
    [data-v-f7534374] .hero-section,
    [data-v-7b3cab25] .hero-section {
        background: -webkit-linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    }
}

/* Final static landing overrides: keep these after duplicated compiled blocks. */
.megamenu {
    padding: 22px;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .12);
    margin-top: 12px;
}

.dropdown-item {
    padding: 12px 16px;
    border-radius: 10px;
    white-space: normal;
}

.dropdown-item:hover {
    background-color: rgba(255, 144, 0, .08);
}

.icon-box {
    width: 40px;
    min-width: 40px;
    height: 40px;
    background: rgba(255, 144, 0, .1);
    color: var(--primary);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dropdown-item:hover .icon-box {
    background: var(--primary);
    color: #fff;
}

.disabled-link {
    cursor: not-allowed;
    opacity: .65;
}

@media(min-width: 992px) {
    .has-megamenu .megamenu {
        min-width: 450px;
    }
}

.trustpilot-section {
    padding-top: 60px;
    padding-bottom: 36px;
}

.trustpilot-section + .section {
    padding-top: 44px;
}

.trustpilot-section .text-center {
    margin-bottom: 1.5rem !important;
}

.trustpilot-widget {
    min-height: 120px;
    margin: 0 !important;
    padding: 0 !important;
}

.scroll-to-top {
    position: fixed;
    right: 22px;
    bottom: 24px;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 8px 22px rgba(255, 144, 0, .34);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    z-index: 1040;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-modal {
    position: fixed;
    left: 24px;
    right: auto;
    bottom: 24px;
    max-width: 420px;
    background: #171724;
    color: #fff;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-left: 5px solid var(--primary);
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
    z-index: 1050;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.cookie-modal .cookie-icon {
    margin-bottom: 0;
    color: var(--primary);
}

.cookie-text h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.cookie-text p {
    color: rgba(255, 255, 255, .78);
    font-size: .9rem;
    margin-bottom: 0;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 1055;
}

.sheet-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.device-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -16px 40px rgba(0, 0, 0, .18);
    padding: 18px 18px calc(20px + env(safe-area-inset-bottom));
    transform: translateY(105%);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1);
    z-index: 1060;
}

.device-sheet.show {
    transform: translateY(0);
}

.sheet-handle {
    width: 48px;
    height: 5px;
    border-radius: 99px;
    background: #d7dbe0;
    margin: 0 auto 16px;
}

.sheet-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f1f3f5;
    color: var(--secondary);
}

.sheet-content {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.device-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 144, 0, .12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.sheet-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.sheet-content p {
    color: #5d6470;
    margin-bottom: 16px;
}

.sheet-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.feature-card,
.card-product {
    border-radius: 12px;
}

@media(max-width: 991.98px) {
    .navbar-collapse {
        max-height: calc(100vh - 88px);
        overflow-y: auto;
        padding: 12px 0 18px;
    }

    .navbar-nav .dropdown-menu {
        position: static;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, .06);
        margin: 8px 0 12px;
    }
}

@media(max-width: 767.98px) {
    section,
    .section {
        padding: 56px 0;
    }

    .trustpilot-section {
        padding-top: 44px;
        padding-bottom: 22px;
    }

    .trustpilot-section + .section {
        padding-top: 34px;
    }

    .feature-card,
    .card-product {
        margin-bottom: 18px;
    }

    .feature-card {
        padding: 26px 20px;
    }

    .card-product-img {
        height: 170px;
    }

    .card-product-body {
        padding: 20px;
    }

    .cookie-modal {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
    }

    .cookie-content {
        align-items: flex-start;
    }

    .sheet-actions {
        flex-direction: column;
    }

    .sheet-actions .btn {
        width: 100%;
    }
}

/* Static landing page fixes */
.megamenu {
    padding: 22px;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .12);
    margin-top: 12px;
}

.dropdown-item {
    padding: 12px 16px;
    border-radius: 10px;
    white-space: normal;
}

.dropdown-item:hover {
    background-color: rgba(255, 144, 0, .08);
}

.icon-box {
    width: 40px;
    min-width: 40px;
    height: 40px;
    background: rgba(255, 144, 0, .1);
    color: var(--primary);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dropdown-item:hover .icon-box {
    background: var(--primary);
    color: #fff;
}

.disabled-link {
    cursor: not-allowed;
    opacity: .65;
}

@media(min-width: 992px) {
    .has-megamenu .megamenu {
        min-width: 450px;
    }
}

.trustpilot-section {
    padding-top: 60px;
    padding-bottom: 36px;
}

.trustpilot-section + .section {
    padding-top: 44px;
}

.trustpilot-section .text-center {
    margin-bottom: 1.5rem !important;
}

.trustpilot-widget {
    min-height: 120px;
    margin: 0;
    padding: 0;
}

.scroll-to-top {
    position: fixed;
    right: 22px;
    bottom: 24px;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 8px 22px rgba(255, 144, 0, .34);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    z-index: 1040;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-modal {
    position: fixed;
    left: 24px;
    right: auto;
    bottom: 24px;
    max-width: 420px;
    background: #171724;
    color: #fff;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-left: 5px solid var(--primary);
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
    z-index: 1050;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.cookie-modal .cookie-icon {
    margin-bottom: 0;
    color: var(--primary);
}

.cookie-text h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.cookie-text p {
    color: rgba(255, 255, 255, .78);
    font-size: .9rem;
    margin-bottom: 0;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 1055;
}

.sheet-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.device-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -16px 40px rgba(0, 0, 0, .18);
    padding: 18px 18px calc(20px + env(safe-area-inset-bottom));
    transform: translateY(105%);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1);
    z-index: 1060;
}

.device-sheet.show {
    transform: translateY(0);
}

.sheet-handle {
    width: 48px;
    height: 5px;
    border-radius: 99px;
    background: #d7dbe0;
    margin: 0 auto 16px;
}

.sheet-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f1f3f5;
    color: var(--secondary);
}

.sheet-content {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.device-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 144, 0, .12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.sheet-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.sheet-content p {
    color: #5d6470;
    margin-bottom: 16px;
}

.sheet-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.feature-card,
.card-product {
    border-radius: 12px;
}

@media(max-width: 991.98px) {
    .navbar-collapse {
        max-height: calc(100vh - 88px);
        overflow-y: auto;
        padding: 12px 0 18px;
    }

    .navbar-nav .dropdown-menu {
        position: static;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, .06);
        margin: 8px 0 12px;
    }
}

@media(max-width: 767.98px) {
    section,
    .section {
        padding: 56px 0;
    }

    .trustpilot-section {
        padding-top: 44px;
        padding-bottom: 22px;
    }

    .trustpilot-section + .section {
        padding-top: 34px;
    }

    .feature-card,
    .card-product {
        margin-bottom: 18px;
    }

    .feature-card {
        padding: 26px 20px;
    }

    .card-product-img {
        height: 170px;
    }

    .card-product-body {
        padding: 20px;
    }

    .cookie-modal {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
    }

    .cookie-content {
        align-items: flex-start;
    }

    .sheet-actions {
        flex-direction: column;
    }

    .sheet-actions .btn {
        width: 100%;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on iOS */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling on iOS */
}

body {
    font-family: Poppins, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    background-color: var(--light);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
    padding-top: 10px;
    /* Improve font rendering on iOS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary);
}

p {
    margin-bottom: 1.5rem;
    color: #555;
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: var(--primary);
    -webkit-touch-callout: none; /* Disable callout on iOS */
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Prevent image flicker on iOS */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-sm {
    padding: 60px 0;
}

.section-md {
    padding: 80px 0;
}

.bg-primary {
    background: var(--gradient) !important;
    color: #fff;
}

.bg-secondary {
    background-color: var(--secondary) !important;
    color: #fff;
}

.bg-light {
    background-color: var(--light) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
    color: #fff;
}

.text-primary {
    color: var(--primary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.btn {
    padding: .75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* iOS touch improvements */
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    -webkit-touch-callout: none;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 10px 20px #ff90004d;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px #ff900066;
    color: #fff;
}

.btn-primary:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover:before {
    opacity: 1;
}

.btn-accent {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 10px 20px #00d1b24d;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px #00d1b266;
    color: #fff;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px #ff900033;
}

.btn-outline-light {
    border: 2px solid white;
    color: #fff;
    background: transparent;
}

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.badge {
    font-weight: 500;
    letter-spacing: .5px;
    padding: .5rem 1rem;
}

.badge-primary {
    background: #ff90001a;
    color: var(--primary);
}

.badge-accent {
    background: #00d1b21a;
    color: var(--accent);
}

.header {
    background-color: #fffffffa;
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: all .3s ease;
}

/* iOS specific header fixes */
@supports (-webkit-touch-callout: none) {
    .header {
        background-color: rgba(255, 255, 255, 0.98);
    }
}

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

.navbar-brand img {
    height: 40px;
    transition: var(--transition);
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--secondary) !important;
    font-weight: 500;
    padding: .5rem 1.2rem !important;
    transition: var(--transition);
    position: relative;
    margin: 0 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link:after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: var(--gradient);
    transition: width .3s ease;
    border-radius: 3px;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: .5rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* iOS navbar toggler fix */
@supports (-webkit-touch-callout: none) {
    .navbar-toggler {
        -webkit-appearance: none;
        appearance: none;
    }
}

.hero-section {
    background: var(--gradient);
    color: #fff;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #0f0f94;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: .9;
    max-width: 600px;
    margin-bottom: 2rem;
    color: #ced4da !important;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .2));
}

.hero-image img {
    border-radius: 20px;
    transform: perspective(1000px) rotateY(-10deg);
    box-shadow: var(--shadow-lg);
    border: 10px solid rgba(255, 255, 255, .1);
}

.app-badges img {
    height: 50px;
    margin-right: 15px;
    transition: var(--transition);
}

.app-badges img:hover {
    transform: translateY(-5px);
}

@keyframes float {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-20px)
    }
    to {
        transform: translateY(0)
    }
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.particles-container {
    position: relative;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity .5s ease;
}

.preloader.fade-out {
    opacity: 0;
}

.loader {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: center;
}

.loader-motto {
    color: #fffc;
    font-size: .9rem;
    margin-bottom: 20px;
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 144, 0, .2);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    bottom: -15px;
    left: 0;
    background: var(--gradient);
    border-radius: 2px;
}

.section-title.center {
    display: block;
    text-align: center;
}

.section-title.center:after {
    left: 50%;
    transform: translate(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #ff90001a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 36px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-card {
    position: relative;
    padding-left: 90px;
    margin-bottom: 40px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 10px 20px #ff90004d;
}

.testimonial-slider {
    margin: 0 -15px;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
    margin: 15px;
    height: calc(100% - 30px);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: #ff90001a;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.client-rating {
    color: var(--primary);
    margin-bottom: 15px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-section {
    background: var(--secondary);
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.stats-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient);
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: .8;
}

.cta-section {
    background: var(--gradient);
    color: #fff;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: url(../images/pattern.png) repeat;
    opacity: .1;
    pointer-events: none;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: .9;
    margin-bottom: 9rem;
    max-width: 600px;
}

.card-hover-effect {
    transition: var(--transition);
}

.card-hover-effect:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg) !important;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: .1;
    z-index: 0;
}

.wave-divider {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer {
    background: var(--secondary);
    padding-top: 80px;
    position: relative;
}

.footer p {
    color: #fff !important;
}

.footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient);
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo img {
    height: 40px;
}

.footer-about {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    color: #fff;
}

.footer-title:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    bottom: -10px;
    left: 0;
    background: var(--gradient);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffffb3;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--primary);
    font-size: 20px;
    margin-top: 3px;
}

.footer-bottom {
    background: #0003;
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom p {
    color: #e4e8eb !important;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff1a;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
}

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px;
    border-right: 0;
    padding: .75rem 1.5rem;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.typing-text {
    display: inline-block;
    position: relative;
}

.typing-text:after {
    content: "|";
    position: absolute;
    right: -10px;
    animation: blink .7s infinite;
}

@keyframes blink {
    0%,
    to {
        opacity: 1
    }
    50% {
        opacity: 0
    }
}

.financial-animation {
    position: relative;
    width: 100%;
    height: 300px;
    background: #ffffff1a;
    border-radius: 15px;
    overflow: hidden;
}

.financial-line {
    position: absolute;
    bottom: 50%;
    width: 100%;
    height: 2px;
    background: #fff3;
}

.financial-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--primary);
}

.app-screenshots {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.app-screen {
    position: absolute;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all .5s ease;
    border: 8px solid white;
}

.app-screen-1 {
    z-index: 3;
    transform: rotate(-5deg);
    left: 0;
}

.app-screen-2 {
    z-index: 2;
    transform: rotate(5deg);
    right: 0;
}

.app-screen-3 {
    z-index: 1;
    top: 50px;
    left: 50%;
    transform: translate(-50%);
}

.app-screenshots:hover .app-screen-1 {
    transform: rotate(-8deg) translateY(-10px);
}

.app-screenshots:hover .app-screen-2 {
    transform: rotate(8deg) translateY(-10px);
}

.app-screenshots:hover .app-screen-3 {
    transform: translate(-50%) scale(1.05);
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.security-badge {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.security-badge span {
    font-size: .9rem;
    color: #666;
}

.security-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.security-badge img {
    height: 40px;
    margin-right: 15px;
}

.card-products {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.card-product {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 30px;
}

.card-product:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-product-img {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa, #e4e8eb);
}

.card-product-img img {
    max-width: 80%;
    height: auto;
    transition: var(--transition);
}

.card-product:hover .card-product-img img {
    transform: scale(1.05);
}

.card-product-body {
    padding: 25px;
}

.card-product-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.card-product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.card-product-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.card-product-features li:before {
    content: "";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.pos-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: #fff;
}

.pos-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pos-image {
    max-width: 600px;
    margin: 40px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px #0000004d;
}

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

.cookie-consent {
    background: var(--secondary);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    border-left: 5px solid var(--primary);
    transform: translateY(20px);
    opacity: 0;
    transition: all .5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 10px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.grayscale {
    filter: grayscale(10%);
    opacity: 1;
    transition: var(--transition);
}

.grayscale:hover {
    filter: grayscale(0);
    opacity: 1;
}

@media(max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem
    }
    .section-title {
        font-size: 2.2rem
    }
    .app-screen {
        max-width: 220px
    }
}

@media(max-width: 991.98px) {
    body {
        padding-top: 70px
    }
    .hero-section {
        padding: 100px 0
    }
    .hero-title {
        font-size: 2.5rem
    }
    .section {
        padding: 80px 0
    }
    .feature-card {
        padding: 30px 20px
    }
    .app-screen {
        max-width: 180px
    }
}

@media(max-width: 767.98px) {
    .hero-section {
        padding: 80px 0;
        text-align: center
    }
    .hero-title {
        font-size: 2.2rem
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto
    }
    .hero-image {
        margin-top: 50px
    }
    .section-title {
        font-size: 2rem
    }
    .step-card {
        padding-left: 70px
    }
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px
    }
    .app-screenshots {
        height: 400px
    }
    .app-screen {
        position: relative;
        max-width: 250px;
        margin: 0 auto 20px;
        transform: none !important;
        left: auto !important;
        right: auto !important
    }
    .newsletter-form {
        flex-direction: column
    }
    .newsletter-form .form-control {
        border-radius: 50px;
        margin-bottom: 10px;
        border-right: 1px solid #ced4da
    }
    .newsletter-form .btn {
        border-radius: 50px
    }
}

@media(max-width: 575.98px) {
    .hero-title {
        font-size: 2rem
    }
    .section-title {
        font-size: 1.8rem
    }
    .btn {
        padding: .6rem 1.5rem
    }
    .footer {
        padding-top: 60px
    }
    .footer-title {
        margin-bottom: 20px
    }
    .stat-number {
        font-size: 2.5rem
    }
    .cookie-consent {
        max-width: calc(100% - 40px);
        right: 20px;
        left: 20px
    }
}

.trustpilot-widget {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 30px 0;
    padding: 20px 0;
}

.trustpilot-widget iframe {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

[data-locale=en-US][data-template-id] {
    display: block !important
}

@keyframes shake {
    0% {
        transform: translate(0)
    }
    25% {
        transform: translate(-5px)
    }
    50% {
        transform: translate(5px)
    }
    75% {
        transform: translate(-5px)
    }
    to {
        transform: translate(0)
    }
}

.shake {
    animation: shake .3s
}

.alertErr,
.alertSuc {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px #00000026;
    padding: 15px;
    min-width: 300px;
    transition: opacity .3s ease;
    animation: slideIn .3s ease;
}

.alertErr {
    border-left: 5px solid #dc3545
}

.alertSuc {
    border-left: 5px solid #198754
}

.adiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

@keyframes slideIn {
    0% {
        transform: translate(100%);
        opacity: 0
    }
    to {
        transform: translate(0);
        opacity: 1
    }
}

.box.glassy {
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    max-width: 335px;
    background-image: url(/assets/cidapay-KnQa4BAv.png);
    background-color: #c8c864cc;
    mix-blend-mode: multiply;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: -4px -4px 15px #ffffff80, inset -2px -2px #fff9, inset -10px -10px #0000001a;
}

/* iOS specific glassmorphism fix */
@supports (-webkit-touch-callout: none) {
    .box.glassy {
        background-color: rgba(200, 200, 100, 0.8);
    }
}

.box.glassy:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    z-index: -1
}

:root {
    --mitr: "Poppins", sans-serif
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity .5s ease-out, visibility .5s ease-out;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-logo-text {
    font-family: Poppins, sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ff9000;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.progress-line {
    width: 200px;
    height: 4px;
    background-color: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: #ff9000;
    border-radius: 2px;
    animation: progressMove 1.5s infinite alternate ease-in-out;
}

@keyframes progressMove {
    0% {
        left: 0%
    }
    to {
        left: 70%
    }
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.megamenu[data-v-266c9379] {
    padding: 25px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 15px 50px #0000001f;
    margin-top: 15px;
}

@media(min-width: 992px) {
    .megamenu[data-v-266c9379] {
        min-width: 450px;
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all .3s ease
    }
    .nav-item.dropdown:hover .megamenu[data-v-266c9379] {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }
}

.dropdown-item[data-v-266c9379] {
    padding: 12px 20px;
    border-radius: 10px;
    transition: background .2s;
}

.dropdown-item[data-v-266c9379]:hover {
    background-color: #ff90000d;
}

.icon-box[data-v-266c9379] {
    width: 40px;
    height: 40px;
    background: #ff90001a;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.dropdown-item:hover .icon-box[data-v-266c9379] {
    background: var(--primary);
    color: #fff;
}

.disabled-link[data-v-266c9379] {
    cursor: not-allowed;
    opacity: .7;
}

.header[data-v-266c9379] {
    width: 100%;
}

.newsletter-form .btn[data-v-574b0908]:disabled {
    opacity: .7;
    cursor: not-allowed;
}

.developer-avatar[data-v-574b0908] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
}

.developer-link[data-v-574b0908] {
    color: var(--primary) !important;
    text-decoration: none;
    font-weight: 500;
}

.developer-link[data-v-574b0908]:hover {
    color: var(--primary-dark) !important;
    text-decoration: underline;
}

.border-top[data-v-574b0908] {
    border-top: 1px solid rgba(0, 0, 0, .1) !important;
}

.scroll-to-top[data-v-6826cd20] {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px #ff900066;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top[data-v-6826cd20]:hover {
    background-color: #e68200;
    transform: translateY(-5px);
}

.scroll-to-top.visible[data-v-6826cd20] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-modal[data-v-30d63eb1] {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 400px;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px #0000004d;
    z-index: 9999;
    border: 1px solid rgba(255, 255, 255, .1);
}

.cookie-content[data-v-30d63eb1] {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.cookie-icon[data-v-30d63eb1] {
    font-size: 2rem;
    color: var(--primary);
}

.cookie-text h4[data-v-30d63eb1] {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.cookie-text p[data-v-30d63eb1] {
    font-size: .9rem;
    margin: 0;
    opacity: .8;
    color: #fff;
}

.cookie-text a[data-v-30d63eb1] {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-actions[data-v-30d63eb1] {
    display: flex;
    justify-content: flex-end;
}

.slide-up-enter-active[data-v-30d63eb1],
.slide-up-leave-active[data-v-30d63eb1] {
    transition: all .5s ease;
}

.slide-up-enter-from[data-v-30d63eb1],
.slide-up-leave-to[data-v-30d63eb1] {
    transform: translateY(100px);
    opacity: 0;
}

.warning-banner[data-v-68b55f8d] {
    background-color: #dc3545;
    color: #fff;
    padding: 12px 0;
    font-size: .9rem;
    position: relative;
    z-index: 1031;
}

.shake[data-v-68b55f8d] {
    animation: shake-68b55f8d 2s infinite;
}

@keyframes shake-68b55f8d {
    0%,
    to {
        transform: translate(0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate(-2px)
    }
    20%,
    40%,
    60%,
    80% {
        transform: translate(2px)
    }
}

@media(max-width: 768px) {
    .warning-banner p[data-v-68b55f8d] {
        font-size: .8rem
    }
}

.device-sheet[data-v-6f756b8b] {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 20px;
    z-index: 10001;
    box-shadow: 0 -5px 30px #00000026;
}

.sheet-handle[data-v-6f756b8b] {
    width: 50px;
    height: 5px;
    background: #e0e0e0;
    border-radius: 5px;
    margin: 0 auto 20px;
}

.sheet-backdrop[data-v-6f756b8b] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 10000;
}

.slide-up-enter-active[data-v-6f756b8b],
.slide-up-leave-active[data-v-6f756b8b] {
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.slide-up-enter-from[data-v-6f756b8b],
.slide-up-leave-to[data-v-6f756b8b] {
    transform: translateY(100%);
}

.fixed-top-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    display: flex;
    flex-direction: column;
}

.header {
    position: relative !important;
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    transform: translateZ(0);
}

.swiper-horizontal {
    touch-action: pan-y;
}

.swiper-vertical {
    touch-action: pan-x;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d;
}

.swiper-3d {
    perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
    scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start: var(--swiper-slides-offset-before);
    scroll-margin-inline-start: var(--swiper-slides-offset-before);
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper>.swiper-slide:last-child {
    margin-inline-end: var(--swiper-slides-offset-after);
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
    scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start: var(--swiper-slides-offset-before);
    scroll-margin-block-start: var(--swiper-slides-offset-before);
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper>.swiper-slide:last-child {
    margin-block-end: var(--swiper-slides-offset-after);
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
    scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered>.swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999;
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
    background: #00000026;
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, #00000080, #0000);
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translateZ(0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
    display: none !important;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33);
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet:only-child {
    display: none !important;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical>.swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0, -50%, 0);
}

.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
}

.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
}

.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform, .2s top;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap;
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s left;
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s right;
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
}

.swiper-vertical>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-lock {
    display: none;
}

.swiper-creative .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
}

.hero-section[data-v-7b3cab25] {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

@supports (-webkit-touch-callout: none) {
    .hero-section[data-v-7b3cab25] {
        height: -webkit-fill-available;
    }
}

.hero-carousel[data-v-7b3cab25] {
    width: 100%;
    height: 100%;
}

.hero-slide-item[data-v-7b3cab25] {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slide-content[data-v-7b3cab25] {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    align-items: center;
}

.particles-bg[data-v-7b3cab25] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-bg-container[data-v-7b3cab25] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1;
}

.hero-video-bg[data-v-7b3cab25] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay[data-v-7b3cab25] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0009;
    z-index: 2;
}

@media(max-width: 991px) {
    .hero-section[data-v-7b3cab25] {
        min-height: 80vh;
        height: auto;
        padding: 0
    }
    .hero-carousel[data-v-7b3cab25] {
        height: 80vh
    }
    .hero-title[data-v-7b3cab25] {
        font-size: 2.5rem
    }
    .hero-subtitle[data-v-7b3cab25] {
        font-size: 1rem
    }
    .hero-image[data-v-7b3cab25] {
        display: block !important;
        margin-top: 2rem
    }
    .floating-hero-img[data-v-7b3cab25] {
        max-width: 100% !important;
        height: auto
    }
    .floating-element[data-v-7b3cab25] {
        display: none !important
    }
    .hero-slide-content[data-v-7b3cab25] {
        padding-top: 80px;
        align-items: flex-start
    }
}

.hero-image[data-v-7b3cab25] {
    position: relative;
    z-index: 2;
    transform: translate(30px);
}

.floating-hero-img[data-v-7b3cab25] {
    max-width: 130%;
    height: auto;
    filter: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
    position: relative;
    z-index: 2;
}

.store-btn img[data-v-7b3cab25] {
    height: 60px;
    width: auto;
    transition: transform .3s;
}

.store-btn:hover img[data-v-7b3cab25] {
    transform: translateY(-3px);
}

.audio-toggle-btn-inline[data-v-7b3cab25] {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    background: #ffffff26;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: .9rem;
    cursor: pointer;
    transition: all .3s ease;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 20;
}

.audio-toggle-btn[data-v-7b3cab25] {
    position: absolute;
    bottom: 50px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff3;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100 !important;
    transition: all .3s ease;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.audio-toggle-btn[data-v-7b3cab25]:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

@media(min-width: 992px) {
    .video-controls-wrapper[data-v-7b3cab25] {
        display: none !important
    }
    .audio-toggle-btn[data-v-7b3cab25] {
        display: flex
    }
}

.carousel-dots[data-v-7b3cab25] {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%);
    z-index: 30;
    display: flex;
    justify-content: center;
    gap: 12px;
}

[data-v-7b3cab25] .dot {
    width: 12px;
    height: 12px;
    background-color: #fff6;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s ease;
}

[data-v-7b3cab25] .dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 10px #ff900080;
}

.how-it-works-section[data-v-71684993] {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    width: 100%;
    overflow: visible;
}

.sticky-container[data-v-71684993] {
    position: relative;
    height: 100vh;
    width: 100%;
    transition: all .3s ease;
    top: 0;
}

/* iOS fix for sticky container */
@supports (-webkit-touch-callout: none) {
    .sticky-container[data-v-71684993] {
        height: -webkit-fill-available;
    }
}

.sticky-container.is-pinned[data-v-71684993] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: inherit;
    box-shadow: 0 5px 20px #0000000d;
}

/* iOS fix for pinned sticky */
@supports (-webkit-touch-callout: none) {
    .sticky-container.is-pinned[data-v-71684993] {
        position: -webkit-sticky;
        position: sticky;
    }
}

.sticky-container.is-finished[data-v-71684993] {
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
}

.steps-scroll-container[data-v-71684993] {
    position: relative;
    transition: transform .2s cubic-bezier(.33, 1, .68, 1);
    will-change: transform;
    padding: 20px 0;
}

.step-item[data-v-71684993] {
    position: relative;
    display: flex;
    margin-bottom: 2.5rem;
    padding: 24px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 5px 20px #00000008;
    transition: all .5s cubic-bezier(.4, 0, .2, 1);
    opacity: .4;
    transform: scale(.98) translateY(10px);
    border: 1px solid rgba(0, 0, 0, .05);
}

.step-item[data-v-71684993]:last-child {
    margin-bottom: 0;
}

.step-item.active[data-v-71684993] {
    opacity: 1;
    transform: scale(1) translateY(0);
    box-shadow: 0 25px 50px -12px #ff900040;
    border-left: 4px solid var(--primary, #ff9000);
    background: linear-gradient(to right, #fff, #fffaf5);
}

.step-item.was-active[data-v-71684993] {
    opacity: .8;
    transform: scale(.99) translateY(0);
}

.step-item.will-be-active[data-v-71684993] {
    opacity: .3;
    transform: scale(.97) translateY(5px);
}

.step-marker[data-v-71684993] {
    position: relative;
    width: 56px;
    height: 56px;
    background: #f0f0f0;
    color: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 25px;
    flex-shrink: 0;
    transition: all .3s;
    overflow: hidden;
    border: 1px solid #eee;
}

.step-number[data-v-71684993] {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item.active .step-marker[data-v-71684993] {
    background: var(--primary, #ff9000);
    color: #fff;
    box-shadow: 0 4px 15px #ff900059;
}

.step-text[data-v-71684993] {
    flex: 1;
}

.step-text h4[data-v-71684993] {
    font-size: 1.4rem;
    margin-bottom: .5rem;
    color: #2c3e50;
    transition: color .3s;
    font-weight: 600;
}

.step-item.active .step-text h4[data-v-71684993] {
    color: var(--primary, #ff9000);
}

.step-text p[data-v-71684993] {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.step-navigation[data-v-71684993] {
    justify-content: center;
    margin-top: 40px;
}

.step-dot[data-v-71684993] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: all .3s;
}

.step-dot.active[data-v-71684993] {
    background: var(--primary, #ff9000);
    border-color: var(--primary, #ff9000);
    transform: scale(1.3);
    box-shadow: 0 0 20px #ff900066;
}

.particles-container[data-v-71684993] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.works-image[data-v-71684993] {
    position: relative;
    z-index: 2;
    transition: transform .5s ease;
    max-width: 320px;
    filter: drop-shadow(0 20px 30px rgba(255, 144, 0, .15));
}

.works-image img[data-v-71684993] {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

@media(max-width: 991px) {
    .steps-scroll-container[data-v-71684993] {
        transition: transform .1s linear
    }
    .step-item[data-v-71684993] {
        margin-bottom: 1rem;
        padding: 16px;
        border-radius: 16px
    }
    .step-marker[data-v-71684993] {
        width: 32px;
        height: 32px;
        min-width: 32px;
        margin-right: 12px
    }
    .step-number[data-v-71684993] {
        font-size: 14px
    }
    .step-text h4[data-v-71684993] {
        font-size: 1.1rem;
        margin-bottom: .25rem
    }
    .step-text p[data-v-71684993] {
        font-size: .9rem
    }
    .works-image[data-v-71684993] {
        display: none
    }
    .step-navigation[data-v-71684993] {
        display: flex !important;
        margin-top: 20px
    }
    .section-title[data-v-71684993] {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 2rem !important
    }
}

@media(max-height: 500px) and (max-width: 991px) {
    .section-title[data-v-71684993] {
        font-size: 1.3rem;
        margin-bottom: 1rem !important
    }
    .step-item[data-v-71684993] {
        padding: 10px;
        margin-bottom: .5rem
    }
}

.section-title[data-v-71684993] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.section-title span[data-v-71684993] {
    color: var(--primary, #ff9000);
}

.h-100[data-v-71684993] {
    height: 100%;
}

@media(min-width: 992px) {
    .h-100[data-v-71684993] {
        height: 100%
    }
}

.testimonial-grid[data-v-adbaeee6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.about-hero[data-v-110c1d16] {
    background: linear-gradient(135deg, var(--primary) 0%, #ffa733 100%);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero-title[data-v-110c1d16] {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.about-hero-subtitle[data-v-110c1d16] {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: .9;
}

.mission-section[data-v-110c1d16] {
    padding: 80px 0;
    background: #fff;
}

.mission-card[data-v-110c1d16] {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px #0000000d;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .05);
    transition: transform .3s ease;
}

.mission-card[data-v-110c1d16]:hover {
    transform: translateY(-10px);
}

.mission-icon[data-v-110c1d16] {
    width: 70px;
    height: 70px;
    background: #ff90001a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 30px;
    color: var(--primary);
}

.values-section[data-v-110c1d16] {
    background: #f9f9f9;
    padding: 80px 0;
}

.value-card[data-v-110c1d16] {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px #0000000d;
    height: 100%;
    transition: transform .3s ease;
}

.value-card[data-v-110c1d16]:hover {
    transform: translateY(-10px);
}

.value-number[data-v-110c1d16] {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.team-section[data-v-110c1d16] {
    padding: 80px 0;
}

.team-member[data-v-110c1d16] {
    text-align: center;
    margin-bottom: 40px;
}

.team-photo[data-v-110c1d16] {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid rgba(255, 144, 0, .1);
    transition: all .3s ease;
}

.team-photo[data-v-110c1d16]:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.team-photo img[data-v-110c1d16] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name[data-v-110c1d16] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-position[data-v-110c1d16] {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-social[data-v-110c1d16] {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a[data-v-110c1d16] {
    color: var(--primary);
    font-size: 18px;
    transition: color .3s ease;
}

.team-social a[data-v-110c1d16]:hover {
    color: #e67e00;
}

.timeline-section[data-v-110c1d16] {
    padding: 80px 0;
    background: #fff;
}

.timeline[data-v-110c1d16] {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline[data-v-110c1d16]:after {
    content: "";
    position: absolute;
    width: 2px;
    background: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item[data-v-110c1d16] {
    padding: 10px 40px;
    position: relative;
    background: inherit;
    width: 50%;
}

.timeline-item[data-v-110c1d16]:nth-child(odd) {
    left: 0;
}

.timeline-item[data-v-110c1d16]:nth-child(2n) {
    left: 50%;
}

.timeline-dot[data-v-110c1d16] {
    position: absolute;
    width: 30px;
    height: 30px;
    right: -15px;
    background: var(--primary);
    border: 4px solid white;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.timeline-item:nth-child(2n) .timeline-dot[data-v-110c1d16] {
    left: -15px;
}

.timeline-content[data-v-110c1d16] {
    padding: 20px 30px;
    background: #f9f9f9;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 5px 15px #0000000d;
}

.timeline-year[data-v-110c1d16] {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.timeline-title[data-v-110c1d16] {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

@media(max-width: 768px) {
    .timeline[data-v-110c1d16]:after {
        left: 31px
    }
    .timeline-item[data-v-110c1d16] {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px
    }
    .timeline-item[data-v-110c1d16]:nth-child(2n) {
        left: 0%
    }
    .timeline-dot[data-v-110c1d16] {
        left: 15px;
        right: auto
    }
    .timeline-item:nth-child(2n) .timeline-dot[data-v-110c1d16] {
        left: 15px
    }
}

.cta-about[data-v-110c1d16] {
    background: linear-gradient(135deg, var(--primary) 0%, #ffa733 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-about-title[data-v-110c1d16] {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-about-subtitle[data-v-110c1d16] {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: .9;
}

.section-title[data-v-110c1d16] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title span[data-v-110c1d16] {
    color: var(--primary);
}

.animate-on-scroll[data-v-110c1d16] {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease;
}

.animate-on-scroll.visible[data-v-110c1d16] {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width: 768px) {
    .about-hero-title[data-v-110c1d16],
    .section-title[data-v-110c1d16] {
        font-size: 2rem
    }
    .cta-about-title[data-v-110c1d16] {
        font-size: 1.8rem
    }
}

.contact-page[data-v-6e2036ce] {
    background-color: var(--light);
    text-align: center;
}

.hero-section[data-v-6e2036ce] {
    padding: 160px 0 80px;
    background: var(--gradient);
    color: #fff;
    text-align: center;
}

.hero-subtitle[data-v-6e2036ce] {
    max-width: 700px;
    margin: 0 auto;
    opacity: .9;
    color: #fff;
}

.contact-card[data-v-6e2036ce] {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px #0000000d;
    transition: transform .3s ease;
    border: 1px solid rgba(0, 0, 0, .02);
}

.contact-card[data-v-6e2036ce]:hover {
    transform: translateY(-10px);
}

.icon-wrapper[data-v-6e2036ce] {
    width: 80px;
    height: 80px;
    background: #ff90001a;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
}

.contact-card h3[data-v-6e2036ce] {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.form-control[data-v-6e2036ce] {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #f8f9fa;
    /* iOS input fixes */
    -webkit-appearance: none;
    appearance: none;
    font-size: 16px; /* Prevents zoom on iOS */
}

.form-control[data-v-6e2036ce]:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px #ff90001a;
    outline: none;
}

/* iOS fix for inputs */
@supports (-webkit-touch-callout: none) {
    .form-control[data-v-6e2036ce] {
        font-size: 16px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px;
    }
}

.privacy-page[data-v-67a14027] {
    background-color: var(--light, #f8f9fa);
    padding-bottom: 60px;
}

.hero-section[data-v-67a14027] {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #ff9000, #ffa733);
    color: #fff;
    text-align: center;
}

h1[data-v-67a14027] {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.last-updated[data-v-67a14027] {
    font-size: 1rem;
    opacity: .9;
}

.content-section[data-v-67a14027] {
    margin-top: -60px;
}

.content-card[data-v-67a14027] {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px #00000014;
}

h2[data-v-67a14027] {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    font-weight: 700;
}

h2 span[data-v-67a14027] {
    color: #ff9000;
    font-size: 1.2rem;
    margin-right: 15px;
    opacity: .6;
    font-weight: 800;
}

h3[data-v-67a14027] {
    font-size: 1.2rem;
    margin: 25px 0 15px;
    color: #1a1a2e;
    font-weight: 600;
}

p[data-v-67a14027],
li[data-v-67a14027] {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

ul[data-v-67a14027] {
    padding-left: 20px;
    margin-bottom: 20px;
}

li[data-v-67a14027] {
    margin-bottom: 10px;
}

a[data-v-67a14027] {
    color: #ff9000;
    text-decoration: none;
    font-weight: 500;
}

a[data-v-67a14027]:hover {
    text-decoration: underline;
}

.highlight-box[data-v-67a14027] {
    background: #ff80000d;
    border-left: 4px solid #ff9000;
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin: 32px 0;
}

@media(max-width: 768px) {
    .content-card[data-v-67a14027] {
        padding: 30px 20px
    }
    h1[data-v-67a14027] {
        font-size: 2rem
    }
    h2[data-v-67a14027] {
        font-size: 1.3rem
    }
    .hero-section[data-v-67a14027] {
        padding: 120px 0 80px
    }
}

[data-v-887cbdfe]:root {
    --primary: #ff9000;
    --primary-dark: #e67e00;
    --primary-light: #ffa733;
    --secondary: #1a1a2e;
    --accent: #00d1b2;
    --accent-dark: #00b39e;
    --dark: #16213e;
    --light: #f8f9fa;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --text-dark: #333;
    --text-light: #fff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, .16);
    --transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.savings-page[data-v-887cbdfe] {
    padding-top: 0;
}

.hero-section[data-v-887cbdfe] {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #ff9000, #ffa733);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-content[data-v-887cbdfe] {
    position: relative;
    z-index: 2;
}

.hero-title[data-v-887cbdfe] {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle[data-v-887cbdfe] {
    font-size: 1.25rem;
    color: #ffffffe6;
    margin-bottom: 30px;
    max-width: 600px;
}

.image-placeholder[data-v-887cbdfe] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: #ffffff1a;
    border-radius: 20px;
}

.floating-hero-img[data-v-887cbdfe] {
    max-width: 130%;
    height: auto;
    filter: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

@media(max-width: 767.98px) {
    .hero-image[data-v-887cbdfe] {
        display: block !important;
        margin-top: 2rem
    }
    .hero-floating-img[data-v-887cbdfe] {
        max-width: 100% !important;
        height: auto
    }
}

.wave-divider[data-v-887cbdfe] {
    position: relative;
    height: 100px;
    overflow: hidden;
    margin-top: -1px;
}

.wave-divider svg[data-v-887cbdfe] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section[data-v-887cbdfe] {
    padding: 100px 0;
}

.bg-light[data-v-887cbdfe] {
    background-color: #f8f9fa !important;
}

.section-title[data-v-887cbdfe] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: #1a1a2e;
}

.section-title span[data-v-887cbdfe] {
    color: #ff9000;
}

.section-title.center[data-v-887cbdfe] {
    display: block;
}

.section-subtitle[data-v-887cbdfe] {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.savings-plan[data-v-887cbdfe] {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px #0000001f;
    transition: all .3s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, .05);
    margin-bottom: 30px;
}

.savings-plan[data-v-887cbdfe]:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px #00000029;
}

.plan-popular[data-v-887cbdfe] {
    background: #ff9000;
    color: #fff;
    text-align: center;
    padding: 5px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.plan-header[data-v-887cbdfe] {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.plan-name[data-v-887cbdfe] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.plan-interest[data-v-887cbdfe] {
    font-size: 3rem;
    font-weight: 800;
    color: #ff9000;
    line-height: 1;
    margin-bottom: 5px;
}

.plan-period[data-v-887cbdfe] {
    color: #666;
    font-size: .9rem;
    font-weight: 500;
}

.plan-body[data-v-887cbdfe] {
    padding: 30px;
}

.plan-features[data-v-887cbdfe] {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.plan-features li[data-v-887cbdfe] {
    margin-bottom: 15px;
    color: #555;
    display: flex;
    align-items: center;
}

.plan-features li[data-v-887cbdfe]:before {
    content: "✓";
    color: #00d1b2;
    font-weight: 700;
    margin-right: 10px;
}

.feature-card[data-v-887cbdfe] {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 8px #00000014;
    transition: all .3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .05);
}

.feature-card[data-v-887cbdfe]:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px #00000029;
}

.feature-icon[data-v-887cbdfe] {
    width: 60px;
    height: 60px;
    background: #ff90001a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #ff9000;
}

.feature-card h3[data-v-887cbdfe] {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.feature-card p[data-v-887cbdfe] {
    color: #666;
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.calculator[data-v-887cbdfe] {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 8px #00000014;
}

.calculator-result[data-v-887cbdfe] {
    background: linear-gradient(135deg, #ff9000, #ffa733);
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.result-amount[data-v-887cbdfe] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-section[data-v-887cbdfe] {
    padding: 80px 0;
    background: #1a1a2e;
    color: #fff;
}

.stat-item[data-v-887cbdfe] {
    margin-bottom: 30px;
}

.stat-number[data-v-887cbdfe] {
    font-size: 3rem;
    font-weight: 800;
    color: #ff9000;
    margin-bottom: 10px;
}

.stat-label[data-v-887cbdfe] {
    font-size: 1.1rem;
    opacity: .8;
}

.cta-section[data-v-887cbdfe] {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff9000, #ffa733);
    color: #fff;
}

.cta-title[data-v-887cbdfe] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle[data-v-887cbdfe] {
    font-size: 1.2rem;
    opacity: .9;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media(max-width: 991.98px) {
    .hero-title[data-v-887cbdfe] {
        font-size: 2.5rem
    }
}

@media(max-width: 767.98px) {
    .hero-section[data-v-887cbdfe] {
        padding: 140px 0 80px;
        text-align: center
    }
    .hero-title[data-v-887cbdfe] {
        font-size: 2rem
    }
    .hero-subtitle[data-v-887cbdfe] {
        margin-left: auto;
        margin-right: auto
    }
}

[data-v-f7534374]:root {
    --primary: #ff9000;
    --primary-dark: #e67e00;
    --primary-light: #ffa733;
    --secondary: #1a1a2e;
    --accent: #00d1b2;
    --accent-dark: #00b39e;
    --dark: #16213e;
    --light: #f8f9fa;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --text-dark: #333;
    --text-light: #fff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, .16);
    --transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.debit-cards-page[data-v-f7534374] {
    padding-top: 0;
}

.hero-section[data-v-f7534374] {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #ff9000, #ffa733);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-content[data-v-f7534374] {
    position: relative;
    z-index: 2;
}

.hero-title[data-v-f7534374] {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle[data-v-f7534374] {
    font-size: 1.25rem;
    color: #ffffffe6;
    margin-bottom: 30px;
    max-width: 600px;
}

.wave-divider[data-v-f7534374] {
    position: relative;
    height: 100px;
    overflow: hidden;
    margin-top: -1px;
}

.wave-divider svg[data-v-f7534374] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-showcase[data-v-f7534374] {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

/* iOS fix for 3D transforms */
@supports (-webkit-touch-callout: none) {
    .card-showcase[data-v-f7534374] {
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
}

.card-3d[data-v-f7534374] {
    width: 320px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform .1s ease;
    cursor: pointer;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    box-shadow: 0 20px 50px #0003;
}

/* iOS fix for preserve-3d */
@supports (-webkit-touch-callout: none) {
    .card-3d[data-v-f7534374] {
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }
}

.card-front[data-v-f7534374] {
    padding: 25px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-chip[data-v-f7534374] {
    width: 50px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37, #aa8c2c);
    border-radius: 5px;
    margin-bottom: 10px;
}

.card-number[data-v-f7534374] {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: monospace;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
}

.card-details[data-v-f7534374] {
    display: flex;
    justify-content: space-between;
}

.card-label[data-v-f7534374] {
    font-size: .6rem;
    opacity: .7;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.card-products[data-v-f7534374] {
    padding: 80px 0;
}

.card-product[data-v-f7534374] {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 12px #00000014;
    text-align: center;
    transition: all .3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .05);
    margin-bottom: 30px;
}

.card-product[data-v-f7534374]:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px #00000029;
}

.card-product-img[data-v-f7534374] {
    margin-bottom: 20px;
}

.card-product-title[data-v-f7534374] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.card-product-features[data-v-f7534374] {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.card-product-features li[data-v-f7534374] {
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
}

.card-product-features li[data-v-f7534374]:before {
    content: "✓";
    color: #ff9000;
    font-weight: 700;
    margin-right: 10px;
}

.section[data-v-f7534374] {
    padding: 100px 0;
}

.section-title[data-v-f7534374] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: #1a1a2e;
}

.section-title span[data-v-f7534374] {
    color: #ff9000;
}

.section-title.center[data-v-f7534374] {
    display: block;
}

.section-subtitle[data-v-f7534374] {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.feature-card[data-v-f7534374] {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 8px #00000014;
    transition: all .3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .05);
}

.feature-card[data-v-f7534374]:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px #00000029;
}

.feature-icon[data-v-f7534374] {
    width: 60px;
    height: 60px;
    background: #ff90001a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #ff9000;
}

.feature-card h3[data-v-f7534374] {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.feature-card p[data-v-f7534374] {
    color: #666;
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.security-section[data-v-f7534374] {
    padding: 100px 0;
    background: #1a1a2e;
    color: #fff;
}

.security-feature[data-v-f7534374] {
    text-align: center;
    padding: 20px;
}

.security-icon[data-v-f7534374] {
    font-size: 3rem;
    color: #ff9000;
    margin-bottom: 20px;
}

.text-white-50[data-v-f7534374] {
    color: #ffffff80 !important;
}

.stats-section[data-v-f7534374] {
    padding: 80px 0;
}

.cta-section[data-v-f7534374] {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff9000, #ffa733);
    color: #fff;
}

.cta-title[data-v-f7534374] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle[data-v-f7534374] {
    font-size: 1.2rem;
    opacity: .9;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media(max-width: 991.98px) {
    .hero-title[data-v-f7534374] {
        font-size: 2.5rem
    }
}

@media(max-width: 767.98px) {
    .hero-section[data-v-f7534374] {
        padding: 140px 0 80px;
        text-align: center
    }
    .hero-title[data-v-f7534374] {
        font-size: 2rem
    }
    .card-showcase[data-v-f7534374] {
        height: 300px
    }
    .card-3d[data-v-f7534374] {
        width: 280px;
        height: 175px
    }
    .hero-image[data-v-f7534374] {
        display: none !important
    }
}

.floating-hero-img[data-v-f7534374] {
    max-width: 130%;
    height: auto;
    filter: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

[data-v-8e11babf]:root {
    --primary: #FF6D13;
    --primary-dark: #E05E0B;
    --primary-light: #FF8D42;
    --dark: #1A1A1A;
    --light: #FAFAFA;
    --gray: #EDEDED;
    --shadow: 0 4px 20px rgba(0, 0, 0, .08);
    --transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.compliance-page[data-v-8e11babf] {
    padding-top: 0;
}

.hero-section[data-v-8e11babf] {
    background: linear-gradient(135deg, #ff9000, #ffa733);
    color: #fff;
    padding: 180px 0 80px;
    text-align: center;
}

.hero-section h1[data-v-8e11babf] {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-section p[data-v-8e11babf] {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.content-section[data-v-8e11babf] {
    padding: 80px 0;
}

.bg-light[data-v-8e11babf] {
    background-color: #f9f9f9;
}

.section-title[data-v-8e11babf] {
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.section-title[data-v-8e11babf]:after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    bottom: 0;
    left: 0;
    background-color: #ff9000;
}

.section-title.center[data-v-8e11babf] {
    text-align: center;
}

.center.section-title[data-v-8e11babf]:after {
    left: 50%;
    transform: translate(-50%);
}

.compliance-grid[data-v-8e11babf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.compliance-card[data-v-8e11babf] {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px #00000014;
    transition: all .3s ease;
    height: 100%;
    border-top: 5px solid #ff9000;
}

.compliance-card[data-v-8e11babf]:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px #0000001a;
}

.compliance-card h3[data-v-8e11babf] {
    color: #ff9000;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.compliance-icon[data-v-8e11babf] {
    font-size: 2.5rem;
    color: #ff9000;
    margin-bottom: 20px;
}

.compliance-table[data-v-8e11babf] {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 4px 20px #00000014;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.compliance-table th[data-v-8e11babf],
.compliance-table td[data-v-8e11babf] {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #EDEDED;
}

.compliance-table th[data-v-8e11babf] {
    background-color: #ff9000;
    color: #fff;
    font-weight: 600;
}

.compliance-table tr[data-v-8e11babf]:nth-child(2n) {
    background-color: #f9f9f9;
}

.compliance-table tr[data-v-8e11babf]:hover {
    background-color: #f1f1f1;
}

.accordion[data-v-8e11babf] {
    margin: 40px 0;
}

.accordion-item[data-v-8e11babf] {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px #00000014;
    background: #fff;
}

.accordion-header[data-v-8e11babf] {
    background-color: #fff;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all .3s ease;
}

.accordion-header[data-v-8e11babf]:hover {
    background-color: #f9f9f9;
}

.accordion-content[data-v-8e11babf] {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    background-color: #fff;
}

.accordion-content.active[data-v-8e11babf] {
    max-height: 500px;
    padding: 20px;
}

.accordion-header span[data-v-8e11babf] {
    font-size: 1.5rem;
    font-weight: 300;
}

.contact-card[data-v-8e11babf] {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px #00000014;
    max-width: 500px;
    margin: 0 auto;
}

.contact-card p[data-v-8e11babf] {
    margin-bottom: 10px;
}

.contact-card a[data-v-8e11babf] {
    color: #ff9000;
    text-decoration: none;
}

@media(max-width: 768px) {
    .hero-section h1[data-v-8e11babf] {
        font-size: 2.2rem
    }
    .section-title[data-v-8e11babf] {
        font-size: 1.8rem
    }
    .hero-section[data-v-8e11babf] {
        padding: 140px 0 60px
    }
}

.blog-page[data-v-3d0c1c8a] {
    padding-top: 0;
}

.hero-section[data-v-3d0c1c8a] {
    padding: 180px 0 100px;
    background: var(--secondary);
    color: #fff;
}

.payments-page[data-v-7c25eda8] {
    padding-top: 0;
}

.hero-section[data-v-7c25eda8] {
    padding: 220px 0 140px;
    background: linear-gradient(135deg, #1a1a2e, #0f0c29);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-overlay[data-v-7c25eda8] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0006;
    z-index: 1;
}

.z-index-hero[data-v-7c25eda8] {
    z-index: 5;
}

.hero-title[data-v-7c25eda8] {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}

.hero-title span[data-v-7c25eda8] {
    color: #ff9000;
}

.hero-subtitle[data-v-7c25eda8] {
    font-size: 1.4rem;
    opacity: .95;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.shape[data-v-7c25eda8] {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.shape-1[data-v-7c25eda8] {
    width: 500px;
    height: 500px;
    background: #ff900040;
    top: -150px;
    right: -100px;
}

.shape-2[data-v-7c25eda8] {
    width: 400px;
    height: 400px;
    background: #00d1b226;
    bottom: -100px;
    left: -100px;
}

.section[data-v-7c25eda8] {
    padding: 120px 0;
}

.service-section[data-v-7c25eda8] {
    position: relative;
    overflow: hidden;
}

.section-title[data-v-7c25eda8] {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.section-title span[data-v-7c25eda8] {
    color: #ff9000;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    font-weight: 700;
    margin-top: -5px;
}

.service-subtitle[data-v-7c25eda8] {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.service-description[data-v-7c25eda8] {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.image-wrapper[data-v-7c25eda8] {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.service-featured-img[data-v-7c25eda8] {
    position: relative;
    z-index: 2;
    transition: transform .6s cubic-bezier(.165, .84, .44, 1);
    width: 100%;
}

.floating-icon[data-v-7c25eda8] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px #00000026;
    z-index: 3;
    animation: float-7c25eda8 4s ease-in-out infinite;
}

@keyframes float-7c25eda8 {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-15px)
    }
    to {
        transform: translateY(0)
    }
}

.image-accent[data-v-7c25eda8] {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border-radius: 40px;
    opacity: .1;
    z-index: 0;
    transform: translate(5%, 5%);
}

.image-wrapper:hover .service-featured-img[data-v-7c25eda8] {
    transform: translateY(-10px) rotate(1deg);
}

.service-badge[data-v-7c25eda8] {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-badge .dot[data-v-7c25eda8] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 10px;
}

.feature-checklist[data-v-7c25eda8] {
    list-style: none;
    padding: 0;
}

.feature-checklist li[data-v-7c25eda8] {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #444;
}

.feature-checklist i[data-v-7c25eda8] {
    font-size: 1.2rem;
}

.bg-light[data-v-7c25eda8] {
    background-color: #fbfbfc !important;
}

.shadow-xl[data-v-7c25eda8] {
    box-shadow: 0 25px 50px -12px #00000026;
}

.bg-primary-gradient[data-v-7c25eda8] {
    background: linear-gradient(135deg, #ff9000, #e67e00);
}

.cta-title[data-v-7c25eda8] {
    font-size: 3.2rem;
    font-weight: 800;
}

.cta-subtitle[data-v-7c25eda8] {
    text-align: center;
}

.accordion-button[data-v-7c25eda8]:not(.collapsed) {
    background-color: #ff900015;
    color: #ff9000;
}

.accordion-button[data-v-7c25eda8]:focus {
    box-shadow: none;
    border-color: #ff9000;
}

@media(max-width: 991px) {
    .hero-title[data-v-7c25eda8] {
        font-size: 3.2rem
    }
    .section[data-v-7c25eda8] {
        padding: 80px 0
    }
    .section-title[data-v-7c25eda8] {
        font-size: 2.2rem
    }
}

@media(max-width: 767px) {
    .hero-title[data-v-7c25eda8] {
        font-size: 2.5rem
    }
    .hero-subtitle[data-v-7c25eda8] {
        font-size: 1.1rem
    }
    .cta-title[data-v-7c25eda8] {
        font-size: 2.2rem
    }
}

/* Additional iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    /* Fix for momentum scrolling on iOS */
    .swiper-wrapper,
    .steps-scroll-container,
    .testimonial-slider {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix for sticky hover states on iOS */
    .btn:hover,
    .feature-card:hover,
    .card-product:hover,
    .nav-link:hover {
        transform: none;
    }
    
    /* Fix for box-shadow performance on iOS */
    .btn,
    .feature-card,
    .card-product,
    .testimonial-card {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Fix for font rendering on iOS */
    body {
        -webkit-font-smoothing: subpixel-antialiased;
    }
    
    /* Fix for input zoom on iOS */
    select,
    textarea,
    input[type="text"],
    input[type="password"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    input[type="number"],
    input[type="email"],
    input[type="url"],
    input[type="search"],
    input[type="tel"],
    input[type="color"] {
        font-size: 16px;
    }
}

@supports (-webkit-touch-callout: none) {
    .hero-section[data-v-7b3cab25] {
        height: -webkit-fill-available;
    }
}

.hero-carousel[data-v-7b3cab25] {
    width: 100%;
    height: 100%;
}

.hero-slide-item[data-v-7b3cab25] {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slide-content[data-v-7b3cab25] {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    align-items: center;
}

.particles-bg[data-v-7b3cab25] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-bg-container[data-v-7b3cab25] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1;
}

.hero-video-bg[data-v-7b3cab25] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay[data-v-7b3cab25] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0009;
    z-index: 2;
}

@media(max-width: 991px) {
    .hero-section[data-v-7b3cab25] {
        min-height: 80vh;
        height: auto;
        padding: 0
    }
    .hero-carousel[data-v-7b3cab25] {
        height: 80vh
    }
    .hero-title[data-v-7b3cab25] {
        font-size: 2.5rem
    }
    .hero-subtitle[data-v-7b3cab25] {
        font-size: 1rem
    }
    .hero-image[data-v-7b3cab25] {
        display: block !important;
        margin-top: 2rem
    }
    .floating-hero-img[data-v-7b3cab25] {
        max-width: 100% !important;
        height: auto
    }
    .floating-element[data-v-7b3cab25] {
        display: none !important
    }
    .hero-slide-content[data-v-7b3cab25] {
        padding-top: 80px;
        align-items: flex-start
    }
}

.hero-image[data-v-7b3cab25] {
    position: relative;
    z-index: 2;
    transform: translate(30px);
}

.floating-hero-img[data-v-7b3cab25] {
    max-width: 130%;
    height: auto;
    filter: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
    position: relative;
    z-index: 2;
}

.store-btn img[data-v-7b3cab25] {
    height: 60px;
    width: auto;
    transition: transform .3s;
}

.store-btn:hover img[data-v-7b3cab25] {
    transform: translateY(-3px);
}

.audio-toggle-btn-inline[data-v-7b3cab25] {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    background: #ffffff26;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: .9rem;
    cursor: pointer;
    transition: all .3s ease;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 20;
}

.audio-toggle-btn[data-v-7b3cab25] {
    position: absolute;
    bottom: 50px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff3;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100 !important;
    transition: all .3s ease;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.audio-toggle-btn[data-v-7b3cab25]:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

@media(min-width: 992px) {
    .video-controls-wrapper[data-v-7b3cab25] {
        display: none !important
    }
    .audio-toggle-btn[data-v-7b3cab25] {
        display: flex
    }
}

.carousel-dots[data-v-7b3cab25] {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%);
    z-index: 30;
    display: flex;
    justify-content: center;
    gap: 12px;
}

[data-v-7b3cab25] .dot {
    width: 12px;
    height: 12px;
    background-color: #fff6;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s ease;
}

[data-v-7b3cab25] .dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 10px #ff900080;
}

.how-it-works-section[data-v-71684993] {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    width: 100%;
    overflow: visible;
}

.sticky-container[data-v-71684993] {
    position: relative;
    height: 100vh;
    width: 100%;
    transition: all .3s ease;
    top: 0;
}

/* iOS fix for sticky container */
@supports (-webkit-touch-callout: none) {
    .sticky-container[data-v-71684993] {
        height: -webkit-fill-available;
    }
}

.sticky-container.is-pinned[data-v-71684993] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: inherit;
    box-shadow: 0 5px 20px #0000000d;
}

/* iOS fix for pinned sticky */
@supports (-webkit-touch-callout: none) {
    .sticky-container.is-pinned[data-v-71684993] {
        position: -webkit-sticky;
        position: sticky;
    }
}

.sticky-container.is-finished[data-v-71684993] {
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
}

.steps-scroll-container[data-v-71684993] {
    position: relative;
    transition: transform .2s cubic-bezier(.33, 1, .68, 1);
    will-change: transform;
    padding: 20px 0;
}

.step-item[data-v-71684993] {
    position: relative;
    display: flex;
    margin-bottom: 2.5rem;
    padding: 24px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 5px 20px #00000008;
    transition: all .5s cubic-bezier(.4, 0, .2, 1);
    opacity: .4;
    transform: scale(.98) translateY(10px);
    border: 1px solid rgba(0, 0, 0, .05);
}

.step-item[data-v-71684993]:last-child {
    margin-bottom: 0;
}

.step-item.active[data-v-71684993] {
    opacity: 1;
    transform: scale(1) translateY(0);
    box-shadow: 0 25px 50px -12px #ff900040;
    border-left: 4px solid var(--primary, #ff9000);
    background: linear-gradient(to right, #fff, #fffaf5);
}

.step-item.was-active[data-v-71684993] {
    opacity: .8;
    transform: scale(.99) translateY(0);
}

.step-item.will-be-active[data-v-71684993] {
    opacity: .3;
    transform: scale(.97) translateY(5px);
}

.step-marker[data-v-71684993] {
    position: relative;
    width: 56px;
    height: 56px;
    background: #f0f0f0;
    color: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 25px;
    flex-shrink: 0;
    transition: all .3s;
    overflow: hidden;
    border: 1px solid #eee;
}

.step-number[data-v-71684993] {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item.active .step-marker[data-v-71684993] {
    background: var(--primary, #ff9000);
    color: #fff;
    box-shadow: 0 4px 15px #ff900059;
}

.step-text[data-v-71684993] {
    flex: 1;
}

.step-text h4[data-v-71684993] {
    font-size: 1.4rem;
    margin-bottom: .5rem;
    color: #2c3e50;
    transition: color .3s;
    font-weight: 600;
}

.step-item.active .step-text h4[data-v-71684993] {
    color: var(--primary, #ff9000);
}

.step-text p[data-v-71684993] {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.step-navigation[data-v-71684993] {
    justify-content: center;
    margin-top: 40px;
}

.step-dot[data-v-71684993] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: all .3s;
}

.step-dot.active[data-v-71684993] {
    background: var(--primary, #ff9000);
    border-color: var(--primary, #ff9000);
    transform: scale(1.3);
    box-shadow: 0 0 20px #ff900066;
}

.particles-container[data-v-71684993] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.works-image[data-v-71684993] {
    position: relative;
    z-index: 2;
    transition: transform .5s ease;
    max-width: 320px;
    filter: drop-shadow(0 20px 30px rgba(255, 144, 0, .15));
}

.works-image img[data-v-71684993] {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

@media(max-width: 991px) {
    .steps-scroll-container[data-v-71684993] {
        transition: transform .1s linear
    }
    .step-item[data-v-71684993] {
        margin-bottom: 1rem;
        padding: 16px;
        border-radius: 16px
    }
    .step-marker[data-v-71684993] {
        width: 32px;
        height: 32px;
        min-width: 32px;
        margin-right: 12px
    }
    .step-number[data-v-71684993] {
        font-size: 14px
    }
    .step-text h4[data-v-71684993] {
        font-size: 1.1rem;
        margin-bottom: .25rem
    }
    .step-text p[data-v-71684993] {
        font-size: .9rem
    }
    .works-image[data-v-71684993] {
        display: none
    }
    .step-navigation[data-v-71684993] {
        display: flex !important;
        margin-top: 20px
    }
    .section-title[data-v-71684993] {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 2rem !important
    }
}

@media(max-height: 500px) and (max-width: 991px) {
    .section-title[data-v-71684993] {
        font-size: 1.3rem;
        margin-bottom: 1rem !important
    }
    .step-item[data-v-71684993] {
        padding: 10px;
        margin-bottom: .5rem
    }
}

.section-title[data-v-71684993] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.section-title span[data-v-71684993] {
    color: var(--primary, #ff9000);
}

.h-100[data-v-71684993] {
    height: 100%;
}

@media(min-width: 992px) {
    .h-100[data-v-71684993] {
        height: 100%
    }
}

.testimonial-grid[data-v-adbaeee6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.about-hero[data-v-110c1d16] {
    background: linear-gradient(135deg, var(--primary) 0%, #ffa733 100%);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero-title[data-v-110c1d16] {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.about-hero-subtitle[data-v-110c1d16] {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: .9;
}

.mission-section[data-v-110c1d16] {
    padding: 80px 0;
    background: #fff;
}

.mission-card[data-v-110c1d16] {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px #0000000d;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .05);
    transition: transform .3s ease;
}

.mission-card[data-v-110c1d16]:hover {
    transform: translateY(-10px);
}

.mission-icon[data-v-110c1d16] {
    width: 70px;
    height: 70px;
    background: #ff90001a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 30px;
    color: var(--primary);
}

.values-section[data-v-110c1d16] {
    background: #f9f9f9;
    padding: 80px 0;
}

.value-card[data-v-110c1d16] {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px #0000000d;
    height: 100%;
    transition: transform .3s ease;
}

.value-card[data-v-110c1d16]:hover {
    transform: translateY(-10px);
}

.value-number[data-v-110c1d16] {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.team-section[data-v-110c1d16] {
    padding: 80px 0;
}

.team-member[data-v-110c1d16] {
    text-align: center;
    margin-bottom: 40px;
}

.team-photo[data-v-110c1d16] {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid rgba(255, 144, 0, .1);
    transition: all .3s ease;
}

.team-photo[data-v-110c1d16]:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.team-photo img[data-v-110c1d16] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name[data-v-110c1d16] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-position[data-v-110c1d16] {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-social[data-v-110c1d16] {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a[data-v-110c1d16] {
    color: var(--primary);
    font-size: 18px;
    transition: color .3s ease;
}

.team-social a[data-v-110c1d16]:hover {
    color: #e67e00;
}

.timeline-section[data-v-110c1d16] {
    padding: 80px 0;
    background: #fff;
}

.timeline[data-v-110c1d16] {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline[data-v-110c1d16]:after {
    content: "";
    position: absolute;
    width: 2px;
    background: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item[data-v-110c1d16] {
    padding: 10px 40px;
    position: relative;
    background: inherit;
    width: 50%;
}

.timeline-item[data-v-110c1d16]:nth-child(odd) {
    left: 0;
}

.timeline-item[data-v-110c1d16]:nth-child(2n) {
    left: 50%;
}

.timeline-dot[data-v-110c1d16] {
    position: absolute;
    width: 30px;
    height: 30px;
    right: -15px;
    background: var(--primary);
    border: 4px solid white;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.timeline-item:nth-child(2n) .timeline-dot[data-v-110c1d16] {
    left: -15px;
}

.timeline-content[data-v-110c1d16] {
    padding: 20px 30px;
    background: #f9f9f9;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 5px 15px #0000000d;
}

.timeline-year[data-v-110c1d16] {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.timeline-title[data-v-110c1d16] {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

@media(max-width: 768px) {
    .timeline[data-v-110c1d16]:after {
        left: 31px
    }
    .timeline-item[data-v-110c1d16] {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px
    }
    .timeline-item[data-v-110c1d16]:nth-child(2n) {
        left: 0%
    }
    .timeline-dot[data-v-110c1d16] {
        left: 15px;
        right: auto
    }
    .timeline-item:nth-child(2n) .timeline-dot[data-v-110c1d16] {
        left: 15px
    }
}

.cta-about[data-v-110c1d16] {
    background: linear-gradient(135deg, var(--primary) 0%, #ffa733 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-about-title[data-v-110c1d16] {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-about-subtitle[data-v-110c1d16] {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: .9;
}

.section-title[data-v-110c1d16] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title span[data-v-110c1d16] {
    color: var(--primary);
}

.animate-on-scroll[data-v-110c1d16] {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease;
}

.animate-on-scroll.visible[data-v-110c1d16] {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width: 768px) {
    .about-hero-title[data-v-110c1d16],
    .section-title[data-v-110c1d16] {
        font-size: 2rem
    }
    .cta-about-title[data-v-110c1d16] {
        font-size: 1.8rem
    }
}

.contact-page[data-v-6e2036ce] {
    background-color: var(--light);
    text-align: center;
}

.hero-section[data-v-6e2036ce] {
    padding: 160px 0 80px;
    background: var(--gradient);
    color: #fff;
    text-align: center;
}

.hero-subtitle[data-v-6e2036ce] {
    max-width: 700px;
    margin: 0 auto;
    opacity: .9;
    color: #fff;
}

.contact-card[data-v-6e2036ce] {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px #0000000d;
    transition: transform .3s ease;
    border: 1px solid rgba(0, 0, 0, .02);
}

.contact-card[data-v-6e2036ce]:hover {
    transform: translateY(-10px);
}

.icon-wrapper[data-v-6e2036ce] {
    width: 80px;
    height: 80px;
    background: #ff90001a;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
}

.contact-card h3[data-v-6e2036ce] {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.form-control[data-v-6e2036ce] {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #f8f9fa;
    /* iOS input fixes */
    -webkit-appearance: none;
    appearance: none;
    font-size: 16px; /* Prevents zoom on iOS */
}

.form-control[data-v-6e2036ce]:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px #ff90001a;
    outline: none;
}

/* iOS fix for inputs */
@supports (-webkit-touch-callout: none) {
    .form-control[data-v-6e2036ce] {
        font-size: 16px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px;
    }
}

.privacy-page[data-v-67a14027] {
    background-color: var(--light, #f8f9fa);
    padding-bottom: 60px;
}

.hero-section[data-v-67a14027] {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #ff9000, #ffa733);
    color: #fff;
    text-align: center;
}

h1[data-v-67a14027] {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.last-updated[data-v-67a14027] {
    font-size: 1rem;
    opacity: .9;
}

.content-section[data-v-67a14027] {
    margin-top: -60px;
}

.content-card[data-v-67a14027] {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px #00000014;
}

h2[data-v-67a14027] {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    font-weight: 700;
}

h2 span[data-v-67a14027] {
    color: #ff9000;
    font-size: 1.2rem;
    margin-right: 15px;
    opacity: .6;
    font-weight: 800;
}

h3[data-v-67a14027] {
    font-size: 1.2rem;
    margin: 25px 0 15px;
    color: #1a1a2e;
    font-weight: 600;
}

p[data-v-67a14027],
li[data-v-67a14027] {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

ul[data-v-67a14027] {
    padding-left: 20px;
    margin-bottom: 20px;
}

li[data-v-67a14027] {
    margin-bottom: 10px;
}

a[data-v-67a14027] {
    color: #ff9000;
    text-decoration: none;
    font-weight: 500;
}

a[data-v-67a14027]:hover {
    text-decoration: underline;
}

.highlight-box[data-v-67a14027] {
    background: #ff80000d;
    border-left: 4px solid #ff9000;
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin: 32px 0;
}

@media(max-width: 768px) {
    .content-card[data-v-67a14027] {
        padding: 30px 20px
    }
    h1[data-v-67a14027] {
        font-size: 2rem
    }
    h2[data-v-67a14027] {
        font-size: 1.3rem
    }
    .hero-section[data-v-67a14027] {
        padding: 120px 0 80px
    }
}

[data-v-887cbdfe]:root {
    --primary: #ff9000;
    --primary-dark: #e67e00;
    --primary-light: #ffa733;
    --secondary: #1a1a2e;
    --accent: #00d1b2;
    --accent-dark: #00b39e;
    --dark: #16213e;
    --light: #f8f9fa;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --text-dark: #333;
    --text-light: #fff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, .16);
    --transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.savings-page[data-v-887cbdfe] {
    padding-top: 0;
}

.hero-section[data-v-887cbdfe] {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #ff9000, #ffa733);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-content[data-v-887cbdfe] {
    position: relative;
    z-index: 2;
}

.hero-title[data-v-887cbdfe] {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle[data-v-887cbdfe] {
    font-size: 1.25rem;
    color: #ffffffe6;
    margin-bottom: 30px;
    max-width: 600px;
}

.image-placeholder[data-v-887cbdfe] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: #ffffff1a;
    border-radius: 20px;
}

.floating-hero-img[data-v-887cbdfe] {
    max-width: 130%;
    height: auto;
    filter: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

@media(max-width: 767.98px) {
    .hero-image[data-v-887cbdfe] {
        display: block !important;
        margin-top: 2rem
    }
    .hero-floating-img[data-v-887cbdfe] {
        max-width: 100% !important;
        height: auto
    }
}

.wave-divider[data-v-887cbdfe] {
    position: relative;
    height: 100px;
    overflow: hidden;
    margin-top: -1px;
}

.wave-divider svg[data-v-887cbdfe] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section[data-v-887cbdfe] {
    padding: 100px 0;
}

.bg-light[data-v-887cbdfe] {
    background-color: #f8f9fa !important;
}

.section-title[data-v-887cbdfe] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: #1a1a2e;
}

.section-title span[data-v-887cbdfe] {
    color: #ff9000;
}

.section-title.center[data-v-887cbdfe] {
    display: block;
}

.section-subtitle[data-v-887cbdfe] {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.savings-plan[data-v-887cbdfe] {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px #0000001f;
    transition: all .3s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, .05);
    margin-bottom: 30px;
}

.savings-plan[data-v-887cbdfe]:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px #00000029;
}

.plan-popular[data-v-887cbdfe] {
    background: #ff9000;
    color: #fff;
    text-align: center;
    padding: 5px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.plan-header[data-v-887cbdfe] {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.plan-name[data-v-887cbdfe] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.plan-interest[data-v-887cbdfe] {
    font-size: 3rem;
    font-weight: 800;
    color: #ff9000;
    line-height: 1;
    margin-bottom: 5px;
}

.plan-period[data-v-887cbdfe] {
    color: #666;
    font-size: .9rem;
    font-weight: 500;
}

.plan-body[data-v-887cbdfe] {
    padding: 30px;
}

.plan-features[data-v-887cbdfe] {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.plan-features li[data-v-887cbdfe] {
    margin-bottom: 15px;
    color: #555;
    display: flex;
    align-items: center;
}

.plan-features li[data-v-887cbdfe]:before {
    content: "✓";
    color: #00d1b2;
    font-weight: 700;
    margin-right: 10px;
}

.feature-card[data-v-887cbdfe] {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 8px #00000014;
    transition: all .3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .05);
}

.feature-card[data-v-887cbdfe]:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px #00000029;
}

.feature-icon[data-v-887cbdfe] {
    width: 60px;
    height: 60px;
    background: #ff90001a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #ff9000;
}

.feature-card h3[data-v-887cbdfe] {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.feature-card p[data-v-887cbdfe] {
    color: #666;
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.calculator[data-v-887cbdfe] {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 8px #00000014;
}

.calculator-result[data-v-887cbdfe] {
    background: linear-gradient(135deg, #ff9000, #ffa733);
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.result-amount[data-v-887cbdfe] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-section[data-v-887cbdfe] {
    padding: 80px 0;
    background: #1a1a2e;
    color: #fff;
}

.stat-item[data-v-887cbdfe] {
    margin-bottom: 30px;
}

.stat-number[data-v-887cbdfe] {
    font-size: 3rem;
    font-weight: 800;
    color: #ff9000;
    margin-bottom: 10px;
}

.stat-label[data-v-887cbdfe] {
    font-size: 1.1rem;
    opacity: .8;
}

.cta-section[data-v-887cbdfe] {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff9000, #ffa733);
    color: #fff;
}

.cta-title[data-v-887cbdfe] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle[data-v-887cbdfe] {
    font-size: 1.2rem;
    opacity: .9;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media(max-width: 991.98px) {
    .hero-title[data-v-887cbdfe] {
        font-size: 2.5rem
    }
}

@media(max-width: 767.98px) {
    .hero-section[data-v-887cbdfe] {
        padding: 140px 0 80px;
        text-align: center
    }
    .hero-title[data-v-887cbdfe] {
        font-size: 2rem
    }
    .hero-subtitle[data-v-887cbdfe] {
        margin-left: auto;
        margin-right: auto
    }
}

[data-v-f7534374]:root {
    --primary: #ff9000;
    --primary-dark: #e67e00;
    --primary-light: #ffa733;
    --secondary: #1a1a2e;
    --accent: #00d1b2;
    --accent-dark: #00b39e;
    --dark: #16213e;
    --light: #f8f9fa;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --text-dark: #333;
    --text-light: #fff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, .16);
    --transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.debit-cards-page[data-v-f7534374] {
    padding-top: 0;
}

.hero-section[data-v-f7534374] {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #ff9000, #ffa733);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-content[data-v-f7534374] {
    position: relative;
    z-index: 2;
}

.hero-title[data-v-f7534374] {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle[data-v-f7534374] {
    font-size: 1.25rem;
    color: #ffffffe6;
    margin-bottom: 30px;
    max-width: 600px;
}

.wave-divider[data-v-f7534374] {
    position: relative;
    height: 100px;
    overflow: hidden;
    margin-top: -1px;
}

.wave-divider svg[data-v-f7534374] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-showcase[data-v-f7534374] {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

/* iOS fix for 3D transforms */
@supports (-webkit-touch-callout: none) {
    .card-showcase[data-v-f7534374] {
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
}

.card-3d[data-v-f7534374] {
    width: 320px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform .1s ease;
    cursor: pointer;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    box-shadow: 0 20px 50px #0003;
}

/* iOS fix for preserve-3d */
@supports (-webkit-touch-callout: none) {
    .card-3d[data-v-f7534374] {
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }
}

.card-front[data-v-f7534374] {
    padding: 25px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-chip[data-v-f7534374] {
    width: 50px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37, #aa8c2c);
    border-radius: 5px;
    margin-bottom: 10px;
}

.card-number[data-v-f7534374] {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: monospace;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
}

.card-details[data-v-f7534374] {
    display: flex;
    justify-content: space-between;
}

.card-label[data-v-f7534374] {
    font-size: .6rem;
    opacity: .7;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.card-products[data-v-f7534374] {
    padding: 80px 0;
}

.card-product[data-v-f7534374] {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 12px #00000014;
    text-align: center;
    transition: all .3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .05);
    margin-bottom: 30px;
}

.card-product[data-v-f7534374]:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px #00000029;
}

.card-product-img[data-v-f7534374] {
    margin-bottom: 20px;
}

.card-product-title[data-v-f7534374] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.card-product-features[data-v-f7534374] {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.card-product-features li[data-v-f7534374] {
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
}

.card-product-features li[data-v-f7534374]:before {
    content: "✓";
    color: #ff9000;
    font-weight: 700;
    margin-right: 10px;
}

.section[data-v-f7534374] {
    padding: 100px 0;
}

.section-title[data-v-f7534374] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: #1a1a2e;
}

.section-title span[data-v-f7534374] {
    color: #ff9000;
}

.section-title.center[data-v-f7534374] {
    display: block;
}

.section-subtitle[data-v-f7534374] {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.feature-card[data-v-f7534374] {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 8px #00000014;
    transition: all .3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .05);
}

.feature-card[data-v-f7534374]:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px #00000029;
}

.feature-icon[data-v-f7534374] {
    width: 60px;
    height: 60px;
    background: #ff90001a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #ff9000;
}

.feature-card h3[data-v-f7534374] {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.feature-card p[data-v-f7534374] {
    color: #666;
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.security-section[data-v-f7534374] {
    padding: 100px 0;
    background: #1a1a2e;
    color: #fff;
}

.security-feature[data-v-f7534374] {
    text-align: center;
    padding: 20px;
}

.security-icon[data-v-f7534374] {
    font-size: 3rem;
    color: #ff9000;
    margin-bottom: 20px;
}

.text-white-50[data-v-f7534374] {
    color: #ffffff80 !important;
}

.stats-section[data-v-f7534374] {
    padding: 80px 0;
}

.cta-section[data-v-f7534374] {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff9000, #ffa733);
    color: #fff;
}

.cta-title[data-v-f7534374] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle[data-v-f7534374] {
    font-size: 1.2rem;
    opacity: .9;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media(max-width: 991.98px) {
    .hero-title[data-v-f7534374] {
        font-size: 2.5rem
    }
}

@media(max-width: 767.98px) {
    .hero-section[data-v-f7534374] {
        padding: 140px 0 80px;
        text-align: center
    }
    .hero-title[data-v-f7534374] {
        font-size: 2rem
    }
    .card-showcase[data-v-f7534374] {
        height: 300px
    }
    .card-3d[data-v-f7534374] {
        width: 280px;
        height: 175px
    }
    .hero-image[data-v-f7534374] {
        display: none !important
    }
}

.floating-hero-img[data-v-f7534374] {
    max-width: 130%;
    height: auto;
    filter: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

[data-v-8e11babf]:root {
    --primary: #FF6D13;
    --primary-dark: #E05E0B;
    --primary-light: #FF8D42;
    --dark: #1A1A1A;
    --light: #FAFAFA;
    --gray: #EDEDED;
    --shadow: 0 4px 20px rgba(0, 0, 0, .08);
    --transition: all .3s cubic-bezier(.25, .8, .25, 1)
}

.compliance-page[data-v-8e11babf] {
    padding-top: 0;
}

.hero-section[data-v-8e11babf] {
    background: linear-gradient(135deg, #ff9000, #ffa733);
    color: #fff;
    padding: 180px 0 80px;
    text-align: center;
}

.hero-section h1[data-v-8e11babf] {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-section p[data-v-8e11babf] {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.content-section[data-v-8e11babf] {
    padding: 80px 0;
}

.bg-light[data-v-8e11babf] {
    background-color: #f9f9f9;
}

.section-title[data-v-8e11babf] {
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.section-title[data-v-8e11babf]:after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    bottom: 0;
    left: 0;
    background-color: #ff9000;
}

.section-title.center[data-v-8e11babf] {
    text-align: center;
}

.center.section-title[data-v-8e11babf]:after {
    left: 50%;
    transform: translate(-50%);
}

.compliance-grid[data-v-8e11babf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.compliance-card[data-v-8e11babf] {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px #00000014;
    transition: all .3s ease;
    height: 100%;
    border-top: 5px solid #ff9000;
}

.compliance-card[data-v-8e11babf]:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px #0000001a;
}

.compliance-card h3[data-v-8e11babf] {
    color: #ff9000;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.compliance-icon[data-v-8e11babf] {
    font-size: 2.5rem;
    color: #ff9000;
    margin-bottom: 20px;
}

.compliance-table[data-v-8e11babf] {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 4px 20px #00000014;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.compliance-table th[data-v-8e11babf],
.compliance-table td[data-v-8e11babf] {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #EDEDED;
}

.compliance-table th[data-v-8e11babf] {
    background-color: #ff9000;
    color: #fff;
    font-weight: 600;
}

.compliance-table tr[data-v-8e11babf]:nth-child(2n) {
    background-color: #f9f9f9;
}

.compliance-table tr[data-v-8e11babf]:hover {
    background-color: #f1f1f1;
}

.accordion[data-v-8e11babf] {
    margin: 40px 0;
}

.accordion-item[data-v-8e11babf] {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px #00000014;
    background: #fff;
}

.accordion-header[data-v-8e11babf] {
    background-color: #fff;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all .3s ease;
}

.accordion-header[data-v-8e11babf]:hover {
    background-color: #f9f9f9;
}

.accordion-content[data-v-8e11babf] {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    background-color: #fff;
}

.accordion-content.active[data-v-8e11babf] {
    max-height: 500px;
    padding: 20px;
}

.accordion-header span[data-v-8e11babf] {
    font-size: 1.5rem;
    font-weight: 300;
}

.contact-card[data-v-8e11babf] {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px #00000014;
    max-width: 500px;
    margin: 0 auto;
}

.contact-card p[data-v-8e11babf] {
    margin-bottom: 10px;
}

.contact-card a[data-v-8e11babf] {
    color: #ff9000;
    text-decoration: none;
}

@media(max-width: 768px) {
    .hero-section h1[data-v-8e11babf] {
        font-size: 2.2rem
    }
    .section-title[data-v-8e11babf] {
        font-size: 1.8rem
    }
    .hero-section[data-v-8e11babf] {
        padding: 140px 0 60px
    }
}

.blog-page[data-v-3d0c1c8a] {
    padding-top: 0;
}

.hero-section[data-v-3d0c1c8a] {
    padding: 180px 0 100px;
    background: var(--secondary);
    color: #fff;
}

.payments-page[data-v-7c25eda8] {
    padding-top: 0;
}

.hero-section[data-v-7c25eda8] {
    padding: 220px 0 140px;
    background: linear-gradient(135deg, #1a1a2e, #0f0c29);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-overlay[data-v-7c25eda8] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0006;
    z-index: 1;
}

.z-index-hero[data-v-7c25eda8] {
    z-index: 5;
}

.hero-title[data-v-7c25eda8] {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}

.hero-title span[data-v-7c25eda8] {
    color: #ff9000;
}

.hero-subtitle[data-v-7c25eda8] {
    font-size: 1.4rem;
    opacity: .95;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.shape[data-v-7c25eda8] {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.shape-1[data-v-7c25eda8] {
    width: 500px;
    height: 500px;
    background: #ff900040;
    top: -150px;
    right: -100px;
}

.shape-2[data-v-7c25eda8] {
    width: 400px;
    height: 400px;
    background: #00d1b226;
    bottom: -100px;
    left: -100px;
}

.section[data-v-7c25eda8] {
    padding: 120px 0;
}

.service-section[data-v-7c25eda8] {
    position: relative;
    overflow: hidden;
}

.section-title[data-v-7c25eda8] {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.section-title span[data-v-7c25eda8] {
    color: #ff9000;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    font-weight: 700;
    margin-top: -5px;
}

.service-subtitle[data-v-7c25eda8] {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.service-description[data-v-7c25eda8] {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.image-wrapper[data-v-7c25eda8] {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.service-featured-img[data-v-7c25eda8] {
    position: relative;
    z-index: 2;
    transition: transform .6s cubic-bezier(.165, .84, .44, 1);
    width: 100%;
}

.floating-icon[data-v-7c25eda8] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px #00000026;
    z-index: 3;
    animation: float-7c25eda8 4s ease-in-out infinite;
}

@keyframes float-7c25eda8 {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-15px)
    }
    to {
        transform: translateY(0)
    }
}

.image-accent[data-v-7c25eda8] {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border-radius: 40px;
    opacity: .1;
    z-index: 0;
    transform: translate(5%, 5%);
}

.image-wrapper:hover .service-featured-img[data-v-7c25eda8] {
    transform: translateY(-10px) rotate(1deg);
}

.service-badge[data-v-7c25eda8] {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-badge .dot[data-v-7c25eda8] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 10px;
}

.feature-checklist[data-v-7c25eda8] {
    list-style: none;
    padding: 0;
}

.feature-checklist li[data-v-7c25eda8] {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #444;
}

.feature-checklist i[data-v-7c25eda8] {
    font-size: 1.2rem;
}

.bg-light[data-v-7c25eda8] {
    background-color: #fbfbfc !important;
}

.shadow-xl[data-v-7c25eda8] {
    box-shadow: 0 25px 50px -12px #00000026;
}

.bg-primary-gradient[data-v-7c25eda8] {
    background: linear-gradient(135deg, #ff9000, #e67e00);
}

.cta-title[data-v-7c25eda8] {
    font-size: 3.2rem;
    font-weight: 800;
}

.cta-subtitle[data-v-7c25eda8] {
    text-align: center;
}

.accordion-button[data-v-7c25eda8]:not(.collapsed) {
    background-color: #ff900015;
    color: #ff9000;
}

.accordion-button[data-v-7c25eda8]:focus {
    box-shadow: none;
    border-color: #ff9000;
}

@media(max-width: 991px) {
    .hero-title[data-v-7c25eda8] {
        font-size: 3.2rem
    }
    .section[data-v-7c25eda8] {
        padding: 80px 0
    }
    .section-title[data-v-7c25eda8] {
        font-size: 2.2rem
    }
}

@media(max-width: 767px) {
    .hero-title[data-v-7c25eda8] {
        font-size: 2.5rem
    }
    .hero-subtitle[data-v-7c25eda8] {
        font-size: 1.1rem
    }
    .cta-title[data-v-7c25eda8] {
        font-size: 2.2rem
    }
}

/* Additional iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    /* Fix for momentum scrolling on iOS */
    .swiper-wrapper,
    .steps-scroll-container,
    .testimonial-slider {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix for sticky hover states on iOS */
    .btn:hover,
    .feature-card:hover,
    .card-product:hover,
    .nav-link:hover {
        transform: none;
    }
    
    /* Fix for box-shadow performance on iOS */
    .btn,
    .feature-card,
    .card-product,
    .testimonial-card {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Fix for font rendering on iOS */
    body {
        -webkit-font-smoothing: subpixel-antialiased;
    }
    
    /* Fix for input zoom on iOS */
    select,
    textarea,
    input[type="text"],
    input[type="password"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    input[type="number"],
    input[type="email"],
    input[type="url"],
    input[type="search"],
    input[type="tel"],
    input[type="color"] {
        font-size: 16px;
    }
}
/* ========== HERO SECTION CENTERED FIX ========== */
.hero-section {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 500px !important;
    padding: 80px 0 !important;
    text-align: center !important;
    background: var(--gradient) !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero-section .container {
    position: relative !important;
    z-index: 2 !important;
}

.hero-section .row {
    justify-content: center !important;
    text-align: center !important;
}

.hero-content {
    text-align: center !important;
}

.hero-title {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
    color:#0000ff !important;
}

.hero-title span {
    color: #fff !important;
}

.hero-subtitle {
    font-size: 1.2rem !important;
    color: rgba(255,255,255,0.9) !important;
    max-width: 600px !important;
    margin: 0 auto 2rem !important;
    text-align: center !important;
}

.hero-image {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.hero-image img {
    max-height: 350px !important;
    margin: 0 auto !important;
}

.app-badges {
    justify-content: center !important;
    display: flex !important;
    gap: 15px !important;
}

.floating-element {
    pointer-events: none !important;
}

/* Hide video and swiper junk */
.video-bg-container,
video,
.hero-video-bg,
.video-overlay,
.carousel-dots,
.swiper-pagination,
.swiper-button-prev,
.swiper-button-next,
.audio-toggle-btn,
.audio-toggle-btn-inline,
.video-controls-wrapper {
    display: none !important;
}

/* Remove swiper transformations */
.swiper-wrapper {
    transform: none !important;
    transition: none !important;
}

.hero-slide-item {
    width: 100% !important;
    position: relative !important;
    transform: none !important;
}

/* Only show first slide */
.hero-slide-item:not(:first-child) {
    display: none !important;
}

