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

.cookie-popup,
.header {
    position: fixed;
    transition: .3s
}

.btn,
body {
    font-family: 'Golos Text', sans-serif
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    background-color: #07090f;
    color: #f6f8ff;
    line-height: 1.6;
    overflow-x: hidden
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #07090f;
    justify-content: center;
    z-index: 10000;
    transition: opacity .5s, visibility .5s
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden
}

.preloader-content {
    text-align: center
}

.preloader-logo {
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
    color: #f6f8ff
}

.preloader-logo .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: 2s infinite pulse
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: rgba(19, 68, 246, .2);
    border-radius: 2px;
    overflow: hidden
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #1344f6, #0f2fd9);
    border-radius: 2px;
    animation: 2s ease-in-out infinite loading
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

@keyframes loading {
    0% {
        width: 0%
    }

    50% {
        width: 70%
    }

    100% {
        width: 100%
    }
}

.cookie-popup {
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(7, 9, 15, .95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(19, 68, 246, .2);
    border-radius: 18px;
    padding: 24px;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    max-width: 500px;
    margin: 0 0 0 auto
}

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

.cookie-popup.hide {
    transform: translateY(100px);
    opacity: 0
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 16px
}

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

.cookie-text h4 {
    color: #f6f8ff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px
}

.cookie-text p,
.feature-card p {
    color: #a9acb7;
    font-size: 14px;
    line-height: 1.5
}

.cookie-buttons,
.social-links {
    display: flex;
    gap: 12px
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s
}

.cookie-accept {
    background: #1344f6;
    color: #fff
}

.cookie-accept:hover {
    background: #0f2fd9;
    transform: translateY(-2px)
}

.cookie-decline {
    background: 0 0;
    color: #a9acb7;
    border: 1px solid rgba(169, 172, 183, .3)
}

.footer-column a:hover,
.language-selector:hover,
.logo,
.nav-link:hover {
    color: #f6f8ff
}

.cookie-decline:hover {
    background: rgba(169, 172, 183, .1);
    color: #f6f8ff
}

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

.header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000
}

.header-content {
    justify-content: space-between;
    padding: 16px 20px;
    margin-top: 10px;
    background: #07090f;
    border: 1px solid #ffffff47;
    border-radius: 200px
}

.logo {
    gap: 8px;
    text-decoration: none
}

.header-actions,
.nav {
    display: flex;
    align-items: center
}

.language-selector,
.nav-link {
    color: #a9acb7;
    transition: color .3s
}

.logo-icon {
    height: 28px;
    transition: transform .3s
}

.logo-icon img {
    height: 100%
}

.header .logo-icon {
    height: 36px;
}

.logo:hover .logo-icon {
    transform: scale(1.1)
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .5px
}

.btn,
.nav-link {
    font-weight: 500;
    text-decoration: none
}

.nav {
    gap: 32px
}

.nav-link {
    font-size: 16px;
    position: relative
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1344f6;
    transition: width .3s
}

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

.header-actions {
    gap: 16px
}

.language-dropdown {
    position: relative;
    display: inline-block
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #ffffff47;
    padding: 9px 10px;
    border-radius: 8px
}

.language-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #0f121b;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: none;
    flex-direction: column;
    width: 100%;
    z-index: 10
}

.btn,
.hero {
    position: relative;
    overflow: hidden
}

.btn,
.language-option {
    align-items: center;
    gap: 8px;
    cursor: pointer
}

.btn.loading::after,
.flag {
    width: 16px;
    height: 16px
}

.language-option {
    display: flex;
    padding: 8px 12px;
    color: #a9acb7;
    transition: background .2s
}

.language-option:hover {
    background: rgba(255, 255, 255, .05);
    color: #fff
}

.btn {
    display: inline-flex;
    padding: 8px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    transition: .3s
}

.btn-primary {
    background: linear-gradient(135deg, #1344f6 0, #0f2fd9 100%);
    color: #fff
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 68, 246, .3)
}

.btn-secondary {
    background: 0 0;
    color: #fff;
    padding-left: 0;
    padding-right: 0
}

.btn-secondary:hover {
    color: #1344f6;
    border-color: #1344f6
}

.hero {
    padding: 120px 0 40px
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: linear-gradient(90deg, #0f121b, #0f162f);
    padding: 50px 60px;
    border-radius: 30px
}

.feature-card,
.pricing-card {
    background: #0f121b;
    position: relative;
    overflow: hidden;
    transition: .3s
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff
}

.hero-description {
    font-size: 18px;
    color: #a9acb7;
    line-height: 1.6;
    margin-bottom: 24px
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.hero-image {
    position: relative;
    animation: 6s ease-in-out infinite float
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3)
}

@keyframes float {

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

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

.benefits,
.features,
.info {
    padding: 40px 0
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 40px;
    color: #f6f8ff
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px
}

.feature-card {
    border-radius: 18px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 68, 246, .1) 0, transparent 50%);
    opacity: 0;
    transition: opacity .3s
}

.feature-card:hover::before {
    opacity: 1
}

.feature-card:hover {
    transform: translateY(-8px)
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f6f8ff
}

.pricing {
    padding: 80px 0
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px
}

.pricing-card {
    border-radius: 18px;
    padding: 32px
}

.pricing-featured {
    background-image: url('images/pricing-card-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.pricing-featured img {
    height: 64px;
    width: 64px
}

.pricing-featured h3 {
    font-size: 1.5rem;
    margin-bottom: 10px
}

.pricing-featured p {
    font-size: 1.2rem;
    opacity: .7
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: #1344f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

.btn.loading,
.cta {
    position: relative
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #f6f8ff
}

.pricing-header p,
.pricing-price {
    margin-bottom: 12px
}

.pricing-header p {
    color: #a9acb7;
    font-size: 14px
}

.pricing-price .price {
    font-size: 32px;
    font-weight: 700;
    color: #f6f8ff
}

.pricing-price .period {
    font-size: 16px;
    color: #a9acb7
}

.pricing-specs {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.spec {
    color: #a9acb7;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(169, 172, 183, .1)
}

.spec span {
    color: #fff
}

.spec:last-child {
    border-bottom: none
}

.benefits-content {
    width: 100%;
    margin: 0 auto;
    background-image: linear-gradient(rgba(7, 9, 15, 0.92), rgba(7, 9, 15, 0.92)), url('images/cta-bg-IS.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px;
    border-radius: 30px
}

.benefits-content h2 {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f6f8ff;
    text-align: left
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    justify-content: flex-start;
    max-width: 1000px
}

.benefit-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1c2131;
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    font-size: 15px;
    white-space: nowrap;
    transition: .3s
}

.cta-content,
.info-content {
    text-align: center;
    border-radius: 30px;
    margin: 0 auto
}

.benefit-item img {
    height: 24px;
    width: 24px
}

.benefit-item span {
    color: #f6f8ff;
    font-size: 14px;
    font-weight: 500
}

.info-content {
    width: 100%;
    background-color: #0f121b;
    padding: 50px
}

.info-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f6f8ff
}

.info-content p {
    font-size: 18px;
    color: #a9acb7;
    line-height: 1.6
}

.cta {
    padding: 40px 0;
    overflow: hidden
}

.cta-content {
    background-image: linear-gradient(rgba(7, 9, 15, 0.92), rgba(7, 9, 15, 0.92)), url('images/cta-bg-IS.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px;
    position: relative
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #f6f8ff
}

.cta-content p {
    font-size: 18px;
    color: #fff;
    opacity: .5;
    margin-bottom: 32px
}

.cta-note {
    font-size: 14px !important;
    color: #fff !important;
    opacity: .5;
    margin-top: 24px !important;
    margin-bottom: 0 !important
}

.footer {
    padding: 60px 0 0
}

.footer-block {
    padding: 40px;
    background-color: #0f121b;
    border-radius: 30px 30px 0 0
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 20px
}

.footer-brand p {
    color: #a9acb7;
    font-size: 14px;
    margin-top: 16px
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-left: auto;
    max-width: 500px;
}

.footer-column h4 {
    color: #f6f8ff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px
}

.footer-bottom p,
.footer-column a {
    color: #a9acb7;
    font-size: 14px
}

.footer-column a {
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color .3s
}

.social-link {
    width: 40px;
    height: 40px;
    background: #ffffff1f;
    border-radius: 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: .3s
}

.social-link:hover {
    background: #ffffff37;
    color: #fff;
    transform: translateY(-2px)
}

.footer-bottom {
    text-align: left
}

@media (max-width:1024px) {
    .container {
        padding: 0 24px
    }

    .hero-content {
        gap: 40px
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
    }
}

@media (max-width:768px) {
    .container {
        padding: 0 16px
    }

    .header-content {
        flex-wrap: wrap;
        gap: 16px;
        padding: 16px;
        border-radius: 0;
        margin-top: 0
    }

    .header .container {
        padding: 0
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 24px;
        padding-top: 16px;
        border-top: 1px solid rgba(19, 68, 246, .1)
    }

    .cta-icons,
    .header-actions {
        gap: 12px
    }

    .hero {
        padding: 120px 0 60px
    }

    .footer-content,
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center
    }

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

    .hero-description {
        font-size: 16px
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .feature-card,
    .pricing-card {
        padding: 28px
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px
    }

    .cookie-popup {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 20px
    }

    .cookie-buttons {
        flex-direction: column
    }

    .benefits-content h2,
    .cta-content h2,
    .info-content h2,
    .section-title {
        font-size: 28px
    }

    .cta-icon {
        width: 40px;
        height: 40px;
        font-size: 16px
    }
}

@media (max-width:480px) {
    .container {
        padding: 0 12px
    }

    .header-content {
        padding: 12px
    }

    .logo-text,
    .nav {
        display: none
    }

    .benefits-content {
        padding: 50px 25px
    }

    .hero-content {
        background: linear-gradient(90deg, #0f121b, #0f162f);
        min-height: 600px;
        padding: 50px 20px;
        align-items: start
    }

    .cta-content {
        background-image: url('images/mobile-cta-bg.png');
        min-height: 470px
    }

    .hero-buttons .btn,
    .social-links {
        justify-content: center
    }

    .benefit-item span,
    .cookie-text p,
    .nav-link {
        font-size: 13px
    }

    .hero-title,
    .pricing-price .price {
        font-size: 28px
    }

    .hero {
        padding: 100px 0 50px
    }

    .hero-title {
        margin-bottom: 20px
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 28px
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
        text-align: center
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px
    }

    .feature-card,
    .pricing-card {
        padding: 24px
    }

    .feature-card h3 {
        font-size: 18px
    }

    .pricing-header h3 {
        font-size: 20px
    }

    .benefits-content h2,
    .cta-content h2,
    .info-content h2 {
        font-size: 24px
    }

    .benefit-item {
        width: 100%;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
        padding: 14px
    }

    .cta-content p,
    .info-content p {
        font-size: 16px
    }

    .cta-note {
        font-size: 13px !important
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: left
    }

    .footer-column {
        text-align: center
    }

    .cookie-popup {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px
    }

    .cookie-text h4 {
        font-size: 15px
    }

    .cookie-btn {
        padding: 10px 16px;
        font-size: 13px
    }
}

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

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

    .feature-card,
    .pricing-card {
        padding: 20px
    }

    .btn {
        padding: 10px 16px;
        font-size: 13px
    }

    .cta-icons {
        gap: 8px
    }

    .cta-icon {
        width: 36px;
        height: 36px;
        font-size: 14px
    }
}

@media (-webkit-min-device-pixel-ratio:2),
(min-resolution:192dpi) {

    .cta-icon,
    .feature-icon,
    .logo-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges
    }
}

@media (max-width:768px) and (orientation:landscape) {
    .hero {
        padding: 80px 0 40px
    }

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

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

.feature-card,
.hero-image img,
.pricing-card {
    will-change: transform
}

@media (prefers-reduced-motion:reduce) {

    *,
    ::after,
    ::before {
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important
    }

    .cta-icon,
    .hero-image,
    .loading-progress {
        animation: none !important
    }
}

.btn:focus-visible,
.cookie-btn:focus-visible,
.nav-link:focus-visible {
    outline: #1344F6 solid 2px;
    outline-offset: 2px
}

.btn.loading {
    color: transparent
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: 1s linear infinite spin
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    animation: .6s ease-in-out pulse
}

::selection {
    background: rgba(19, 68, 246, .3);
    color: #f6f8ff
}

::-moz-selection {
    background: rgba(19, 68, 246, .3);
    color: #f6f8ff
}

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

::-webkit-scrollbar-track {
    background: #07090f
}

::-webkit-scrollbar-thumb {
    background: #1344f6;
    border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
    background: #0f2fd9
}
/* Hero Video Styles */
.hero-video {
    position: relative;
}

.video-title {
    font-size: 18px;
    font-weight: 600;
    color: #f6f8ff;
    margin-bottom: 16px;
    text-align: left;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(19, 68, 246, 0.3);
    border: 2px solid rgba(19, 68, 246, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}


/* Email Sorter Section */
.email-sorter {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0d16 0%, #0f1624 100%);
    position: relative;
    overflow: hidden;
}

.email-sorter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(19, 68, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.email-sorter-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sorter-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1344f6, #0f2fd9);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(19, 68, 246, 0.3);
}

.sorter-title {
    font-size: 48px;
    font-weight: 700;
    color: #f6f8ff;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1344f6, #0f2fd9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sorter-subtitle {
    font-size: 20px;
    color: #a9acb7;
    margin-bottom: 50px;
    line-height: 1.6;
}

.sorter-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.sorter-feature {
    background: #0f121b;
    border: 1px solid rgba(19, 68, 246, 0.2);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    transition: all 0.3s ease;
}

.sorter-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(19, 68, 246, 0.5);
    box-shadow: 0 12px 30px rgba(19, 68, 246, 0.2);
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.sorter-feature h4 {
    color: #f6f8ff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.sorter-feature p {
    color: #a9acb7;
    font-size: 14px;
    line-height: 1.5;
}

.sorter-cta {
    margin: 50px 0;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
}

.btn-large svg {
    margin-right: 8px;
}

.sorter-note {
    margin-top: 16px;
    font-size: 14px;
    color: #a9acb7;
}

.sorter-perfect-for {
    background: #0f121b;
    border: 1px solid rgba(19, 68, 246, 0.3);
    border-radius: 16px;
    padding: 32px;
    margin-top: 40px;
}

.sorter-perfect-for h3 {
    color: #f6f8ff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.perfect-for-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.perfect-for-list span {
    background: rgba(19, 68, 246, 0.1);
    color: #f6f8ff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    border: 1px solid rgba(19, 68, 246, 0.3);
    transition: all 0.3s ease;
}

.perfect-for-list span:hover {
    background: rgba(19, 68, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 68, 246, 0.2);
}

@media (max-width: 768px) {
    .sorter-title {
        font-size: 32px;
    }
    
    .sorter-subtitle {
        font-size: 16px;
    }
    
    .sorter-features {
        grid-template-columns: 1fr;
    }
    
    .perfect-for-list {
        flex-direction: column;
    }
}


/* CTA Floating Logo */
.cta-floating-logo {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    opacity: 0.15;
    animation: float-logo 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes float-logo {
    0%, 100% {
        transform: translateY(-50%) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-55%) translateX(10px) rotate(5deg);
    }
    50% {
        transform: translateY(-45%) translateX(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-55%) translateX(10px) rotate(5deg);
    }
}

.cta-content h2,
.cta-content p,
.cta-content .btn,
.cta-content .cta-note {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .cta-floating-logo {
        width: 100px;
        height: 100px;
        right: 20px;
        opacity: 0.1;
    }
}


/* Download Dropdown */
.download-dropdown {
    position: relative;
    display: inline-block;
}

.download-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    background: linear-gradient(135deg, #1344f6 0, #0f2fd9 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: .3s;
}

.download-selector:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 68, 246, .3);
}

.download-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: #0f121b;
    border: 1px solid rgba(19, 68, 246, .3);
    border-radius: 0 0 8px 8px;
    border-top: none;
    display: none;
    flex-direction: column;
    min-width: 200px;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    padding-top: 4px;
}

.download-dropdown:hover .download-options,
.download-options:hover {
    display: flex;
}

.download-dropdown:hover .download-selector {
    border-radius: 8px 8px 0 0;
}

.download-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    color: #f6f8ff;
    text-decoration: none;
    transition: background .2s;
    font-size: 14px;
    font-weight: 500;
}

.download-option:hover {
    background: rgba(19, 68, 246, .15);
}

.download-option:first-child {
    border-radius: 8px 8px 0 0;
}

.download-option:last-child {
    border-radius: 0 0 8px 8px;
}

.download-latest {
    background: rgba(19, 68, 246, .1);
}

.latest-badge {
    background: linear-gradient(135deg, #1344f6, #0f2fd9);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badge-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(19, 68, 246, 0.5);
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(19, 68, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(19, 68, 246, 0.8), 0 0 30px rgba(19, 68, 246, 0.4);
    }
}

@media (max-width: 768px) {
    .download-dropdown {
        width: 100%;
    }
    
    .download-selector {
        width: 100%;
        justify-content: center;
    }
    
    .download-options {
        right: 0;
        left: 0;
        width: 100%;
    }
}


/* Download option icons */
.download-option-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-icon {
    width: 15px;
    height: 15px;
    object-fit: contain;
}


/* Footer Logo Bigger */
.footer .logo-icon {
    height: 48px;
}

.footer .logo-text {
    font-size: 24px;
}


/* New Footer Layout */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(19, 68, 246, 0.2);
}

.footer-bottom p {
    margin: 0;
}

.crypto-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.crypto-icons img {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
    cursor: help;
    opacity: 0.8;
}

.crypto-icons img:hover {
    opacity: 1;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .crypto-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
}


/* Footer copyright bold */
.footer-bottom p {
    font-weight: 700;
}


/* New Pricing Hero Section */
.pricing-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #3b82f6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.pricing-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pricing-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    line-height: 1.6;
}

.pricing-main-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    padding: 60px 50px;
    margin-top: 40px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
}

.pricing-amount .currency {
    font-size: 36px;
    font-weight: 700;
    color: #3b82f6;
}

.pricing-amount .price {
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.pricing-amount .unit {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 8px;
}

.pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

.pricing-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
}

.pricing-feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px 0;
}

.pricing-feature-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.pricing-cta-wrapper {
    text-align: center;
}

.pricing-note {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .pricing-hero-title {
        font-size: 36px;
    }
    
    .pricing-main-card {
        padding: 40px 30px;
    }
    
    .pricing-amount .price {
        font-size: 56px;
    }
    
    .pricing-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}


/* Version Number Styling with Rising Animation */
.version-number {
    color: #fbbf24 !important;
    font-size: 1.8em;
    font-weight: 600 !important;
    display: inline-block;
    margin-left: 0px;
    animation: rise 2s ease-in-out infinite, subtleGlow 2s ease-in-out infinite;
}

@keyframes rise {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}


@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px #fbbf24, 0 0 20px #fbbf24, 0 0 30px #fbbf24;
        filter: brightness(1);
    }
    50% {
        text-shadow: 0 0 20px #fbbf24, 0 0 30px #fbbf24, 0 0 40px #fbbf24, 0 0 50px #fbbf24;
        filter: brightness(1.3);
    }
}


@keyframes subtleGlow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(251, 191, 36, 0.8), 0 0 25px rgba(251, 191, 36, 0.5);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 25px rgba(251, 191, 36, 1), 0 0 35px rgba(251, 191, 36, 0.8);
        transform: scale(1.1);
    }
}




