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

:root {
    --primary-color: #1a4d8f;
    --secondary-color: #e85d04;
    --dark-bg: #0d1821;
    --light-bg: #f8f9fa;
    --gray-text: #495057;
    --white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #198754;
}

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

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

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

a:hover {
    color: var(--secondary-color);
}

.nav-asymmetric {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0 20px;
}

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

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-items {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-items a {
    font-weight: 500;
    color: var(--gray-text);
    transition: color 0.3s ease;
}

.nav-items a:hover,
.nav-items a.active {
    color: var(--primary-color);
}

.hero-offset {
    padding: 80px 20px 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-asymmetric-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.hero-text-block {
    flex: 1 1 500px;
    padding-left: 40px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-title-large {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark-bg);
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-intro {
    font-size: 20px;
    line-height: 1.6;
    color: var(--gray-text);
    max-width: 540px;
}

.hero-visual-overlap {
    flex: 1 1 450px;
    position: relative;
    margin-top: -40px;
}

.hero-visual-overlap img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
}

.trust-layer {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: flex-start;
}

.trust-offset-left {
    flex: 1 1 500px;
    padding-right: 60px;
    margin-top: 40px;
}

.trust-offset-left h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-bg);
    margin-bottom: 24px;
}

.trust-offset-left p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-text);
}

.trust-stat-cards {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card-overlap {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 36px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(26, 77, 143, 0.2);
}

.stat-card-shifted {
    margin-left: 60px;
    background: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(232, 93, 4, 0.2);
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-card-overlap p {
    font-size: 17px;
    line-height: 1.5;
    opacity: 0.95;
}

.insight-irregular {
    padding: 120px 20px 100px;
    background: var(--light-bg);
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap-reverse;
    gap: 70px;
    align-items: center;
}

.insight-text-narrow {
    flex: 1 1 450px;
    padding-right: 40px;
}

.insight-text-narrow h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 24px;
    line-height: 1.25;
}

.insight-text-narrow p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.insight-image-float {
    flex: 1 1 450px;
    position: relative;
    margin-left: -30px;
}

.insight-image-float img {
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: rotate(1.5deg);
}

.services-preview-stacked {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-centered {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: var(--dark-bg);
    margin-bottom: 70px;
    line-height: 1.2;
}

.services-asymmetric-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-block {
    flex: 1 1 340px;
    max-width: 400px;
    padding: 44px 36px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-block-1 {
    transform: translateY(-20px);
}

.service-block-2 {
    transform: translateY(10px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(26, 77, 143, 0.12);
}

.service-block-3 {
    transform: translateY(-10px);
}

.service-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

.service-block h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 16px;
}

.service-block p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.price-tag {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-link {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cta-link:hover {
    transform: translateX(4px);
    color: var(--secondary-color);
}

.testimonial-diagonal {
    padding: 80px 20px;
    background: var(--dark-bg);
    color: var(--white);
    position: relative;
}

.testimonial-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--secondary-color);
    transform: skewY(-1deg);
}

.testimonial-content-offset {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 60px;
}

.testimonial-content-offset blockquote {
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
    font-weight: 300;
}

.testimonial-content-offset cite {
    display: block;
    font-size: 17px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
}

.process-visual-story {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-offset {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 60px;
    margin-left: 40px;
}

.process-steps-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.step-item {
    flex: 1 1 280px;
    max-width: 320px;
    padding: 36px 28px;
    background: var(--light-bg);
    border-radius: 8px;
    position: relative;
}

.step-offset-1 {
    margin-top: 0;
}

.step-offset-2 {
    margin-top: 40px;
}

.step-offset-3 {
    margin-top: 20px;
}

.step-offset-4 {
    margin-top: 60px;
}

.step-number {
    display: inline-block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 16px;
    line-height: 1;
}

.step-item h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-text);
}

.case-study-overlap {
    padding: 100px 20px;
    background: var(--light-bg);
}

.case-study-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.case-study-image {
    flex: 1 1 500px;
    position: relative;
    margin-right: -40px;
}

.case-study-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.case-study-text {
    flex: 1 1 450px;
    padding-left: 40px;
}

.case-study-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
    line-height: 1.3;
}

.case-study-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 16px;
}

.case-study-text ul {
    list-style: none;
    margin: 24px 0;
}

.case-study-text ul li {
    font-size: 17px;
    color: var(--gray-text);
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

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

.btn-primary {
    display: inline-block;
    padding: 15px 36px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 16px;
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 93, 4, 0.3);
}

.pricing-full-reveal {
    padding: 100px 20px;
    max-width: 1500px;
    margin: 0 auto;
}

.pricing-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
}

.pricing-card {
    flex: 1 1 320px;
    max-width: 400px;
    padding: 44px 36px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card-offset-1 {
    margin-top: -20px;
}

.pricing-card-featured {
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(26, 77, 143, 0.15);
    transform: scale(1.05);
}

.pricing-card-offset-2 {
    margin-top: 20px;
}

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

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-card h4 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.pricing-desc {
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 24px;
    line-height: 1.5;
}

.price-display {
    margin: 28px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-amount {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: var(--gray-text);
}

.pricing-features {
    list-style: none;
    margin: 28px 0;
}

.pricing-features li {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

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

.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--light-bg);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

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

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

.btn-pricing-featured:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.benefits-scattered {
    padding: 100px 20px;
    background: var(--light-bg);
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: center;
    margin-top: 60px;
}

.benefit-box {
    flex: 1 1 280px;
    max-width: 340px;
    padding: 36px 28px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.benefit-pos-1 {
    margin-top: -30px;
}

.benefit-pos-2 {
    margin-top: 20px;
}

.benefit-pos-3 {
    margin-top: -10px;
}

.benefit-pos-4 {
    margin-top: 30px;
}

.benefit-box h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 14px;
}

.benefit-box p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-text);
}

.urgency-trigger {
    padding: 80px 20px;
    background: var(--secondary-color);
    color: var(--white);
}

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

.urgency-content-centered h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.urgency-content-centered p {
    font-size: 19px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-urgency {
    display: inline-block;
    padding: 16px 40px;
    background: var(--white);
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    background: var(--dark-bg);
    color: var(--white);
    transform: scale(1.05);
}

.contact-form-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.form-container-offset h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 16px;
}

.form-container-offset > p {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.contact-form-asymmetric {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

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

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 93, 4, 0.3);
}

.footer-asymmetric {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 20px 30px;
}

.footer-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col-1 {
    margin-top: -20px;
}

.footer-col-2 {
    margin-top: 10px;
}

.footer-col-3 {
    margin-top: -10px;
}

.footer-col h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col h5 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 32px;
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(232, 93, 4, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

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

.sticky-cta:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 77, 143, 0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 24px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

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

.cookie-content p {
    flex: 1 1 400px;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #157347;
}

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

.btn-cookie-reject:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.page-hero-offset {
    padding: 80px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-offset h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 21px;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
}

.about-story-irregular {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    align-items: center;
}

.about-text-block {
    flex: 1 1 500px;
    padding-right: 40px;
}

.about-text-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 24px;
}

.about-text-block p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.about-image-offset {
    flex: 1 1 450px;
    position: relative;
    margin-left: -30px;
}

.about-image-offset img {
    border-radius: 10px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
    transform: rotate(-1deg);
}

.values-asymmetric {
    padding: 100px 20px;
    background: var(--light-bg);
    max-width: 1400px;
    margin: 0 auto;
}

.values-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
}

.value-card {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 40px 32px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.value-offset-1 {
    margin-top: -20px;
}

.value-offset-2 {
    margin-top: 20px;
}

.value-offset-3 {
    margin-top: -10px;
}

.value-offset-4 {
    margin-top: 30px;
}

.value-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-text);
}

.team-overview-scattered {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-description {
    margin-top: 40px;
}

.team-description p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.approach-visual-story {
    padding: 100px 20px;
    background: var(--light-bg);
}

.approach-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    align-items: center;
}

.approach-image-float {
    flex: 1 1 450px;
    position: relative;
}

.approach-image-float img {
    border-radius: 10px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
    transform: rotate(1deg);
}

.approach-text-narrow {
    flex: 1 1 500px;
    padding-left: 40px;
}

.approach-text-narrow h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 24px;
}

.approach-text-narrow p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.stats-showcase-overlap {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.stats-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
}

.stat-box {
    flex: 1 1 250px;
    max-width: 300px;
    padding: 44px 32px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(26, 77, 143, 0.2);
}

.stat-box-1 {
    margin-top: -30px;
}

.stat-box-2 {
    margin-top: 20px;
    background: var(--secondary-color);
}

.stat-box-3 {
    margin-top: -10px;
}

.stat-box-4 {
    margin-top: 30px;
    background: var(--dark-bg);
}

.stat-large {
    display: block;
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-box p {
    font-size: 17px;
    line-height: 1.5;
    opacity: 0.95;
}

.cta-about-page,
.cta-services-page {
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
}

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

.cta-content-centered h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content-centered p {
    font-size: 19px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.services-detailed-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-block {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    align-items: center;
    padding: 80px 20px;
}

.service-offset-1 {
    background: var(--light-bg);
}

.service-offset-2 {
    background: var(--white);
}

.service-offset-3 {
    background: var(--light-bg);
}

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

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 32px;
}

.service-detail-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-top: 28px;
    margin-bottom: 16px;
}

.service-features-list {
    list-style: none;
    margin: 24px 0;
}

.service-features-list li {
    font-size: 17px;
    color: var(--gray-text);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.service-features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
}

.service-pricing-display {
    margin: 32px 0;
    padding: 24px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.service-price {
    display: block;
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.service-price-note {
    font-size: 16px;
    color: var(--gray-text);
}

.btn-service-cta {
    display: inline-block;
    padding: 15px 36px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.btn-service-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 93, 4, 0.3);
}

.service-detail-image {
    flex: 1 1 450px;
}

.service-detail-image img {
    border-radius: 10px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.additional-services-scattered {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.additional-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 60px;
}

.additional-service-card {
    flex: 1 1 280px;
    max-width: 340px;
    padding: 32px 28px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card-offset-1 {
    margin-top: -20px;
}

.card-offset-2 {
    margin-top: 10px;
}

.card-offset-3 {
    margin-top: -15px;
}

.card-offset-4 {
    margin-top: 20px;
}

.card-offset-5 {
    margin-top: -10px;
}

.card-offset-6 {
    margin-top: 15px;
}

.additional-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.additional-service-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.additional-service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.additional-price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.packages-comparison-overlap {
    padding: 100px 20px;
    background: var(--light-bg);
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 60px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead tr {
    background: var(--dark-bg);
    color: var(--white);
}

.comparison-table th {
    padding: 24px 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
}

.featured-column {
    background: var(--primary-color);
}

.table-price {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-top: 6px;
    opacity: 0.9;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    color: var(--gray-text);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--light-bg);
}

.faq-services-irregular,
.faq-contact-page {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-list-asymmetric {
    margin-top: 60px;
}

.faq-item {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-offset-1 {
    margin-left: 0;
}

.faq-offset-2 {
    margin-left: 40px;
}

.faq-offset-3 {
    margin-left: 20px;
}

.faq-offset-4 {
    margin-left: 60px;
}

.faq-offset-5 {
    margin-left: 30px;
}

.faq-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 14px;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-text);
}

.contact-info-asymmetric {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-layout-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    align-items: flex-start;
}

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

.contact-details-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 36px;
    padding: 24px;
    background: var(--light-bg);
    border-radius: 8px;
}

.contact-offset-1 {
    margin-left: 0;
}

.contact-offset-2 {
    margin-left: 40px;
}

.contact-offset-3 {
    margin-left: 20px;
}

.contact-item h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--gray-text);
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    margin-top: 32px;
    padding: 20px;
    background: #fff3cd;
    border-left: 4px solid #ffca2c;
    border-radius: 6px;
}

.contact-note p {
    font-size: 16px;
    color: #664d03;
    line-height: 1.6;
    margin: 0;
}

.contact-map-placeholder {
    flex: 1 1 450px;
    position: relative;
}

.contact-map-placeholder img {
    border-radius: 10px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(13, 24, 33, 0.9);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 6px;
}

.map-overlay p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.contact-cta-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

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

.contact-cta-content h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 16px;
}

.contact-cta-content p {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 32px;
}

.why-contact-us {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-process-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
}

.contact-process-step {
    flex: 1 1 260px;
    max-width: 300px;
    padding: 32px 28px;
    background: var(--light-bg);
    border-radius: 8px;
}

.contact-process-step .process-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.contact-process-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.contact-process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-text);
}

.legal-page-hero {
    padding: 80px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.legal-page-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 16px;
}

.legal-updated {
    font-size: 15px;
    color: var(--gray-text);
}

.legal-content {
    padding: 60px 20px 100px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-container p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.legal-container ul {
    margin: 20px 0 20px 24px;
}

.legal-container ul li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 10px;
}

.legal-container strong {
    color: var(--dark-bg);
    font-weight: 600;
}

.thanks-page-hero {
    padding: 100px 20px;
    background: var(--light-bg);
}

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

.thanks-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: var(--success-color);
    color: var(--white);
    font-size: 48px;
    border-radius: 50%;
    margin-bottom: 32px;
}

.thanks-content-centered h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: var(--gray-text);
    margin-bottom: 32px;
}

.selected-service-info {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    border-left: 4px solid var(--primary-color);
}

.selected-service-info p {
    font-size: 17px;
    color: var(--gray-text);
    margin: 0;
}

.thanks-next-steps {
    text-align: left;
    background: var(--white);
    padding: 32px;
    border-radius: 10px;
    margin: 40px 0;
}

.thanks-next-steps h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
    text-align: center;
}

.next-steps-list {
    list-style: none;
    margin: 0;
}

.next-steps-list li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 16px;
    padding-left: 36px;
    position: relative;
}

.next-steps-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 22px;
}

.thanks-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 36px;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.thanks-additional-resources {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.thanks-additional-resources h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-bg);
    text-align: center;
    margin-bottom: 50px;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.resource-card {
    flex: 1 1 300px;
    max-width: 360px;
    padding: 32px;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.resource-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 14px;
}

.resource-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.resource-card a {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 36px;
    }

    .hero-intro {
        font-size: 18px;
    }

    .hero-visual-overlap {
        margin-top: 0;
    }

    .section-title-centered,
    .section-title-offset {
        font-size: 32px;
    }

    .nav-items {
        gap: 20px;
        font-size: 14px;
    }

    .trust-offset-left h2 {
        font-size: 30px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 24px;
        font-size: 14px;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .faq-offset-1,
    .faq-offset-2,
    .faq-offset-3,
    .faq-offset-4,
    .faq-offset-5 {
        margin-left: 0;
    }

    .contact-offset-1,
    .contact-offset-2,
    .contact-offset-3 {
        margin-left: 0;
    }

    .form-container-offset {
        padding-left: 0;
    }

    .contact-form-asymmetric {
        padding: 32px 24px;
    }

    .page-hero-offset h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .stat-card-shifted {
        margin-left: 0;
    }

    .service-block-1,
    .service-block-2,
    .service-block-3 {
        transform: translateY(0);
    }

    .step-offset-1,
    .step-offset-2,
    .step-offset-3,
    .step-offset-4 {
        margin-top: 0;
    }

    .pricing-card-offset-1,
    .pricing-card-offset-2 {
        margin-top: 0;
    }

    .benefit-pos-1,
    .benefit-pos-2,
    .benefit-pos-3,
    .benefit-pos-4 {
        margin-top: 0;
    }

    .value-offset-1,
    .value-offset-2,
    .value-offset-3,
    .value-offset-4 {
        margin-top: 0;
    }

    .stat-box-1,
    .stat-box-2,
    .stat-box-3,
    .stat-box-4 {
        margin-top: 0;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5,
    .card-offset-6 {
        margin-top: 0;
    }

    .footer-col-1,
    .footer-col-2,
    .footer-col-3 {
        margin-top: 0;
    }

    .thanks-content-centered h1 {
        font-size: 32px;
    }

    .thanks-cta-buttons {
        flex-direction: column;
    }

    .thanks-cta-buttons .btn-primary,
    .thanks-cta-buttons .btn-secondary {
        width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}