* {
    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: #fafafa;
}

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    max-width: 1100px;
    width: 90%;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
}

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

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

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

.nav-cta {
    display: flex;
}

.btn-nav {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: #333;
    transform: scale(1.05);
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero-offset-block {
    flex: 1;
    z-index: 2;
    padding-right: 60px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #4a4a4a;
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-visual-block {
    flex: 1;
    position: relative;
    margin-left: -80px;
}

.hero-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(3deg);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-offset {
    padding: 120px 8%;
    background: #fff;
}

.intro-content-wrap {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-left {
    flex: 1.2;
}

.intro-left h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.intro-left p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.intro-right {
    flex: 1;
    padding-top: 40px;
}

.intro-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.8;
    color: #1a1a1a;
    border-left: 4px solid #1a1a1a;
    padding-left: 30px;
}

.services-grid-asymmetric {
    padding: 140px 5% 100px;
    background: #f5f5f5;
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 70px;
    margin-left: 8%;
}

.section-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header-offset h2 {
    font-size: 3rem;
    line-height: 1.2;
}

.service-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    position: relative;
}

.card-overlap-1 {
    transform: translateY(-20px);
}

.card-overlap-2 {
    transform: translateY(30px);
}

.card-overlap-3 {
    transform: translateY(-10px);
}

.card-overlap-4 {
    transform: translateY(20px);
}

.card-overlap-5 {
    transform: translateY(-25px);
}

.card-overlap-6 {
    transform: translateY(15px);
}

.service-card-inner {
    background: #fff;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-card-inner h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-card-inner p {
    color: #4a4a4a;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.7;
}

.service-price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.service-link:hover {
    padding-left: 8px;
}

.philosophy-split {
    display: flex;
    min-height: 600px;
    background: #fff;
}

.philosophy-text-block {
    flex: 1;
    padding: 100px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.philosophy-text-block p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.process-irregular {
    padding: 120px 8%;
    background: #1a1a1a;
    color: #fff;
}

.process-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.step-left {
    margin-right: 15%;
}

.step-right {
    margin-left: 15%;
}

.step-number {
    display: block;
    font-size: 1rem;
    color: #888;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.process-step h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.process-step p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-overlay {
    padding: 120px 8%;
    background: #f5f5f5;
    position: relative;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content blockquote {
    border: none;
}

.testimonial-content p {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.testimonial-content cite {
    font-size: 1.1rem;
    color: #666;
    font-style: normal;
}

.why-us-offset {
    padding: 120px 8%;
    background: #fff;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-container h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
}

.why-us-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.why-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 10px;
}

.why-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.why-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    margin: 0 auto;
    display: block;
    text-align: center;
    max-width: 300px;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

.contact-form-asymmetric {
    padding: 120px 8%;
    background: #f5f5f5;
    display: flex;
    gap: 80px;
}

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

.form-intro-block h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.form-intro-block p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.form-block {
    flex: 1;
}

.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

.btn-submit {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #333;
    transform: translateY(-2px);
}

.final-cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-cta-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-cta-inner span {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    background: #fff;
    color: #1a1a1a;
    padding: 12px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-sticky:hover {
    transform: scale(1.05);
}

.footer-asymmetric {
    background: #111;
    color: #fff;
    padding: 80px 8% 40px;
    margin-bottom: 70px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

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

.footer-brand p {
    color: #888;
}

.footer-links {
    display: flex;
    gap: 80px;
}

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

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #4a4a4a;
}

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

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

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

.btn-accept {
    background: #1a1a1a;
    color: #fff;
}

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

.btn-reject {
    background: #e0e0e0;
    color: #1a1a1a;
}

.btn-reject:hover {
    background: #d0d0d0;
}

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

    .hero-offset-block {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-visual-block {
        margin-left: 0;
        width: 100%;
    }

    .intro-content-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .philosophy-split {
        flex-direction: column;
    }

    .contact-form-asymmetric {
        flex-direction: column;
        gap: 50px;
    }

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

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

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

    .hero-title {
        font-size: 2.2rem;
    }

    .section-header-offset h2 {
        font-size: 2rem;
    }

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

    .why-item {
        flex: 1 1 100%;
    }

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

    .sticky-cta-inner {
        flex-direction: column;
        gap: 15px;
    }
}