:root {
    --primary: #06b6d4;
    --secondary: #f59e0b;
    --accent: #ec4899;
    --success: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #fefefe;
    --bg-gradient: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-gradient);
    overflow-x: hidden;
    padding-bottom: 80px;
    min-height: 100vh;
}

.navy-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.2);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ticker-container {
    width: 100%;
    background: linear-gradient(90deg, #2563eb, #1e40af);
    color: #fff;
    padding: 14px 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1)
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: scroll 25s linear infinite
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 32px;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative
}

.ticker-item:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -5px;
    color: rgba(255, 255, 255, 0.6)
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@media (max-width:768px) {
    .ticker-item {
        font-size: 0.85rem;
        padding: 0 20px
    }
}

.hero-section {
    background: linear-gradient(135deg, #fefefe 0%, #f0f9ff 50%, #e0f2fe 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.hero-section::before {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    animation-delay: 0s;
}

.hero-section::after {
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.slider-image {
    max-width: 90%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    margin: 0 auto;
    transition: transform 0.3s ease;
    border-radius: 12px
}

.slider-image:hover {
    transform: scale(1.02)
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.8
    }
}

.animate-pulse {
    animation: pulse 2s infinite
}

.typing-text {
    border-right: 2px solid;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 4s steps(25) infinite, blink-caret 0.75s step-end infinite
}

@keyframes typing {
    0% {
        width: 0
    }

    50%,
    100% {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: currentColor
    }
}

.fixed-bottom-download {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 0;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.full-width-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 18px 24px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.full-width-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.full-width-download-btn:hover::before {
    left: 100%;
}

.full-width-download-btn:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.full-width-download-btn:active {
    transform: translateY(0);
    opacity: 0.9;
}

.download-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0
}

.download-text {
    font-size: 1.1rem;
    font-weight: 700
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 24px
}

.payment-logo-item {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease
}

.payment-logo-item:hover {
    transform: translateY(-2px)
}

.payment-logo-item img {
    width: 64px;
    height: 64px;
    object-fit: contain
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto
}

.feature-item {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.15);
    border-color: var(--primary);
}

.feature-item img {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    transition: transform 0.3s ease;
}

.feature-item:hover img {
    transform: scale(1.1);
}

.trusted-platform-box {
    background: linear-gradient(135deg, var(--success), #059669);
    color: #fff;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 32px auto;
    max-width: 500px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3)
}

.trusted-platform-box img {
    width: 64px;
    height: 64px
}

.trusted-platform-box .text {
    font-size: 1.25rem;
    font-weight: 600
}

.payment-proof-swiper {
    padding: 20px 0 40px
}

.swiper-slide {
    height: auto
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary)
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important
}

#gallery-slider {
    display: flex;
    transition: transform 0.5s ease-in-out
}

@media (max-width:768px) {
    .full-width-download-btn {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .download-icon {
        width: 28px;
        height: 28px;
    }

    .download-text {
        font-size: 1rem;
    }

    .hero-section {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }

    .trusted-platform-box {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

.container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px
}