/* Base Styles */
:root {
    --primary: #0A2540;     
    --secondary: #00D4FF;   
    --text-main: #333333;
    --bg-light: #F7F9FC;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3 { color: var(--primary); }

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 30px; }
.bg-light { background-color: var(--bg-light); }
.exclusive-text { margin-top: 15px; font-size: 0.9rem; color: #666; }

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: var(--primary); 
    padding: 60px 20px;
    box-sizing: border-box;
}

.hero-content {
    position: relative; z-index: 1;
    max-width: 1000px; width: 100%;
}

.hero-logo {
    max-width: 160px; height: auto; margin-bottom: 25px;
}

.single-line-title { 
    color: white; font-size: 2.8rem; 
    margin-bottom: 10px; line-height: 1.2;
}

.hero-content h3 { 
    color: var(--secondary); font-weight: 500; 
    font-size: 1.3rem; margin-top: 0; margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 1px;
}

.hero-description { 
    font-size: 1.15rem; color: #e2e8f0;
    margin-bottom: 35px; line-height: 1.7;
}

/* Hero Buttons */
.hero-buttons {
    display: flex; justify-content: center;
    gap: 20px; margin-bottom: 40px;
}

.cta-btn {
    background: var(--secondary); color: var(--primary);
    padding: 16px 36px; border: none; border-radius: 8px;
    font-size: 1.2rem; font-weight: bold; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.cta-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
}

.secondary-btn {
    background: transparent; color: white; padding: 16px 36px;
    border: 2px solid white; border-radius: 8px;
    font-size: 1.2rem; font-weight: bold; cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.secondary-btn:hover { background: white; color: var(--primary); }

/* Video Player */
.video-container { display: flex; justify-content: center; margin-top: 20px; }
.content-video {
    width: 100%; max-width: 800px; border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); background: #000;
}

/* Content Sections */
.section { padding: 80px 20px; display: flex; justify-content: center; }
.container { max-width: 1100px; width: 100%; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* Mobile Adjustments */
@media (max-width: 768px) { 
    .grid { grid-template-columns: 1fr; gap: 40px; } 
    .deliverables-grid { gap: 0px; } 
    .single-line-title { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-description { font-size: 1rem; }
    .hero-description br { display: none; } 
}

ul.deliverables-list { list-style-type: none; padding: 0; }
ul.deliverables-list li {
    background: white; margin-bottom: 10px; padding: 15px 20px;
    border-left: 4px solid var(--secondary); box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Modal Core Styles */
.modal {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 37, 64, 0.9); z-index: 1000;
    align-items: center; justify-content: center;
}

.modal-content {
    background: white; padding: 40px; border-radius: 12px;
    max-width: 500px; width: 90%; position: relative;
    max-height: 90vh; overflow-y: auto;
}

.close-btn {
    position: absolute; top: 15px; right: 20px; font-size: 1.5rem;
    cursor: pointer; color: #999;
}

/* Payment Selection Buttons */
.payment-options {
    display: flex; flex-direction: column; gap: 15px; margin-top: 15px;
}

.pay-method-btn {
    padding: 18px; font-size: 1.15rem; font-weight: bold; border-radius: 8px; 
    cursor: pointer; border: 2px solid transparent; transition: all 0.2s;
}

.zelle-btn { background: #f3e8ff; color: #7413dc; border-color: #d8b4fe; }
.zelle-btn:hover { background: #e9d5ff; }

.paypal-btn { background: #ffebcc; color: #003087; border-color: #ffd699; }
.paypal-btn:hover { background: #ffe0b2; }

/* Form and Boxes */
.payment-box {
    background: #fdfafff2; border: 1px solid #e9d5ff;
    padding: 20px; border-radius: 8px; margin: 25px 0 0 0; text-align: center;
}

.qr-code-img {
    width: 180px; height: 180px; margin: 0 auto 15px auto;
    display: block; border-radius: 8px; border: 1px solid #ddd;
}

.form-group { margin-bottom: 15px; text-align: left; }
.form-group label { display: block; font-weight: bold; font-size: 0.9rem; margin-bottom: 5px; color: #555;}
.form-group input {
    width: 100%; padding: 12px; border: 1px solid #ccc;
    border-radius: 6px; box-sizing: border-box; font-size: 1rem;
}

.submit-btn {
    background: var(--secondary); color: var(--primary); width: 100%;
    padding: 16px; border: none; border-radius: 8px;
    font-size: 1.1rem; font-weight: bold; cursor: pointer; margin-top: 10px;
}

.submit-btn:hover { background: #00b8e6; }