:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-orange: #f59e0b;
    --success-green: #10b981;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #fbbf24;
}

.nav-floating {
    position: fixed;
    top: 50px;
    right: 40px;
    background: var(--bg-white);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.nav-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.nav-items a:hover {
    color: var(--primary-color);
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 50px 80px 80px;
    overflow: hidden;
}

.hero-content-offset {
    width: 52%;
    z-index: 2;
    padding-right: 60px;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.hero-image-overlay {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 58%;
    height: 75%;
    z-index: 1;
    transform: rotate(-3deg);
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-light);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.intro-offset {
    padding: 120px 80px 100px 140px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    background-color: var(--bg-light);
}

.intro-block-left {
    width: 55%;
}

.intro-block-left h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.intro-stats {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 20px;
}

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

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-medium);
    margin-top: 10px;
}

.services-preview {
    padding: 100px 60px 120px 100px;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: calc(50% - 18px);
}

.service-card.large {
    width: 100%;
    flex-direction: row;
}

.service-card.large .service-image {
    width: 48%;
}

.service-card.large .service-content {
    width: 52%;
    padding: 50px;
}

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

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.trust-block-diagonal {
    padding: 100px 80px;
    display: flex;
    align-items: center;
    gap: 70px;
    background-color: var(--bg-light);
    position: relative;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.trust-block-diagonal > * {
    transform: skewY(2deg);
}

.trust-content {
    width: 50%;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.trust-icon {
    width: 32px;
    height: 32px;
    background-color: var(--success-green);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.trust-point p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.6;
}

.trust-image {
    width: 45%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-white);
}

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

.form-section-offset {
    padding: 100px 60px 120px 100px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-container {
    width: 52%;
}

.form-container h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-intro {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

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

.form-side-image {
    width: 43%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

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

.footer-asymmetric {
    background-color: #111827;
    color: #e5e7eb;
    padding: 80px 80px 40px 80px;
}

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

.footer-brand h3 {
    font-size: 24px;
    color: var(--bg-white);
    margin-bottom: 12px;
}

.footer-brand p {
    color: #9ca3af;
    font-size: 15px;
}

.footer-links {
    display: flex;
    gap: 70px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 16px;
    color: var(--bg-white);
    margin-bottom: 8px;
}

.footer-column a,
.footer-column p {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 13px;
    line-height: 1.6;
}

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

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    font-size: 15px;
    color: var(--text-medium);
    flex: 1;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-accept:hover {
    background-color: var(--primary-dark);
}

.btn-reject {
    background-color: transparent;
    color: var(--text-medium);
    border: 2px solid var(--border-color);
}

.btn-reject:hover {
    border-color: var(--text-medium);
}

.about-hero-offset {
    padding: 140px 80px 80px 140px;
    background-color: var(--bg-light);
}

.about-intro h1 {
    font-size: 62px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-lead {
    font-size: 24px;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 700px;
}

.about-story {
    padding: 100px 80px;
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-image-left {
    width: 45%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

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

.story-content-right {
    width: 50%;
}

.story-content-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-content-right p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.expertise-grid {
    padding: 100px 80px;
    background-color: var(--bg-light);
}

.expertise-grid h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.expertise-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.expertise-card {
    width: calc(50% - 15px);
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.expertise-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.expertise-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.values-section-diagonal {
    padding: 100px 80px;
    display: flex;
    align-items: center;
    gap: 70px;
}

.values-content {
    width: 55%;
}

.values-content h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.value-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.values-image {
    width: 40%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

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

.cta-about {
    padding: 100px 80px;
    background-color: var(--bg-light);
}

.cta-content-centered {
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.services-hero {
    padding: 140px 80px 60px 80px;
    background-color: var(--bg-light);
    text-align: center;
}

.services-hero h1 {
    font-size: 58px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-intro {
    font-size: 22px;
    color: var(--text-medium);
}

.services-detailed {
    padding: 80px 60px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-detail-image {
    width: 45%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
    height: 450px;
}

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

.service-detail-content {
    width: 50%;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-description {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--text-dark);
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-price-block {
    margin: 30px 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

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

.price-period {
    font-size: 18px;
    color: var(--text-medium);
}

.contact-section-services {
    padding: 80px 80px 120px 80px;
    background-color: var(--bg-light);
}

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

.contact-services-container h2 {
    font-size: 40px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--text-dark);
}

.contact-services-container p {
    font-size: 17px;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 40px;
}

.contact-hero {
    padding: 140px 80px 60px 80px;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 58px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-intro {
    font-size: 22px;
    color: var(--text-medium);
}

.contact-details-asymmetric {
    padding: 100px 100px 80px 140px;
    display: flex;
    gap: 80px;
}

.contact-info-block {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-item h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-value {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-image-block {
    width: 45%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
    height: 450px;
}

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

.contact-cta-section {
    padding: 80px 80px 120px 80px;
    background-color: var(--bg-light);
}

.contact-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-cta-content p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-section {
    padding: 140px 80px 120px 80px;
    min-height: 70vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-green);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin: 0 auto 30px auto;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 40px;
}

.selected-service-info {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next-steps {
    text-align: left;
    margin: 50px 0;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.next-steps-list {
    padding-left: 25px;
}

.next-steps-list li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.legal-page {
    padding: 100px 80px 120px 80px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-date {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 25px;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .nav-floating {
        top: 40px;
        right: 20px;
        padding: 15px 20px;
    }

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

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
    }

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

    .hero-image-overlay {
        position: relative;
        width: 100%;
        height: 400px;
        right: 0;
        top: 0;
        transform: none;
        margin-top: 40px;
    }

    .intro-offset,
    .about-story,
    .values-section-diagonal,
    .trust-block-diagonal,
    .form-section-offset,
    .contact-details-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
    }

    .intro-block-left,
    .intro-stats,
    .story-image-left,
    .story-content-right,
    .values-content,
    .values-image,
    .trust-content,
    .trust-image,
    .form-container,
    .form-side-image,
    .contact-info-block,
    .contact-image-block {
        width: 100%;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .service-detail-image,
    .service-detail-content {
        width: 100%;
    }

    .service-card {
        width: 100%;
    }

    .service-card.large {
        flex-direction: column;
    }

    .service-card.large .service-image,
    .service-card.large .service-content {
        width: 100%;
    }

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

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

    .expertise-card {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}