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

:root {
    --primary: #2c3e50;
    --secondary: #e67e22;
    --accent: #16a085;
    --dark: #1a1a1a;
    --light: #ecf0f1;
    --gray: #7f8c8d;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

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

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
}

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    list-style: none;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    padding: 10px 0;
}

.hero-offset {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 120px 20px 60px;
}

.hero-text-block {
    order: 2;
    padding: 40px 0;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-image-block {
    order: 1;
    margin-bottom: 30px;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

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

.intro-asymmetric {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.intro-left h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.intro-left p,
.intro-right p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

.services-preview {
    padding: 80px 20px;
    background: var(--light);
}

.section-header-offset {
    margin-bottom: 50px;
}

.section-header-offset h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header-offset p {
    font-size: 1.1rem;
    color: var(--gray);
}

.services-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-content {
    padding: 30px;
}

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

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 20px 0;
}

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

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

.trust-block-offset {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.trust-metrics {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
}

.metric-label {
    font-size: 1rem;
    color: var(--gray);
}

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

.testimonial-scattered {
    padding: 80px 20px;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.testimonial-item p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    color: var(--light);
    font-size: 0.95rem;
}

.process-irregular {
    padding: 80px 20px;
}

.process-irregular h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 50px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    padding: 30px;
    background: var(--light);
    border-radius: 15px;
}

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

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

.step p {
    color: var(--gray);
    line-height: 1.7;
}

.cta-layered {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    transform: skewY(-3deg);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 30px;
}

.btn-cta-large {
    padding: 18px 50px;
    background: var(--white);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefits-asymmetric {
    padding: 80px 20px;
}

.benefits-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 50px;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-card {
    padding: 30px;
    background: var(--light);
    border-radius: 15px;
}

.benefit-featured {
    background: var(--secondary);
}

.benefit-featured h4,
.benefit-featured p {
    color: var(--white);
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
}

.gallery-overlap {
    padding: 80px 20px;
    background: var(--light);
}

.gallery-overlap h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.final-cta-offset {
    padding: 100px 20px;
    background: var(--primary);
    text-align: center;
}

.final-cta-text h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    font-weight: 300;
    color: var(--gray);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary);
}

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

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

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
}

.btn-sticky {
    padding: 16px 30px;
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 20px;
    z-index: 1500;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-content p {
    color: var(--white);
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 20px 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-col p {
    color: var(--light);
    line-height: 1.7;
}

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

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

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

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

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

.footer-bottom p {
    color: var(--gray);
}

.page-hero-offset {
    padding: 150px 20px 80px;
    background: var(--light);
    text-align: center;
}

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

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
}

.services-detailed {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-detail-image img {
    border-radius: 15px;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-detail-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray);
}

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

.services-cta {
    padding: 80px 20px;
    background: var(--light);
    text-align: center;
}

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

.services-cta p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.about-story-asymmetric {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.story-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image img {
    border-radius: 15px;
}

.values-offset {
    padding: 80px 20px;
    background: var(--light);
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-card {
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
}

.value-featured {
    background: var(--accent);
}

.value-featured h3,
.value-featured p {
    color: var(--white);
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
}

.team-irregular {
    padding: 80px 20px;
}

.team-irregular h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 50px;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.member-role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--gray);
    line-height: 1.7;
}

.certifications-asymmetric {
    padding: 80px 20px;
    background: var(--light);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.cert-list {
    list-style: none;
}

.cert-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray);
    line-height: 1.7;
}

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

.cert-visual img {
    border-radius: 15px;
}

.process-philosophy {
    padding: 80px 20px;
}

.process-philosophy h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.philosophy-intro {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 50px;
    line-height: 1.8;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.point {
    display: flex;
    gap: 20px;
}

.point-icon {
    font-size: 2rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.point-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.point-content p {
    color: var(--gray);
    line-height: 1.7;
}

.about-cta-offset {
    padding: 100px 20px;
    background: var(--accent);
    text-align: center;
}

.about-cta-content h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.about-cta-content p {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 30px;
}

.contact-layout-asymmetric {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info-block h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info-block > p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

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

.contact-item p {
    color: var(--gray);
    line-height: 1.7;
}

.contact-visual-block img {
    border-radius: 15px;
}

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

.contact-cta-section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-cta-section p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.faq-offset {
    padding: 80px 20px;
}

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

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding: 25px;
    background: var(--light);
    border-radius: 12px;
}

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

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
}

.legal-page {
    padding: 150px 20px 80px;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.legal-updated {
    color: var(--gray);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
    margin-top: 20px;
}

.legal-section p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section ul li {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 8px;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 80px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

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

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

.thanks-message {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.thanks-service {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.thanks-service p {
    color: var(--primary);
    font-weight: 600;
}

.thanks-next {
    margin-bottom: 40px;
    text-align: left;
}

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

.thanks-next ul {
    list-style: none;
}

.thanks-next ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray);
}

.thanks-next ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) {
    .hero-offset {
        flex-direction: row;
        align-items: center;
        padding: 150px 40px 80px;
    }

    .hero-text-block {
        order: 1;
        flex: 1;
        padding-right: 60px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-image-block {
        order: 2;
        flex: 1;
        margin-bottom: 0;
    }

    .intro-asymmetric {
        flex-direction: row;
        padding: 120px 40px;
    }

    .intro-left,
    .intro-right {
        flex: 1;
    }

    .intro-left {
        padding-right: 40px;
    }

    .services-grid-irregular {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 20px);
    }

    .card-large,
    .card-wide {
        flex: 0 0 100%;
    }

    .trust-block-offset {
        flex-direction: row;
        align-items: center;
        padding: 120px 40px;
    }

    .trust-content {
        flex: 1;
        padding-right: 60px;
    }

    .trust-image {
        flex: 1;
    }

    .trust-metrics {
        flex-direction: row;
        justify-content: space-between;
    }

    .testimonial-scattered {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-item {
        flex: 0 0 calc(50% - 20px);
    }

    .item-3 {
        flex: 0 0 100%;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 0 0 calc(50% - 20px);
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 0 0 calc(50% - 12.5px);
    }

    .gallery-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .gallery-item {
        flex: 0 0 calc(50% - 10px);
    }

    .item-large {
        flex: 0 0 100%;
    }

    .service-detail-card {
        flex-direction: row;
        align-items: center;
    }

    .card-reverse {
        flex-direction: row-reverse;
    }

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

    .service-detail-content {
        flex: 1;
        padding: 0 40px;
    }

    .about-story-asymmetric {
        flex-direction: row;
        align-items: center;
        padding: 100px 40px;
    }

    .story-text {
        flex: 1;
        padding-right: 60px;
    }

    .story-image {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - 12.5px);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 0 0 calc(50% - 20px);
    }

    .certifications-asymmetric {
        flex-direction: row;
        align-items: center;
        padding: 120px 40px;
    }

    .cert-content {
        flex: 1;
        padding-right: 60px;
    }

    .cert-visual {
        flex: 1;
    }

    .contact-layout-asymmetric {
        flex-direction: row;
        padding: 100px 40px;
    }

    .contact-info-block {
        flex: 1;
        padding-right: 60px;
    }

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

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 0 0 calc(50% - 15px);
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        flex-direction: row;
        box-shadow: none;
        gap: 30px;
    }

    .services-grid-irregular {
        gap: 30px;
    }

    .service-card {
        flex: 0 0 calc(33.333% - 20px);
    }

    .card-large {
        flex: 0 0 calc(66.666% - 15px);
    }

    .card-wide {
        flex: 0 0 100%;
    }

    .card-offset {
        transform: translateY(40px);
    }

    .card-elevated {
        transform: translateY(-40px);
    }

    .testimonial-item {
        flex: 0 0 calc(33.333% - 26.67px);
    }

    .item-1 {
        transform: translateY(30px);
    }

    .item-2 {
        transform: translateY(-30px);
    }

    .process-steps {
        flex-wrap: nowrap;
    }

    .step {
        flex: 1;
    }

    .step-offset-1 {
        transform: translateY(20px);
    }

    .step-offset-2 {
        transform: translateY(-20px);
    }

    .step-offset-3 {
        transform: translateY(30px);
    }

    .step-offset-4 {
        transform: translateY(-30px);
    }

    .gallery-item {
        flex: 0 0 calc(25% - 15px);
    }

    .item-large {
        flex: 0 0 calc(50% - 10px);
    }

    .item-tall {
        flex: 0 0 calc(25% - 15px);
    }

    .item-wide {
        flex: 0 0 calc(50% - 10px);
    }

    .team-member {
        flex: 0 0 calc(25% - 30px);
    }

    .member-offset-1 {
        transform: translateY(30px);
    }

    .member-offset-2 {
        transform: translateY(-20px);
    }

    .member-offset-3 {
        transform: translateY(20px);
    }

    .member-offset-4 {
        transform: translateY(-30px);
    }
}