:root {
    --midnight-blue: #1a1b3a;
    --neon-coral: #ff6b6b;
    --warm-slate: #6c757d;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(26, 27, 58, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--midnight-blue);
    background: var(--white);
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.logo-section a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
}

.cta-button {
    background: var(--neon-coral);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    text-align: center;
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-visual {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--midnight-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--warm-slate);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    background: var(--neon-coral);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #e55555;
    transform: translateY(-2px);
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(26, 27, 58, 0.15);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
    text-align: center;
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(26, 27, 58, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(26, 27, 58, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-coral), #ff8a80);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--midnight-blue);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--warm-slate);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--neon-coral);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--midnight-blue);
    margin-bottom: 15px;
}

.step p {
    color: var(--warm-slate);
    line-height: 1.6;
}

/* Subscription Plans Section */
.subscription-plans {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.plan-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card.featured {
    border-color: var(--neon-coral);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-coral);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-card:hover {
    border-color: var(--neon-coral);
    box-shadow: 0 16px 48px rgba(26, 27, 58, 0.1);
}

.plan-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--midnight-blue);
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--neon-coral);
    margin-bottom: 5px;
}

.price span {
    font-size: 1rem;
    color: var(--warm-slate);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.plan-features li {
    padding: 8px 0;
    color: var(--warm-slate);
    position: relative;
    padding-left: 25px;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--neon-coral);
    font-weight: 600;
}

.plan-button {
    width: 100%;
    background: var(--neon-coral);
    color: var(--white);
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background: #e55555;
    transform: translateY(-2px);
}

.plan-card:not(.featured) .plan-button {
    background: transparent;
    color: var(--neon-coral);
    border: 2px solid var(--neon-coral);
}

.plan-card:not(.featured) .plan-button:hover {
    background: var(--neon-coral);
    color: var(--white);
}

/* Community Section */
.community {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.community-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.community-text {
    flex: 1;
    text-align: left;
}

.community-visual {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.community-text h2 {
    font-size: 1.8rem;
    color: var(--midnight-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.community-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--warm-slate);
    margin-bottom: 1.5rem;
}

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

.community-features li {
    padding: 8px 0;
    color: var(--warm-slate);
    position: relative;
    padding-left: 25px;
}

.community-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--neon-coral);
    font-weight: 600;
}

/* Discovery Section */
.discovery {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.discovery-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.discovery-visual {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.discovery-text {
    flex: 1;
    text-align: left;
}

.discovery-text h3 {
    font-size: 1.8rem;
    color: var(--midnight-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.discovery-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--warm-slate);
    margin-bottom: 1.5rem;
}

.discovery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    background: var(--light-gray);
    color: var(--midnight-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Cross-Platform Section */
.cross-platform {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.platform-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.platform-text {
    flex: 1;
    text-align: left;
}

.platform-visual {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-text h2 {
    font-size: 1.8rem;
    color: var(--midnight-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.platform-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--warm-slate);
    margin-bottom: 1.5rem;
}

.platform-features {
    margin-top: 20px;
}

.platform-feature {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.platform-feature strong {
    color: var(--midnight-blue);
    margin-bottom: 5px;
}

.platform-feature span {
    color: var(--warm-slate);
    font-size: 0.9rem;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

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

.benefit h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--midnight-blue);
    margin-bottom: 15px;
}

.benefit p {
    color: var(--warm-slate);
    line-height: 1.6;
}

/* Content Images */
.content-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(26, 27, 58, 0.1);
}

/* Contacts Section */
.contacts {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--warm-slate);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-button {
    background: var(--neon-coral);
    color: var(--white);
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #e55555;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--midnight-blue);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--neon-coral);
}

.copyright {
    text-align: right;
    color: var(--warm-slate);
    font-size: 0.9rem;
    margin: 0;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    box-shadow: 0 -4px 20px rgba(26, 27, 58, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.cookie-text h4 {
    color: var(--midnight-blue);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-text p {
    color: var(--warm-slate);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn.accept {
    background: var(--neon-coral);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: #e55555;
}

.cookie-btn.reject {
    background: var(--warm-slate);
    color: var(--white);
}

.cookie-btn.reject:hover {
    background: #5a6268;
}

.cookie-btn.customize {
    background: var(--light-gray);
    color: var(--midnight-blue);
    border: 1px solid var(--warm-slate);
}

.cookie-btn.customize:hover {
    background: var(--warm-slate);
    color: var(--white);
}

.cookie-link {
    color: var(--warm-slate);
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.cookie-link:hover {
    color: var(--midnight-blue);
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-modal-header h3 {
    color: var(--midnight-blue);
    margin: 0;
    font-size: 1.3rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--warm-slate);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-body {
    padding: 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category h4 {
    color: var(--midnight-blue);
    margin: 0;
    font-size: 1.1rem;
}

.cookie-required {
    background: var(--warm-slate);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--warm-slate);
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--neon-coral);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-category p {
    color: var(--warm-slate);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--light-gray);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Order Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.close {
    color: var(--warm-slate);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}

.close:hover {
    color: var(--midnight-blue);
}

.modal-content h3 {
    color: var(--midnight-blue);
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--midnight-blue);
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-coral);
}

.submit-button {
    background: var(--neon-coral);
    color: var(--white);
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-visual {
        flex: none;
    }
    
    .hero-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .steps-grid,
    .plans-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .plan-card.featured {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .copyright {
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        max-width: 350px;
        height: 250px;
    }
    
    .community-content,
    .discovery-content,
    .platform-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .community-text,
    .discovery-text,
    .platform-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .feature-card,
    .step,
    .plan-card,
    .benefit {
        padding: 30px 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content {
        padding: 15px;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .hero-image {
        max-width: 300px;
        height: 200px;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 20px;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
}