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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

.nav-floating {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0066cc;
}

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

.hero-content-offset {
    max-width: 620px;
    position: relative;
    z-index: 2;
    padding-right: 60px;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 28px;
    color: #0a0a0a;
}

.hero-lead {
    font-size: 21px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
}

.cta-hero:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.hero-visual-layer {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    width: 45%;
    max-width: 600px;
}

.hero-visual-layer img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-staggered {
    display: flex;
    gap: 80px;
    padding: 120px 5%;
    align-items: flex-start;
}

.intro-block-left {
    flex: 1.2;
    padding-top: 40px;
}

.intro-block-left h2 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0a0a0a;
}

.intro-block-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
}

.intro-block-right {
    flex: 1;
    transform: translateY(-60px);
}

.intro-block-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.caption-offset {
    margin-top: 20px;
    font-size: 15px;
    color: #666;
    font-style: italic;
    padding-left: 15px;
    border-left: 3px solid #0066cc;
}

.insight-overlap {
    display: flex;
    gap: 100px;
    padding: 100px 8% 100px 5%;
    background: #fafafa;
    position: relative;
}

.insight-content {
    flex: 1.3;
    padding-right: 40px;
}

.insight-content h3 {
    font-size: 38px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0a0a0a;
}

.insight-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 30px;
}

.insight-list-offset {
    list-style: none;
    margin-left: 30px;
}

.insight-list-offset li {
    font-size: 17px;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 18px;
    padding-left: 25px;
    position: relative;
}

.insight-list-offset li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.insight-visual {
    flex: 1;
    position: relative;
    top: -80px;
}

.insight-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.services-preview-asymmetric {
    padding: 120px 5%;
}

.services-preview-asymmetric h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #0a0a0a;
    max-width: 700px;
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

.service-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0a0a0a;
}

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

.service-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.service-link:hover {
    color: #0052a3;
}

.testimonial-diagonal {
    padding: 100px 10%;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    transform: skewY(-2deg);
    margin: 80px 0;
}

.testimonial-diagonal blockquote {
    transform: skewY(2deg);
    max-width: 900px;
    margin: 0 auto;
}

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

.testimonial-diagonal cite {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
}

.methodology-offset {
    display: flex;
    gap: 90px;
    padding: 120px 5%;
    align-items: center;
}

.method-visual-left {
    flex: 1;
    transform: translateY(40px);
}

.method-visual-left img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.method-content-right {
    flex: 1.2;
}

.method-content-right h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #0a0a0a;
}

.method-content-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 25px;
}

.cta-floating {
    padding: 100px 5%;
    background: #f5f5f5;
}

.cta-content-irregular {
    max-width: 850px;
    margin-left: 10%;
    padding: 60px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.cta-content-irregular h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.cta-content-irregular p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.principles-stacked {
    padding: 120px 5%;
}

.principles-stacked h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 70px;
    color: #0a0a0a;
    text-align: center;
}

.principle-blocks-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.principle-block {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 45px;
    background: #fafafa;
    border-radius: 8px;
}

.principle-raised {
    transform: translateY(-20px);
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.principle-lowered {
    transform: translateY(20px);
}

.principle-block h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.principle-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.form-section-diagonal {
    padding: 120px 5%;
    background: linear-gradient(125deg, #f8f8f8 0%, #ffffff 100%);
}

.form-container-offset {
    max-width: 680px;
    margin-left: auto;
    margin-right: 8%;
}

.form-container-offset h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.form-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2a2a;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
}

.submit-button {
    padding: 16px 40px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

.submit-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.examples-irregular {
    padding: 120px 5%;
    background: #fafafa;
}

.examples-irregular h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #0a0a0a;
}

.examples-layout-offset {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.example-case {
    flex: 1 1 calc(50% - 30px);
    min-width: 320px;
}

.example-elevated {
    transform: translateY(-40px);
}

.example-case img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.example-case h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.example-case p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.final-cta-overlap {
    padding: 100px 5%;
    background: white;
}

.final-cta-content {
    max-width: 750px;
    margin-right: auto;
    margin-left: 8%;
}

.final-cta-content h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0a0a0a;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #0066cc;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #0066cc;
    color: white;
}

.footer-asymmetric {
    background: #0a0a0a;
    color: white;
    padding: 80px 5% 40px;
}

.footer-content-irregular {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 1 1 280px;
}

.footer-brand h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-column h5 {
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 600;
}

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

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

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

.footer-column a:hover {
    color: white;
}

.footer-contact {
    flex: 1 1 280px;
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 900px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 5%;
    z-index: 10000;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    min-width: 300px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #0066cc;
    color: white;
}

.cookie-accept:hover {
    background: #0052a3;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    border-color: white;
}

.about-hero-offset {
    padding: 150px 5% 100px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-hero-content {
    flex: 1.3;
}

.about-hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
    color: #0a0a0a;
}

.about-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
}

.about-hero-offset img {
    flex: 1;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-story-asymmetric {
    display: flex;
    gap: 90px;
    padding: 100px 5%;
    background: #fafafa;
}

.story-block-right {
    flex: 1.2;
}

.story-block-right h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #0a0a0a;
}

.story-block-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 22px;
}

.story-visual-left {
    flex: 1;
    transform: translateY(-50px);
}

.story-visual-left img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.philosophy-diagonal {
    padding: 120px 5%;
}

.philosophy-diagonal h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #0a0a0a;
    text-align: center;
}

.philosophy-blocks-irregular {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    padding: 40px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.philosophy-elevated {
    transform: translateY(-30px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.philosophy-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.team-approach-offset {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.team-content {
    flex: 1.3;
}

.team-content h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0a0a0a;
}

.team-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 22px;
}

.team-approach-offset img {
    flex: 1;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.values-staggered {
    padding: 120px 5%;
    background: #fafafa;
}

.values-staggered h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #0a0a0a;
}

.values-layout-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
}

.value-card {
    padding: 45px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.value-left {
    margin-right: auto;
    max-width: 600px;
}

.value-right {
    margin-left: auto;
    max-width: 600px;
}

.value-center {
    margin: 0 auto;
    max-width: 700px;
}

.value-card h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0a0a0a;
}

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

.approach-overlap {
    padding: 100px 5%;
    display: flex;
    gap: 90px;
    align-items: center;
}

.approach-visual {
    flex: 1;
}

.approach-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.approach-content {
    flex: 1.2;
}

.approach-content h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #0a0a0a;
}

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

.cta-about-diagonal {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    text-align: center;
}

.cta-about-content h3 {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 35px;
}

.cta-about-content .cta-button {
    background: white;
    color: #0066cc;
}

.cta-about-content .cta-button:hover {
    background: #f5f5f5;
}

.services-hero-diagonal {
    padding: 150px 5% 80px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.services-hero-diagonal h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
    color: #0a0a0a;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 750px;
    margin: 0 auto;
}

.services-list-asymmetric {
    padding: 80px 5% 120px;
}

.service-detail {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.service-offset-left {
    padding-left: 0;
}

.service-offset-right {
    flex-direction: row-reverse;
    padding-right: 0;
}

.service-offset-center {
    justify-content: center;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.service-content {
    flex: 1.3;
}

.service-full-width {
    max-width: 800px;
    text-align: center;
}

.service-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #0a0a0a;
}

.service-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 25px;
}

.service-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.service-benefits li {
    font-size: 16px;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-price {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 6px;
    display: inline-block;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-right: 10px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
}

.service-cta {
    display: inline-block;
    padding: 14px 35px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
}

.service-cta:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.process-irregular {
    padding: 100px 5%;
    background: #fafafa;
}

.process-irregular h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 70px;
    color: #0a0a0a;
    text-align: center;
}

.process-steps-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.step-left {
    margin-right: auto;
    max-width: 600px;
}

.step-right {
    margin-left: auto;
    max-width: 600px;
}

.step-center {
    margin: 0 auto;
    max-width: 700px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #0066cc;
    opacity: 0.3;
    margin-bottom: 15px;
}

.process-step h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a0a0a;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.form-section-services {
    padding: 120px 5%;
    background: white;
}

.form-container-irregular {
    max-width: 680px;
    margin: 0 auto;
}

.form-container-irregular h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
    text-align: center;
}

.form-container-irregular .form-intro {
    text-align: center;
}

.contact-hero-asymmetric {
    padding: 150px 5% 80px;
    text-align: center;
}

.contact-hero-asymmetric h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
    color: #0a0a0a;
}

.contact-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 650px;
    margin: 0 auto;
}

.contact-info-diagonal {
    padding: 100px 5%;
    display: flex;
    gap: 90px;
    align-items: flex-start;
}

.contact-details-offset {
    flex: 1.2;
}

.contact-block {
    margin-bottom: 50px;
}

.contact-block h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.contact-item {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 12px;
}

.contact-hours p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.contact-visual {
    flex: 1;
    transform: translateY(-40px);
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.contact-approach-staggered {
    padding: 100px 5%;
    background: #fafafa;
}

.contact-approach-staggered h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #0a0a0a;
    text-align: center;
}

.approach-blocks-irregular {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.approach-item {
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.approach-item h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a0a0a;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.approach-raised {
    transform: translateX(60px);
}

.contact-cta-overlap {
    padding: 100px 5%;
}

.cta-content-diagonal {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-radius: 10px;
}

.cta-content-diagonal h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0a0a0a;
}

.cta-content-diagonal p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.email-display {
    color: #0066cc;
    font-weight: 600;
}

.thanks-hero-asymmetric {
    padding: 150px 5% 100px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.thanks-content-offset {
    flex: 1;
}

.thanks-content-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
    color: #0a0a0a;
}

.thanks-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
}

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.thanks-details-diagonal {
    padding: 100px 5%;
    background: #fafafa;
}

.thanks-info h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #0a0a0a;
}

.thanks-steps-irregular {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.thanks-step {
    display: flex;
    gap: 30px;
    padding: 35px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.thanks-step-offset {
    margin-left: 80px;
}

.step-icon {
    font-size: 40px;
    font-weight: 800;
    color: #0066cc;
    opacity: 0.3;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0a0a0a;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-cta-overlap {
    padding: 100px 5%;
}

.thanks-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-cta-content h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #0a0a0a;
}

.thanks-cta-content .cta-button,
.thanks-cta-content .cta-secondary {
    margin: 0 10px 15px;
}

.legal-page {
    padding: 150px 5% 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 30px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.legal-page h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #0a0a0a;
}

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

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

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

.legal-page a {
    color: #0066cc;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-date {
    margin-top: 50px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

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

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

    .hero-content-offset h1 {
        font-size: 38px;
    }

    .hero-visual-layer {
        position: relative;
        width: 100%;
        transform: none;
        margin-top: 40px;
    }

    .intro-staggered {
        flex-direction: column;
        gap: 40px;
        padding: 80px 5%;
    }

    .intro-block-right {
        transform: none;
    }

    .insight-overlap {
        flex-direction: column;
        gap: 40px;
        padding: 80px 5%;
    }

    .insight-visual {
        top: 0;
    }

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

    .methodology-offset {
        flex-direction: column;
        gap: 40px;
        padding: 80px 5%;
    }

    .method-visual-left {
        transform: none;
    }

    .cta-content-irregular {
        margin-left: 0;
        padding: 40px;
    }

    .form-container-offset {
        margin-right: 0;
    }

    .examples-layout-offset {
        flex-direction: column;
    }

    .example-elevated {
        transform: none;
    }

    .final-cta-content {
        margin-left: 0;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .about-hero-offset {
        flex-direction: column;
        gap: 40px;
        padding: 130px 5% 80px;
    }

    .about-hero-content h1 {
        font-size: 38px;
    }

    .about-story-asymmetric {
        flex-direction: column-reverse;
        gap: 40px;
        padding: 80px 5%;
    }

    .story-visual-left {
        transform: none;
    }

    .philosophy-blocks-irregular {
        flex-direction: column;
    }

    .philosophy-elevated {
        transform: none;
    }

    .team-approach-offset {
        flex-direction: column;
        gap: 40px;
        padding: 80px 5%;
    }

    .approach-overlap {
        flex-direction: column;
        gap: 40px;
        padding: 80px 5%;
    }

    .service-detail {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

    .service-offset-right {
        flex-direction: column;
    }

    .contact-info-diagonal {
        flex-direction: column;
        gap: 40px;
        padding: 80px 5%;
    }

    .contact-visual {
        transform: none;
    }

    .approach-raised {
        transform: none;
    }

    .thanks-hero-asymmetric {
        flex-direction: column;
        gap: 40px;
        padding: 130px 5% 80px;
    }

    .thanks-content-offset h1 {
        font-size: 38px;
    }

    .thanks-step-offset {
        margin-left: 0;
    }

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

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

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