* {
    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: #1a202c;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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 {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background: #38a169;
}

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

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

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a202c;
}

.ad-label {
    font-size: 12px;
    color: #718096;
    border-left: 1px solid #e2e8f0;
    padding-left: 24px;
}

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

.hero-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f7fafc;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
    color: #1a202c;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 540px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #2d3748;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.hero-image-right {
    flex: 1;
    overflow: hidden;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.split-reverse {
    display: flex;
}

.split-image-left {
    flex: 1;
    overflow: hidden;
}

.split-image-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.split-content-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-right h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a202c;
}

.split-content-right p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.8;
}

.insight-block {
    background: #1a202c;
    color: #ffffff;
    padding: 100px 60px;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 96px;
    font-weight: 800;
    color: #63b3ed;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    color: #cbd5e0;
    margin-top: 16px;
    max-width: 280px;
}

.insight-text {
    flex: 1;
}

.insight-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #e2e8f0;
}

.problem-amplification {
    padding: 100px 60px;
    background: #f7fafc;
}

.content-narrow {
    max-width: 1200px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    color: #1a202c;
}

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

.problem-card {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.problem-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3748;
    font-weight: 700;
}

.problem-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.approach-split {
    display: flex;
}

.approach-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #edf2f7;
}

.approach-content-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a202c;
}

.approach-content-left p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.8;
}

.cta-inline {
    display: inline-block;
    padding: 14px 32px;
    background: #2d3748;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 16px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #1a202c;
}

.approach-visual-right {
    flex: 1;
    overflow: hidden;
}

.approach-visual-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-showcase {
    padding: 100px 60px;
    background: #ffffff;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a202c;
}

.services-header p {
    font-size: 18px;
    color: #4a5568;
}

.services-split-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-split {
    display: flex;
    background: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

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

.service-image {
    flex: 1;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-details {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 700;
}

.service-details p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-details ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-details ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: #2d3748;
    font-size: 15px;
}

.service-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 32px;
    background: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.testimonials-flow {
    padding: 100px 60px;
    background: #edf2f7;
}

.testimonials-flow h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: #1a202c;
}

.testimonial-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #2d3748;
}

.testimonial p {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 16px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #718096;
    font-weight: 600;
}

.form-section {
    padding: 100px 60px;
    background: #f7fafc;
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a202c;
}

.form-intro p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.contact-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: #2d3748;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px;
    background: #edf2f7;
    border-top: 1px solid #cbd5e0;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.8;
}

.footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    color: #cbd5e0;
    margin-bottom: 8px;
}

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .split-reverse,
    .approach-split,
    .service-card-split,
    .form-split-container {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .ad-label {
        border-left: none;
        border-top: 1px solid #e2e8f0;
        padding-left: 0;
        padding-top: 12px;
    }

    .insight-wrapper {
        flex-direction: column;
        gap: 40px;
    }

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

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