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

:root {
    --primary-color: #1a4d6d;
    --secondary-color: #2c7ba3;
    --accent-color: #e8a54a;
    --text-dark: #1f1f1f;
    --text-light: #6b6b6b;
    --background-light: #f8f9fa;
    --background-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-dark);
    background: var(--background-white);
}

.ad-disclosure {
    background: var(--accent-color);
    color: var(--text-dark);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

.floating-nav {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 12px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    padding: 160px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-content-left {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.offset-cta {
    margin-left: 80px;
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 77, 109, 0.3);
}

.hero-image-offset {
    flex: 0 0 55%;
    position: relative;
    margin-top: -40px;
}

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

.story-intro {
    padding: 120px 40px;
    background: var(--background-light);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-block-irregular {
    flex: 0 0 55%;
}

.story-block-irregular h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.story-image-float {
    flex: 0 0 40%;
    background: var(--accent-color);
    padding: 15px;
    border-radius: 12px;
}

.story-image-float img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.problem-amplification {
    padding: 100px 40px;
    background: var(--background-white);
}

.asymmetric-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.problem-left {
    flex: 0 0 60%;
}

.problem-left h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.problem-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.problem-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    flex-shrink: 0;
}

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

.problem-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.problem-visual {
    flex: 0 0 35%;
    margin-top: 80px;
}

.problem-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.insight-section {
    padding: 120px 40px;
    background: var(--primary-color);
    color: white;
}

.insight-box-irregular {
    max-width: 900px;
    margin-left: 10%;
}

.insight-label {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.insight-box-irregular h2 {
    font-size: 44px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.insight-box-irregular p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.trust-building {
    padding: 100px 40px;
    background: var(--background-light);
}

.trust-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-card {
    background: var(--background-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-offset-1 {
    flex: 0 0 calc(45% - 20px);
    margin-top: 0;
}

.card-offset-2 {
    flex: 0 0 calc(50% - 20px);
    margin-top: 60px;
}

.card-offset-3 {
    flex: 0 0 calc(100% - 0px);
    margin-left: 20%;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.testimonials-inline {
    padding: 100px 40px;
    background: var(--background-white);
}

.testimonial-container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.testimonial-large {
    flex: 0 0 100%;
    background: var(--secondary-color);
    padding: 60px;
    border-radius: 16px;
    color: white;
}

.testimonial-large blockquote p {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-small {
    flex: 0 0 calc(50% - 20px);
    background: var(--background-light);
    padding: 40px;
    border-radius: 12px;
}

.testimonial-small blockquote p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
    color: var(--text-dark);
}

blockquote footer {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
}

.services-reveal {
    padding: 120px 40px;
    background: var(--background-light);
}

.services-header-asymmetric {
    max-width: 800px;
    margin: 0 0 80px 10%;
}

.services-header-asymmetric h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-header-asymmetric p {
    font-size: 20px;
    color: var(--text-light);
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: var(--background-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.service-large {
    flex: 0 0 calc(60% - 15px);
}

.service-medium {
    flex: 0 0 calc(40% - 15px);
}

.service-small {
    flex: 0 0 calc(33.333% - 20px);
}

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

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

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

.form-section {
    padding: 120px 40px;
    background: var(--background-white);
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto 0 15%;
}

.form-intro {
    margin-bottom: 50px;
}

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

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

.contact-form {
    background: var(--background-light);
    padding: 50px;
    border-radius: 16px;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

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

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

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--secondary-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-submit {
    padding: 18px 50px;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 165, 74, 0.4);
}

.final-cta-asymmetric {
    padding: 100px 40px;
    background: var(--background-light);
}

.cta-content-offset {
    max-width: 700px;
    margin-left: 20%;
    text-align: left;
}

.cta-content-offset h2 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-content-offset p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.cta-secondary {
    display: inline-block;
    padding: 18px 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
}

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

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

.footer-col {
    flex: 1;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 16px;
    opacity: 0.9;
}

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

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

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

.footer-col a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

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

.footer-col p {
    opacity: 0.9;
    margin-bottom: 10px;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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 {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

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

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

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    transform: translateY(-2px);
}

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

    .hero-content-left {
        flex: 1;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-text-block h1 {
        font-size: 42px;
    }

    .offset-cta {
        margin-left: 0;
    }

    .hero-image-offset {
        flex: 1;
        margin-top: 0;
    }

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

    .asymmetric-container {
        flex-direction: column;
        gap: 40px;
    }

    .problem-visual {
        margin-top: 0;
    }

    .services-grid-irregular .service-large,
    .services-grid-irregular .service-medium,
    .services-grid-irregular .service-small {
        flex: 0 0 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-main {
        flex-wrap: wrap;
    }

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

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

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

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

    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-text-block h1 {
        font-size: 32px;
    }

    .trust-grid-asymmetric .trust-card {
        flex: 0 0 100%;
        margin-top: 0 !important;
        margin-left: 0 !important;
    }

    .testimonial-small {
        flex: 0 0 100%;
    }
}