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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

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

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

.main-nav {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

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

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

.nav-links a:hover {
    color: #0066cc;
}

.hero-split {
    padding: 80px 0;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    border-radius: 8px;
}

.hero-split h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #0d0d0d;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #0052a3;
}

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: #0066cc;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #f0f0f0;
}

.cta-outline {
    display: inline-block;
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-outline:hover {
    background: #0066cc;
    color: #ffffff;
}

.trust-strip {
    background: #f8f9fa;
    padding: 30px 0;
    text-align: center;
}

.trust-text {
    color: #6a6a6a;
    font-size: 16px;
}

.problem-split {
    padding: 100px 0;
    background: #fafbfc;
}

.problem-split h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #0d0d0d;
}

.problem-split p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.insight-section {
    padding: 100px 0;
}

.insight-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #0d0d0d;
}

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

.insight-card {
    flex: 1;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #0d0d0d;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.services-showcase {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 80px;
    color: #0d0d0d;
}

.service-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0d0d0d;
}

.service-info > p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 28px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #3a3a3a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-pricing {
    margin-top: 24px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
}

.testimonial-section {
    padding: 80px 0;
    background: #0d0d0d;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-size: 28px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #b0b0b0;
}

.cta-split-section {
    padding: 0;
}

.cta-split-section .split-container {
    gap: 0;
}

.cta-split-section .split-content {
    padding: 80px 60px;
}

.cta-split-section .dark {
    background: #1a1a1a;
    color: #ffffff;
}

.cta-split-section .light {
    background: #f0f4f8;
    color: #0d0d0d;
}

.cta-split-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-split-section h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.cta-split-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.value-grid-section {
    padding: 100px 0;
}

.value-grid-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #0d0d0d;
}

.value-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0d0d0d;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.form-section {
    padding: 100px 0;
    background: #fafbfc;
}

.form-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
    color: #0d0d0d;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 48px;
}

.main-form {
    background: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background: #0066cc;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
}

.main-footer {
    background: #0d0d0d;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: #b0b0b0;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #2a2a2a;
    text-align: center;
}

.footer-bottom p {
    color: #808080;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.cookie-btn.accept {
    background: #0066cc;
    color: #ffffff;
}

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

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

.cookie-btn.reject:hover {
    background: #2a2a2a;
}

.about-hero {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #0d0d0d;
}

.about-content {
    padding: 100px 0;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0d0d0d;
}

.about-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #0d0d0d;
}

.team-member .role {
    font-size: 16px;
    color: #0066cc;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.contact-hero {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #0d0d0d;
}

.contact-content {
    padding: 100px 0;
}

.contact-info-grid {
    display: flex;
    gap: 60px;
}

.contact-info-item {
    flex: 1;
}

.contact-info-item h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0d0d0d;
}

.contact-info-item p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.contact-info-item a {
    color: #0066cc;
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: #0052a3;
}

.services-hero {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #0d0d0d;
}

.services-list {
    padding: 100px 0;
}

.service-card {
    background: #ffffff;
    padding: 48px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #0d0d0d;
}

.service-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-top: 24px;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #0d0d0d;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #0d0d0d;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #0d0d0d;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-page ul li {
    list-style: disc;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.thanks-page {
    padding: 120px 0;
    text-align: center;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #0d0d0d;
}

.thanks-page p {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.thanks-page .cta-primary {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
        gap: 40px;
    }

    .split-container.reverse {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .service-split {
        flex-direction: column;
        gap: 40px;
    }

    .service-split.reverse {
        flex-direction: column;
    }

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

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

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

    .contact-info-grid {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cta-split-section .split-container {
        flex-direction: column;
    }

    .cta-split-section .split-content {
        padding: 60px 30px;
    }

    .main-form {
        padding: 32px 20px;
    }

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