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

:root {
    --primary: #2c5f8d;
    --secondary: #e85d35;
    --accent: #f4a261;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --success: #28a745;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--success);
    color: var(--white);
}

.btn-accept:hover {
    background: #218838;
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-reject:hover {
    background: var(--white);
    color: var(--dark);
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s;
}

.hero-visual {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a4568 100%);
    z-index: 1;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M20,20 L40,40 M60,20 L80,40 M20,60 L40,80 M60,60 L80,80" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px;
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-hero {
    padding: 18px 40px;
    font-size: 18px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: #d14d25;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 53, 0.4);
}

.trust-indicator {
    padding: 60px 0;
    background: var(--light);
}

.trust-cards {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-card {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.trust-card p {
    color: var(--gray);
    font-size: 16px;
}

.story-section {
    padding: 100px 0;
    background: var(--white);
}

.story-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary);
}

.story-text {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #333;
}

.story-highlight {
    background: var(--light);
    padding: 30px;
    border-left: 4px solid var(--secondary);
    margin: 40px 0;
    font-style: italic;
}

.story-highlight p {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.story-author {
    display: block;
    font-size: 16px;
    color: var(--gray);
    font-style: normal;
}

.problem-section {
    padding: 80px 0;
    background: #f0f4f8;
}

.problem-split {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.problem-left {
    flex: 1;
}

.problem-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary);
}

.problem-left p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.problem-right {
    flex: 1;
}

.problem-card {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark);
}

.problem-card ul {
    list-style: none;
}

.problem-card li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.problem-card li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.cta-inline {
    padding: 60px 30px;
    text-align: center;
    background: var(--secondary);
    color: var(--white);
}

.cta-inline p {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 500;
}

.btn-cta {
    padding: 16px 36px;
    font-size: 18px;
    background: var(--white);
    color: var(--secondary);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.insight-section {
    padding: 100px 0;
    background: var(--white);
}

.insight-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary);
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.insight-card {
    flex: 1 1 calc(50% - 15px);
    background: var(--light);
    padding: 40px;
    border-radius: 8px;
    transition: all 0.3s;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.insight-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.testimonials-inline {
    padding: 80px 0;
    background: #f9fafb;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary);
}

.testimonials-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    min-width: 280px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--gray);
}

.benefits-reveal {
    padding: 100px 0;
    background: var(--white);
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary);
}

.benefits-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    min-width: 80px;
}

.benefit-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary);
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 15px;
    z-index: 999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.sticky-cta.active {
    display: block;
}

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

.sticky-content span {
    font-size: 18px;
    font-weight: 500;
}

.btn-sticky {
    padding: 12px 30px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #d14d25;
}

.categories-preview {
    padding: 80px 0;
    background: var(--light);
}

.categories-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary);
}

.category-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.category-card {
    flex: 1 1 calc(50% - 12.5px);
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    min-width: 280px;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-strategy .category-image {
    background: linear-gradient(135deg, #2c5f8d 0%, #1a4568 100%);
}

.card-family .category-image {
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
}

.card-party .category-image {
    background: linear-gradient(135deg, #e85d35 0%, #d14d25 100%);
}

.card-puzzles .category-image {
    background: linear-gradient(135deg, #6a4c93 0%, #4a2c73 100%);
}

.category-card h3 {
    padding: 25px 25px 10px;
    font-size: 24px;
    color: var(--primary);
}

.category-card p {
    padding: 0 25px 20px;
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.card-link {
    display: inline-block;
    padding: 0 25px 25px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.card-link:hover {
    color: var(--primary);
}

.urgency-section {
    padding: 60px 0;
    background: var(--white);
}

.urgency-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 40px;
    border-radius: 6px;
}

.urgency-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #856404;
}

.urgency-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #856404;
    margin-bottom: 15px;
}

.urgency-highlight {
    font-weight: 600;
    margin-top: 20px;
}

.services-pricing {
    padding: 100px 0;
    background: var(--white);
}

.services-pricing h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 60px;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.pricing-card {
    flex: 1 1 calc(33.333% - 17px);
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 35px;
    transition: all 0.3s;
    position: relative;
    min-width: 280px;
    max-width: 380px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.pricing-card.featured {
    border-color: var(--secondary);
    border-width: 3px;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--primary);
}

.pricing-desc {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 25px;
}

.pricing-price {
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.price-from {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

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

.pricing-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 18px;
}

.btn-pricing {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-pricing:hover {
    background: #1a4568;
    transform: scale(1.02);
}

.pricing-card.featured .btn-pricing {
    background: var(--secondary);
}

.pricing-card.featured .btn-pricing:hover {
    background: #d14d25;
}

.form-section {
    padding: 80px 0;
    background: var(--light);
}

.form-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary);
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 50px;
}

.order-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-consent {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 15px;
    line-height: 1.6;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #d14d25;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 53, 0.3);
}

.final-cta {
    padding: 100px 0;
    text-align: center;
    background: var(--primary);
    color: var(--white);
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-final-cta {
    padding: 18px 40px;
    font-size: 18px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-final-cta:hover {
    background: #d14d25;
    transform: scale(1.05);
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
    color: #888;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .problem-split {
        flex-direction: column;
    }

    .insight-card {
        flex: 1 1 100%;
    }

    .testimonials-cards {
        flex-direction: column;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

    .benefit-item {
        flex-direction: column;
    }

    .category-card {
        flex: 1 1 100%;
    }

    .pricing-card {
        flex: 1 1 100%;
    }

    .sticky-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        flex-direction: column;
    }
}
