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

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #2ecc71;
    color: white;
}

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

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

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

.header-split {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.main-nav a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #1a73e8;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 560px;
}

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

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

.btn-primary,
.btn-secondary,
.btn-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #1a73e8;
    color: white;
}

.btn-primary:hover {
    background: #1557b0;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #1a73e8;
    color: white;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    background: #2ecc71;
    color: white;
}

.btn-large:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.trust-strip {
    background: #1a1a1a;
    padding: 3rem 2rem;
}

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

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

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
}

.trust-item strong {
    font-size: 2.5rem;
    color: #64b5f6;
    display: block;
    margin-bottom: 0.5rem;
}

.trust-item span {
    font-size: 0.95rem;
    color: #b0bec5;
}

.problem-split {
    padding: 6rem 2rem;
    background: #fafafa;
}

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

.split-image-right,
.split-image-left {
    flex: 1;
}

.split-image-right img,
.split-image-left img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.split-text-left,
.split-text-right {
    flex: 1;
}

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

.split-text-left p,
.split-text-right p {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.insight-section {
    padding: 6rem 2rem;
    background: white;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.insight-section h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.insight-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #f8f9fa;
    border-left: 4px solid #1a73e8;
    border-radius: 6px;
}

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

.insight-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.testimonial-visual {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.testimonial-content {
    flex: 1.5;
}

.testimonial-content blockquote {
    border: none;
}

.testimonial-content p {
    font-size: 1.5rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.services-selection {
    padding: 6rem 2rem;
    background: #f5f7fa;
}

.container-standard {
    max-width: 1300px;
    margin: 0 auto;
}

.services-selection h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background: white;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #2ecc71;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a73e8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #5a6c7d;
}

.service-features li:before {
    content: "✓";
    color: #2ecc71;
    font-weight: bold;
    margin-right: 0.75rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: #1a73e8;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #1557b0;
}

.form-section {
    padding: 6rem 2rem;
    background: white;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.125rem;
    color: #5a6c7d;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.selected-service-display {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.selected-service-display p {
    color: #1a73e8;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #2ecc71;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #27ae60;
}

.guarantee-split {
    padding: 6rem 2rem;
    background: #fafafa;
}

.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-column h4 {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.footer-column p {
    color: #b0bec5;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #b0bec5;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #64b5f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #b0bec5;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

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

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

    .main-nav {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-left {
        padding: 2rem;
    }

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

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .services-list {
        flex-direction: column;
        align-items: center;
    }

    .contact-form {
        padding: 2rem;
    }

    .testimonial-content p {
        font-size: 1.25rem;
    }

    .split-text-left h2,
    .split-text-right h2 {
        font-size: 2rem;
    }
}