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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #0f3460;
    --accent-color: #e94560;
    --light-bg: #f8f9fa;
    --dark-text: #2d3436;
    --light-text: #636e72;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.floating-nav {
    position: fixed;
    top: 2rem;
    right: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(233, 69, 96, 0.3);
}

.hero-offset {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 2rem 4rem;
}

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(26, 26, 46, 0.8), transparent);
}

.hero-text-block {
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin-left: 5%;
}

.hero-text-block h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subline {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.cta-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.trust-signal-asymmetric {
    padding: 6rem 2rem;
    background: var(--light-bg);
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.trust-left {
    flex: 0 0 300px;
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transform: rotate(-2deg);
}

.trust-number {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.trust-left p {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-top: 1rem;
}

.trust-right {
    flex: 1;
}

.trust-right h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.trust-right p {
    font-size: 1.2rem;
    color: var(--light-text);
    line-height: 1.8;
}

.problem-amplification {
    padding: 6rem 2rem;
    background: var(--white);
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 300px;
    padding: 3rem;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.card-offset-1 {
    transform: translateY(-2rem);
}

.card-offset-2 {
    transform: translateY(2rem);
}

.problem-card h4 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.problem-card p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
}

.solution-reveal {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: var(--white);
}

.solution-content {
    max-width: 1200px;
    margin: 0 auto;
}

.solution-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.solution-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.solution-item {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.solution-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.solution-icon {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.solution-item h5 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.visual-showcase {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.visual-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
    color: var(--white);
}

.showcase-caption p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.5rem;
    text-align: center;
}

.services-asymmetric {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding-left: 10%;
}

.services-header-offset h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-intro {
    font-size: 1.3rem;
    color: var(--light-text);
}

.services-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 320px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-featured {
    flex: 1 1 100%;
    flex-direction: row;
}

.service-featured .service-image {
    flex: 0 0 50%;
}

.service-premium {
    position: relative;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-featured .service-image {
    height: 100%;
}

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

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

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content > p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    color: var(--dark-text);
    font-size: 0.95rem;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.price-unit {
    color: var(--light-text);
    font-size: 0.95rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonial-offset {
    padding: 6rem 2rem;
    background: var(--white);
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 300px;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 12px;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.testimonial-item:nth-child(2) {
    transform: rotate(1deg);
}

.testimonial-item:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--light-text);
}

.form-section-creative {
    padding: 6rem 2rem;
    background: var(--light-bg);
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.form-visual-block {
    flex: 0 0 400px;
}

.form-visual-block h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.form-visual-block p {
    font-size: 1.2rem;
    color: var(--light-text);
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.equipment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    padding: 1.25rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.why-choose-offset {
    padding: 6rem 2rem;
    background: var(--white);
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-offset h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.reason-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.reason-block:nth-child(odd) {
    transform: translateY(-1rem);
}

.reason-block:nth-child(even) {
    transform: translateY(1rem);
}

.reason-block h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reason-block p {
    color: var(--light-text);
    line-height: 1.7;
}

.cta-final-asymmetric {
    padding: 6rem 2rem;
    background: var(--primary-color);
    display: flex;
    gap: 4rem;
    align-items: center;
}

.cta-content-block {
    flex: 1;
    padding-left: 5%;
    color: var(--white);
}

.cta-content-block h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content-block > p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-large {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-large:hover {
    background: #d63851;
    transform: translateY(-2px);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-image-block {
    flex: 0 0 40%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.footer-asymmetric {
    background: #0a0a14;
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: var(--light-bg);
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: var(--white);
    padding: 4rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-selected {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-selected strong {
    color: var(--primary-color);
}

.btn-back-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.content-page {
    padding: 8rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.content-page h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.content-page h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-page p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--light-text);
}

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

.content-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: var(--light-text);
}

.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

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

.contact-item {
    margin-bottom: 1rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .hero-visual {
        width: 100%;
        opacity: 0.3;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .trust-signal-asymmetric {
        flex-direction: column;
    }

    .trust-left {
        flex: 1;
        width: 100%;
        transform: rotate(0);
    }

    .service-featured {
        flex-direction: column;
    }

    .service-featured .service-image {
        flex: 1;
        height: 300px;
    }

    .form-section-creative {
        flex-direction: column;
    }

    .form-visual-block {
        flex: 1;
    }

    .cta-final-asymmetric {
        flex-direction: column;
    }

    .cta-image-block {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        top: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 16px;
        box-shadow: var(--shadow-md);
        display: none;
    }

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

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

    .hero-subline {
        font-size: 1.2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-cta a {
        display: block;
        text-align: center;
    }

    .services-header-offset {
        padding-left: 0;
    }

    .services-header-offset h2 {
        font-size: 2.5rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .problem-container {
        flex-direction: column;
    }

    .card-offset-1,
    .card-offset-2 {
        transform: translateY(0);
    }

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

    .testimonial-wrapper {
        flex-direction: column;
    }

    .testimonial-item {
        transform: rotate(0);
    }

    .cta-content-block {
        padding-left: 0;
    }

    .cta-content-block h2 {
        font-size: 2.5rem;
    }

    .footer-main {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 2rem;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}