:root {
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --brand-green: #C8F031;
    --border-color: #2a2a2a;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Header */
.main-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(26, 26, 26, 0.95);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-logo {
    height: auto;
    width: 140px;
}

.brand-presents {
    font-size: 8px;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.brand-product {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.brand-product .highlight {
    color: var(--brand-green);
}

.main-header nav {
    display: flex;
    gap: 20px;
}

.main-header nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.main-header nav a:hover {
    color: var(--brand-green);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(15, 31, 15, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 60px 20px;
    text-align: center;
}

.hero-title {
    font-size: 4em;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--brand-green);
    text-shadow: 0 4px 20px rgba(200, 240, 49, 0.3);
}

.hero-subtitle {
    font-size: 2em;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-style: italic;
}

.hero-text {
    font-size: 1.2em;
    line-height: 1.8;
    color: var(--text-primary);
}

.hero-text p {
    margin-bottom: 20px;
}

.hero-text .emphasis {
    color: var(--brand-green);
    font-weight: 600;
    font-size: 1.1em;
}

/* Split Sections */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.split-left {
    position: relative;
    padding-left: 20px;
}

.split-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--brand-green);
}

.split-right {
    position: relative;
    padding-right: 20px;
}

.split-right::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--brand-green);
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(200, 240, 49, 0.2);
    object-fit: contain;
}

.split-content h2 {
    font-size: 2.8em;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.split-content p {
    font-size: 1.15em;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.highlight-text {
    color: var(--brand-green);
    font-weight: 600;
}

.callout {
    background: rgba(200, 240, 49, 0.1);
    border-left: 4px solid var(--brand-green);
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
}

.callout h3 {
    color: var(--brand-green);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.question-list {
    list-style: none;
    margin: 20px 0;
}

.question-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.1em;
}

.question-list li:before {
    content: "?";
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: 700;
    font-size: 1.2em;
}

.info-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
}

.info-box h3 {
    color: var(--brand-green);
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1.1em;
}

.features-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: 700;
}

.note {
    margin-top: 20px;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95em;
}

/* Floating Section */
.floating-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0f1f0f 100%);
}

.floating-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.floating-content {
    max-width: 700px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px;
    position: relative;
    z-index: 2;
}

.floating-content h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.floating-content p {
    font-size: 1.15em;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.pull-quote {
    border-left: 4px solid var(--brand-green);
    padding-left: 30px;
    margin: 40px 0;
    font-size: 1.3em;
    font-style: italic;
    color: var(--brand-green);
    font-weight: 600;
}

.floating-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    max-width: 450px;
}

.floating-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Persona List */
.persona-list {
    list-style: none;
    margin: 30px 0;
}

.persona-list li {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(200, 240, 49, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--brand-green);
}

.persona-list h3 {
    color: var(--brand-green);
    font-size: 1.3em;
    margin-bottom: 8px;
}

.persona-list p {
    color: var(--text-secondary);
    font-size: 1.05em;
    margin: 0;
}

.closing-thought {
    margin-top: 40px;
    font-size: 1.2em;
    font-weight: 500;
}

/* Fullwidth Section */
.fullwidth-section {
    position: relative;
    min-height: 600px;
    padding: 100px 20px;
}

.fullwidth-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fullwidth-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fullwidth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    z-index: 2;
}

.fullwidth-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

.fullwidth-content h2 {
    font-size: 3em;
    color: var(--brand-green);
    margin-bottom: 20px;
    text-align: center;
}

.fullwidth-content .intro {
    text-align: center;
    font-size: 1.3em;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--brand-green);
    box-shadow: 0 10px 40px rgba(200, 240, 49, 0.2);
    transform: translateY(-5px);
}

.card h3 {
    color: var(--brand-green);
    font-size: 1.5em;
    margin-bottom: 20px;
}

.card ul {
    list-style: none;
    margin: 20px 0;
}

.card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
}

.card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: 700;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Conclusion Section */
.conclusion-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f1f0f 100%);
}

.conclusion-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.conclusion-content h2 {
    font-size: 3.5em;
    color: var(--brand-green);
    margin-bottom: 40px;
}

.big-text {
    font-size: 1.5em;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-weight: 500;
}

.conclusion-content p {
    font-size: 1.2em;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.final-statement {
    margin: 60px 0;
    padding: 40px;
    background: rgba(200, 240, 49, 0.1);
    border-radius: 12px;
}

.final-statement .emphasis {
    color: var(--brand-green);
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--brand-green);
    color: var(--bg-dark);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 240, 49, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--brand-green);
    border: 2px solid var(--brand-green);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-secondary:hover {
    background: var(--brand-green);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-logo {
    width: auto;
    height: 40px;
    flex-shrink: 0;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    margin-left: auto;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-nav a:hover {
    color: var(--brand-green);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    width: 100%;
}

.footer-bottom a {
    color: var(--brand-green);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
    opacity: 0.7;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    color: var(--brand-green);
    margin: 0;
    font-size: 1.8em;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2em;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--brand-green);
}

.modal-intro {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-green);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--brand-green);
    color: var(--bg-dark);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #b3e024;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    background: rgba(200, 240, 49, 0.1);
    border: 1px solid var(--brand-green);
    color: var(--brand-green);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
    }

    .split-left,
    .split-right {
        border: none;
        padding: 0;
    }
    
    .split-left::before,
    .split-right::after {
        display: none;
    }

    .floating-image {
        position: static;
        transform: none;
        max-width: 100%;
        margin-top: 40px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .main-header nav {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1.5em;
    }

    .hero-text {
        font-size: 1em;
    }

    .split-content h2 {
        font-size: 2em;
    }

    .conclusion-content h2 {
        font-size: 2.5em;
    }

    .big-text {
        font-size: 1.2em;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2em;
    }

    .split-content h2 {
        font-size: 1.6em;
    }

    .floating-content {
        padding: 30px;
    }

    .card {
        padding: 25px;
    }
}

/* Privacy Policy Modal */
.privacy-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.privacy-modal-content {
    background: var(--bg-card);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--border-color);
}

.privacy-modal-close {
    position: sticky;
    top: 0;
    float: right;
    background: var(--bg-dark);
    border: none;
    color: var(--text-primary);
    font-size: 32px;
    cursor: pointer;
    padding: 10px 20px;
    z-index: 10;
    transition: color 0.3s ease;
}

.privacy-modal-close:hover {
    color: var(--brand-green);
}

.privacy-modal-body {
    padding: 40px;
    padding-top: 20px;
}

.privacy-modal-body h1 {
    font-size: 2rem;
    color: var(--brand-green);
    margin-bottom: 10px;
}

.privacy-modal-body .last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.privacy-modal-body h2 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.privacy-modal-body h3 {
    font-size: 1.1rem;
    color: var(--brand-green);
    margin-top: 20px;
    margin-bottom: 10px;
}

.privacy-modal-body p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.privacy-modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-modal-body li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.privacy-modal-body a {
    color: var(--brand-green);
    text-decoration: none;
}

.privacy-modal-body a:hover {
    text-decoration: underline;
}

.privacy-modal-body strong {
    color: var(--text-primary);
}
