/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #10b981;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

/* Navigation - Floating Asymmetric */
.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.nav-links a {
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a1a1a;
}

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-offset-left {
    flex: 1;
    max-width: 600px;
    padding-right: 3rem;
    position: relative;
    z-index: 2;
}

.hero-text-block {
    margin-bottom: 2.5rem;
}

.hero-title-split {
    display: flex;
    flex-direction: column;
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.title-line-1 {
    margin-left: 0;
}

.title-line-2 {
    margin-left: 3rem;
    color: #2563eb;
}

.title-line-3 {
    margin-left: 1.5rem;
}

.hero-subtitle-offset {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4b5563;
    margin-left: 4rem;
    max-width: 500px;
}

.cta-hero-floating {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-left: 2rem;
    transition: all 0.3s ease;
}

.cta-hero-floating:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.hero-visual-right {
    flex: 1;
    position: relative;
    margin-top: -5rem;
}

.hero-visual-right img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(2deg);
}

/* Section Curiosity Irregular */
.section-curiosity-irregular {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    background: #f9fafb;
}

.curiosity-block-offset {
    flex: 1.5;
    padding-left: 4rem;
}

.section-title-tilted {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    transform: translateX(-2rem);
}

.curiosity-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-left: 2rem;
}

.curiosity-visual-corner {
    flex: 1;
    position: relative;
}

.curiosity-visual-corner img {
    border-radius: 12px;
    transform: translateY(3rem);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Section Story Diagonal */
.section-story-diagonal {
    padding: 6rem 2rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.story-content-left {
    flex: 1.2;
    padding-right: 2rem;
}

.story-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    margin-left: 3rem;
}

.story-content-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
    margin-left: 1.5rem;
}

.story-emphasis {
    font-weight: 600;
    color: #2563eb;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.05);
    border-left: 3px solid #2563eb;
    margin-left: 0 !important;
}

.story-image-diagonal {
    flex: 1;
    margin-top: 4rem;
}

.story-image-diagonal img {
    border-radius: 12px;
    transform: rotate(-3deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Section Reveal Stacked */
.section-reveal-stacked {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    position: relative;
}

.reveal-overlay-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.reveal-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 3rem;
}

.reveal-stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-card-offset {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    min-width: 280px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.stat-card-offset:nth-child(1) {
    transform: translateY(-1rem);
}

.stat-card-offset:nth-child(2) {
    transform: translateY(1rem);
}

.stat-card-offset:nth-child(3) {
    transform: translateY(-0.5rem);
}

.stat-card-offset:hover {
    transform: translateY(-0.5rem) !important;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Section Insight Broken */
.section-insight-broken {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-text-irregular {
    flex: 1.3;
}

.insight-heading-slant {
    font-size: 2.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2rem;
    margin-left: -1rem;
}

.insight-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.insight-cta-embedded {
    margin-top: 2rem;
    margin-left: 3rem;
}

.cta-inline-arrow {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.insight-visual-split {
    flex: 1;
}

.insight-visual-split img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Section Trust Asymmetric */
.section-trust-asymmetric {
    padding: 6rem 2rem;
    background: #f9fafb;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.trust-testimonial-float {
    flex: 1;
    padding-top: 3rem;
}

.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #1a1a1a;
    font-style: italic;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 600;
}

.trust-proof-stack {
    flex: 1;
}

.trust-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    margin-left: 2rem;
}

.trust-list-offset {
    list-style: none;
}

.trust-list-offset li {
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4b5563;
    position: relative;
    margin-bottom: 1rem;
}

.trust-list-offset li::before {
    content: "→";
    position: absolute;
    left: 1rem;
    color: #2563eb;
    font-weight: 700;
}

/* Section Problem Overlap */
.section-problem-overlap {
    padding: 5rem 2rem;
    background: #1a1a1a;
}

.problem-block-corner {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 20%;
}

.problem-title-irregular {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    transform: translateX(-3rem);
}

.problem-block-corner p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 2rem;
}

/* Section Services Broken Grid */
.section-services-broken-grid {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.services-main-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 4rem;
}

.services-wrapper-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-offset {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-card-1 {
    margin-left: 0;
}

.service-card-2 {
    margin-left: 8%;
}

.service-card-3 {
    margin-left: 4%;
}

.service-card-4 {
    margin-left: 12%;
}

.service-card-5 {
    margin-left: 6%;
}

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

.service-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.btn-service-select {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-service-select:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* Section Urgency Diagonal */
.section-urgency-diagonal {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

.urgency-content-slant {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    transform: translateX(-2rem);
}

.urgency-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.urgency-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-urgency-large {
    display: inline-block;
    background: #ffffff;
    color: #dc2626;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-urgency-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Section Form Irregular */
.section-form-irregular {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-container-offset {
    flex: 1.5;
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-left: 3rem;
}

.form-title-slant {
    font-size: 2.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    transform: translateX(-1rem);
}

.form-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.contact-form-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-irregular {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-irregular label {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.form-group-irregular input,
.form-group-irregular select,
.form-group-irregular textarea {
    padding: 0.9rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group-irregular input:focus,
.form-group-irregular select:focus,
.form-group-irregular textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit-offset {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1.1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1rem;
    margin-left: 2rem;
    transition: all 0.3s ease;
}

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

.form-visual-corner {
    flex: 1;
    margin-top: 4rem;
}

.form-visual-corner img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Section Final CTA Overlap */
.section-final-cta-overlap {
    padding: 5rem 2rem;
    background: #1a1a1a;
}

.final-cta-block {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    transform: translateX(2rem);
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-final-large {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-final-large:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Footer Asymmetric */
.footer-asymmetric {
    background: #111827;
    padding: 4rem 2rem 2rem;
}

.footer-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand-block {
    flex: 1;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #9ca3af;
    font-size: 0.95rem;
}

.footer-links-irregular {
    display: flex;
    gap: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #9ca3af;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-button {
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
}

/* Page Header (for sub-pages) */
.page-header-offset {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.page-title-irregular {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    transform: translateX(-1rem);
}

.page-subtitle-slant {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    transform: translateX(1rem);
}

/* About Page Specific */
.about-story-diagonal {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.about-content-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.about-image-corner {
    flex: 1;
}

.about-image-corner img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-mission-asymmetric {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.mission-block-offset {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.mission-text-large {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4b5563;
}

.mission-values-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.value-card-irregular {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.value-card-irregular:nth-child(1) {
    transform: translateY(-1rem);
}

.value-card-irregular:nth-child(2) {
    transform: translateY(1rem);
}

.value-card-irregular:nth-child(3) {
    transform: translateY(0rem);
}

.value-card-irregular h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.value-card-irregular p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
}

.about-team-broken {
    padding: 6rem 2rem;
}

.team-title-slant {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 3rem;
    transform: translateX(-1rem);
}

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

.expertise-block-offset {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    padding: 2rem;
    border-left: 4px solid #2563eb;
    background: #f9fafb;
}

.expertise-block-offset:nth-child(1) {
    margin-left: 0;
}

.expertise-block-offset:nth-child(2) {
    margin-left: 5%;
}

.expertise-block-offset:nth-child(3) {
    margin-left: 2%;
}

.expertise-block-offset:nth-child(4) {
    margin-left: 8%;
}

.expertise-block-offset h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.expertise-block-offset p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.about-approach-overlap {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.approach-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.approach-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6b7280;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.approach-steps-diagonal {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-block {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
    position: relative;
}

.step-block:nth-child(1) {
    transform: translateY(0);
}

.step-block:nth-child(2) {
    transform: translateY(2rem);
}

.step-block:nth-child(3) {
    transform: translateY(1rem);
}

.step-block:nth-child(4) {
    transform: translateY(3rem);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 1rem;
}

.step-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.step-block p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
}

.about-results-asymmetric {
    padding: 6rem 2rem;
    background: #1a1a1a;
}

.results-title-irregular {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
    transform: translateX(1rem);
}

.results-stats-broken {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.stat-large-offset {
    text-align: center;
    padding: 2rem;
    flex: 1;
    min-width: 250px;
}

.stat-large-offset:nth-child(1) {
    transform: translateY(-1rem);
}

.stat-large-offset:nth-child(2) {
    transform: translateY(1.5rem);
}

.stat-large-offset:nth-child(3) {
    transform: translateY(0);
}

.stat-number-big {
    font-size: 4rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label-big {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.about-cta-diagonal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

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

.cta-about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-about-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.btn-about-cta {
    display: inline-block;
    background: #ffffff;
    color: #2563eb;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-about-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Services Page Specific */
.services-intro-diagonal {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.intro-text-block {
    text-align: center;
}

.intro-title-slant {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    transform: translateX(-1rem);
}

.intro-text-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6b7280;
}

.services-detail-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

.service-offset-2 {
    margin-left: 5%;
}

.service-offset-3 {
    margin-left: 2%;
}

.service-offset-4 {
    margin-left: 7%;
}

.service-offset-5 {
    margin-left: 3%;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-content-irregular {
    flex: 1.5;
}

.service-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-long-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.service-includes {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-includes h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #4b5563;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.service-pricing-block {
    margin-bottom: 1.5rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.3rem;
}

.price-note {
    font-size: 0.9rem;
    color: #6b7280;
}

.btn-service-detail {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service-detail:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.services-comparison-irregular {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.comparison-title-slant {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 3rem;
    transform: translateX(1rem);
}

.comparison-guide-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.guide-block-offset {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.guide-block-offset:nth-child(1) {
    transform: translateY(0);
}

.guide-block-offset:nth-child(2) {
    transform: translateY(1.5rem);
}

.guide-block-offset:nth-child(3) {
    transform: translateY(0.5rem);
}

.guide-block-offset:nth-child(4) {
    transform: translateY(2rem);
}

.guide-block-offset h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.guide-block-offset p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

.services-custom-diagonal {
    padding: 5rem 2rem;
    background: #1a1a1a;
}

.custom-block-irregular {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    transform: translateX(-1rem);
}

.custom-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.custom-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-custom-inquiry {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-custom-inquiry:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

.services-faq-asymmetric {
    padding: 6rem 2rem;
}

.faq-title-offset {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 3rem;
    transform: translateX(-1rem);
}

.faq-list-irregular {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item-diagonal {
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
}

.faq-item-diagonal:nth-child(odd) {
    margin-left: 0;
}

.faq-item-diagonal:nth-child(even) {
    margin-left: 5%;
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.faq-answer {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Contact Page Specific */
.contact-info-asymmetric {
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details-irregular {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block-offset {
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
}

.contact-block-offset:nth-child(1) {
    margin-left: 0;
}

.contact-block-offset:nth-child(2) {
    margin-left: 5%;
}

.contact-block-offset:nth-child(3) {
    margin-left: 2%;
}

.contact-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-address p,
.contact-hours p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
}

.contact-email a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
}

.contact-note {
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.hours-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 1rem;
    font-style: italic;
}

.contact-visual-corner {
    flex: 1;
    margin-top: 2rem;
}

.contact-visual-corner img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-why-diagonal {
    padding: 6rem 2rem;
    background: #f9fafb;
}

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

.why-title-slant {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 3rem;
    transform: translateX(-1rem);
}

.why-reasons-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.reason-card-offset {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.reason-card-offset:nth-child(1) {
    transform: translateY(0);
}

.reason-card-offset:nth-child(2) {
    transform: translateY(1.5rem);
}

.reason-card-offset:nth-child(3) {
    transform: translateY(0.8rem);
}

.reason-card-offset:nth-child(4) {
    transform: translateY(2rem);
}

.reason-card-offset h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.reason-card-offset p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

.contact-location-irregular {
    padding: 6rem 2rem;
}

.location-title-offset {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    transform: translateX(1rem);
}

.location-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6b7280;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.location-details-split {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.location-directions {
    flex: 1;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
}

.location-directions h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.location-directions p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 0.8rem;
}

.location-note-block {
    flex: 1;
    padding: 2rem;
    background: #fef3c7;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.location-note {
    font-size: 1rem;
    line-height: 1.7;
    color: #78350f;
}

.contact-faq-asymmetric {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.faq-contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.faq-contact-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-contact-item {
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-contact-item:nth-child(odd) {
    margin-left: 0;
}

.faq-contact-item:nth-child(even) {
    margin-left: 5%;
}

.faq-contact-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.faq-contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

.contact-cta-diagonal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

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

.cta-contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-contact-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.btn-contact-cta {
    display: inline-block;
    background: #ffffff;
    color: #2563eb;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-contact-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Thanks Page Specific */
.thanks-hero-centered {
    padding: 12rem 2rem 6rem;
    text-align: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.thanks-content-block {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.thanks-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
}

.thanks-details-asymmetric {
    padding: 6rem 2rem;
}

.thanks-info-irregular {
    max-width: 1000px;
    margin: 0 auto;
}

.thanks-info-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 4rem;
}

.thanks-timeline-diagonal {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-step:nth-child(odd) {
    margin-left: 0;
}

.timeline-step:nth-child(even) {
    margin-left: 8%;
}

.step-marker {
    background: #2563eb;
    color: #ffffff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

.thanks-expectations-irregular {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.expectations-block-offset {
    max-width: 1200px;
    margin: 0 auto;
}

.expectations-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

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

.expectation-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.expectation-card:nth-child(1) {
    transform: translateY(0);
}

.expectation-card:nth-child(2) {
    transform: translateY(1.5rem);
}

.expectation-card:nth-child(3) {
    transform: translateY(0.5rem);
}

.expectation-card:nth-child(4) {
    transform: translateY(2rem);
}

.expectation-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.expectation-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

.thanks-resources-diagonal {
    padding: 6rem 2rem;
}

.resources-content-irregular {
    max-width: 1100px;
    margin: 0 auto;
}

.resources-title-slant {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 1rem;
    transform: translateX(-1rem);
}

.resources-intro {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

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

.resource-card-offset {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
}

.resource-card-offset:nth-child(1) {
    margin-left: 0;
}

.resource-card-offset:nth-child(2) {
    margin-left: 5%;
}

.resource-card-offset:nth-child(3) {
    margin-left: 2%;
}

.resource-card-offset h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.resource-card-offset p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1rem;
}

.resource-link {
    font-weight: 600;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
}

.thanks-urgent-asymmetric {
    padding: 5rem 2rem;
    background: #fef3c7;
}

.urgent-block-irregular {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-left: 4px solid #f59e0b;
    transform: translateX(2rem);
}

.urgent-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #78350f;
    margin-bottom: 1rem;
}

.urgent-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #92400e;
}

.thanks-testimonial-diagonal {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.testimonial-large-offset {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.5rem;
    line-height: 1.8;
    color: #1a1a1a;
    font-style: italic;
    padding: 3rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(-2rem);
}

.testimonial-large-offset cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 600;
}

/* Legal Pages */
.legal-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 10rem 2rem 4rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: #6b7280;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background: #f9fafb;
    font-weight: 700;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #4b5563;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-floating {
        top: 1rem;
        left: 1rem;
        right: 1rem;
        transform: none;
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 5rem;
        left: 1rem;
        right: 1rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        border-radius: 20px;
        flex-direction: column;
        gap: 1.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 6rem 1.5rem 3rem;
    }

    .hero-offset-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-title-split {
        font-size: 2.5rem;
    }

    .title-line-2,
    .title-line-3 {
        margin-left: 1rem;
    }

    .hero-subtitle-offset {
        margin-left: 1rem;
    }

    .cta-hero-floating {
        margin-left: 0;
    }

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

    .section-curiosity-irregular,
    .section-story-diagonal,
    .section-insight-broken,
    .section-trust-asymmetric,
    .section-form-irregular,
    .about-story-diagonal,
    .contact-info-asymmetric {
        flex-direction: column;
        gap: 2rem;
    }

    .curiosity-block-offset {
        padding-left: 0;
    }

    .section-title-tilted {
        transform: none;
    }

    .curiosity-text {
        margin-left: 0;
    }

    .story-heading {
        margin-left: 0;
    }

    .story-content-left p {
        margin-left: 0;
    }

    .insight-heading-slant {
        margin-left: 0;
    }

    .insight-body {
        padding-left: 0;
    }

    .insight-cta-embedded {
        margin-left: 0;
    }

    .problem-block-corner {
        margin-left: 0;
    }

    .problem-title-irregular {
        transform: none;
    }

    .problem-block-corner p {
        margin-left: 0;
    }

    .services-wrapper-asymmetric .service-card-offset {
        margin-left: 0 !important;
    }

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

    .form-title-slant {
        transform: none;
    }

    .btn-submit-offset {
        margin-left: 0;
    }

    .final-cta-block {
        transform: none;
    }

    .footer-content-split {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links-irregular {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .page-title-irregular {
        font-size: 2.5rem;
        transform: none;
    }

    .page-subtitle-slant {
        transform: none;
    }

    .service-detail-card {
        flex-direction: column !important;
        margin-left: 0 !important;
    }

    .expertise-block-offset {
        margin-left: 0 !important;
    }

    .approach-steps-diagonal .step-block {
        transform: none !important;
    }

    .results-stats-broken .stat-large-offset {
        transform: none !important;
    }

    .contact-block-offset {
        margin-left: 0 !important;
    }

    .guide-block-offset,
    .reason-card-offset,
    .expectation-card {
        transform: none !important;
    }

    .faq-item-diagonal,
    .faq-contact-item {
        margin-left: 0 !important;
    }

    .timeline-step {
        margin-left: 0 !important;
    }

    .resource-card-offset {
        margin-left: 0 !important;
    }

    .location-details-split {
        flex-direction: column;
    }

    .urgency-content-slant {
        transform: none;
    }

    .custom-block-irregular {
        transform: none;
    }

    .urgent-block-irregular {
        transform: none;
    }

    .testimonial-large-offset {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-title-split {
        font-size: 2rem;
    }

    .services-main-title {
        font-size: 2rem;
    }

    .section-title-tilted,
    .reveal-title,
    .insight-heading-slant {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}
