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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.ad-disclosure {
    background: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eaeaea;
    z-index: 100;
    padding: 20px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-mark {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content-offset {
    flex: 1;
    padding: 120px 80px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
}

.hero-title {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.hero-intro {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    align-self: flex-start;
    transition: background 0.2s;
}

.cta-primary:hover {
    background: #333333;
}

.hero-visual-block {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-visual-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-statement {
    padding: 140px 80px;
    background: #fafbfc;
}

.statement-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.statement-left {
    flex: 0 0 400px;
}

.statement-left h2 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

.statement-right {
    flex: 1;
    padding-top: 20px;
}

.statement-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 24px;
}

.services-asymmetric {
    padding: 120px 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.services-header-offset {
    margin-bottom: 80px;
    margin-left: 60px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 16px;
}

.services-header-offset h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

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

.service-card {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 500px;
}

.card-medium {
    flex: 1 1 calc(40% - 15px);
    min-width: 380px;
}

.card-small {
    flex: 1 1 calc(33% - 20px);
    min-width: 320px;
}

.card-wide {
    flex: 1 1 100%;
    flex-direction: row;
}

.card-tall {
    flex: 1 1 calc(40% - 15px);
    min-width: 380px;
}

.card-image-wrap {
    width: 100%;
    overflow: hidden;
}

.card-wide .card-image-wrap {
    flex: 0 0 50%;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: auto;
    margin-bottom: 20px;
}

.service-select {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s;
}

.service-select:hover {
    background: #333333;
}

.approach-section {
    padding: 100px 80px;
    background: #f7f9fa;
}

.approach-content-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-image-block {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
}

.approach-image-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.approach-text-block {
    flex: 1;
}

.approach-text-block h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.approach-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.approach-references {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #ddd;
}

.ref-note {
    font-size: 14px;
    color: #666;
}

.ref-note a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    margin: 0 4px;
}

.ref-note a:hover {
    text-decoration: underline;
}

.form-section-offset {
    padding: 120px 80px;
    background: #ffffff;
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 20%;
}

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

.form-header h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.form-header p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

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

.form-field label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-field input,
.form-field select {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-family: inherit;
    background: #ffffff;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-submit {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 12px;
    transition: background 0.2s;
}

.form-submit:hover {
    background: #333333;
}

.disclaimer-section {
    padding: 60px 80px;
    background: #f9f9f9;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 80px 40px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
}

.footer-links,
.footer-legal,
.footer-references {
    flex: 1;
}

.footer-links h4,
.footer-legal h4,
.footer-references h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links a,
.footer-legal a {
    display: block;
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #ffffff;
}

.ref-item {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
    line-height: 1.6;
}

.ref-item a {
    color: #ccc;
    text-decoration: none;
}

.ref-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #1a1a1a;
    padding: 24px 40px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.cookie-content a {
    color: #1a1a1a;
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-accept {
    background: #1a1a1a;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #333333;
}

.cookie-reject {
    background: #f0f0f0;
    color: #1a1a1a;
}

.cookie-reject:hover {
    background: #e0e0e0;
}

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

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

.thanks-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-service {
    display: inline-block;
    background: #f0f0f0;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    margin: 20px 0 40px;
}

.contact-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 80px;
}

.contact-page-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.contact-info-grid {
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.about-page-hero {
    padding: 100px 80px;
    background: #fafbfc;
}

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

.about-hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    max-width: 800px;
}

.about-hero-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 700px;
}

.about-content-section {
    padding: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.about-content-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.services-page-header {
    padding: 100px 80px 60px;
    background: #fafbfc;
}

.services-page-header h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.services-page-header p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 800px;
}

.services-page-grid {
    padding: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

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

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 12px;
}

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

    .hero-content-offset {
        max-width: 100%;
    }

    .statement-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .statement-left {
        flex: 1;
    }

    .approach-content-irregular {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .contact-info-grid {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content-offset {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 42px;
    }

    .intro-statement {
        padding: 60px 20px;
    }

    .services-asymmetric {
        padding: 60px 20px;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small,
    .card-wide,
    .card-tall {
        min-width: 100%;
        flex: 1 1 100%;
    }

    .card-wide {
        flex-direction: column;
    }

    .form-container-asymmetric {
        margin-left: 0;
    }

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