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

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

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

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

.personal-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;
}

.personal-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;
}

.personal-hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: white;
}

.hero-feature-item .feature-icon {
    color: #FF6B35;
    font-size: 14px;
}

.hero-feature-item .feature-icon-orange {
    width: 16px;
    height: 16px;
    margin-right: 0;
}

.btn-open-personal {
    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-personal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.personal-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: floatBitcoin 6s ease-in-out infinite;
    z-index: 2;
}

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

@keyframes floatBitcoin {
    0%, 100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
    25% {
        transform: translate(15px, -25px) rotate(5deg);
    }
    50% {
        transform: translate(0px, -40px) rotate(0deg);
    }
    75% {
        transform: translate(-15px, -25px) rotate(-5deg);
    }
}

@keyframes floatEthereum {
    0%, 100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
    25% {
        transform: translate(-20px, 30px) rotate(-8deg);
    }
    50% {
        transform: translate(0px, 50px) rotate(0deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(8deg);
    }
}

@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;
    }
}

/* Everything For Everyday Payments Section */
.everyday-payments {
    padding: 100px 0;
    background: #ffffff;
}

.everyday-header {
    margin-bottom: 80px;
}

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

.everyday-line-1 {
    align-self: flex-start;
}

.everyday-line-2 {
    align-self: flex-end;
}

.everyday-word {
    display: inline-block;
    margin-right: 0.3em;
}

.text-orange {
    color: #FF6B35;
}

.everyday-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.everyday-card {
    background: transparent;
    border-radius: 20px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: none;
    border: none;
}

.everyday-card:hover {
    transform: translateY(-5px);
}

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

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

.card-text {
    flex: 1;
}

.everyday-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.everyday-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0%;
    color: #666;
}

/* Personal Account Opening Section */
.account-opening-section {
    position: relative;
    padding: 100px 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;
    background-repeat: no-repeat;
}

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

.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;
}

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

/* Stay On Top Of Your Money Section */
.stay-on-top-section {
    padding: 100px 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-box:hover {
    background: #FF6B35;
}

.feature-box:hover h3,
.feature-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: space-between;
    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-bottom: auto;
}

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

/* Simple Pricing Section */
.simple-pricing-section {
    padding: 100px 0;
    background: #ffffff;
}

.pricing-container {
    background-image: url('Images/personal\ account/graybg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2C4A5A;
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-height: 550px;
}

.pricing-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.pricing-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    border-radius: 24px;
}

.pricing-right {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-title {
    font-family: 'Cairo', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.pricing-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.pricing-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-label {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #F97A5D;
    font-weight: 500;
}

.pricing-value {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #787878;
    font-weight: 500;
    text-align: right;
}

.btn-view-pricing {
    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-end;
}

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

/* Who Can Open Section */
.who-can-open-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

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

.who-can-open-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.who-can-open-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 600px;
}

.who-can-open-left {
    padding: 100px 60px;
}

.who-can-open-title {
    font-family: 'Cairo', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.who-can-open-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin-bottom: 32px;
}

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

.btn-check-eligibility:hover {
    background-color: #FFFFFF;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.who-can-open-right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
}

.person-btc-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
}

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

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

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

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

    .personal-hero-features {
        gap: 20px;
        padding: 10px 20px;
    }

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

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

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

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

    .everyday-payments {
        padding: 60px 0;
    }

    .everyday-title {
        font-size: 70px;
        line-height: 75px;
    }

    .everyday-header {
        margin-bottom: 50px;
    }

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

    .everyday-card {
        padding: 24px 20px;
        gap: 16px;
    }

    .card-icon {
        width: 48px;
        height: 48px;
    }

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

    .everyday-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .everyday-card p {
        font-size: 14px;
        line-height: 20px;
    }

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

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

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

    .stay-on-top-section {
        padding: 80px 0;
    }

    .stay-on-top-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }

    .stay-on-top-title {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-box {
        min-height: 220px;
    }

    .feature-text-box {
        padding: 28px;
    }

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

    .feature-text-box p {
        font-size: 14px;
        line-height: 20px;
    }

    .simple-pricing-section {
        padding: 80px 0;
    }

    .pricing-container {
        grid-template-columns: 1fr;
    }

    .pricing-left {
        padding: 30px;
    }

    .pricing-image {
        max-width: 400px;
    }

    .pricing-right {
        padding: 40px 35px;
    }

    .pricing-title {
        font-size: 36px;
    }

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

    .pricing-item {
        padding: 18px 20px;
    }

    .pricing-label,
    .pricing-value {
        font-size: 14px;
    }

    .who-can-open-content {
        grid-template-columns: 1fr;
        min-height: 400px;
    }

    .who-can-open-left {
        padding: 60px 40px;
    }

    .who-can-open-title {
        font-size: 36px;
    }

    .who-can-open-description {
        font-size: 15px;
        line-height: 24px;
    }

    .person-btc-image {
        max-width: 450px;
    }
}

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

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

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

    .personal-hero-features {
        gap: 16px;
        padding: 8px 16px;
        width: 100%;
    }

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

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

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

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

    .everyday-payments {
        padding: 50px 0;
    }

    .everyday-title {
        font-size: 50px;
        line-height: 54px;
    }

    .everyday-header {
        margin-bottom: 40px;
    }

    .everyday-card {
        padding: 20px 16px;
        gap: 14px;
    }

    .card-icon {
        width: 44px;
        height: 44px;
    }

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

    .everyday-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .everyday-card p {
        font-size: 13px;
        line-height: 18px;
    }

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

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

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

    .stay-on-top-section {
        padding: 60px 0;
    }

    .stay-on-top-title {
        font-size: 32px;
    }

    .btn-start-application {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }

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

    .feature-box {
        min-height: 180px;
    }

    .feature-text-box {
        padding: 24px;
    }

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

    .feature-text-box p {
        font-size: 14px;
        line-height: 20px;
    }

    .simple-pricing-section {
        padding: 60px 0;
    }

    .pricing-left {
        padding: 20px;
    }

    .pricing-image {
        max-width: 100%;
    }

    .pricing-right {
        padding: 30px 24px;
    }

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

    .pricing-subtitle {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 24px;
    }

    .pricing-items {
        gap: 12px;
        margin-bottom: 30px;
    }

    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 18px;
    }

    .pricing-label,
    .pricing-value {
        font-size: 13px;
    }

    .pricing-value {
        text-align: left;
    }

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

    .who-can-open-left {
        padding: 50px 24px;
    }

    .who-can-open-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .who-can-open-description {
        font-size: 14px;
        line-height: 22px;
    }

    .who-can-open-right {
        padding: 20px;
    }

    .person-btc-image {
        max-width: 100%;
    }
}

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

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

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

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

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

    .everyday-title {
        font-size: 40px;
        line-height: 44px;
    }

    .everyday-grid {
        gap: 16px;
    }

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

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

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

    .stay-on-top-section {
        padding: 50px 0;
    }

    .stay-on-top-title {
        font-size: 28px;
    }

    .feature-box {
        min-height: 160px;
    }

    .feature-text-box {
        padding: 20px;
    }

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

    .feature-text-box p {
        font-size: 13px;
        line-height: 18px;
    }

    .simple-pricing-section {
        padding: 50px 0;
    }

    .pricing-title {
        font-size: 24px;
    }

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

    .who-can-open-title {
        font-size: 24px;
    }

    .who-can-open-description {
        font-size: 13px;
        line-height: 20px;
    }
}
