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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f4c75;
    --highlight-color: #3282b8;
    --text-dark: #1a1a2e;
    --text-light: #666;
    --text-white: #fff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --fallback-bg: #e8eef3;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    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: 2rem;
}

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

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

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

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

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

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

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    background: var(--bg-light);
}

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

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

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

.hero-visual-block {
    width: 55%;
    position: relative;
    overflow: hidden;
    background-color: var(--fallback-bg);
}

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

.intro-offset {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    background: var(--bg-white);
}

.intro-narrow {
    width: 55%;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.intro-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.intro-visual-right {
    width: 45%;
    background-color: var(--fallback-bg);
}

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

.problem-amplify {
    display: flex;
    padding: 5rem 8%;
    gap: 5rem;
    background: var(--secondary-color);
    color: var(--text-white);
}

.problem-left {
    width: 50%;
}

.problem-left h3 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.problem-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.problem-stats {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--highlight-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    opacity: 0.9;
}

.insight-layer {
    padding: 6rem 12%;
    background: var(--bg-light);
}

.insight-content-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.insight-content-wide p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.insight-list {
    list-style: none;
    margin: 2rem 0;
}

.insight-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
}

.insight-list li:last-child {
    border-bottom: none;
}

.insight-list strong {
    color: var(--accent-color);
}

.services-staggered {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.services-title-offset {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    margin-left: 10%;
    color: var(--primary-color);
}

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

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-large {
    width: calc(60% - 1rem);
    display: flex;
}

.service-medium {
    width: calc(50% - 1rem);
}

.service-small {
    width: calc(40% - 1rem);
}

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

.service-large .service-image {
    width: 50%;
    height: auto;
}

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

.service-content {
    padding: 2rem;
}

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

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

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: var(--text-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.testimonial-inline {
    padding: 5rem 15%;
    background: var(--accent-color);
}

.testimonial-content {
    text-align: center;
}

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

.testimonial-content cite {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-style: normal;
}

.form-section {
    display: flex;
    min-height: 600px;
}

.form-container-offset {
    width: 55%;
    padding: 5rem 8%;
    background: var(--bg-light);
}

.form-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-container-offset > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.form-notice {
    padding: 1rem;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    display: none;
}

.form-notice.show {
    display: block;
}

.form-notice.success {
    background: #d4edda;
    border-color: #28a745;
}

.contact-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-submit:disabled {
    background: var(--text-light);
    cursor: not-allowed;
}

.form-visual {
    width: 45%;
    overflow: hidden;
    background-color: var(--fallback-bg);
}

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

.disclaimer-section {
    padding: 3rem 10%;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.disclaimer-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
}

.footer {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    line-height: 1.7;
    opacity: 0.8;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

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

    .hero-content-offset,
    .hero-visual-block {
        width: 100%;
    }

    .hero-visual-block {
        min-height: 400px;
    }

    .intro-offset,
    .problem-amplify,
    .form-section {
        flex-direction: column;
    }

    .intro-narrow,
    .intro-visual-right,
    .problem-left,
    .problem-stats,
    .form-container-offset,
    .form-visual {
        width: 100%;
    }

    .service-large,
    .service-medium,
    .service-small {
        width: 100%;
    }

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

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

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

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-center,
    .nav-right {
        width: 100%;
        justify-content: center;
    }

    .hero-content-offset h1 {
        font-size: 2.5rem;
    }

    .cookie-content {
        flex-direction: column;
    }
}