* html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: #ffffff;
    color: #111111;
    background:
linear-gradient(
to bottom,
#ffffff,
#f7f7f7
);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
    linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)),
    url("images/hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
z-index: 2;
}

.hero-text {
    max-width: 820px;
    padding-top: 80px;
}

.logo {
    width: 620px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 10px 30px rgba(0,0,0,0.35);
    max-width: 900px;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #eeeeee;
    text-shadow: 0 5px 20px rgba(0,0,0,0.25);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 18px 36px;
    background: #d6001c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(214, 0, 28, 0.35);
    font-size: 16px;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:hover {
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    border: 2px solid #d6001c;
    color: #d6001c;
}

.trust {
    background: white;
    padding: 60px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    background: #f7f7f7;
    padding: 40px 30px;
    border-radius: 14px;
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 42px;
    color: #d6001c;
    margin-bottom: 10px;
}

.trust-item span {
    font-size: 16px;
    color: #444;
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 50px;
    text-align: center;
    color: #111;
    letter-spacing: -1px;
}

.services {
    background: #f8f8f8;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #d6001c;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    margin-bottom: 15px;
    font-size: 18px;
    color: #444;
}

.steps {
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.step-item {
    background: #f7f7f7;
    padding: 35px;
    border-radius: 16px;
}

.step-item span {
    display: inline-block;
    font-size: 48px;
    font-weight: bold;
    color: #d6001c;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.step-item p {
    color: #555;
    line-height: 1.5;
}

.advantages {
    background: #f8f8f8;
    position: relative;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.advantage-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #111;
}

.advantage-card p {
    color: #555;
    line-height: 1.6;
    font-size: 17px;
}

.cargo-types {
    background: white;
}

.cargo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.cargo-card {
    background: #f5f5f5;
    padding: 30px 20px;
    border-radius: 14px;
    text-align: center;
    font-weight: bold;
    color: #222;
    transition: 0.3s;
}

.cargo-card:hover {
    background: #d6001c;
    color: white;
}

.team {
    background: #f8f8f8;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.team-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: 0.4s;
}

.team-card h3 {
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.team-card p {
    color: #666;
}

.reviews {
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.review-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #333;
}

.review-card span {
    color: #d6001c;
    font-weight: bold;
}

.cases {
    background: #f8f8f8;
    position: relative;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.case-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #111;
}

.case-card p {
    color: #555;
    line-height: 1.6;
}

.geography {
    background: white;
}

.geography-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.geo-item {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    font-weight: bold;
    color: #222;
}

.navbar {
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    width: 160px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #d6001c;
}

.nav-whatsapp {
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.nav-whatsapp:hover {
    transform: translateY(-3px);
}

.certificates {
    background: #f8f8f8;
    position: relative;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.certificate-card {
    background: white;
    padding: 40px 25px;
    border-radius: 24px;
    text-align: center;
    font-weight: bold;
    color: #222;
    line-height: 1.5;
    border: 1px solid rgba(0,0,0,0.05);
}

.cta {
    background: #d6001c;
    color: white;
}

.cta-wrapper {
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-form input {
    padding: 18px;
    border: none;
    border-radius: 10px;
    min-width: 250px;
    font-size: 16px;
}

.cta-form button {
    padding: 18px 35px;
    border: none;
    border-radius: 10px;
    background: #111111;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.contacts {
    background: #111111;
    color: white;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contacts h3,
.contacts h4 {
    margin-bottom: 20px;
}

.contacts p {
    color: #cccccc;
    line-height: 1.8;
}

.offer {
    background: white;
}

.offer-wrapper {
    max-width: 1000px;
}

.offer h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #111111;
}

.offer p {
    font-size: 20px;
    line-height: 1.8;
    color: #555555;
}

.request {
    background: #111111;
    color: white;
}

.request-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.request-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.request-text p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 18px;
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.request-form input {
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
}

.request-form button {
    padding: 18px;
    border: none;
    border-radius: 10px;
    background: #d6001c;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.5px;
}

section,
header,
footer {
    width: 100%;
    padding: 120px 0;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    background: rgba(214, 0, 28, 0.25);

    border-radius: 50%;

    top: -200px;
    right: -200px;

    filter: blur(120px);
}

.service-card:hover,
.advantage-card:hover,
.case-card:hover,
.review-card:hover,
.team-card:hover {
    transform: translateY(-8px);
}

.floating-buttons {
    position: fixed;

    right: 30px;
    bottom: 30px;

    display: flex;
    flex-direction: column;

    gap: 15px;

    z-index: 999;
}

.floating-buttons a {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    font-weight: bold;

    transition: 0.3s;
}

.floating-phone {
    background: #111111;
    color: white;
}

.floating-whatsapp {
    background: #25D366;
    color: white;
}

.floating-buttons a:hover {
    transform: scale(1.08);
}

.team-card:hover img {
    transform: scale(1.03);
}

.burger {
    display: none;

    background: transparent;
    border: none;

    color: white;

    font-size: 34px;
    cursor: pointer;
}

.nav-menu.active {
    display: flex;
}

.case-card img {
    width: 100%;
    height: 260px;

    object-fit: cover;

    border-radius: 18px;

    margin-bottom: 25px;
}

.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: transparent;

    border: 1px solid rgba(255,255,255,0.3);

    color: white;

    padding: 8px 14px;

    border-radius: 10px;

    cursor: pointer;

    transition: 0.3s;
}

.lang-btn.active {
    background: #d6001c;
    border-color: #d6001c;
}

.floating-buttons img {
    width: 80зpx;
    height: 80px;
    object-fit: contain;
}

.floating-buttons img {
    background: transparent !important;
    box-shadow: none !important;
}

.clients {
    background: white;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.client-logo {
    background: #f8f8f8;

    border-radius: 24px;

    padding: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 160px;

    transition: 0.3s;

    border: 1px solid rgba(0,0,0,0.05);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;

    object-fit: contain;

    filter: grayscale(100%);
    opacity: 0.8;

    transition: 0.3s;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.numbers {
    background: #f8f8f8;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.number-card {
    background: white;

    border-radius: 24px;

    padding: 50px 30px;

    text-align: center;

    border: 1px solid rgba(0,0,0,0.05);

    transition: 0.3s;
}

.number-card strong {
    display: block;

    font-size: 56px;

    color: #d6001c;

    margin-bottom: 20px;
}

.number-card span {
    font-size: 18px;

    color: #444;

    line-height: 1.5;
}

.number-card:hover {
    transform: translateY(-6px);
}

.video-reviews {
    background: white;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: #f8f8f8;

    border-radius: 24px;

    overflow: hidden;

    border: 1px solid rgba(0,0,0,0.05);
}

.video-card video {
    width: 100%;
    display: block;
}

.letters {
    background: #f8f8f8;
}

.letters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.letter-card {
    background: white;

    border-radius: 24px;

    overflow: hidden;

    border: 1px solid rgba(0,0,0,0.05);

    transition: 0.3s;
}

.letter-card img {
    width: 100%;
    display: block;
}

.letter-card:hover {
    transform: translateY(-6px);
}

.lightbox {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.9);

    display: none;

    align-items: center;
    justify-content: center;

    z-index: 9999;

    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;

    border-radius: 20px;
}

.lightbox-close {
    position: absolute;

    top: 30px;
    right: 40px;

    color: white;

    font-size: 50px;

    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background: rgba(255,255,255,0.15);

    border: none;

    color: white;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    font-size: 30px;

    cursor: pointer;

    transition: 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.certificates-real {
    background: white;
}

.certificates-real-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.certificate-real-card {
    background: #f8f8f8;

    border-radius: 24px;

    overflow: hidden;

    border: 1px solid rgba(0,0,0,0.05);

    transition: 0.3s;
}

.certificate-real-card img {
    width: 100%;
    display: block;
}

.certificate-real-card:hover {
    transform: translateY(-6px);
}

.review-link {
    text-decoration: none;
}

.video-card {
    position: relative;

    overflow: hidden;
}

.video-card img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 80px;
    height: 80px;

    background: rgba(214, 0, 28, 0.9);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 34px;

    transition: 0.3s;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 992px) {
    .hero-content,
.request-wrapper,
.contacts-grid,
.services-grid,
.advantages-grid,
.reviews-grid,
.cases-grid,
.team-grid,
.steps-grid,
.trust-grid,
.certificates-grid,
.geography-grid {
    grid-template-columns: 1fr;
}
.hero h1 {
    font-size: 38px;
}

.hero {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 80px;
}

.hero-text {
    text-align: center;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.15;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
}

.logo {
    width: 280px !important;
}

.hero-buttons {
    justify-content: center;
}

.hero-buttons .btn {
    width: 100%;
    max-width: 320px;
}

.floating-buttons img {
    width: 58px !important;
    height: 58px !important;
}

.numbers-grid {
    grid-template-columns: 1fr !important;
}

.section-title {
    font-size: 36px;
}

.offer h2,
.request-text h2,
.cta-wrapper h2 {
    font-size: 34px;
}
.nav-menu {
    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    background: rgba(0,0,0,0.95);

    flex-direction: column;

    padding: 30px;

    display: none;
}
.hero {
    min-height: auto;
    padding-top: 160px;
    padding-bottom: 100px;
}

.clients-grid {
    grid-template-columns: repeat(2, 1fr);
}

.hero-text {
    padding-top: 0;
}
.hero-buttons,
.cta-form {
    flex-direction: column;
}
.hero h1,
.section-title,
.offer h2,
.request-text h2,
.cta-wrapper h2 {
    line-height: 1.2;
}
section,
header,
footer {
    padding: 80px 0;
}
.service-card,
.advantage-card,
.case-card,
.review-card,
.team-card,
.certificate-card,
.step-item {
    padding: 30px;
}
.container {
    width: 92%;
}

.numbers-grid {
    grid-template-columns: repeat(2, 1fr);
}

.cargo-grid {
    grid-template-columns: 1fr;
}
.burger {
    display: block;
}

.video-grid {
    grid-template-columns: 1fr;
}

.letters-grid {
    grid-template-columns: repeat(2, 1fr);
}

.nav-whatsapp {
    display: none;
}

.certificates-real-grid {
    grid-template-columns: repeat(2, 1fr);
}

}