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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

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

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

.nav-right a:hover {
    color: #2563eb;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

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

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.95;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

.hero-right {
    flex: 1;
    background: #f3f4f6;
}

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

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #2563eb;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.trust-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.trust-left {
    flex: 1;
    background: #f9fafb;
}

.trust-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trust-right {
    flex: 1;
    padding: 4rem 5%;
}

.trust-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.trust-right p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.8;
}

.trust-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

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

.problem-amplify {
    background: #1f2937;
    color: #ffffff;
    padding: 5rem 5%;
    text-align: center;
}

.problem-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.problem-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

.services-split {
    padding: 5rem 5%;
    background: #f9fafb;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.15rem;
    color: #6b7280;
}

.service-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #6b7280;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.service-visual {
    flex: 1;
    min-height: 400px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.select-service {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

.testimonial-split {
    padding: 5rem 5%;
    background: #eff6ff;
}

.testimonial-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial-content blockquote {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-content cite {
    font-style: normal;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-split {
    display: flex;
    min-height: 80vh;
}

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

.form-left h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.form-left p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

.form-notice {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.form-right {
    flex: 1;
    background: #f9fafb;
    padding: 4rem 5%;
    display: flex;
    align-items: center;
}

#repair-form {
    width: 100%;
    max-width: 500px;
}

.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.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.urgency-banner {
    background: #fef3c7;
    padding: 1.5rem 5%;
    text-align: center;
    border-top: 3px solid #f59e0b;
    border-bottom: 3px solid #f59e0b;
}

.urgency-banner p {
    font-size: 1.1rem;
    color: #92400e;
    font-weight: 600;
}

.footer-split {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
    background: #1f2937;
    color: #d1d5db;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #2563eb;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #1d4ed8;
}

.cookie-btn.reject {
    background: #4b5563;
    color: #ffffff;
}

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

@media (max-width: 768px) {
    .hero-split,
    .trust-split,
    .service-row,
    .testimonial-content,
    .form-split,
    .footer-split {
        flex-direction: column;
    }

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

    .nav-right {
        gap: 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .trust-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-visual {
        min-height: 300px;
    }
}

.page-header {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: #ffffff;
    padding: 5rem 5%;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-section {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2563eb;
}

.content-section p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: #4b5563;
    line-height: 1.7;
}

.about-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-card {
    flex: 1;
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.contact-card h3 {
    margin-top: 0;
}

.thanks-message {
    text-align: center;
    padding: 5rem 5%;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-message h1 {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.thanks-message p {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.checkmark {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: #ffffff;
}

@media (max-width: 768px) {
    .about-split,
    .contact-grid {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}