* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Netflix Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #fff;
    color: #333;
}

/* Plan Page */
.plan-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.plan-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    border-bottom: 1px solid #e6e6e6;
}

.netflix-logo {
    width: 120px;
    height: auto;
}

.signout-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
}

.signout-btn:hover {
    text-decoration: underline;
}

/* Plan Container */
.plan-container {
    flex: 1;
    max-width: 978px;
    margin: 0 auto;
    padding: 90px 32px 150px;
    text-align: center;
}

.plan-header {
    margin-bottom: 40px;
}

.checkmark {
    margin-bottom: 20px;
}

.step-text {
    font-size: 13px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.step-current {
    font-weight: 700;
}

.plan-title {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Benefits */
.plan-benefits {
    text-align: left;
    margin: 50px auto 60px;
    max-width: 450px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 16px;
}

.benefit-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item span {
    font-size: 19px;
    line-height: 1.4;
    color: #333;
}

/* Next Button */
.next-btn {
    width: 100%;
    max-width: 340px;
    background-color: #e50914;
    color: #fff;
    border: none;
    border-radius: 2px;
    padding: 17px;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 24px;
    min-height: 64px;
}

.next-btn:hover {
    background-color: #f40612;
}

/* Footer */
.plan-footer {
    background-color: #f3f3f3;
    padding: 30px 50px 50px;
    border-top: 1px solid #e6e6e6;
    color: #737373;
}

.plan-footer p {
    color: #737373;
    font-size: 16px;
    margin-bottom: 30px;
}

.plan-footer a {
    color: #737373;
    text-decoration: none;
    font-size: 13px;
}

.plan-footer a:hover {
    text-decoration: underline;
}

.footer-links-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.footer-links-simple a {
    display: block;
    margin-bottom: 8px;
}

.language-selector {
    margin-top: 30px;
}

.language-select-plan {
    background: #fff;
    color: #000;
    border: 1px solid #333;
    border-radius: 2px;
    padding: 10px 30px 10px 15px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

/* Responsive */
@media (max-width: 768px) {
    .plan-navbar {
        padding: 15px 20px;
    }

    .netflix-logo {
        width: 90px;
    }

    .signout-btn {
        font-size: 14px;
        padding: 6px 12px;
    }

    .plan-container {
        padding: 30px 16px 60px;
    }

    .plan-header {
        margin-bottom: 30px;
    }

    .checkmark svg {
        width: 40px;
        height: 40px;
    }

    .step-text {
        font-size: 12px;
    }

    .plan-title {
        font-size: 22px;
        line-height: 1.2;
    }

    .plan-benefits {
        margin: 30px auto 40px;
    }

    .benefit-item {
        margin-bottom: 12px;
    }

    .benefit-item svg {
        width: 20px;
        height: 20px;
    }

    .benefit-item span {
        font-size: 15px;
    }

    .next-btn {
        font-size: 16px;
        padding: 14px;
        max-width: 100%;
    }

    .plan-footer {
        padding: 30px 16px 40px;
    }

    .plan-footer p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .footer-links-simple {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 15px;
    }

    .footer-links-simple a {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .language-select-plan {
        font-size: 13px;
        padding: 8px 25px 8px 12px;
    }
}