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

:root {
    --primary: #2c3e50;
    --accent: #e67e22;
    --light: #ecf0f1;
    --dark: #1a252f;
    --text: #34495e;
    --white: #ffffff;
    --border: #dfe6e9;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    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;
    min-width: 250px;
}

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

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

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

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

.cookie-btn.reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 60px;
}

.nav-links {
    list-style: none;
    flex: 1;
}

.nav-links li {
    margin-bottom: 24px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-cta-side .btn-nav {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
}

.nav-cta-side .btn-nav:hover {
    background: #d35400;
}

.main-content {
    margin-left: 280px;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 60px 80px 80px;
    position: relative;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.hero-text-offset {
    flex: 1;
    max-width: 600px;
    padding-right: 60px;
}

.hero-text-offset h1 {
    font-size: 62px;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 28px;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 42px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.hero-image-overlap {
    position: relative;
    width: 450px;
    height: 550px;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-asymmetric {
    padding: 120px 80px;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.intro-block-left {
    flex: 0 0 300px;
}

.label-accent {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 16px;
}

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

.intro-block-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.intro-block-right p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
}

.feature-offset-grid {
    padding: 60px 80px 120px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-card.card-1,
.feature-card.card-3 {
    flex-direction: row;
}

.feature-card.card-2 {
    flex-direction: row-reverse;
    margin-left: 120px;
}

.feature-card.card-3 {
    margin-left: 60px;
}

.feature-card img {
    width: 420px;
    height: 320px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.feature-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
}

.statement-centered {
    padding: 100px 80px;
    background: var(--primary);
    text-align: center;
}

.statement-centered blockquote {
    font-size: 36px;
    line-height: 1.5;
    color: var(--white);
    font-weight: 500;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}

.services-stacked {
    padding: 120px 80px;
    background: var(--light);
}

.section-header-offset {
    max-width: 650px;
    margin-bottom: 80px;
}

.section-header-offset h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-lead {
    font-size: 19px;
    color: var(--text);
    line-height: 1.7;
}

.service-item {
    display: flex;
    gap: 70px;
    align-items: center;
    background: var(--white);
    padding: 50px;
    margin-bottom: 50px;
    border-radius: 8px;
}

.service-item.item-left {
    margin-right: 100px;
}

.service-item.item-right {
    margin-left: 100px;
    flex-direction: row-reverse;
}

.service-visual {
    flex: 0 0 380px;
}

.service-visual img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 18px;
    font-weight: 700;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.service-duration {
    font-size: 14px;
    color: var(--text);
    opacity: 0.8;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #d35400;
    transform: translateX(4px);
}

.testimonial-offset {
    padding: 100px 80px;
    display: flex;
    gap: 80px;
}

.testimonial-content {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-left: 4px solid var(--accent);
    border-radius: 4px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 4px;
}

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

.process-flow {
    padding: 100px 80px;
    background: var(--white);
}

.process-flow h2 {
    font-size: 44px;
    color: var(--primary);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.process-steps {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

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

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

.cta-offset-block {
    padding: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta-large {
    display: inline-block;
    padding: 20px 48px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-cta-large:hover {
    background: #d35400;
    transform: scale(1.05);
}

.form-container {
    padding: 120px 80px;
    background: var(--light);
}

.form-intro {
    max-width: 650px;
    margin: 0 auto 60px;
    text-align: center;
}

.form-intro h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: var(--text);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-trust {
    padding: 100px 80px;
    background: var(--white);
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    gap: 60px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: var(--text);
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 80px 30px;
    margin-left: 280px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

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

.btn-sticky {
    display: inline-block;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
}

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 220px;
        padding: 30px 20px;
    }

    .main-content {
        margin-left: 220px;
    }

    .footer {
        margin-left: 220px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
    }

    .hero-text-offset {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-text-offset h1 {
        font-size: 48px;
    }

    .hero-image-overlap {
        width: 100%;
        max-width: 500px;
        height: 400px;
    }

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

    .feature-offset-grid {
        padding: 60px 40px;
    }

    .feature-card {
        flex-direction: column !important;
        margin-left: 0 !important;
    }

    .feature-card img {
        width: 100%;
    }

    .services-stacked,
    .form-container {
        padding: 80px 40px;
    }

    .service-item {
        flex-direction: column !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        gap: 30px;
    }

    .service-visual {
        flex: 0 0 auto;
        width: 100%;
    }

    .testimonial-offset {
        flex-direction: column;
        padding: 80px 40px;
    }

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

    .cta-offset-block {
        flex-direction: column;
        padding: 60px 40px;
        text-align: center;
    }

    .trust-stats {
        flex-direction: column;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px;
    }

    .nav-links {
        display: flex;
        gap: 20px;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .nav-links li {
        margin-bottom: 0;
    }

    .nav-cta-side {
        margin-top: 20px;
    }

    .main-content {
        margin-left: 0;
    }

    .footer {
        margin-left: 0;
    }

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

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

    .intro-block-left h2 {
        font-size: 32px;
    }

    .intro-block-right p {
        font-size: 16px;
    }

    .section-header-offset h2 {
        font-size: 36px;
    }

    .service-details h3 {
        font-size: 24px;
    }

    .process-flow h2 {
        font-size: 32px;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .form-intro h2 {
        font-size: 32px;
    }

    .contact-form {
        padding: 30px;
    }

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

    .btn-sticky {
        padding: 14px 24px;
        font-size: 14px;
    }
}
