* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000a14;
    font-family: 'Inter', sans-serif;
    color: #d5d7da;
    line-height: 1.5;
    scroll-behavior: smooth;
}


.cal-sans,
h1,
h2,
h3,
.c-brand__name,
.hero__title,
.section__title,
.cta__title {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
}


.site-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 0 24px;
}


.card-bg {
    background: #181d27;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: transform 0.2s ease, border-color 0.2s;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    background-size: cover;
    background-position: center;
}

.btn--primary {
    background-image: url('../img/btn.webp');
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn--primary:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

.btn--outline {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    backdrop-filter: blur(2px);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 18px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand-name {
    font-size: 1.7rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.3px;
}


.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: #d5d7da;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 1rem;
}

.nav-link:hover {
    color: #ffffff;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px 14px;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    line-height: 1;
}


.hero {
    background-image: url('../img/bg.webp');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 80px 40px;
    margin-bottom: 80px;
    text-align: center;
}

.hero__title {
    font-size: 3.4rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.hero__text {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 32px auto;
    color: #e2e4e9;
}

.hero__btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


.advantages-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 90px;
    flex-wrap: wrap;
}

.advantage-card {
    flex: 1;
    background: #181d27;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 32px 24px;
    transition: all 0.2s;
}

.adv-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    object-fit: contain;
}

.advantage-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
}

.advantage-card p {
    color: #d5d7da;
    font-size: 0.95rem;
}


.section {
    margin-bottom: 90px;
}

.section__title {
    text-align: center;
    font-size: 2.3rem;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 500;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.capability-item {
    background: #181d27;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 28px 20px;
    text-align: left;
}

.cap-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
}

.capability-item h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 12px;
}

.capability-item p {
    font-size: 0.9rem;
    color: #cbd0d8;
}


.formats-section {
    margin-bottom: 90px;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.format-card {
    background: #181d27;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
}

.format-card h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
}

.format-card p {
    font-size: 0.85rem;
}


.about-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 90px;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.about-img-wrapper {
    flex: 1;
    text-align: right;
}

.about-img {
    max-width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #10161e;
}


.cta-block {
    background-image: url('../img/bg.webp');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 70px 30px;
    text-align: center;
    margin-bottom: 80px;
}

.cta-block h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 16px;
}

.cta-block p {
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 28px auto;
}


.footer {
    background: transparent;
    padding: 48px 0 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 20px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 160px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 38px;
}

.footer-logo-text {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 500;
}

.footer-description {
    font-size: 0.85rem;
    max-width: 220px;
    color: #b0b5bd;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a,
.footer-policies a,
.footer-contacts p {
    color: #d5d7da;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-menu a:hover,
.footer-policies a:hover {
    color: white;
}

.footer-policies {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contacts p {
    margin-bottom: 8px;
}

.copyright {
    text-align: left;
    font-size: 0.8rem;
    color: #7f8692;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}


.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 64px 24px;
    font-family: 'Inter', sans-serif;
}


.contact-hero {
    background-image: url('../img/bg.webp');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 48px 40px;
    margin-bottom: 56px;
    text-align: center;
}

.contact-hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #b9bec7;
}

.breadcrumbs a {
    color: #d5d7da;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: white;
}

.breadcrumbs span {
    color: #7f8b9c;
}


.contact-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-form-box {
    flex: 1.2;
    background: #181d27;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 36px 32px;
}

.contact-info-box {
    flex: 0.9;
    background: #181d27;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 36px 32px;
}

.contact-info-box h2 {
    font-size: 1.9rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-info-text {
    color: #cbd0d8;
    line-height: 1.55;
    margin-bottom: 32px;
}

.contact-details {
    margin-top: 28px;
}

.contact-detail-item {
    margin-bottom: 28px;
}

.contact-detail-item strong {
    display: block;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    font-size: 1rem;
}

.contact-detail-item p,
.contact-detail-item a {
    color: #d5d7da;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.4;
}

.contact-detail-item a:hover {
    color: white;
    text-decoration: underline;
}


.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    color: #eef2f8;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #0f131c;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    transition: border 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ffffff80;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 28px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    accent-color: #2f6eb3;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.85rem;
    color: #cbd0d8;
}

.btn-submit {
    background-image: url('../img/btn.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    border-radius: 4px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.thankyou-message {
    margin-top: 20px;
    background: rgba(46, 125, 50, 0.2);
    padding: 12px 16px;
    border-radius: 10px;
    color: #c8e6d9;
    font-size: 0.9rem;
    display: none;
}

.thankyou-message.show {
    display: block;
}

hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

@media (max-width: 860px) {
    .contact-grid {
        flex-direction: column;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }
}

.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 64px 24px;
    font-family: 'Inter', sans-serif;
}


.about-hero {
    background-image: url('../img/bg.webp');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 48px 40px;
    margin-bottom: 64px;
    text-align: center;
}

.about-hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #b9bec7;
}

.breadcrumbs a {
    color: #d5d7da;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: white;
}

.breadcrumbs span {
    color: #7f8b9c;
}


.impressive-section {
    margin-bottom: 80px;
}

.section-container {
    display: flex;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
}

.section-container.reverse {
    flex-direction: row-reverse;
}

.section-content {
    flex: 1;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #b9e2ff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.section-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-content p {
    color: #d5d7da;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.stat-list {
    display: flex;
    gap: 22px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.stat-item {
    background: #181d27;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 20px 28px;
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #a8b3cf;
    margin-top: 8px;
}

.section-image {
    flex: 1;
    background: #10161e;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.4);
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.quote-grid {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.quote-card {
    background: #181d27;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px;
    flex: 1;
}

.quote-icon {
    font-size: 2.5rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
}

.quote-card p {
    font-style: normal;
    font-weight: 400;
    margin-bottom: 20px;
}

.quote-author {
    font-weight: 600;
    color: #fff;
}

.quote-title {
    font-size: 0.75rem;
    color: #94a3b8;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background-image: url('../img/btn.webp');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 4px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    margin-top: 16px;
    transition: 0.2s;
}

.btn-about:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

@media (max-width: 860px) {

    .section-container,
    .section-container.reverse {
        flex-direction: column;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .section-content h2 {
        font-size: 1.8rem;
    }

    .stat-list {
        justify-content: center;
    }
}

.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 64px 24px;
    font-family: 'Inter', sans-serif;
}


.services-hero {
    background-image: url('../img/bg.webp');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 48px 40px;
    margin-bottom: 56px;
    text-align: center;
}

.services-hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #b9bec7;
}

.breadcrumbs a {
    color: #d5d7da;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: white;
}

.breadcrumbs span {
    color: #7f8b9c;
}


.services-intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px auto;
}

.services-intro h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
}

.services-intro p {
    font-size: 1.05rem;
    color: #d5d7da;
    line-height: 1.5;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.service-card-detailed {
    background: #181d27;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform 0.2s ease, border-color 0.2s;
}

.service-card-detailed:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    object-fit: contain;
}

.service-card-detailed h3 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.service-feature-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    font-size: 0.92rem;
    color: #cbd0d8;
    line-height: 1.4;
}

.service-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #64b5f6;
    font-weight: 600;
}

.capability-badge {
    display: inline-block;
    background: rgba(100, 181, 246, 0.15);
    border-radius: 30px;
    padding: 4px 14px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #b9e2ff;
    margin-top: 20px;
    border: 1px solid rgba(100, 181, 246, 0.3);
}


.conversion-methods {
    margin: 48px 0 40px 0;
}

.section-title-center {
    text-align: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 48px;
    font-weight: 500;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.method-item {
    background: #181d27;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 28px 18px;
    text-align: center;
    transition: all 0.2s;
}

.method-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.method-item h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
}

.method-item p {
    font-size: 0.85rem;
    color: #b4bcd0;
    line-height: 1.45;
}


.enterprise-feature {
    background: linear-gradient(135deg, #0f1822 0%, #101a24 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px 40px;
    margin-top: 64px;
    text-align: center;
}

.enterprise-feature h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 16px;
}

.enterprise-feature p {
    max-width: 650px;
    margin: 0 auto 24px auto;
    color: #d1d6e2;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background-image: url('../img/btn.webp');
    background-size: cover;
    border-radius: 4px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: 0.2s;
}

.btn-service:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 560px) {
    .methods-grid {
        grid-template-columns: 1fr;
    }

    .service-card-detailed h3 {
        font-size: 1.4rem;
    }
}


.legal-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 64px 24px;
    font-family: 'Inter', sans-serif;
}

.legal-hero {
    background-image: url('../img/bg.webp');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 48px 40px;
    margin-bottom: 48px;
    text-align: center;
}

.legal-hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #b9bec7;
}

.breadcrumbs a {
    color: #d5d7da;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: white;
}

.update-date {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: #8e9aaf;
    background: rgba(255, 255, 255, 0.05);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 40px;
    backdrop-filter: blur(2px);
}

.legal-content {
    background: #181d27;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 48px 52px;
    color: #d5d7da;
    line-height: 1.65;
}

.legal-content h2 {
    font-size: 1.7rem;
    color: #fff;
    margin: 1.8em 0 0.8em 0;
    font-weight: 500;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: #f0f3fa;
    margin: 1.4em 0 0.6em 0;
    font-weight: 500;
}

.legal-content p {
    margin-bottom: 1.1rem;
    font-size: 0.98rem;
}

.legal-content ul,
.legal-content ol {
    margin: 0.8rem 0 1.2rem 1.8rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #90caf9;
    text-decoration: none;
    border-bottom: 1px dotted rgba(144, 202, 249, 0.4);
}

.legal-content a:hover {
    color: #bbdef5;
}

.contact-block-legal {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 28px;
    border-radius: 16px;
    margin: 32px 0 20px 0;
}

.contact-block-legal p {
    margin: 6px 0;
}

hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 28px 0;
}

@media (max-width: 760px) {
    .legal-content {
        padding: 28px 24px;
    }

    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.4rem;
    }
}









































@media (max-width: 900px) {
    .site-wrapper {
        padding: 20px 20px 0 20px;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .formats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section {
        flex-direction: column-reverse;
    }

    .about-img-wrapper {
        text-align: center;
    }

    .hero__title {
        font-size: 2.2rem;
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-top: 24px;
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .header {
        flex-wrap: wrap;
    }

    .advantages-grid {
        flex-direction: column;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .formats-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 20px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .section__title {
        font-size: 1.8rem;
    }

    .contact-page {
        padding: 0;
    }
    .legal-page, .about-page, .services-page{
        padding: 0;
    }
    .quote-grid{
        flex-direction: column;
    }
}