* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .container { padding: 0 20px; }
}

h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0px 4px 14px rgba(0,0,0,0.65);
}

h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 { margin-bottom: 12px; }
.section-header h3 { max-width: 671px; margin: 0 auto; color: #ffffff; opacity: 0.9; font-size: clamp(16px, 2vw, 24px); font-weight: normal; }

.masthead {
    position: sticky;
    top: 0;
    background-color: #000000;
    padding: 16px 24px;
    z-index: 100;
    border-bottom: 1px solid #282828;
}

.masthead-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo svg { width: 132px; height: 41px; fill: #ffffff; }
.nav-placeholder { flex: 1; }
.auth-buttons { display: flex; gap: 16px; }

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.btn-secondary:hover { opacity: 1; }

.hero {
    background: linear-gradient(0deg, rgba(255,210,215,0) 45%, #FFD2D7 100%);
    background-image: url('https://wwwmarketing.scdn.co/static/images/premium/mobile-hero-ltr.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 40px;
}

@media (min-width: 768px) {
    .hero {
        background-image: url('https://wwwmarketing.scdn.co/static/images/premium/desktop-hero-ltr.png');
        background-size: min(60%, 800px), 100% 40%;
        background-position: right top, center -25%;
        padding: 110px 20px 80px;
    }
}

.hero-content { max-width: 560px; width: 100%; }
.hero-text h1 { color: #ffffff; }
.hero-text h2 { font-size: clamp(16px, 2vw, 16px); font-weight: normal; margin-top: 10px; margin-bottom: 24px; color: #ffffff; }

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 35px 0 28px;
}

@media (min-width: 535px) {
    .hero-buttons { flex-direction: row; justify-content: flex-start; }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 500px;
    padding: 0 32px;
    height: 48px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.05s ease;
}

.btn-primary:hover { transform: scale(1.02); }
.btn-pink { background-color: #FFD2D7; color: #000000; }
.btn-outline { background-color: transparent; border: 1px solid #7f7f7f; color: #ffffff; }

.legal-text { font-size: 12px; color: #a7a7a7; margin-top: 16px; }

.benefits { background-color: #000000; padding: 60px 0; }
.comparison-table-wrapper { overflow-x: auto; margin: 0 auto; max-width: 446px; }
@media (min-width: 768px) { .comparison-table-wrapper { max-width: 100%; } }

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1A1A1A;
    font-size: 14px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 12px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    background-color: #121212;
    font-weight: 500;
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
    text-align: center;
    background-color: #121212;
}

.comparison-table .yes { color: #1ed760; font-size: 20px; }
.comparison-table .no { color: #949494; font-size: 20px; }

.plans { background-color: #000000; padding: 40px 0 60px; }

.payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
}

.icon-card {
    background-color: #ffffff;
    color: #000000;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    cursor: default;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 450px;
    margin: 0 auto;
}

@media (min-width: 768px) { .plans-grid { grid-template-columns: repeat(2, 1fr); max-width: 900px; gap: 24px; } }
@media (min-width: 1200px) { .plans-grid { grid-template-columns: repeat(4, 1fr); max-width: 1200px; } }

.plan-card {
    background-color: #242424;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.plan-card:hover { transform: translateY(-4px); }
.pink-border { border-top: 4px solid #ffd2d7; }
.purple-border { border-top: 4px solid #c4b1d4; }
.yellow-border { border-top: 4px solid #ffc862; }
.blue-border { border-top: 4px solid #a5bbd1; }

.lozenge {
    display: inline-block;
    background-color: #0d72ea;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.plan-icon { font-size: 14px; margin-bottom: 8px; opacity: 0.8; }
.plan-title { font-size: 32px; font-weight: 700; margin: 8px 0; }
.plan-title.pink { color: #ffd2d7; }
.plan-title.purple { color: #c4b1d4; }
.plan-title.yellow { color: #ffc862; }
.plan-title.blue { color: #a5bbd1; }

.price-primary { font-size: 16px; font-weight: 700; margin-top: 8px; }
.price-secondary { font-size: 14px; color: #a7a7a7; margin-bottom: 16px; }
hr { border: none; height: 1px; background-color: rgba(255,255,255,0.1); margin: 16px 0; }

.benefits-list { list-style: none; margin: 20px 0; }
.benefits-list li { margin-bottom: 12px; font-size: 14px; display: flex; align-items: center; gap: 8px; }

.plan-btn {
    width: 100%;
    padding: 12px;
    border-radius: 500px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin: 16px 0;
    font-size: 14px;
    transition: transform 0.05s ease;
}

.plan-btn:hover { transform: scale(1.02); }
.pink-bg { background-color: #ffd2d7; color: #000000; }
.purple-bg { background-color: #c4b1d4; color: #000000; }
.yellow-bg { background-color: #ffc862; color: #000000; }
.blue-bg { background-color: #a5bbd1; color: #000000; }

.footer {
    background-color: #000000;
    padding: 40px 0 20px;
    border-top: 1px solid #282828;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: #ffffff; }
.footer-col ul { list-style: none; }
.footer-col li { color: #a7a7a7; font-size: 14px; margin-bottom: 12px; cursor: default; }

.social-icons { display: flex; gap: 24px; margin-bottom: 40px; }
.social-icon { font-size: 24px; cursor: default; opacity: 0.8; }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #282828;
    font-size: 12px;
    color: #a7a7a7;
}

.legal-links { display: flex; flex-wrap: wrap; gap: 24px; }
.legal-links span { cursor: default; }
.copyright { text-align: right; }

@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
    .legal-links { justify-content: center; }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #000000;
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    padding: 32px;
    position: relative;
    border: 1px solid #282828;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.close-modal {
    font-size: 32px;
    cursor: pointer;
    color: #a7a7a7;
    transition: color 0.2s ease;
}

.close-modal:hover { color: #ffffff; }

.login-form, .payment-form { display: flex; flex-direction: column; gap: 20px; }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.form-group input {
    background-color: #121212;
    border: 1px solid #282828;
    border-radius: 8px;
    padding: 14px 16px;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1ed760;
}

.form-group input::placeholder {
    color: #6a6a6a;
}

.login-submit-btn, .payment-submit-btn {
    background-color: #1ed760;
    color: #000000;
    border: none;
    border-radius: 500px;
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.05s ease;
}

.login-submit-btn:hover, .payment-submit-btn:hover {
    transform: scale(1.02);
}

.modal-divider {
    text-align: center;
    color: #a7a7a7;
    margin: 20px 0;
    position: relative;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #282828;
}

.modal-divider::before { left: 0; }
.modal-divider::after { right: 0; }

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-btn {
    background-color: transparent;
    border: 1px solid #6a6a6a;
    border-radius: 500px;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease;
    color: #ffffff;
}

.google-btn:hover { border-color: #4285F4; }
.facebook-btn:hover { border-color: #1877F2; }

.modal-footer {
    text-align: center;
    margin: 24px 0 16px;
}

.modal-footer p {
    color: #a7a7a7;
    font-size: 14px;
    margin: 8px 0;
}

.modal-link {
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.payment-modal {
    max-width: 500px;
}

.payment-plan-info {
    background-color: #1A1A1A;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-bottom: 24px;
}

.plan-badge {
    display: inline-block;
    background-color: #1ed760;
    color: #000000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 12px;
}

.plan-price {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.plan-period {
    font-size: 14px;
    color: #a7a7a7;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.full-width {
    width: 100%;
}

.payment-security {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #282828;
    font-size: 12px;
    color: #a7a7a7;
}

.card-icons {
    display: flex;
    gap: 12px;
}

.card-icons span {
    font-size: 10px;
    font-weight: 600;
    color: #6a6a6a;
}

.success-modal {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #1ed760;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
}

.success-modal h2 {
    margin-bottom: 16px;
}

.success-modal p {
    color: #a7a7a7;
    margin-bottom: 8px;
}

.success-btn {
    background-color: #1ed760;
    color: #000000;
    border: none;
    border-radius: 500px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 24px;
    transition: transform 0.05s ease;
}

.success-btn:hover {
    transform: scale(1.02);
}