/* Pricing Hero Section */
.pricing-hero {
    position: relative;
    padding: 180px 0 100px 0;
    overflow: hidden;
}

.pricing-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Images/pricing/pricingbg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.pricing-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pricing-hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pricing-hero-title {
    font-family: 'Cairo', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

.pricing-hero-subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.pricing-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.pricing-hero-image {
    width: 130%;
    max-width: 1200px;
    height: auto;
}

/* Choose Your Plan Section */
.choose-plan-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.plan-ellipse-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: auto;
    z-index: 1;
}

.choose-plan-title {
    font-family: 'Cairo', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 60px 0;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    min-height: 540px;
}

.standard-card {
    background-color: #E8E8E8;
}

.grow-card {
    background-color: #E0F5F0;
    border: 2px solid #00B089;
    margin-top: -40px;
}

.enterprise-card {
    background-color: #D9D9D9;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #1a1a1a;
    padding: 6px 20px;
    border-radius: 20px;
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.card-name {
    font-family: 'Cairo', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.card-price {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.card-description {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.5;
}

.card-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
}

.feature-bullet {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.btn-contact-support {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 12px 32px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    width: 100%;
}

.btn-contact-support:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Account Opening Section */
.account-opening-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.account-opening-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    max-width: 2000px;
    z-index: 1;
    opacity: 1;
}

.account-opening-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.swiss-logo {
    width: 100%;
    max-width: 1000px;
    height: auto;
}

/* Brand Logos Section */
.brands-section {
    background: #ffffff;
    padding: 80px 0;
    overflow: hidden;
}

.brands-slider {
    width: 100%;
    overflow: hidden;
}

.brands-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
}

.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Security Section */
.security-section {
    position: relative;
    padding: 150px 0;
    background-color: #111420;
    overflow: hidden;
    min-height: 600px;
}

.security-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background-image: url('../Images/pricing/security-bottom.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    pointer-events: none;
    z-index: 1;
}

.security-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    z-index: 2;
}

.security-title {
    font-family: 'Cairo', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.btn-download-schedule {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 16px 40px;
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-download-schedule:hover {
    background-color: #ffffff;
    color: #111420;
    transform: translateY(-2px);
}

/* Coin positioning */
.coin-ethereum {
    position: absolute;
    top: 15%;
    left: 2%;
    width: 180px;
    height: 180px;
    z-index: 1;
}

.coin-dollar {
    position: absolute;
    top: 18%;
    right: 25%;
    width: 170px;
    height: 170px;
    z-index: 1;
}

.coin-solana {
    position: absolute;
    bottom: 25%;
    left: 20%;
    width: 165px;
    height: 165px;
    z-index: 1;
}

.coin-bitcoin {
    position: absolute;
    bottom: 15%;
    right: 2%;
    width: 190px;
    height: 190px;
    z-index: 1;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .pricing-hero {
        padding: 140px 0 80px 0;
    }

    .pricing-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-hero-title {
        font-size: 42px;
    }

    .pricing-hero-subtitle {
        font-size: 16px;
    }

    .choose-plan-section {
        padding: 80px 0;
    }

    .choose-plan-title {
        font-size: 36px;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .plan-ellipse-bg {
        width: 200px;
    }

    .account-opening-section {
        padding: 80px 0;
    }

    .account-opening-bg {
        max-width: 1500px;
    }

    .swiss-logo {
        max-width: 900px;
    }

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

    .brand-logo {
        height: 50px;
    }

    .security-section {
        padding: 100px 0;
    }

    .security-title {
        font-size: 42px;
    }

    .coin-ethereum {
        width: 70px;
        height: 70px;
    }

    .coin-dollar {
        width: 65px;
        height: 65px;
    }

    .coin-solana {
        width: 60px;
        height: 60px;
    }

    .coin-bitcoin {
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width: 640px) {
    .pricing-hero {
        padding: 120px 0 60px 0;
    }

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

    .pricing-hero-subtitle {
        font-size: 14px;
    }

    .choose-plan-section {
        padding: 60px 0;
    }

    .choose-plan-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .pricing-cards-grid {
        gap: 32px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .card-name {
        font-size: 24px;
    }

    .plan-ellipse-bg {
        width: 150px;
    }

    .account-opening-section {
        padding: 60px 0;
    }

    .account-opening-bg {
        max-width: 1300px;
    }

    .swiss-logo {
        max-width: 700px;
    }

    .brands-section {
        padding: 50px 0;
    }

    .brand-logo {
        height: 45px;
    }

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

    .security-title {
        font-size: 32px;
    }

    .btn-download-schedule {
        width: 100%;
        font-size: 16px;
        padding: 14px 32px;
    }

    .coin-ethereum {
        width: 50px;
        height: 50px;
    }

    .coin-dollar {
        width: 45px;
        height: 45px;
    }

    .coin-solana {
        width: 40px;
        height: 40px;
    }

    .coin-bitcoin {
        width: 55px;
        height: 55px;
    }
}

@media screen and (max-width: 480px) {
    .pricing-hero-title {
        font-size: 28px;
    }

    .pricing-hero-subtitle {
        font-size: 13px;
    }

    .choose-plan-title {
        font-size: 24px;
    }

    .card-name {
        font-size: 22px;
    }

    .card-feature-item {
        font-size: 13px;
    }

    .account-opening-section {
        padding: 50px 0;
    }

    .account-opening-bg {
        max-width: 1000px;
    }

    .swiss-logo {
        max-width: 500px;
    }

    .brand-logo {
        height: 40px;
    }

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

    .security-title {
        font-size: 28px;
    }

    .btn-download-schedule {
        font-size: 14px;
        padding: 12px 28px;
    }

    .coin-ethereum {
        width: 40px;
        height: 40px;
    }

    .coin-dollar {
        width: 35px;
        height: 35px;
    }

    .coin-solana {
        width: 30px;
        height: 30px;
    }

    .coin-bitcoin {
        width: 45px;
        height: 45px;
    }
}
