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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

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

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--secondary-color);
}

.hero-offset {
    display: flex;
    min-height: 90vh;
    align-items: center;
    padding: 120px 5% 60px;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.5;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.intro-asymmetric {
    display: flex;
    padding: 80px 5%;
    gap: 100px;
    align-items: center;
    background: var(--bg-light);
}

.intro-narrow {
    flex: 2;
    max-width: 700px;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.intro-narrow p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.intro-stat-card {
    flex: 1;
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.intro-stat-card.offset-right {
    margin-top: 80px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.problem-amplify {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: center;
}

.problem-left {
    flex: 1;
}

.problem-left img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.problem-right {
    flex: 1.2;
}

.problem-right h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.problem-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.custom-list {
    list-style: none;
    margin: 25px 0;
}

.custom-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.05rem;
}

.custom-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.trust-layer {
    padding: 80px 5%;
    background: var(--primary-color);
    color: white;
}

.trust-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    padding: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

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

.trust-item p {
    line-height: 1.7;
    opacity: 0.95;
}

.services-select {
    padding: 100px 5%;
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--primary-color);
    max-width: 700px;
}

.services-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 35px;
    transition: all 0.3s ease;
}

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

.service-card.offset-down {
    margin-top: 40px;
}

.service-card.offset-up {
    margin-top: -40px;
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-price {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-light);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.service-card p {
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.btn-select {
    width: 100%;
    padding: 14px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #2980b9;
}

.insight-reveal {
    padding: 80px 5%;
    background: var(--bg-light);
}

.insight-content {
    max-width: 800px;
    margin: 0 auto;
}

.insight-content h3 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.insight-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-inline {
    padding: 100px 5%;
    background: var(--secondary-color);
    color: white;
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    text-align: right;
    max-width: 900px;
    margin: 0 auto;
    font-style: normal;
    opacity: 0.9;
}

.cta-sticky-trigger {
    padding: 100px 5%;
}

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

.cta-block-overlap h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-block-overlap p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.benefits-asymmetric {
    padding: 80px 5%;
    background: var(--bg-light);
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.benefit-block {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.benefit-block.wide {
    flex: 2;
    min-width: 300px;
}

.benefit-block.narrow {
    flex: 1;
    min-width: 250px;
}

.benefit-block.offset-right {
    margin-top: 50px;
}

.benefit-block.offset-left {
    margin-top: -50px;
}

.benefit-block h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-block p {
    line-height: 1.7;
}

.form-section {
    padding: 100px 5%;
}

.form-container-offset {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    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(--accent-color);
}

.btn-submit {
    padding: 16px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.footer-asymmetric {
    background: var(--primary-color);
    color: white;
    padding: 60px 5% 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h5 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    opacity: 0.8;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    display: none;
    align-items: center;
    gap: 15px;
    z-index: 999;
}

.sticky-cta.show {
    display: flex;
}

.sticky-cta span {
    font-weight: 600;
}

.btn-sticky {
    background: white;
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.page-hero-simple {
    padding: 150px 5% 80px;
    text-align: center;
    background: var(--bg-light);
}

.page-hero-simple h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.page-intro {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

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

.story-content {
    flex: 1.5;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.values-offset {
    padding: 100px 5%;
    background: var(--bg-light);
}

.values-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.value-card.offset {
    margin-top: 50px;
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-card p {
    line-height: 1.7;
}

.team-approach {
    padding: 100px 5%;
}

.approach-text {
    max-width: 900px;
    margin: 0 auto;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.approach-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.numbers-section {
    padding: 80px 5%;
    background: var(--primary-color);
    color: white;
}

.numbers-flex {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.number-item {
    text-align: center;
    padding: 30px;
}

.number-item.offset {
    margin-top: 40px;
}

.big-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.number-label {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-about {
    padding: 100px 5%;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--text-light);
}

.services-detailed {
    padding: 60px 5%;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    padding: 80px 0;
    align-items: center;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.price-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--secondary-color);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 25px;
}

.detail-list {
    list-style: none;
    margin: 25px 0;
}

.detail-list li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.detail-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.detail-note {
    font-style: italic;
    color: var(--text-light);
    margin: 20px 0;
}

.cta-service {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.cta-service:hover {
    background: #2980b9;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.process-overview {
    padding: 100px 5%;
    background: var(--bg-light);
}

.process-overview h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--primary-color);
    text-align: center;
}

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 220px;
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-item p {
    line-height: 1.7;
}

.cta-services-end {
    padding: 100px 5%;
    text-align: center;
}

.cta-services-end h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-services-end p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--text-light);
}

.contact-info-section {
    padding: 80px 5%;
}

.contact-details {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    min-width: 250px;
}

.contact-item.offset {
    margin-top: 40px;
}

.contact-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-item p {
    line-height: 1.7;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map {
    padding: 60px 5%;
    background: var(--bg-light);
}

.map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-placeholder p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.contact-faq h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

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

.faq-item {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    line-height: 1.8;
}

.cta-contact-end {
    padding: 100px 5%;
    text-align: center;
    background: var(--bg-light);
}

.cta-contact-end h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-contact-end p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--text-light);
}

.thanks-hero {
    padding: 150px 5% 80px;
    text-align: center;
    background: var(--bg-light);
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-info {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 15px;
}

.thanks-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.thanks-content a:hover {
    text-decoration: underline;
}

.next-steps {
    padding: 80px 5%;
}

.next-steps h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-box {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.step-box h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.step-box p {
    line-height: 1.7;
}

.cta-thanks {
    padding: 80px 5%;
    background: var(--bg-light);
    text-align: center;
}

.cta-thanks h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

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

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

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

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

@media (max-width: 768px) {
    .floating-nav {
        padding: 15px 20px;
        gap: 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 6px 25px rgba(0,0,0,0.15);
        display: none;
        min-width: 200px;
    }

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

    .hero-offset {
        flex-direction: column;
        padding-top: 100px;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

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

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

    .intro-stat-card.offset-right {
        margin-top: 0;
    }

    .problem-amplify {
        flex-direction: column;
    }

    .trust-grid {
        flex-direction: column;
    }

    .services-cards-asymmetric {
        flex-direction: column;
    }

    .service-card.offset-down,
    .service-card.offset-up {
        margin-top: 0;
    }

    .benefits-asymmetric {
        flex-direction: column;
    }

    .benefit-block.offset-right,
    .benefit-block.offset-left {
        margin-top: 0;
    }

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

    .sticky-cta {
        flex-direction: column;
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }

    .about-story {
        flex-direction: column;
        gap: 40px;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-card.offset {
        margin-top: 0;
    }

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

    .number-item.offset {
        margin-top: 0;
    }

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

    .process-steps {
        flex-direction: column;
    }

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

    .contact-details {
        flex-direction: column;
    }

    .contact-item.offset {
        margin-top: 0;
    }

    .steps-grid {
        flex-direction: column;
    }

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

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

    .page-hero-simple h1,
    .thanks-content h1 {
        font-size: 2.5rem;
    }
}
