/* Business Account Hero Section */
.business-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

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

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

.business-hero-left {
    animation: fadeInUp 1s ease-out;
}

.business-hero-title {
    font-family: 'Cairo', sans-serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 64px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: white;
    margin-bottom: 24px;
}

.business-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}

.btn-open-business {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A5B 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-open-business:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.business-hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    animation: fadeIn 1s ease-out 0.3s both;
    margin-top: 40px;
}

.hero-phone {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 3;
}

.floating-bitcoin {
    position: absolute;
    bottom: 5%;
    left: -25%;
    width: 180px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.floating-solana {
    position: absolute;
    top: 3%;
    right: -12%;
    width: 160px;
    height: auto;
    animation: float 4s ease-in-out infinite reverse;
    z-index: 4;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Financial Operations Section */
.financial-operations {
    padding: 80px 0 80px 0;
    background: #ffffff;
    display: flex;
    align-items: center;
}

.operations-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.operations-left {
    display: flex;
    align-items: center;
}

.operations-title {
    font-family: 'Cairo', sans-serif;
    font-size: 90px;
    font-weight: 600;
    line-height: 105px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #1a1a1a;
}

.text-orange {
    color: #FF6B35;
}

.operations-right {
    display: flex;
    justify-content: flex-end;
}

.operations-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.operation-feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.feature-icon-box {
    width: 56px;
    height: 56px;
    background: #FF6B35;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-box img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.feature-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0%;
    color: #1a1a1a;
    margin: 0;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 968px) {
    .business-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

    .business-hero-title {
        font-size: 48px;
        line-height: 52px;
    }

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

    .hero-phone-container {
        max-width: 280px;
        margin: 0 auto;
    }

    .floating-bitcoin {
        width: 120px;
        left: -20%;
        bottom: 5%;
    }

    .floating-solana {
        width: 105px;
        right: -8%;
        top: 2%;
    }

    .financial-operations {
        padding: 60px 0;
    }

    .operations-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .operations-title {
        font-size: 60px;
        line-height: 70px;
    }

    .operations-features {
        gap: 28px;
    }

    .feature-icon-box {
        width: 48px;
        height: 48px;
    }

    .feature-icon-box img {
        width: 24px;
        height: 24px;
    }

    .feature-text h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 640px) {
    .business-hero {
        padding: 80px 0 40px;
    }

    .business-hero-title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .business-hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .btn-open-business {
        width: 100%;
        padding: 14px 32px;
        font-size: 15px;
    }

    .hero-phone-container {
        max-width: 220px;
    }

    .floating-bitcoin {
        width: 90px;
        left: -18%;
        bottom: 3%;
    }

    .floating-solana {
        width: 75px;
        right: -5%;
        top: 1%;
    }

    .financial-operations {
        padding: 50px 0;
    }

    .operations-content {
        gap: 40px;
    }

    .operations-title {
        font-size: 42px;
        line-height: 48px;
    }

    .operations-features {
        gap: 28px;
    }

    .feature-icon-box {
        width: 44px;
        height: 44px;
    }

    .feature-icon-box img {
        width: 22px;
        height: 22px;
    }

    .feature-text h3 {
        font-size: 16px;
    }
}

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

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

    .hero-phone-container {
        max-width: 200px;
    }

    .floating-bitcoin {
        width: 70px;
        left: -15%;
        bottom: 3%;
    }

    .floating-solana {
        width: 60px;
        right: -3%;
        top: 0;
    }

    .operations-title {
        font-size: 36px;
        line-height: 42px;
    }

    .operations-features {
        gap: 24px;
    }

    .feature-text h3 {
        font-size: 15px;
    }
}

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

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

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

.swiss-logo {
    width: 100%;
    max-width: 1100px;
    height: auto;
    display: block;
}

/* Video Thumbnail Styles for Business Account */
.video-thumbnail-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.video-thumbnail-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.video-thumbnail-container:hover .video-thumbnail {
    transform: scale(1.02);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.play-button {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.account-video {
    width: 100%;
    max-width: 1100px;
    border-radius: 16px;
}

/* Stay On Top Of Your Money Section */
.stay-on-top-section {
    padding: 70px 0;
    background: #ffffff;
}

.stay-on-top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.stay-on-top-title {
    font-family: 'Cairo', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
}

.btn-start-application {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-start-application:hover {
    background: #FF8A5B;
    transform: translateY(-2px);
}

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

.feature-box {
    background: #F5F3F1;
    border-radius: 24px;
    min-height: 240px;
    transition: all 0.3s ease;
}

.feature-text-box:hover {
    background: #FF6B35;
}

.feature-text-box:hover h3,
.feature-text-box:hover p {
    color: #FFFFFF;
}

.feature-img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.feature-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.feature-text-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    text-align: left;
}

.feature-text-box h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
    margin: 0;
}

.feature-text-box p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 22px;
    color: #000000;
    margin-top: auto;
}

.feature-text-box.text-top {
    justify-content: flex-start;
}

.feature-text-box.text-bottom {
    justify-content: flex-end;
}

/* Control Cash Flow Section */
.cash-flow-section {
    padding: 70px 0;
    background: #ffffff;
}

.cash-flow-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cash-flow-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.money-bank-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 24px;
}

.cash-flow-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cash-flow-title {
    font-family: 'Cairo', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

.cash-flow-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cash-flow-feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.cash-icon-box {
    width: 56px;
    height: 56px;
    background: #FF6B35;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cash-icon-box img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.cash-feature-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
}

.btn-see-features {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-see-features:hover {
    background: #FF8A5B;
    transform: translateY(-2px);
}

/* Cash Flow Section Responsive */
@media screen and (max-width: 968px) {
    .cash-flow-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cash-flow-title {
        font-size: 36px;
    }

    .money-bank-image {
        max-width: 400px;
    }

    .cash-flow-features {
        gap: 20px;
    }

    .cash-icon-box {
        width: 48px;
        height: 48px;
    }

    .cash-icon-box img {
        width: 24px;
        height: 24px;
    }

    .cash-feature-text h3 {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    .cash-flow-section {
        padding: 60px 0;
    }

    .cash-flow-content {
        gap: 40px;
    }

    .cash-flow-title {
        font-size: 28px;
    }

    .money-bank-image {
        max-width: 100%;
    }

    .cash-flow-features {
        gap: 18px;
    }

    .cash-icon-box {
        width: 44px;
        height: 44px;
    }

    .cash-icon-box img {
        width: 22px;
        height: 22px;
    }

    .cash-feature-text h3 {
        font-size: 15px;
    }

    .btn-see-features {
        width: 100%;
        padding: 14px 32px;
    }
}

/* Go Beyond Business Section */
.go-beyond-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.go-beyond-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.go-beyond-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

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

.go-beyond-description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 650px;
}

.btn-get-started-white {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.btn-get-started-white:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Go Beyond Section Responsive */
@media screen and (max-width: 968px) {
    .go-beyond-section {
        padding: 100px 0;
    }

    .go-beyond-title {
        font-size: 48px;
    }

    .go-beyond-description {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    .go-beyond-section {
        padding: 80px 0;
    }

    .go-beyond-title {
        font-size: 36px;
    }

    .go-beyond-description {
        font-size: 15px;
    }

    .btn-get-started-white {
        width: 100%;
        padding: 14px 32px;
    }
}
