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

:root {
    --primary: #2c3e50;
    --secondary: #e67e22;
    --accent: #c0392b;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border: #bdc3c7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.active {
    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;
    margin: 0;
    font-size: 14px;
}

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

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

.btn-accept {
    background: var(--secondary);
    color: white;
}

.btn-accept:hover {
    background: #d35400;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--secondary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: var(--bg-light);
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-right {
    flex: 1;
    background: var(--primary);
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary,
.cta-tertiary {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cta-primary {
    background: var(--secondary);
    color: white;
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.cta-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-secondary:hover {
    background: var(--primary);
    color: white;
}

.cta-tertiary {
    background: var(--accent);
    color: white;
}

.cta-tertiary:hover {
    background: #a93226;
}

.intro-asymmetric {
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text-box {
    flex: 1.2;
}

.intro-text-box h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary);
    line-height: 1.3;
}

.intro-text-box p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.9;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 25px;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-preview {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header-split {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 60px;
    display: flex;
    gap: 60px;
}

.header-left {
    flex: 1;
}

.header-left h2 {
    font-size: 42px;
    color: var(--primary);
    line-height: 1.2;
}

.header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-right p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.service-card {
    display: flex;
    min-height: 450px;
}

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

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.service-card:nth-child(even) .service-content {
    background: white;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 25px;
}

.btn-service {
    align-self: flex-start;
    padding: 14px 35px;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.cta-fullwidth {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 80px 60px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
}

.process-left {
    flex: 1;
    overflow: hidden;
}

.process-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-right {
    flex: 1;
    padding: 60px;
    background: var(--bg-light);
}

.process-right h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.step {
    display: flex;
    gap: 25px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    min-width: 60px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonials-asymmetric {
    padding: 100px 60px;
    background: white;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-asymmetric h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary);
}

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

.testimonial-card {
    flex: 1;
    padding: 40px;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 16px;
    color: var(--primary);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 100px;
}

.values-content {
    flex: 1;
    padding: 80px 60px;
    background: var(--primary);
    color: white;
}

.values-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
}

.value-item {
    margin-bottom: 40px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

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

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-section {
    padding: 100px 60px;
    background: var(--bg-light);
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary);
    line-height: 1.3;
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 18px;
}

.form-wrapper {
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    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: var(--secondary);
}

.form-privacy {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.form-privacy input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-privacy label {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.form-privacy a {
    color: var(--secondary);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--secondary);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d35400;
}

.final-cta {
    padding: 120px 60px;
    background: var(--bg-white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 48px;
    margin-bottom: 40px;
    color: var(--primary);
    font-weight: 700;
}

.footer {
    background: var(--primary);
    color: white;
    padding: 60px 60px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

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

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

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

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

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

.sticky-cta-btn {
    display: block;
    padding: 18px 35px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    font-size: 16px;
}

.sticky-cta-btn:hover {
    background: #a93226;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

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

    .hero-right {
        min-height: 400px;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 50px;
        padding: 80px 40px;
    }

    .section-header-split {
        flex-direction: column;
        gap: 30px;
        padding: 0 40px;
    }

    .service-card,
    .service-card.reverse {
        flex-direction: column;
    }

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

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

    .form-container-split {
        flex-direction: column;
        gap: 50px;
        padding: 0 40px;
    }

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

    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px 30px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        display: none;
    }

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

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid var(--bg-light);
    }

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

    .intro-text-box h2,
    .header-left h2,
    .process-right h2,
    .values-content h2,
    .form-intro h2,
    .testimonials-asymmetric h2 {
        font-size: 32px;
    }

    .cta-content h2,
    .final-cta-content h2 {
        font-size: 36px;
    }

    .service-content {
        padding: 40px;
    }

    .service-content h3 {
        font-size: 26px;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .sticky-cta-btn {
        width: 100%;
        text-align: center;
    }

    .footer-col {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .hero-left {
        padding: 60px 30px;
    }

    .intro-asymmetric,
    .services-preview,
    .testimonials-asymmetric {
        padding: 60px 30px;
    }

    .section-header-split,
    .form-container-split {
        padding: 0 30px;
    }

    .form-wrapper {
        padding: 35px 25px;
    }

    .process-right,
    .values-content {
        padding: 50px 30px;
    }

    .cta-fullwidth,
    .final-cta {
        padding: 60px 30px;
    }

    .footer {
        padding: 50px 30px 30px;
    }
}