* {
    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: #1a1a1a;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: #4a9eff;
    color: #fff;
}

.btn-accept:hover {
    background: #357acc;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a9eff;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffd700;
    color: #1a1a1a;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary:hover,
.btn-submit:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #4a9eff;
    border: 2px solid #4a9eff;
}

.btn-secondary:hover {
    background: #4a9eff;
    color: #fff;
}

.trust-indicators {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.1rem;
    color: #555;
}

.problem-amplification {
    padding: 5rem 2rem;
}

.split-content {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.content-left,
.content-right {
    flex: 1;
}

.content-right h2,
.content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-right p,
.content-left p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
}

.insight-section {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #fff;
}

.centered {
    text-align: center;
}

.insight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.insight-cards {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial-author {
    font-weight: 600;
    color: #1e3c72;
}

.solution-reveal {
    padding: 5rem 2rem;
}

.benefit-list {
    list-style: none;
    margin: 2rem 0;
}

.benefit-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: bold;
}

.services-pricing {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.services-pricing h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.featured {
    border: 3px solid #ffd700;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ffd700;
    color: #1a1a1a;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #444;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background: #1e3c72;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.urgency-section {
    padding: 4rem 2rem;
    background: #ff6b6b;
    color: #fff;
}

.urgency-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.urgency-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-left,
.form-right {
    flex: 1;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.form-benefits {
    margin-top: 2rem;
}

.benefit-item {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: #1e3c72;
    font-weight: 500;
}

.consultation-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a9eff;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column a {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #4a9eff;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

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

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ff6b6b;
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    font-weight: 600;
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #ff5252;
    transform: scale(1.05);
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.selected-service-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.selected-service-info h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

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

    .mobile-toggle {
        display: flex;
    }

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

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .form-container {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 1.7rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .trust-number {
        font-size: 2.2rem;
    }

    .content-right h2,
    .content-left h2 {
        font-size: 1.8rem;
    }

    .services-pricing h2 {
        font-size: 2rem;
    }

    .consultation-form {
        padding: 1.5rem;
    }
}
