*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    overflow-x: hidden;
}
body {
    font-family: 'Inter', sans-serif;
    background: #FBFBFB;
    color: #000;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header {
    background: #fff;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header .container {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}
.header-logo {
    flex-shrink: 0;
    margin-right: 40px;
}
.header-logo img {
    width: 217px;
    height: 57px;
    object-fit: contain;
}
.header-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 182px;
    height: 32px;
    border: 1px solid #96BD2F;
    border-radius: 25px;
    padding: 0 14px;
    font-size: 14px;
    color: #434343;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: 55px;
}
.header-search svg {
    width: 15px;
    height: 16px;
    flex-shrink: 0;
}
.header-phones {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-shrink: 0;
    margin-right: 39px;
}
.header-phone {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.header-phone img {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 4px;
}
.header-phone .phone-number {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 1;
}
.header-phone .phone-name {
    font-size: 12px;
    color: #5B5B5B;
    line-height: 1.4;
}
.btn-track {
    width: 137px;
    height: 32px;
    background: #96BD2F;
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 28px;
}
.header-user {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    cursor: pointer;
    margin-right: 24px;
}
.header-lang {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
}
.header-lang svg { width: 12px; height: 7px; }

/* ===== HERO ===== */
.hero {
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 43px;
    padding-bottom: 43px;
}
.hero-content {
    max-width: 600px;
}
.hero-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 12px;
    color: #000;
}
.hero-title span {
    color: #A0C241;
}
.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #000;
    margin-bottom: 20px;
}
.hero-checks {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
}
.hero-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
    color: #000;
}
.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.btn-primary {
    background: #96BD2F;
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 400;
    font-family: inherit;
    cursor: pointer;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-outline {
    background: #fff;
    color: #000;
    border: 1px solid #9DA6AF;
    border-radius: 15px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 400;
    font-family: inherit;
    cursor: pointer;
    height: 48px;
    display: inline-flex;
    align-items: center;
}
.hero-note {
    font-size: 14px;
    font-weight: 400;
    color: #343434;
    line-height: 21px;
    max-width: 477px;
}

/* Hero sidebar form */
.hero-form {
    background: #fff;
    border-radius: 15px;
    padding: 24px;
    width: 274px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hero-form h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    color: #000;
}
.hero-form p {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #000;
}
.hero-form .input-phone {
    width: 226px;
    height: 48px;
    border: 1px solid #9DA6AF;
    border-radius: 15px;
    padding: 0 16px;
    font-size: 14px;
    font-family: inherit;
    color: #616161;
    outline: none;
    background: #fff;
}
.hero-form .btn-primary {
    width: 226px;
    height: 48px;
    padding: 12px 32px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: #fff;
    height: 102px;
    display: flex;
    align-items: center;
}
.trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    width: 100%;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
}
.trust-item img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.trust-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}
.trust-rating .star-icon {
    width: 24px;
    height: 24px;
}
.trust-rating-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 8px;
}
.trust-rating-logos img {
    height: 25px;
    width: auto;
}

/* ===== SERVICE TYPES ===== */
.service-types {
    padding: 40px 0 20px;
}
.service-types .container {
    display: flex;
    justify-content: space-around;
}
.service-type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.service-type-item img {
    height: 70px;
    width: auto;
}
.service-type-item span {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

/* ===== SERVICES GRID ===== */
.services {
    padding: 80px 0 0;
}
.section-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 32px;
}
.services .section-title {
    text-align: center;
    margin-bottom: 60px;
}
.services-grid {
    display: grid;
    grid-template-columns: 661fr 298fr 296fr;
    grid-template-rows: 330px 331px 107px;
    gap: 14px;
}
.service-card {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 100%);
    pointer-events: none;
}
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-card-label {
    position: absolute;
    bottom: 40px;
    left: 24px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    z-index: 1;
}
/* Card 1 - Консолидация (large, text at top) */
.service-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.service-card:nth-child(1)::after {
    top: 0;
    bottom: auto;
    height: 50%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
}
.service-card:nth-child(1) .service-card-label {
    top: 33px;
    left: 40px;
    bottom: auto;
}
/* Card 2 - Экспресс (small) */
.service-card:nth-child(2) { grid-column: 2; grid-row: 1; }
/* Card 3 - Сборные (small) */
.service-card:nth-child(3) { grid-column: 3; grid-row: 1; }
/* Card 4 - Автоперевозки (large, spans 2 rows) */
.service-card:nth-child(4) { grid-column: 1; grid-row: 2 / 4; }
.service-card:nth-child(4) .service-card-label {
    left: 40px;
}
/* Card 5 - Экспедирование (small) */
.service-card:nth-child(5) { grid-column: 2; grid-row: 2; }
/* Card 6 - Курьерские (small) */
.service-card:nth-child(6) { grid-column: 3; grid-row: 2; }
/* Card 7 - small bottom */
.service-card:nth-child(7) { grid-column: 2; grid-row: 3; }
/* Card 8 - small bottom */
.service-card:nth-child(8) { grid-column: 3; grid-row: 3; }

/* ===== PRICING ===== */
.pricing {
    padding: 114px 0 60px;
}
.pricing .section-title {
    text-align: center;
    margin-bottom: 24px;
}
.pricing-note {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin-bottom: 68px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 42px;
    row-gap: 32px;
}
.price-card {
    background: #fff;
    border-radius: 15px;
    padding: 32px 40px 40px;
    box-shadow: 10px 9px 9.7px 0px #0000000D;
}
.price-card-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.price-card-row + .price-card-row {
    margin-top: 20px;
}
.price-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}
.price-card-title span {
    font-weight: 400;
}
.price-card-price {
    font-size: 20px;
    font-weight: 700;
    color: #40B000;
    white-space: nowrap;
}
.price-card-price .price-icon {
    color: #96BD2F;
}
.price-card-info {
    font-size: 20px;
    font-weight: 400;
    color: #000;
}
.price-card-rate {
    font-size: 20px;
    font-weight: 400;
    color: #000;
}
.pricing-divider {
    border: none;
    border-top: 1px solid #B1B1B1;
    margin: 56px 0;
}

/* ===== WHY US ===== */
.why-us {
    padding: 60px 0 60px;
    background: #fff;
}
.why-us .section-title {
    text-align: center;
    margin-bottom: 63px;
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 250px);
    justify-content: center;
    column-gap: 60px;
    row-gap: 40px;
    margin-top: 32px;
}
.why-us-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 250px;
    margin: 0 auto;
}
.why-us-card img {
    width: 159px;
    height: 124px;
    border-radius: 0;
    object-fit: contain;
    flex-shrink: 0;
}
.why-us-card p {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
    color: #000;
}

/* ===== CALC FORM ===== */
.calc-section {
    padding: 60px 0;
    background: #FBFBFB;
}
.calc-wrapper {
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 10px 9px 9.7px 0px rgba(0, 0, 0, 0.05);
}
.calc-image {
    width: 50%;
    flex-shrink: 0;
}
.calc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.calc-form {
    background: #F5F5F5;
    padding: 30px 90px 50px 60px;
    width: 50%;
    flex-shrink: 0;
    border-radius: 0 15px 15px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.calc-form-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.calc-form h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
}
.calc-form-inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.calc-form .input-phone {
    width: 100%;
    border: 1px solid #9DA6AF;
    border-radius: 16px;
    padding: 13.5px 13px;
    font-size: 14px;
    font-family: inherit;
    color: #626262;
    background: #fff;
    outline: none;
}
.calc-form .btn-calc {
    width: 100%;
    padding: 12px 32px;
    background: #96BD2F;
    border: none;
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    font-family: inherit;
    cursor: pointer;
    text-align: center;
}
.calc-checks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.calc-checks li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 400;
    line-height: 2.25;
}
.calc-checks li img {
    width: 22px;
    height: 22px;
}

/* ===== GEOGRAPHY ===== */
.geography {
    background: #FDFDFD;
    padding: 120px 0 60px;
}
.geography .section-title {
    text-align: center;
}
.geography-map {
    margin-top: 32px;
    border-radius: 15px;
    overflow: hidden;
}
.geography-map img {
    width: 100%;
    height: auto;
}

/* ===== ABOUT ===== */
.about {
    padding: 60px 0;
}
.about .section-title {
    text-align: center;
    margin-bottom: 64px;
}
.about-rows {
    display: flex;
    flex-direction: column;
    gap: 51px;
}
.about-row1 {
    display: flex;
    align-items: center;
    gap: 55px;
}
.about-row1 .about-img {
    flex: 1;
    min-width: 0;
    height: 327px;
    border-radius: 15px;
    object-fit: cover;
}
.about-row1-text {
    width: 654px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.about-row2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 55px;
}
.about-row2-text {
    width: 571px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 41px;
}
.about-quote-row {
    display: flex;
    gap: 36px;
}
.about-quote-row .quote-icon {
    width: 39.835px;
    height: 34.778px;
    flex-shrink: 0;
    padding-top: 8px;
}
.about-row2 .about-img {
    width: 654px;
    height: 525px;
    flex-shrink: 0;
    border-radius: 15px;
    object-fit: cover;
}
.about-text {
    font-size: 16px;
    line-height: 24px;
    color: #000;
}
.about-big {
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    color: #000;
}
.about-small {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
}

/* ===== CASES ===== */
.cases {
    padding: 60px 0;
    background: #FBFBFB;
}
.cases .section-title {
    text-align: center;
    margin-bottom: 75px;
}
.cases-grid {
    display: flex;
    justify-content: center;
    gap: 94px;
}
.case-card {
    width: 364px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform .2s;
    box-shadow: 10px 9px 9.7px 0px rgba(0, 0, 0, 0.05);
    border-radius: 25px 25px 0 0;
    overflow: hidden;
}
.case-card-image {
    height: 338px;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}
.case-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case-card-body {
    background: #fff;
    padding: 24px 28px;
    height: 148px;
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.case-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #96BD2F;
    color: #fff;
    font-size: 16px;
    border-radius: 15px;
    padding: 12px 32px;
    height: 24px;
    width: fit-content;
}
.case-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 23px;
}
.case-card-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.case-card-arrow {
    width: 37px;
    height: 37px;
    flex-shrink: 0;
}
.case-result {
    background: #FAFFEC;
    padding: 7px 31px;
    height: 46px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.case-result img {
    width: 24px;
    height: 24px;
}
.case-result span {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 60px 0;
    background: #FBFBFB;
}
.reviews .section-title {
    text-align: center;
    margin-bottom: 42px;
}
.reviews-wrapper {
    display: flex;
    align-items: center;
    gap: 29px;
}
.reviews-nav {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    cursor: pointer;
}
.reviews-grid {
    display: flex;
    gap: 40px;
}
.review-card {
    width: 364px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 25px;
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 10px 9px 9.7px 0px rgba(0, 0, 0, 0.05);
}
.review-top {
    display: flex;
    gap: 16px;
}
.review-quote {
    width: 26px;
    height: 21px;
    flex-shrink: 0;
    padding-top: 5px;
}
.review-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
}
.review-image {
    border-radius: 15px;
    overflow: hidden;
    height: 213px;
}
.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 8px;
}
.review-author {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #5F8300;
}
.review-position {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
}
.review-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    height: 82px;
    overflow: hidden;
}
.review-small-photo {
    width: 159px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
}
.review-read-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: #FAFFEC;
    border-radius: 25px;
    padding: 7px 0;
    color: #5F8300;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    cursor: pointer;
}
.review-read-more img {
    width: 27px;
    height: 27px;
}

/* ===== FAQ ===== */
.faq {
    padding: 60px 0;
    background: #FBFBFB;
}
.faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
    margin-bottom: 53px;
}
.faq-header .section-title {
    text-align: center;
    margin-bottom: 0;
}
.faq-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.21;
    color: #000;
}
.faq-grid {
    display: flex;
    gap: 48px;
}
.faq-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.faq-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 10px 9px 9.7px 0px rgba(0, 0, 0, 0.05);
}
.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 24px;
    background: #fff;
    border-radius: 15px 15px 0 0;
    cursor: pointer;
}
.faq-q-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.faq-q-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.21;
    flex: 1;
}
.faq-toggle {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    cursor: pointer;
}
.faq-divider {
    border: none;
    border-top: 1px solid #EBEBEB;
}
.faq-answer-wrap {
    background: #fff;
    border-radius: 0 0 15px 15px;
    padding: 20px 24px;
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.closed .faq-answer-wrap {
    max-height: 0;
    padding: 0 24px;
}
.faq-question {
    cursor: pointer;
}
.faq-item.closed .faq-toggle {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}
.faq-toggle {
    transition: transform 0.3s ease;
}
.faq-answer {
    background: #F3F5F4;
    border-radius: 15px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
}
.faq-cta {
    border: 1px solid #C0C0C0;
    border-radius: 15px;
    padding: 20px 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-cta h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
}
.faq-cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 390px;
    padding: 12px 32px;
    background: #96BD2F;
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
    border: none;
}

/* ===== FOOTER ===== */
.footer-main {
    background: #283734;
    display: flex;
    gap: 60px;
    padding: 60px 160px;
    max-width: 100%;
    overflow: hidden;
}
footer {
    overflow: hidden;
}
.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.footer-logo-block {
    display: flex;
    flex-direction: column;
    gap: 21px;
}
.footer-logo-block img {
    width: 218px;
    height: 57px;
    object-fit: contain;
}
.footer-desc {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    color: #D1D1D1;
}
.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.footer-badge-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-badge-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.footer-badge-item span {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}
.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.footer-col h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.footer-col-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.footer-col-links li a {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.21;
    color: #D1D1D1;
}
.footer-col-links li a:hover { color: #96BD2F; }
.footer-all-link {
    color: #96BD2F;
    font-size: 16px;
    font-weight: 300;
    line-height: 2;
}
.footer-contacts-col {
    width: 227px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-contacts-col h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.footer-contacts-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.footer-phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
a.footer-phone-item,
a.footer-email-item {
    text-decoration: none;
    color: inherit;
}
a.footer-phone-item:hover .phone-number,
a.footer-email-item:hover span {
    color: #96BD2F;
}
.footer-phone-item {
    display: flex;
    gap: 15px;
}
.footer-phone-item img {
    width: 20px;
    height: 23px;
    flex-shrink: 0;
    padding-top: 3px;
}
.footer-phone-info {
    display: flex;
    flex-direction: column;
}
.footer-phone-info .phone-number {
    font-size: 16px;
    font-weight: 400;
    color: #D1D1D1;
}
.footer-phone-info .phone-name {
    font-size: 12px;
    font-weight: 400;
    color: #D1D1D1;
}
.footer-emails {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-email-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-email-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.footer-email-item span {
    font-size: 16px;
    font-weight: 500;
    color: #D1D1D1;
}
.footer-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 32px;
    background: #96BD2F;
    border-radius: 15px;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    font-family: inherit;
    cursor: pointer;
}
.footer-address {
    display: flex;
    gap: 10px;
}
.footer-address img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.footer-address-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-address-text .addr {
    font-size: 16px;
    font-weight: 600;
    color: #D1D1D1;
}
.footer-address-text .schedule {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
}
.footer-bottom {
    background: #1F322E;
    padding: 18px 160px;
    max-width: 100%;
    overflow: hidden;
}
.footer-bottom p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #9B9B9B;
}
.check-svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ===== SERVICES HERO ===== */
.services-hero {
    padding: 45px 0;
    background: #FBFBFB;
}
.services-hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}
.services-hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.services-hero-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
}
.breadcrumb a {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.21;
    color: #000;
}
.breadcrumb span {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.21;
    color: #8D8D8D;
}
.services-hero-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.21;
    color: #000;
}
.services-hero-title span {
    color: #96BD2F;
}
.services-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: #000;
}
.services-hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}
.services-hero-image {
    flex: 1;
    height: 398px;
    border-radius: 35px;
    overflow: hidden;
    flex-shrink: 0;
}
.services-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== CARD HERO ===== */
.card-hero {
    padding: 46px 0 64px;
    background: #fff;
}
.card-hero .container {
    display: flex;
    gap: 60px;
}
.card-hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.card-hero-top {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.card-hero-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.card-hero-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.21;
    color: #000;
}
.card-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: #000;
}
.card-hero-tags {
    display: flex;
    align-items: center;
    gap: 24px;
}
.card-hero-tag {
    display: flex;
    align-items: center;
    gap: 4px;
}
.card-hero-tag img {
    width: 66px;
    height: 66px;
    object-fit: contain;
}
.card-hero-tag span {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.78;
    color: #000;
}
.card-hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}
.card-hero-image {
    flex: 1;
    height: 390px;
    border-radius: 35px;
    overflow: hidden;
    flex-shrink: 0;
}
.card-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== CATEGORY HERO ===== */
.category-hero {
    position: relative;
    padding: 32px 0 48px;
}
.category-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}
.category-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.category-hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.category-hero-top {
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.category-hero .breadcrumb a,
.category-hero .breadcrumb span {
    color: #fff;
}
.category-hero-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.21;
    color: #fff;
}
.category-hero-tabs {
    display: flex;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.4) transparent;
    padding-bottom: 8px;
}
.category-hero-tabs::-webkit-scrollbar {
    height: 4px;
}
.category-hero-tabs::-webkit-scrollbar-track {
    background: transparent;
}
.category-hero-tabs::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.4);
    border-radius: 4px;
}
.category-hero-tab {
    flex: 0 0 auto;
    background: #96BD2F;
    padding: 16px 32px;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.375;
    color: #fff;
    cursor: pointer;
    border: none;
    font-family: inherit;
    text-align: left;
}
.category-hero-tab:first-child {
    border-radius: 100px 0 0 100px;
}
.category-hero-tab:last-child {
    border-radius: 0 100px 100px 0;
}
.category-hero-tab-divider {
    width: 1px;
    align-self: stretch;
    background: #fff;
    flex-shrink: 0;
}
.category-hero-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.44;
    color: #fff;
}

/* ===== BLOG GRID ===== */
.blog-section {
    padding: 40px 0 30px;
    background: #FBFBFB;
}
.blog-filter-wrap {
    background: #fff;
    margin-top: 40px;
}
.blog-filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
}
.blog-search {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #96BD2F;
    border-radius: 25px;
    padding: 5px 14px;
    height: 32px;
    box-sizing: border-box;
}
.blog-search input {
    border: none;
    outline: none;
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #434343;
    width: 140px;
    background: transparent;
}
.blog-search input::placeholder {
    color: #434343;
}
.blog-search img {
    opacity: 0.5;
}
.blog-filter-label {
    font-size: 14px;
    color: #434343;
    margin-left: auto;
}
.blog-filter-label:last-of-type {
    margin-left: 0;
}
.blog-filter-select {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #96BD2F;
    border-radius: 25px;
    padding: 7px 14px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #5F5F5F;
    cursor: pointer;
}
.blog-filter-select img {
    width: 10px;
    height: 6px;
}
/* Blog grid rows */
.blog-row-1 {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
    align-items: stretch;
}
.blog-card-big {
    flex: 1;
    background: #fff;
    border-radius: 0;
    box-shadow: 10px 9px 9.7px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.blog-card-big .blog-card-img {
    width: 100%;
    height: 537px;
    object-fit: cover;
}
.blog-card-big .blog-card-body {
    padding: 24px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.blog-card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 20px;
    background: #96BD2F;
    border-radius: 15px;
    font-size: 14px;
    color: #fff;
    width: fit-content;
}
.blog-card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.17;
    color: #000;
}
.blog-card-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.56;
    color: #000;
}
.blog-card-date {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #747474;
    line-height: 1.75;
    margin-top: auto;
}
.blog-card-date img {
    width: 24px;
    height: 24px;
}
a.blog-card-big,
a.blog-card-medium,
a.blog-card-small {
    text-decoration: none;
    color: inherit;
    display: flex;
}
a.blog-card-big:hover,
a.blog-card-medium:hover,
a.blog-card-small:hover {
    box-shadow: 10px 9px 20px 0px rgba(0, 0, 0, 0.1);
}
.blog-right-col {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 365px;
    flex-shrink: 0;
}
.blog-right-col > :first-child {
    flex: 1;
    min-height: 0;
    overflow: hidden;
}
.blog-right-col > :last-child {
    flex-shrink: 0;
}
.blog-right-col > :first-child .blog-card-body {
    overflow: hidden;
}
.blog-right-col > :first-child .blog-card-desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
/* Medium card */
.blog-card-medium {
    background: #fff;
    border-radius: 0;
    box-shadow: 10px 9px 9.7px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.blog-card-medium .blog-card-img {
    width: 100%;
    height: 163px;
    object-fit: cover;
}
.blog-card-medium .blog-card-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.blog-card-medium .blog-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}
.blog-card-medium .blog-card-desc {
    font-size: 16px;
    line-height: 1.5;
}
/* Small card */
.blog-card-small {
    background: #fff;
    border-radius: 0;
    box-shadow: 10px 9px 9.7px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.blog-card-small .blog-card-img {
    width: 100%;
    height: 113px;
    object-fit: cover;
}
.blog-card-small .blog-card-body {
    padding: 16px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.blog-card-small .blog-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}
/* Row of 3 medium cards */
.blog-row-3 {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
}
.blog-row-3 .blog-card-medium {
    flex: 1;
}
/* Load more */
.blog-load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: #FAFFEC;
    border-radius: 15px;
    margin-bottom: 32px;
    cursor: pointer;
    font-size: 20px;
    color: #96BD2F;
}
.blog-load-more img {
    width: 24px;
    height: 24px;
}
/* Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.blog-pagination .page-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DFE3E8;
    border-radius: 4px;
    font-size: 14px;
    color: #212B36;
    cursor: pointer;
    background: #fff;
}
.blog-pagination .page-num.active {
    border-color: #96BD2F;
    font-weight: 600;
}
.blog-pagination .page-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    background: #D0D0D0;
    opacity: 0.5;
}
.blog-pagination .page-arrow.active-arrow {
    opacity: 1;
    background: #fff;
    border: 1px solid #DFE3E8;
}

/* ===== ABOUT ===== */
.about-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 104px 0;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-breadcrumb {
    position: absolute;
    top: 32px;
    left: 160px;
}
.about-breadcrumb a, .about-breadcrumb span {
    color: #DADADA;
}
.about-hero-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 45px;
    padding: 44px 100px;
    text-align: center;
    max-width: 865px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-hero-logo {
    max-width: 366px;
    margin-bottom: 24px;
}
.about-hero-title {
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
    color: #000;
    text-align: center;
    margin-bottom: 12px;
}
.about-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: #000;
    text-align: center;
}
/* О компании */
.about-company {
    padding: 80px 0;
}
.about-company-row {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.about-company-photo {
    width: 600px;
    flex-shrink: 0;
    border-radius: 35px;
    object-fit: cover;
}
.about-company-text {
    flex: 1;
    padding-top: 20px;
}
.about-company-text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: #000;
    margin-bottom: 16px;
}
.about-company-text p:last-child {
    margin-bottom: 0;
}
/* История */
.about-history {
    padding: 80px 0 0;
}
.history-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.history-item {
    display: flex;
    gap: 40px;
    align-items: stretch;
}
.history-dot-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 24px;
}
.history-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 4px solid #96BD2F;
    box-sizing: border-box;
    background: #fff;
    flex-shrink: 0;
}
.history-line {
    width: 6px;
    flex: 1;
    background: #DBECAE;
    border-radius: 3px;
}
.history-year {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.21;
    color: #000;
    white-space: nowrap;
    min-width: 133px;
    margin-top: -6px;
}
.history-content {
    padding-bottom: 60px;
}
.history-item:last-child .history-content {
    padding-bottom: 0;
}
.history-content h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.21;
    color: #000;
    margin-bottom: 8px;
}
.history-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: #000;
}
/* Миссия */
.about-mission {
    padding: 80px 0 0;
}
.mission-box {
    background: rgba(255, 255, 255, 0.85);
    border: 8px solid #96BD2F;
    border-radius: 25px;
    padding: 32px 56px 32px 16px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.mission-icon {
    width: 107px;
    height: 107px;
    flex-shrink: 0;
}
.mission-box p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.7;
    color: #000;
    text-align: left;
}
/* Цели */
.about-goals {
    padding: 90px 0 0;
}
.goals-grid {
    display: flex;
    gap: 40px;
}
.goals-card {
    flex: 1;
    text-align: center;
}
.goals-card img {
    width: 159px;
    height: 124px;
    margin-bottom: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}
.goals-card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #000;
    text-align: center;
}
/* Ценности */
.about-values {
    padding: 66px 0 0;
}
.values-grid {
    display: flex;
    gap: 120px;
    justify-content: flex-start;
}
.values-card {
    text-align: center;
}
.values-card img {
    width: 159px;
    height: 124px;
    object-fit: contain;
    display: block;
    margin: 0 auto 16px;
}
.values-card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.44;
    color: #000;
    max-width: 230px;
}
/* Команда */
.about-team {
    padding: 100px 0 0;
}
.team-grid {
    display: flex;
    gap: 32px 50px;
    flex-wrap: wrap;
}
.team-card {
    flex: 0 0 calc((100% - 150px) / 4);
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 20px 30px;
    box-sizing: border-box;
}
.team-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #E0E0E0;
    margin: 0 auto 20px;
    overflow: hidden;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
    margin-bottom: 4px;
}
.team-card p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.21;
    color: #535353;
}
/* Сертификаты */
.about-certs {
    padding: 68px 0 80px;
}
.certs-row {
    display: flex;
    gap: 100px;
    align-items: center;
}
.certs-images {
    position: relative;
    width: 630px;
    height: 470px;
    flex-shrink: 0;
}
.cert-img-small {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 231px;
    height: 330px;
    object-fit: cover;
    z-index: 1;
}
.cert-img-large {
    position: absolute;
    left: 156px;
    top: 0;
    width: 328px;
    height: 470px;
    object-fit: cover;
    z-index: 2;
}
.cert-img-medium {
    position: absolute;
    left: 379px;
    top: 50%;
    transform: translateY(-50%);
    width: 249px;
    height: 353px;
    object-fit: cover;
    z-index: 3;
}
.certs-info {
    flex: 1;
}
.certs-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 32px 0;
}
.cert-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}
.certs-title {
    color: #333;
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
    text-align: left;
}
.cert-stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #96BD2F;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cert-stat p {
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    color: #000;
}
.certs-dots {
    display: flex;
    gap: 11px;
    margin-top: 24px;
    background: #fff;
    border-radius: 33px;
    padding: 5px 14px;
    width: fit-content;
    margin-left: 268px;
}
.cert-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6A6A6A;
}
.cert-dot.active {
    background: #96BD2F;
}
/* Партнёры */
.about-partners {
    padding: 0 0 80px;
    text-align: center;
}

/* ===== CONTACTS ===== */
.contacts-section {
    padding: 46px 0 80px;
    background: #FBFBFB;
}
.contacts-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.21;
    color: #000;
    margin-bottom: 48px;
}
.contacts-cards {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}
.contacts-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contacts-card-icon {
    width: 63px;
    height: 63px;
}
.contacts-card h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: #000;
    margin-bottom: 4px;
}
.contacts-card p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: #000;
}
.contacts-card p b {
    font-weight: 700;
}
.contacts-card a {
    color: #000;
    text-decoration: underline;
}
.contacts-map {
    position: relative;
    border-radius: 35px;
    border: 10px solid #96BD2F;
    overflow: hidden;
}
.contacts-map-img {
    width: 100%;
    display: block;
    filter: grayscale(100%);
}
.contacts-map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    width: 126px;
    height: 126px;
}

/* ===== CERTIFICATE LIGHTBOX ===== */
.cert-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.cert-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

/* ===== CONTACTS EXTRA ===== */
.contacts-schedule {
    margin-top: 8px;
    font-size: 16px !important;
    color: #555 !important;
}
.contacts-whatsapp {
    padding: 60px 0;
}
.contacts-qr-block {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #F5F7F0;
    border-radius: 20px;
    padding: 40px;
}
.contacts-qr-img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
}
.contacts-qr-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.contacts-qr-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}
.contacts-requisites {
    padding: 40px 0 60px;
}
.requisites-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}
.requisites-text p {
    margin-bottom: 8px;
}
.contacts-form-section {
    padding: 0 0 60px;
}
.contacts-feedback-form {
    max-width: 700px;
    margin: 0 auto;
    background: #F5F7F0;
    border-radius: 20px;
    padding: 40px;
}

/* ===== ARTICLE ===== */
.article-section {
    padding: 32px 0 80px;
    background: #FBFBFB;
}
.article-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.21;
    color: #000;
    margin-bottom: 24px;
}
.article-hero-img {
    width: 100%;
    border-radius: 0;
    object-fit: cover;
    margin-bottom: 40px;
}
.article-highlight {
    background: #FAFFEC;
    padding: 31px 56px;
    margin-bottom: 40px;
}
.article-highlight p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: #000;
}
.article-text {
    margin-bottom: 40px;
}
.article-text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: #000;
    margin-bottom: 20px;
}
.article-text p:last-child {
    margin-bottom: 0;
}
.article-text u {
    text-decoration: underline;
}
.article-quote {
    background: #FAFFEC;
    padding: 37px 56px 37px 113px;
    margin-bottom: 40px;
    position: relative;
}
.article-quote-icon {
    position: absolute;
    left: 40px;
    top: 48px;
    width: 45px;
    height: 40px;
}
.article-quote p {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.7;
    color: #000;
}
.article-row {
    display: flex;
    gap: 56px;
    align-items: flex-start;
    margin-bottom: 40px;
}
.article-row-img {
    width: 560px;
    flex-shrink: 0;
    object-fit: cover;
}
.article-row-text {
    flex: 1;
}
.article-row-text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: #000;
}
.article-row-reverse {
    flex-direction: row;
}
/* Subscribe */
.article-subscribe {
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 10px 9px 9.7px 0px rgba(0, 0, 0, 0.05);
    margin: 60px auto 80px;
    max-width: 952px;
}
.article-subscribe-img {
    width: 474px;
    height: 314px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 15px 0 0 15px;
}
.article-subscribe-form {
    background: #F5F5F5;
    padding: 32px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.article-subscribe-form h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: #000;
    margin-bottom: 12px;
}
.article-subscribe-form p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    margin-bottom: 24px;
}
.article-subscribe-form input {
    padding: 12px 16px;
    border: 1px solid #9DA6AF;
    border-radius: 15px;
    font-family: Inter, sans-serif;
    font-size: 16px;
    background: #fff;
    margin-bottom: 16px;
    box-sizing: border-box;
    outline: none;
    max-width: 329px;
}
.article-subscribe-form .btn-calc {
    max-width: 329px;
    width: 100%;
    background: #96BD2F;
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 14px 32px;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}
/* Recommended */
.article-recommended-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.21;
    color: #000;
    margin-bottom: 48px;
}
.article-recommended {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}
.article-recommended-cards {
    display: flex;
    gap: 40px;
    flex: 1;
}
.article-recommended-cards .blog-card-medium {
    flex: 1;
}
.article-nav-arrow {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.article-nav-arrow img {
    width: 50px;
    height: 50px;
}

/* ===== SUBSERVICES ===== */
.subservices {
    padding: 60px 0 120px;
    background: #FBFBFB;
}
.subservices .section-title {
    text-align: left;
    margin-bottom: 48px;
    color: #131313;
}
.subservices-grid {
    display: flex;
    gap: 80px;
}
.subservice-card {
    flex: 1;
    background: #fff;
    border-radius: 15px;
    box-shadow: 10px 9px 9.7px 0px rgba(0, 0, 0, 0.05);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 68px;
}
.subservice-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.subservice-card-top img {
    width: 107px;
    height: 101px;
    border-radius: 50%;
    object-fit: cover;
}
.subservice-card-top h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.21;
    text-align: center;
    color: #000;
}
.subservice-card-btn {
    display: inline-flex;
    align-items: flex-end;
    gap: 12px;
    padding: 7px 24px;
    background: #FAFFEC;
    border-radius: 50px;
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    color: #5F8300;
    cursor: pointer;
}
.subservice-card-btn img {
    width: 27px;
    height: 27px;
}

/* ===== PRICE CALCULATOR ===== */
.price-calc {
    padding: 120px 0 80px;
    background: #FBFBFB;
}
.price-calc-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}
.price-calc-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 50px 50px;
    box-shadow: 10px 9px 9.7px 0px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}
.price-calc-route {
    display: flex;
    gap: 30px;
}
.price-calc-field {
    flex: 1;
}
.price-calc-field label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #000;
}
.price-calc-field input {
    width: 100%;
    height: 48px;
    border: 1px solid #C0C0C0;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 16px;
    font-family: inherit;
    color: #000;
    outline: none;
    background: #fff;
}
.price-calc-route {
    align-items: center;
}
.price-calc-swap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #9B9B9B;
    font-size: 22px;
    flex-shrink: 0;
    cursor: pointer;
    margin-top: 30px;
}
.price-calc-checks {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    margin-top: 30px;
}
.price-calc-checks .calc-check-group {
    flex: 1;
    display: flex;
    align-items: center;
}
.price-calc-checks .calc-check-spacer {
    width: 22px;
    flex-shrink: 0;
}
.price-calc-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
}
.price-calc-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 1px solid #C0C0C0;
    border-radius: 4px;
    cursor: pointer;
    accent-color: #96BD2F;
}
.price-calc-bottom {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.price-calc-bottom-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
}
.price-calc-params {
    display: flex;
    gap: 40px;
}
.price-calc-param label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #000;
}
.price-calc-param-input {
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-calc-param-input input {
    width: 70px;
    height: 48px;
    border: 1px solid #C0C0C0;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 16px;
    font-family: inherit;
    color: #000;
    outline: none;
    text-align: center;
}
.price-calc-param-input span {
    font-size: 16px;
    color: #000;
}
.price-calc-btn {
    width: 100%;
    max-width: 400px;
    height: 56px;
    background: #96BD2F;
    border: none;
    border-radius: 15px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
}
.price-calc-results {
    width: 380px;
    flex-shrink: 0;
    background: #F5F5F5;
    border-radius: 15px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.price-calc-results-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 4px;
}
.price-calc-result-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price-calc-result-row span:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.price-calc-result-row .result-value {
    font-size: 32px;
    font-weight: 700;
    color: #96BD2F;
}
.price-calc-result-row .result-value-small {
    font-size: 20px;
    font-weight: 700;
    color: #96BD2F;
}
.price-calc-results-note {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #9B9B9B;
    margin-top: 4px;
}

/* ===== OUR SERVICES (services page) ===== */
.our-services {
    padding: 60px 0;
    background: #FBFBFB;
}
.our-services .section-title {
    text-align: center;
    margin-bottom: 60px;
}
.our-services-grid {
    display: flex;
    flex-direction: column;
    gap: 54px;
}
.our-services-row {
    display: flex;
    gap: 70px;
}
.our-service-card {
    flex: 1;
    background: #fff;
    box-shadow: 10px 9px 9.7px 0px rgba(0, 0, 0, 0.05);
    padding: 24px 34px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.our-service-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.our-service-card-top img {
    width: 100px;
    height: 80px;
    object-fit: contain;
}
.our-service-card-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.our-service-card-text h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    color: #000;
}
.our-service-card-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: #000;
}
.our-service-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.our-service-card-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 1px solid #96BD2F;
    border-radius: 100px;
    background: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    color: #5F8300;
    cursor: pointer;
}
.our-service-card-link {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    text-align: center;
    color: #5F8300;
}

/* ===== SERVICES ABOUT ===== */
.services-about {
    padding: 60px 0;
    background: #FBFBFB;
}
.services-about .container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.services-about-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.33;
    color: #000;
}
.services-about-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
}
.services-about-row {
    display: flex;
    gap: 70px;
}
.services-about-row img {
    width: 50%;
    height: 503px;
    flex-shrink: 0;
    object-fit: cover;
}
.services-about-row-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

/* ============================================= */
/* ===== RESPONSIVE MEDIA QUERIES ===== */
/* ============================================= */

/* Burger button - hidden by default */
.header-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    flex-shrink: 0;
}
.header-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.header-burger.active span:nth-child(2) {
    opacity: 0;
}
.header-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 998;
    padding: 84px 20px 40px;
    overflow-y: auto;
}
.mobile-menu.active {
    display: block;
}
.header {
    z-index: 1000;
}
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #F3F5F4;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
.mobile-menu-phone small {
    margin-left: auto;
    font-size: 13px;
    font-weight: 400;
    color: #888;
}
.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 16px;
}
.mobile-nav-links li a {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    border-bottom: 1px solid #EBEBEB;
}
.mobile-nav-links li a:hover {
    color: #96BD2F;
}
body.menu-open {
    overflow: hidden;
}

/* ===== 1350px - hide RU + user ===== */
@media (max-width: 1350px) {
    .header-lang { display: none; }
    .header-user { display: none; }
    .btn-track { margin-right: 0; }
}
/* ===== 1200px - hide search, reduce gaps ===== */
@media (max-width: 1200px) {
    .header-search { display: none; }
    .header-logo { margin-right: 20px; }
    .header-phones {
        gap: 12px;
        margin-right: 16px;
    }
    /* hide 3rd phone */
    .header-phone:nth-child(3) { display: none; }

    .hero .container {
        gap: 24px;
    }
    .hero-content {
        max-width: 500px;
    }

    .trust-bar .container {
        gap: 40px;
    }
    .trust-item {
        font-size: 16px;
    }

    .cases-grid {
        gap: 40px;
    }
    .case-card {
        width: auto;
        flex: 1;
    }

    .reviews-grid {
        gap: 24px;
    }
    .review-card {
        width: auto;
        flex: 1;
    }

    .faq-grid {
        gap: 32px;
    }

    .footer-main {
        gap: 40px;
        padding: 60px 80px;
    }
    .footer-bottom {
        padding: 18px 80px;
    }

    .about-company-photo {
        width: 400px;
    }
    .about-row1-text {
        width: auto;
        flex: 1;
    }
    .about-row2-text {
        width: auto;
        flex: 1;
    }
    .about-row2 .about-img {
        width: auto;
        flex: 1;
        height: 400px;
    }

    .certs-row {
        gap: 40px;
    }
    .certs-images {
        width: 400px;
        height: 320px;
    }
    .cert-img-small {
        width: 150px;
        height: 220px;
    }
    .cert-img-large {
        left: 100px;
        width: 220px;
        height: 320px;
    }
    .cert-img-medium {
        left: 240px;
        width: 160px;
        height: 240px;
    }
    .certs-dots {
        margin-left: 160px;
    }

    .article-row-img {
        width: 400px;
    }

    .subservices-grid {
        gap: 40px;
    }

    .price-calc-card {
        padding: 30px 30px 40px;
    }

    .values-grid {
        gap: 60px;
    }

    .our-services-row {
        gap: 32px;
    }
}

/* ===== 992px - Tablets ===== */
@media (max-width: 992px) {
    /* Header — hide 2nd phone, keep 1 */
    .header-phone:nth-child(2) { display: none; }
    .header-phones { margin-right: 16px; }

    /* Hero */
    .hero .container {
        gap: 20px;
    }
    .hero-content {
        max-width: none;
        flex: 1;
    }
    .hero-title {
        font-size: 32px;
        line-height: 40px;
    }
    .hero-subtitle {
        font-size: 18px;
        line-height: 26px;
    }
    .hero-form {
        width: 240px;
    }
    .hero-form .input-phone,
    .hero-form .btn-primary {
        width: 100%;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }
    .service-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
    .service-card:nth-child(2) { grid-column: 3; grid-row: 1; }
    .service-card:nth-child(3) { grid-column: 1; grid-row: 2; }
    .service-card:nth-child(4) { grid-column: 2 / 4; grid-row: 2 / 4; }
    .service-card:nth-child(5) { grid-column: 1; grid-row: 3; }
    .service-card:nth-child(6) { grid-column: 1; grid-row: 4; }
    .service-card:nth-child(7) { grid-column: 2; grid-row: 4; }
    .service-card:nth-child(8) { grid-column: 3; grid-row: 4; }
    .service-card {
        min-height: 220px;
    }
    .service-card-label {
        font-size: 22px;
        bottom: 24px;
        left: 16px;
    }

    /* Pricing */
    .pricing-note {
        font-size: 20px;
    }

    /* Section titles */
    .section-title {
        font-size: 32px;
    }

    /* Footer */
    .footer-main {
        padding: 60px 40px;
        gap: 32px;
    }
    .footer-bottom {
        padding: 18px 40px;
    }
    .footer-contacts-col {
        width: auto;
    }

    /* Card Hero */
    .card-hero .container {
        gap: 32px;
    }
    .card-hero-image {
        height: 300px;
    }

    /* Services Hero */
    .services-hero .container {
        gap: 32px;
    }
    .services-hero-image {
        height: 300px;
    }

    /* About Company */
    .about-company-row {
        gap: 32px;
    }
    .about-company-photo {
        width: 320px;
    }

    /* Calculator */
    .calc-form {
        padding: 30px 30px 40px 30px;
    }

    /* Blog */
    .blog-row-1 {
        gap: 24px;
    }
    .blog-right-col {
        width: 280px;
        gap: 24px;
    }
    .blog-row-3 {
        gap: 24px;
    }

    /* Article */
    .article-row-img {
        width: 300px;
    }
    .article-subscribe-img {
        width: 300px;
    }

    /* Subservices */
    .subservices-grid {
        gap: 24px;
    }

    /* Price Calculator */
    .price-calc-bottom {
        flex-direction: column;
    }
    .price-calc-results {
        width: 100%;
    }
    .price-calc-checks {
        flex-wrap: wrap;
        gap: 16px;
    }

    /* Our Services */
    .our-services-row {
        gap: 24px;
    }

    /* Category Hero Tabs */
    .category-hero-tab {
        font-size: 14px;
        padding: 12px 16px;
    }

    /* About page */
    .about-hero-card {
        padding: 32px 40px;
    }
    .about-hero-title {
        font-size: 32px;
    }

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

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

    .team-card {
        flex: 0 0 calc((100% - 100px) / 3);
    }

    .history-item {
        gap: 24px;
    }
    .history-year {
        font-size: 28px;
        min-width: 100px;
    }
}

/* ===== 768px - Small tablets ===== */
@media (max-width: 768px) {
    /* General */
    .section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    img {
        max-width: 100%;
    }

    /* Header */
    .header-phones {
        display: none;
    }
    .header-burger {
        display: flex;
    }
    .header-logo {
        margin-right: auto;
    }
    .header > .container > .btn-track {
        display: none;
    }
    .header .container {
        padding: 0 20px;
    }

    /* Hero */
    .hero .container {
        flex-direction: column;
        padding-top: 32px;
        padding-bottom: 32px;
        gap: 24px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    .hero-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    .hero-form {
        width: 100%;
    }
    .hero-form .input-phone,
    .hero-form .btn-primary {
        width: 100%;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    /* Trust Bar */
    .trust-bar {
        height: auto;
        padding: 20px 0;
    }
    .trust-bar .container {
        flex-wrap: wrap;
        gap: 16px 32px;
        justify-content: center;
    }
    .trust-item {
        font-size: 14px;
        gap: 10px;
    }
    .trust-item img {
        width: 30px;
        height: 30px;
    }

    /* Service Types */
    .service-types .container {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .service-type-item {
        flex: 0 0 calc(50% - 20px);
    }
    .service-type-item img {
        height: 50px;
    }
    .service-type-item span {
        font-size: 14px;
    }

    /* Services Grid */
    .services {
        padding: 40px 0 0;
    }
    .services .section-title {
        margin-bottom: 32px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .service-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
    .service-card:nth-child(2) { grid-column: 1; grid-row: 2; }
    .service-card:nth-child(3) { grid-column: 2; grid-row: 2; }
    .service-card:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }
    .service-card:nth-child(5) { grid-column: 1; grid-row: 4; }
    .service-card:nth-child(6) { grid-column: 2; grid-row: 4; }
    .service-card:nth-child(7) { grid-column: 1; grid-row: 5; }
    .service-card:nth-child(8) { grid-column: 2; grid-row: 5; }
    .service-card {
        min-height: 180px;
    }
    .service-card-label {
        font-size: 18px;
        bottom: 16px;
        left: 14px;
    }

    /* Pricing */
    .pricing {
        padding: 60px 0 40px;
    }
    .pricing-note {
        font-size: 18px;
        margin-bottom: 32px;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 20px;
    }
    .price-card {
        padding: 24px 20px 28px;
    }
    .price-card-title {
        font-size: 20px;
    }
    .price-card-price {
        font-size: 18px;
    }
    .price-card-info,
    .price-card-rate {
        font-size: 16px;
    }
    .pricing-divider {
        margin: 32px 0;
    }

    /* Why Us */
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 30px;
        row-gap: 30px;
    }
    .why-us-card {
        max-width: none;
    }
    .why-us-card p {
        font-size: 16px;
        line-height: 24px;
    }

    /* Geography */
    .geography {
        padding: 60px 0 40px;
    }
    .geography-map img {
        max-width: 100%;
        height: auto;
    }

    /* About section (homepage) */
    .about-row1 {
        flex-direction: column;
        gap: 24px;
    }
    .about-row1 .about-img {
        width: 100%;
        height: 250px;
    }
    .about-row1-text {
        width: 100%;
    }
    .about-row2 {
        flex-direction: column;
        gap: 24px;
    }
    .about-row2-text {
        width: 100%;
    }
    .about-row2 .about-img {
        width: 100%;
        height: 300px;
    }
    .about-big {
        font-size: 18px;
        line-height: 28px;
    }

    /* Cases */
    .cases .section-title {
        margin-bottom: 40px;
    }
    .cases-grid {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }
    .case-card {
        width: calc(50% - 12px);
        flex-shrink: 0;
    }
    .case-card-image {
        height: 220px;
    }
    .case-card-body {
        height: auto;
        padding: 16px 20px;
    }

    /* Reviews */
    .reviews-wrapper {
        flex-direction: column;
        gap: 16px;
    }
    .reviews-nav {
        display: none;
    }
    .reviews-grid {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }
    .review-card {
        width: 100%;
    }

    /* FAQ */
    .faq-grid {
        flex-direction: column;
        gap: 24px;
    }
    .faq-q-text {
        font-size: 16px;
    }
    .faq-cta-btn {
        width: 100%;
    }

    /* Services About */
    .services-about-row {
        flex-direction: column;
        gap: 24px;
    }
    .services-about-row img {
        width: 100%;
        height: 300px;
    }
    .services-about-row-text {
        width: 100%;
    }

    /* Calculator */
    .calc-wrapper {
        flex-direction: column;
    }
    .calc-image {
        width: 100%;
        height: 250px;
    }
    .calc-form {
        width: 100%;
        padding: 24px 20px 32px;
        border-radius: 0 0 15px 15px;
    }

    /* Footer */
    .footer-main {
        flex-wrap: wrap;
        padding: 40px 32px;
        gap: 32px;
    }
    .footer-left {
        flex: 0 0 100%;
    }
    .footer-col {
        flex: 0 0 calc(50% - 16px);
    }
    .footer-contacts-col {
        flex: 0 0 calc(50% - 16px);
        width: auto;
    }
    .footer-bottom {
        padding: 18px 32px;
    }

    /* Card Hero */
    .card-hero .container {
        flex-direction: column;
        gap: 24px;
    }
    .card-hero-image {
        width: 100%;
        height: 280px;
        order: 2;
    }
    .card-hero-left {
        order: 1;
    }
    .card-hero-title {
        font-size: 28px;
    }
    .card-hero-subtitle {
        font-size: 16px;
    }
    .card-hero-tags {
        flex-wrap: wrap;
        gap: 12px;
    }
    .card-hero-buttons {
        flex-direction: column;
    }
    .card-hero-buttons .btn-primary,
    .card-hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }

    /* Services Hero */
    .services-hero .container {
        flex-direction: column;
        gap: 24px;
    }
    .services-hero-image {
        width: 100%;
        height: 280px;
    }
    .services-hero-title {
        font-size: 28px;
    }
    .services-hero-buttons {
        flex-direction: column;
    }
    .services-hero-buttons .btn-primary,
    .services-hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }

    /* Category Hero */
    .category-hero-title {
        font-size: 28px;
    }
    .category-hero-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    .category-hero-tab {
        border-radius: 15px !important;
        text-align: center;
    }
    .category-hero-tab-divider {
        display: none;
    }

    /* About page */
    .about-hero {
        padding: 60px 0;
    }
    .about-hero-card {
        padding: 24px 24px;
        border-radius: 25px;
    }
    .about-hero-title {
        font-size: 28px;
    }
    .about-hero-subtitle {
        font-size: 16px;
    }
    .about-breadcrumb {
        left: 20px;
    }

    .about-company {
        padding: 40px 0;
    }
    .about-company-row {
        flex-direction: column;
        gap: 24px;
    }
    .about-company-photo {
        width: 100%;
        border-radius: 15px;
    }
    .about-company-text p {
        font-size: 16px;
    }

    .history-year {
        font-size: 24px;
        min-width: 80px;
    }
    .history-content h4 {
        font-size: 20px;
    }
    .history-content p {
        font-size: 16px;
    }
    .history-content {
        padding-bottom: 32px;
    }

    .mission-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    .mission-box p {
        font-size: 18px;
        text-align: center;
    }

    .goals-grid {
        flex-wrap: wrap;
        gap: 24px;
    }
    .goals-card {
        flex: 0 0 calc(50% - 12px);
    }

    .values-grid {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .values-card {
        flex: 0 0 calc(50% - 12px);
    }

    .team-card {
        flex: 0 0 calc(50% - 16px);
    }

    .certs-row {
        flex-direction: column;
        gap: 32px;
    }
    .certs-images {
        width: 100%;
        height: 300px;
    }
    .cert-img-small {
        width: 130px;
        height: 190px;
    }
    .cert-img-large {
        left: 90px;
        width: 180px;
        height: 260px;
    }
    .cert-img-medium {
        left: 210px;
        width: 140px;
        height: 200px;
    }
    .certs-dots {
        margin-left: auto;
        margin-right: auto;
    }
    .certs-title {
        font-size: 28px;
    }

    /* Contacts */
    .contacts-title {
        font-size: 28px;
    }
    .contacts-cards {
        flex-wrap: wrap;
        gap: 32px;
    }
    .contacts-card {
        flex: 0 0 calc(50% - 16px);
    }
    .contacts-map {
        border-radius: 15px;
        border-width: 5px;
    }

    /* Blog */
    .blog-row-1 {
        flex-direction: column;
        gap: 24px;
    }
    .blog-right-col {
        width: 100%;
        flex-direction: row;
        gap: 24px;
    }
    .blog-right-col > * {
        flex: 1;
    }
    .blog-row-3 {
        flex-wrap: wrap;
        gap: 24px;
    }
    .blog-row-3 .blog-card-medium {
        flex: 0 0 calc(50% - 12px);
    }
    .blog-filter-bar {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Article */
    .article-title {
        font-size: 28px;
    }
    .article-row {
        flex-direction: column;
        gap: 24px;
    }
    .article-row-img {
        width: 100%;
    }
    .article-quote {
        padding: 24px 24px 24px 70px;
    }
    .article-quote-icon {
        left: 20px;
        top: 28px;
        width: 32px;
        height: 28px;
    }
    .article-quote p {
        font-size: 20px;
    }
    .article-subscribe {
        flex-direction: column;
    }
    .article-subscribe-img {
        width: 100%;
        height: 200px;
        border-radius: 15px 15px 0 0;
    }
    .article-subscribe-form {
        padding: 24px;
    }
    .article-recommended-cards {
        flex-wrap: wrap;
        gap: 24px;
    }
    .article-recommended-cards .blog-card-medium {
        flex: 0 0 calc(50% - 12px);
    }
    .article-nav-arrow {
        display: none;
    }

    /* Subservices */
    .subservices {
        padding: 40px 0 60px;
    }
    .subservices-grid {
        flex-wrap: wrap;
        gap: 24px;
    }
    .subservice-card {
        flex: 0 0 calc(50% - 12px);
    }

    /* Price Calculator page */
    .price-calc {
        padding: 60px 0 40px;
    }
    .price-calc-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    .price-calc-route {
        flex-direction: column;
        gap: 16px;
    }
    .price-calc-swap {
        flex-direction: row;
        margin-top: 0;
    }
    .price-calc-params {
        flex-wrap: wrap;
        gap: 16px;
    }

    /* Our Services page */
    .our-services-row {
        flex-wrap: wrap;
    }
    .our-service-card {
        flex: 0 0 calc(50% - 12px);
    }

    /* Blog pagination */
    .blog-pagination {
        gap: 6px;
    }
    .blog-pagination .page-num,
    .blog-pagination .page-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    /* Contacts WhatsApp QR */
    .contacts-qr-block {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .contacts-qr-img {
        width: 160px;
        height: 160px;
    }

    /* Blog card links */
    a.blog-card-big,
    a.blog-card-medium,
    a.blog-card-small {
        flex-direction: column;
    }
}

/* ===== 576px - Mobile ===== */
@media (max-width: 576px) {
    /* General typography */
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .hero-title {
        font-size: 24px;
        line-height: 32px;
    }
    .hero-subtitle {
        font-size: 14px;
        line-height: 22px;
    }
    .hero-checks li {
        font-size: 14px;
        line-height: 28px;
    }

    /* Trust Bar */
    .trust-bar .container {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .trust-item {
        white-space: normal;
        text-align: center;
    }

    /* Service Types */
    .service-type-item {
        flex: 0 0 calc(50% - 10px);
    }
    .service-type-item img {
        height: 40px;
    }
    .service-type-item span {
        font-size: 12px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5),
    .service-card:nth-child(6),
    .service-card:nth-child(7),
    .service-card:nth-child(8) {
        grid-column: 1;
        grid-row: auto;
    }
    .service-card {
        min-height: 200px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .price-card {
        padding: 20px 16px 24px;
    }
    .price-card-title {
        font-size: 18px;
    }
    .price-card-price {
        font-size: 16px;
    }
    .price-card-info,
    .price-card-rate {
        font-size: 14px;
    }

    /* Why Us */
    .why-us-grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }
    .why-us-card img {
        width: 120px;
        height: 94px;
    }

    /* Cases */
    .cases-grid {
        flex-direction: column;
        gap: 20px;
    }
    .case-card {
        width: 100%;
    }

    /* Reviews */
    .reviews-grid {
        gap: 16px;
    }
    .review-card {
        padding: 16px 16px 20px;
    }
    .review-image {
        height: 160px;
    }

    /* FAQ */
    .faq-header {
        margin-bottom: 24px;
    }
    .faq-subtitle {
        font-size: 14px;
    }
    .faq-q-text {
        font-size: 14px;
    }
    .faq-cta {
        padding: 16px 20px;
    }
    .faq-cta h3 {
        font-size: 18px;
    }

    /* Calculator */
    .calc-image {
        height: 180px;
    }
    .calc-form h3 {
        font-size: 20px;
    }

    /* Footer */
    .footer-main {
        flex-direction: column;
        padding: 40px 20px;
        gap: 32px;
    }
    .footer-left {
        flex: auto;
    }
    .footer-col {
        flex: auto;
        width: 100%;
    }
    .footer-contacts-col {
        flex: auto;
        width: 100%;
    }
    .footer-bottom {
        padding: 16px 20px;
    }

    /* Card Hero */
    .card-hero {
        padding: 24px 0 32px;
    }
    .card-hero-top {
        flex-direction: column;
        gap: 16px;
    }
    .card-hero-title {
        font-size: 24px;
    }
    .card-hero-subtitle {
        font-size: 14px;
    }
    .card-hero-tag img {
        width: 48px;
        height: 48px;
    }
    .card-hero-tag span {
        font-size: 14px;
    }
    .card-hero-image {
        height: 220px;
    }

    /* Services Hero */
    .services-hero-title {
        font-size: 24px;
    }
    .services-hero-subtitle {
        font-size: 16px;
    }
    .services-hero-image {
        height: 220px;
    }

    /* Category Hero */
    .category-hero {
        padding: 20px 0 32px;
    }
    .category-hero-title {
        font-size: 24px;
    }
    .category-hero-desc {
        font-size: 14px;
    }

    /* About page */
    .about-hero {
        padding: 40px 0;
    }
    .about-hero-card {
        padding: 20px 16px;
        border-radius: 15px;
    }
    .about-hero-title {
        font-size: 24px;
    }
    .about-hero-subtitle {
        font-size: 14px;
    }
    .about-hero-logo {
        max-width: 240px;
    }
    .about-breadcrumb {
        left: 16px;
        top: 16px;
    }
    .breadcrumb a {
        font-size: 14px;
    }
    .breadcrumb span {
        font-size: 12px;
    }

    .about-company-text p {
        font-size: 14px;
    }

    .history-item {
        gap: 12px;
    }
    .history-year {
        font-size: 20px;
        min-width: 60px;
    }
    .history-content h4 {
        font-size: 16px;
    }
    .history-content p {
        font-size: 14px;
    }

    .mission-box p {
        font-size: 16px;
    }
    .mission-icon {
        width: 70px;
        height: 70px;
    }

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

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

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

    .certs-images {
        height: 220px;
    }
    .cert-img-small {
        width: 100px;
        height: 140px;
    }
    .cert-img-large {
        left: 70px;
        width: 140px;
        height: 200px;
    }
    .cert-img-medium {
        left: 160px;
        width: 110px;
        height: 155px;
    }
    .certs-title {
        font-size: 24px;
    }
    .cert-stat p {
        font-size: 14px;
    }

    /* Contacts */
    .contacts-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .contacts-cards {
        flex-direction: column;
        gap: 24px;
    }
    .contacts-card {
        flex: auto;
        width: 100%;
    }
    .contacts-card h4 {
        font-size: 18px;
    }
    .contacts-card p {
        font-size: 16px;
    }

    /* Blog */
    .blog-right-col {
        flex-direction: column;
        gap: 16px;
    }
    .blog-card-big .blog-card-img {
        height: 250px;
    }
    .blog-row-3 .blog-card-medium {
        flex: 0 0 100%;
    }
    .blog-card-title {
        font-size: 18px;
    }
    .blog-card-desc {
        font-size: 14px;
    }

    /* Article */
    .article-title {
        font-size: 24px;
    }
    .article-highlight {
        padding: 20px 24px;
    }
    .article-highlight p {
        font-size: 16px;
    }
    .article-text p {
        font-size: 16px;
    }
    .article-quote p {
        font-size: 16px;
    }
    .article-row-text p {
        font-size: 16px;
    }
    .article-subscribe-form h3 {
        font-size: 20px;
    }
    .article-recommended-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .article-recommended-cards .blog-card-medium {
        flex: 0 0 100%;
    }

    /* Subservices */
    .subservice-card {
        flex: 0 0 100%;
        gap: 32px;
    }
    .subservice-card-top h3 {
        font-size: 20px;
    }

    /* Price Calculator page */
    .price-calc-title {
        font-size: 24px;
    }
    .price-calc-card {
        padding: 20px 16px 28px;
    }
    .price-calc-checks {
        flex-direction: column;
        gap: 12px;
    }
    .price-calc-params {
        flex-direction: column;
        gap: 16px;
    }
    .price-calc-btn {
        max-width: 100%;
        font-size: 16px;
    }
    .price-calc-result-row .result-value {
        font-size: 24px;
    }

    /* Our Services page */
    .our-service-card {
        flex: 0 0 100%;
    }
    .our-services-row {
        flex-direction: column;
        gap: 24px;
    }

    /* Services About */
    .services-about-row img {
        height: 220px;
    }
    .services-about-title {
        font-size: 20px;
    }
    .services-about-text {
        font-size: 16px;
    }

    /* Blog pagination mobile */
    .blog-pagination {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .blog-pagination .page-num,
    .blog-pagination .page-arrow {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    /* Contacts extras mobile */
    .contacts-whatsapp {
        padding: 30px 0;
    }
    .contacts-qr-block {
        gap: 20px;
        padding: 24px;
    }
    .contacts-qr-img {
        width: 140px;
        height: 140px;
    }
    .contacts-qr-text h3 {
        font-size: 20px;
    }

    /* All buttons full width */
    .btn-primary,
    .btn-outline,
    .btn-track,
    .btn-calc,
    .footer-btn,
    .our-service-card-btn,
    .faq-cta-btn,
    .price-calc-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ===== MODAL ===== */
.lp-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.lp-modal-overlay.active {
    display: flex;
}
.lp-modal {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 460px;
    width: 90%;
    position: relative;
    animation: lpModalIn 0.3s ease;
}
@keyframes lpModalIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.lp-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}
.lp-modal-close:hover { color: #333; }
.lp-modal-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #131313;
}
.lp-modal-text {
    font-size: 15px;
    color: #637381;
    margin-bottom: 24px;
    line-height: 1.5;
}
.lp-modal .calc-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lp-modal .input-phone {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}
.lp-modal .btn-primary {
    width: 100%;
    justify-content: center;
}

/* ===== FLOATING WHATSAPP ===== */
.lp-floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: transform 0.2s, box-shadow 0.2s;
}
.lp-floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
@media (max-width: 576px) {
    .lp-floating-wa {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    .lp-floating-wa svg {
        width: 24px;
        height: 24px;
    }
}