:root {
    --primary-color: #d97706;
    --primary-dark: #b45309;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
}

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

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

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s 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;
    justify-content: space-between;
}

.cookie-content p {
    color: var(--bg-white);
    margin: 0;
    text-align: center;
}

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

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

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

.btn-accept:hover {
    background: var(--primary-dark);
}

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

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

.main-nav {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.hero-split {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
}

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

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

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.intro-reversed {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.split-image {
    flex: 1;
}

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

.services-preview {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    margin-bottom: 1rem;
}

.card-content p {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.card-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--primary-dark);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.trust-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.trust-list {
    margin: 2rem 0;
}

.trust-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.trust-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.trust-note {
    font-style: italic;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.testimonials-minimal {
    padding: 5rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial-item {
    flex: 1;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--accent-color);
    font-weight: 600;
}

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

.process-section h2 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    margin-bottom: 1rem;
}

.cta-floating {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
}

.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-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(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

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

.btn-submit:hover {
    background: var(--primary-dark);
}

.form-footer-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
}

.guarantee-section {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

.guarantee-content h2 {
    margin-bottom: 1.5rem;
}

.main-footer {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

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

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(217, 119, 6, 0.5);
}

.page-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    text-align: center;
}

.page-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: block;
}

.page-hero h1 {
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.25rem;
}

.about-story {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.values-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.team-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.stats-section {
    padding: 5rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
}

.stats-section h2 {
    text-align: center;
    color: var(--bg-white);
    margin-bottom: 3rem;
}

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

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

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

.stat-item p {
    color: var(--bg-white);
    font-size: 1.1rem;
}

.methodology-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.method-content {
    max-width: 1400px;
    margin: 0 auto;
}

.method-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.method-step {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.method-step h3 {
    margin-bottom: 1rem;
}

.commitment-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content h2 {
    margin-bottom: 2rem;
}

.commitment-list {
    margin: 2rem 0;
}

.commitment-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.commitment-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    text-align: center;
}

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

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.service-detail {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.service-detail.reverse {
    background: var(--bg-light);
}

.service-intro {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.service-includes {
    margin: 2rem 0;
}

.service-includes h3 {
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.service-includes li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.service-pricing {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.pricing-note-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.pricing-note-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-note-content h2 {
    margin-bottom: 2rem;
}

.pricing-note-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.pricing-note-content li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.contact-main {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 2.5rem;
}

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

.info-block p {
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
}

.contact-form-wrapper {
    flex: 1;
}

.form-subtitle {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.faq-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

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

.trust-badges {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.badges-content {
    max-width: 1000px;
    margin: 0 auto;
}

.badges-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.badge-icon {
    font-size: 1.5rem;
    color: var(--success-color);
    font-weight: 700;
}

.badge-item p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

.thanks-hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ecfccb 0%, #d9f99d 100%);
    text-align: center;
}

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

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

.thanks-main {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-confirmation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    display: none;
}

.service-confirmation.show {
    display: block;
}

.next-steps {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.timeline-step .step-number {
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.while-waiting {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.while-waiting h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.waiting-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.waiting-card h3 {
    margin-bottom: 1rem;
}

.thanks-guarantee {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.guarantee-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
}

.guarantee-box h2 {
    margin-bottom: 2rem;
}

.guarantee-list {
    margin: 2rem 0;
}

.guarantee-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.guarantee-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.guarantee-note {
    margin-top: 2rem;
    font-size: 0.95rem;
}

.legal-page {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.legal-container h1 {
    margin-bottom: 1rem;
}

.updated-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-container h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.legal-container h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.legal-container ul {
    list-style: disc;
    padding-left: 2rem;
    margin: 1rem 0;
}

.legal-container li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

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

    .mobile-toggle {
        display: flex;
    }

    .hero-content,
    .split-container {
        flex-direction: column;
    }

    .split-container.reverse {
        flex-direction: column;
    }

    .services-grid,
    .process-grid,
    .values-grid,
    .stats-grid,
    .method-steps {
        flex-direction: column;
    }

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

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

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

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

    .sticky-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        flex-wrap: wrap;
    }

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

    .process-grid,
    .values-grid {
        flex-wrap: wrap;
    }

    .process-step,
    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }
}
