* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbars */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

html::-webkit-scrollbar {
    display: none; /* WebKit */
}

body {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

body::-webkit-scrollbar {
    display: none; /* WebKit */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e8e9f0;
    background: #0f1015;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: #2c3e50;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.features {
    padding: 80px 0;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.auth-container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.auth-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.auth-box h2 {
    margin-bottom: 30px;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.form-footer {
    margin-top: 20px;
    text-align: center;
    color: #666;
}

.form-footer a {
    color: #667eea;
    text-decoration: none;
}

.pricing-container {
    padding: 80px 20px;
    text-align: center;
}

.pricing-container h1 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #667eea;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
}

.duration {
    color: #666;
    margin-bottom: 30px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.payment-container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 20px;
}

.payment-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
}

.plan-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.payment-methods h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.payment-note {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

.warning {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #ffc107;
}

.warning.hidden {
    display: none;
}

.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 0 20px 0;
    margin-top: 60px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Why We Are Better Section */
.why-better-section {
    background: rgba(26, 27, 38, 0.6);
    border: 2px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 5px auto 2rem auto;
    max-width: 1200px;
    text-align: center;
}

.why-better-section h2 {
    color: #e8e9f0;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-item {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.benefit-item h3 {
    color: #e8e9f0;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-item p {
    color: #a8a9b0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.privacy-note {
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: #e8e9f0;
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-note-simple {
    color: #e8e9f0;
    font-size: 0.9rem;
    margin: 0.75rem 0;
    text-align: center;
}

/* Pick Your Plan heading spacing */
#choose-plan {
    margin-top: 3rem;
}

.payment-methods-standalone {
    background: rgba(26, 27, 38, 0.6);
    border: 2px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1000px;
    text-align: center;
}

.payment-methods-standalone h2 {
    color: #e8e9f0;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.payment-methods-compact {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.payment-method-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.payment-icons-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-group-label {
    color: #a8a9b0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.payment-methods-note {
    color: #7c3aed;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.55rem; /* 15% smaller than 3rem */
    }
    
    .hero p {
        font-size: 1.275rem; /* 15% smaller than 1.5rem */
    }
    
    .why-better-section {
        padding: 1.5rem;
        margin: 0.75rem auto 1.5rem auto;
    }
    
    .why-better-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-item h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-item p {
        font-size: 0.8rem;
    }
    
    .payment-methods-compact {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .payment-methods-standalone {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }
    
    .payment-methods-standalone h2 {
        font-size: 1.3rem;
    }
}

/* Payment Methods Preview - Reduce top spacing to 20% */
.payment-methods-preview {
    margin-top: -1.6rem !important;
}

@media (max-width: 768px) {
    .footer-links {
        gap: 20px;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
}
