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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

.ad-disclosure {
    background: #fffbea;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.nav-floating {
    position: sticky;
    top: 35px;
    background: var(--bg-white);
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    z-index: 1000;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--highlight-color);
}

.hero-asymmetric {
    display: flex;
    min-height: 88vh;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content-offset {
    width: 45%;
    padding: 80px 5% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 58px;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.hero-content-offset p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image-split {
    width: 55%;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 38px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
}

.intro-offset {
    display: flex;
    padding: 100px 8% 100px 12%;
    gap: 80px;
    align-items: center;
    background: var(--bg-white);
}

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

.intro-text-block h2 {
    font-size: 38px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 28px;
    font-weight: 700;
}

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

.intro-image-right {
    flex: 0.8;
    background: var(--bg-light);
}

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

.problem-amplification {
    display: flex;
    padding: 120px 5%;
    gap: 60px;
    align-items: center;
    background: var(--bg-light);
}

.problem-left {
    flex: 1;
    background: var(--bg-white);
}

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

.problem-text {
    flex: 1;
    padding: 0 40px;
}

.problem-text h3 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

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

.services-asymmetric {
    padding: 140px 5% 120px;
    background: var(--bg-white);
}

.services-asymmetric h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 70px;
    text-align: center;
    font-weight: 800;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card.large-card {
    width: calc(60% - 15px);
}

.service-card.offset-card {
    width: calc(40% - 15px);
    margin-top: 50px;
}

.service-card.wide-card {
    width: calc(55% - 15px);
}

.service-card:not(.large-card):not(.offset-card):not(.wide-card) {
    width: calc(45% - 15px);
}

.service-card.offset-bottom {
    margin-top: -40px;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 24px 28px 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 28px 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-card .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--highlight-color);
    margin: 20px 28px;
}

.service-card .btn-select-service {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 28px 28px;
}

.service-card .btn-select-service:hover {
    background: var(--highlight-color);
}

.service-card.selected {
    border-color: var(--highlight-color);
    box-shadow: 0 8px 24px rgba(233, 69, 96, 0.2);
}

.trust-building {
    padding: 100px 8%;
    background: var(--secondary-color);
    color: var(--bg-white);
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.trust-blocks {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.form-section-irregular {
    padding: 120px 5% 100px;
    background: var(--bg-light);
}

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

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

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

.form-container-offset {
    max-width: 650px;
    margin: 0 auto 0 10%;
    background: var(--bg-white);
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-form .form-group {
    margin-bottom: 24px;
}

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

.service-form input,
.service-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.service-form input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background: var(--highlight-color);
}

.disclaimer-section {
    padding: 60px 8%;
    background: #fff9e6;
    border-top: 2px solid #f0e6c8;
    border-bottom: 2px solid #f0e6c8;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #6b5d3f;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-asymmetric {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 8% 30px;
}

.footer-columns {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 24px 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 2000;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

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

.btn-reject:hover {
    background: var(--bg-white);
    color: var(--secondary-color);
}

.page-header-offset {
    padding: 100px 5% 60px 12%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
}

.page-header-offset h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-header-offset p {
    font-size: 22px;
    opacity: 0.95;
}

.services-detail {
    padding: 80px 5%;
}

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

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

.service-detail-image {
    flex: 1;
    background: var(--bg-light);
}

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

.service-detail-text {
    flex: 1;
    padding: 0 20px;
}

.service-detail-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.service-detail-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-price {
    font-size: 38px;
    font-weight: 800;
    color: var(--highlight-color);
    margin: 30px 0;
}

.btn-service-action {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-service-action:hover {
    background: var(--highlight-color);
}

.about-intro-asymmetric {
    display: flex;
    gap: 60px;
    padding: 100px 8%;
    align-items: center;
}

.about-text-large {
    flex: 1.3;
}

.about-text-large h1 {
    font-size: 46px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 28px;
    font-weight: 800;
}

.about-text-large p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image-offset {
    flex: 0.7;
    background: var(--bg-light);
}

.about-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-story {
    padding: 100px 12% 100px 8%;
    background: var(--bg-light);
}

.story-block h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 28px;
    font-weight: 700;
}

.story-block p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
    max-width: 900px;
}

.about-approach {
    display: flex;
    gap: 70px;
    padding: 100px 8%;
    align-items: flex-start;
}

.approach-left {
    flex: 1;
}

.approach-left h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 28px;
    font-weight: 700;
}

.approach-left p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

.approach-image-right {
    flex: 1;
    background: var(--bg-light);
}

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

.about-values {
    padding: 100px 8%;
    background: var(--secondary-color);
    color: var(--bg-white);
}

.about-values h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.about-team {
    padding: 100px 8%;
    text-align: center;
}

.about-team h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 28px;
    font-weight: 700;
}

.about-team p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
}

.contact-layout {
    padding: 80px 5%;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-header h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-header p {
    font-size: 19px;
    color: var(--text-light);
}

.contact-details-asymmetric {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    padding: 0 8%;
}

.contact-info-block {
    flex: 1;
    padding: 40px;
    background: var(--bg-light);
}

.contact-info-block.offset {
    margin-top: 40px;
}

.contact-info-block h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-block p {
    font-size: 17px;
    color: var(--text-color);
    line-height: 1.8;
}

.email-display {
    font-family: 'Courier New', monospace;
    color: var(--text-color);
}

.contact-map-section {
    margin: 0 -5%;
    background: var(--bg-light);
}

.contact-map-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 800;
}

.thanks-content p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

#serviceConfirmation {
    font-weight: 600;
    color: var(--highlight-color);
    font-size: 21px;
}

.btn-back {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-back:hover {
    background: var(--highlight-color);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 5% 100px;
}

.legal-content h1 {
    font-size: 46px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 800;
}

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

.legal-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--highlight-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-color);
}

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

    .hero-content-offset,
    .hero-image-split {
        width: 100%;
    }

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

    .intro-offset,
    .problem-amplification,
    .about-approach,
    .service-detail-block,
    .about-intro-asymmetric,
    .contact-details-asymmetric {
        flex-direction: column;
    }

    .service-card.large-card,
    .service-card.offset-card,
    .service-card.wide-card,
    .service-card {
        width: 100%;
        margin-top: 0;
    }

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

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

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

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 16px;
    }

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

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

    .page-header-offset h1 {
        font-size: 38px;
    }

    .form-container-offset {
        margin: 0 auto;
        padding: 35px 25px;
    }

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