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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e74c3c;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #27ae60;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 5%;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

.cookie-content a {
    color: white;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--accent-color);
    color: white;
}

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

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

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

.hero-asymmetric {
    margin-top: 80px;
    padding: 4rem 5% 6rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-text-block {
    max-width: 680px;
    margin-left: 8%;
}

.hero-title-split {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.title-main {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
}

.title-accent {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-light);
    margin-left: 2rem;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-primary-offset {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    margin-left: 2rem;
    transition: all 0.3s ease;
}

.cta-primary-offset:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.hero-image-overlap {
    width: 90%;
    max-width: 900px;
    margin-left: auto;
    margin-right: 5%;
    margin-top: -2rem;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.challenge-asymmetric {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.content-wrapper-narrow-right {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.challenge-stat-left {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.challenge-text {
    flex: 1;
    max-width: 700px;
}

.challenge-text h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.insight-overlap {
    padding: 6rem 5%;
    background: var(--bg-light);
    position: relative;
}

.insight-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.insight-visual {
    flex: 0 0 45%;
    position: relative;
    z-index: 1;
}

.insight-visual img {
    border-radius: 8px;
    box-shadow: 20px -20px 60px rgba(0, 0, 0, 0.1);
}

.insight-content-shift {
    flex: 1;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    margin-left: -5%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.insight-list-offset li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.insight-list-offset li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.cta-inline-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 1rem;
}

.cta-inline-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.cta-inline-arrow:hover::after {
    transform: translateX(5px);
}

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

.services-header-split {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}

.section-title-large {
    font-size: 3rem;
    color: var(--primary-color);
    max-width: 600px;
}

.section-intro-right {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 400px;
    text-align: right;
}

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

.service-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    transition: all 0.3s ease;
}

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

.service-card-tall {
    flex: 1 1 calc(50% - 1rem);
}

.service-card-wide {
    flex: 1 1 calc(50% - 1rem);
}

.service-card-accent {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.service-card-accent h3,
.service-card-accent p {
    color: white;
}

.service-icon {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.service-card-accent .service-icon {
    color: white;
}

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

.service-card p {
    color: var(--text-light);
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
}

.service-card-accent .service-price {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-card-accent .price-value {
    color: white;
}

.price-unit {
    font-size: 0.875rem;
    color: var(--text-light);
}

.service-select {
    padding: 0.875rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.service-card-accent .service-select {
    background: white;
    color: var(--primary-color);
}

.service-card-accent .service-select:hover {
    background: var(--bg-light);
}

.trust-diagonal {
    padding: 5rem 5%;
    background: var(--bg-light);
    position: relative;
}

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

.trust-content-slant h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    max-width: 700px;
}

.trust-cases {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.case-item {
    display: flex;
    gap: 2rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.case-item:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: 10%;
}

.case-item:nth-child(odd) {
    margin-right: 10%;
}

.case-item img {
    width: 45%;
    object-fit: cover;
}

.case-details {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-details h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.case-details p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.case-year {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.testimonial-floating {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.testimonial-card-offset {
    max-width: 900px;
    margin: 0 auto 0 15%;
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 8px;
    position: relative;
}

.testimonial-card-offset::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 2rem;
    font-size: 8rem;
    color: var(--accent-color);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card-offset blockquote {
    position: relative;
    z-index: 1;
}

.testimonial-card-offset p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-card-offset footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-card-offset strong {
    font-size: 1.125rem;
}

.testimonial-card-offset span {
    font-size: 0.875rem;
    opacity: 0.8;
}

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

.process-header-right {
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: right;
}

.process-header-right h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

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

.step-block {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

.step-number {
    flex: 0 0 80px;
    height: 80px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.step-block h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.step-block p {
    color: var(--text-light);
}

.cta-sticky-trigger {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.cta-form-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro-block {
    flex: 0 0 400px;
}

.form-intro-block h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-benefits {
    margin-top: 2rem;
}

.form-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.contact-form-offset {
    flex: 1;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

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

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

.form-privacy {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.btn-submit-primary {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit-primary:hover {
    background: #c0392b;
}

.final-proof {
    padding: 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.proof-visual-split {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
}

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

.proof-content-overlay {
    position: relative;
    z-index: 2;
    margin-left: 50%;
    background: var(--primary-color);
    color: white;
    padding: 4rem;
    max-width: 600px;
    border-radius: 8px 0 0 8px;
}

.proof-content-overlay h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.proof-content-overlay p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-outline-white {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid white;
    color: white;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

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

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

.footer-col {
    flex: 1;
}

.footer-brand-col {
    flex: 1.5;
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer-contact li {
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.6;
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    padding: 1rem 5%;
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.cta-sticky.visible {
    transform: translateY(0);
}

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

.sticky-text {
    font-weight: 600;
    font-size: 1.125rem;
}

.sticky-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--accent-color);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--bg-light);
}

.page-hero-offset {
    margin-top: 80px;
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

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

.page-hero-content h1 {
    color: white;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-story-asymmetric {
    padding: 5rem 5%;
}

.story-grid-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text-block {
    flex: 1;
    max-width: 600px;
}

.story-image-overlap {
    flex: 0 0 45%;
    position: relative;
    margin-top: -3rem;
    margin-bottom: -3rem;
}

.story-image-overlap img {
    border-radius: 8px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.stats-diagonal {
    padding: 4rem 5%;
    background: var(--primary-color);
    color: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-desc {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

.team-offset {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.team-intro-left {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.team-intro-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-grid-stagger {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-member:nth-child(2) {
    margin-top: 2rem;
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-role {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-light);
}

.values-cards {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
}

.certifications-strip {
    padding: 3rem 5%;
    background: var(--primary-color);
    color: white;
}

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

.cert-content h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.cert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.cert-list li {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    opacity: 0.9;
}

.cta-about-bottom {
    padding: 5rem 5%;
    background: var(--bg-light);
}

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

.cta-content-asymmetric h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-content-asymmetric p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-detailed {
    margin-top: 80px;
    padding: 4rem 5%;
}

.service-detail-block {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-layout-right {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 45%;
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-includes {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.service-includes h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-includes ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-includes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-price-detail {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.price-from {
    font-size: 0.875rem;
    color: var(--text-light);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

.service-cta-form {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.contact-info-asymmetric {
    margin-top: 80px;
    padding: 4rem 5%;
}

.contact-layout-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

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

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-note {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.contact-map-placeholder {
    flex: 0 0 500px;
}

.map-embed {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.map-embed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
}

.contact-process {
    padding: 5rem 5%;
    background: var(--bg-light);
}

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

.process-info-center h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.process-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.timeline-step {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-step h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.timeline-step p {
    color: var(--text-light);
}

.contact-faq-asymmetric {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.faq-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-wrapper h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-light);
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 5% 6rem;
    background: var(--bg-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-date {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    list-style: none;
}

.legal-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.thanks-hero {
    margin-top: 80px;
    padding: 6rem 5%;
    background: var(--bg-white);
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    stroke: white;
}

.thanks-content-center h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-info-block {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-next-steps {
    margin: 3rem 0;
}

.thanks-next-steps h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.steps-compact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.step-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.step-item strong {
    display: block;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.step-item p {
    color: var(--text-dark);
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.thanks-footer-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-footer-note p {
    font-size: 0.875rem;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .title-accent {
        font-size: 1.75rem;
    }

    .content-wrapper-narrow-right {
        flex-direction: column;
    }

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

    .insight-content-shift {
        margin-left: 0;
    }

    .services-header-split {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-intro-right {
        text-align: left;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .case-item {
        flex-direction: column;
    }

    .case-item:nth-child(even) {
        flex-direction: column;
    }

    .case-item img {
        width: 100%;
    }

    .cta-form-asymmetric {
        flex-direction: column;
    }

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

    .final-proof {
        flex-direction: column;
        min-height: auto;
    }

    .proof-visual-split {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .proof-content-overlay {
        margin-left: 0;
        border-radius: 8px;
        margin-top: -3rem;
    }

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

    .footer-col {
        flex: 1 1 calc(50% - 1.5rem);
    }

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

    .story-image-overlap {
        margin: 0;
    }

    .contact-layout-split {
        flex-direction: column;
    }

    .contact-map-placeholder {
        flex: 1;
    }

    .service-detail-block {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .title-main {
        font-size: 2rem;
    }

    .title-accent {
        font-size: 1.5rem;
        margin-left: 0;
    }

    .section-title-large {
        font-size: 2rem;
    }

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

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

    .sticky-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .value-card,
    .team-member,
    .faq-item,
    .timeline-step {
        flex: 1 1 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }
}
