.hero {
    position: relative;
    background-image: url("../assets/images/logistics.png");
    background-size: 100% 100%;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 150px 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 15, 0.3);
    z-index: 0;
}

.hero__container {
    position: relative;
    z-index: 1;
    max-width: 768px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.hero__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 50px;
    color: #fff;
    text-shadow: 0 0 8px rgba(0, 0, 0, 1.5);
}

.hero__subtitle {
    font-family: 'Montserrat-SemiBold', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 40px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero__lead {
    font-size: 20px;
}

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

.about {
    padding: 80px 0;
    background: var(--color-light);
}

.about__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.about__media,
.about__content {
    flex: 1;
}

.about__media img {
    width: 100%;
    height: 360px;
    border-radius: 10px;
    object-fit: cover;
}

.about__content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 360px;
}

.about__title {
    margin-bottom: 20px;
}

.about__text {
    display: flex;
    font-size: 18px;
    text-indent: 64px;
    color: #333;
    text-align: justify;
}

.about__features {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.about__feature {
    text-align: center;
}

.about__feature-value {
    font-size: 28px;
    color: var(--color-primary);
    display: block;
}

.about__feature-label {
    font-size: 14px;
    color: var(--color-secondary);
}

.services {
    padding: 80px 0;
}

.services__container {
    padding: 0 20px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.service-card__icon img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.service-card__title {
    font-family: 'Montserrat-SemiBold', sans-serif;
    font-size: 18px;
    color: var(--color-secondary);
    margin: 15px 0 10px;
}

.service-card__text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.service-card__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-secondary);
    transition: color 0.3s ease;
}

.service-card__link:hover {
    color: var(--color-primary);
}

.process {
    padding: 80px 0;
    background: var(--color-light);
}

.process__container {
    padding: 0 20px;
    text-align: center;
}

.process__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
    list-style: none;
}

.process__item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.process__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process__icon img {
    width: 50px;
    height: 50px;
}

.process__title {
    font-family: 'Montserrat-SemiBold', sans-serif;
    font-size: 18px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.process__text {
    font-size: 15px;
    color: #666;
    line-height: 1.4;
}

.process__item .special {
    width: 70px;
    height: 70px;
}

.process__item .fourth {
    width: 60px;
    height: 60px;
}

.faq {
    padding: 80px 0;
}

.faq__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.faq__item {
    padding: 0 20px;
    border-bottom: 1px solid var(--color-border);
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Montserrat-SemiBold', sans-serif;
    font-size: 16px;
    color: var(--color-secondary);
    padding: 18px 0;
    cursor: pointer;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

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

.faq__icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq__item--active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    display: none;
    font-size: 15px;
    color: var(--color-secondary);
    padding-bottom: 18px;
    line-height: 1.6;
}

.faq__item--active .faq__answer {
    display: block;
}

.contact {
    padding: 80px 0;
    background: var(--color-light);
    color: var(--color-secondary);
}

.contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
}

.contact__info {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__lead {
    font-family: 'Montserrat-Medium', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

.contact__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
}

.contact__icon img {
    width: 20px;
    height: 20px;
}

body.dark .contact__icon img {
    filter: brightness(0) invert(1);
}

.contact__item a {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

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

.contact__worktime {
    background: #f3f5fa;
    border-left: 4px solid var(--color-primary);
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.5;
}

.contact__map-block {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.contact__map {
    width: 100%;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact__btn {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 8px;
}

.cookie {
    position: fixed;
    bottom: 30px;
    left: 20px;
    right: 20px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    max-width: 330px;
    border-radius: 8px;
    display: none;
    z-index: 10000;
}

.cookie__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie__title {
    font-size: 16px;
    font-family: 'Montserrat-SemiBold', sans-serif;
    color: var(--color-secondary);
}

.cookie__close {
    font-size: 28px;
    background: none;
    border: none;
    color: var(--color-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.cookie__close:hover {
    color: var(--color-accent);
}

.cookie__text {
    font-size: 14px;
    margin-top: 10px;
    color: var(--color-secondary);
}

.cookie__actions {
    margin-top: 15px;
}

.cookie__accept {
    width: 100%;
    border: none;
}

body.dark .hero {
    position: relative;
    color: #fff;
}

body.dark .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 38, 64, 0.6);
    z-index: 0;
}

body.dark .hero__container {
    position: relative;
    z-index: 1;
}

body.dark .hero__title,
body.dark .hero__lead {
    color: #fff;
}

body.dark .hero__actions .btn {
    background: var(--color-primary);
    color: #fff;
}

body.dark .hero__actions .btn:hover {
    background: var(--color-secondary);
}

body.dark .about {
    background: #1a2640;
    color: #f9f9f9;
}

body.dark .about__text,
body.dark .lead {
    color: #f0f0f0;
}

body.dark .about__feature-label {
    color: var(--color-light);
}

body.dark .about__features .feature strong {
    color: var(--color-light);
}

body.dark .about__features .feature span {
    color: #ccc;
}

body.dark .about__media img {
    filter: brightness(0.8);
    border-radius: 10px;
}

body.dark .services {
    background: #121c35;
    color: #f9f9f9;
}

body.dark .service-card {
    background: #1e2a44;
    border: 1px solid #2a3b5c;
    color: #f0f0f0;
}

body.dark .service-card__title {
    color: var(--color-light);
}

body.dark .service-card__text {
    color: #ccc;
}

body.dark .service-card__more {
    color: var(--color-light);
}

body.dark .service-card__more:hover {
    text-decoration: underline;
    color: var(--color-primary);
}

body.dark .service-card__icon img {
    filter: brightness(0) invert(1);
}

body.dark .process {
    background: #121c35;
    color: #f9f9f9;
}

body.dark .process__item {
    background: #1e2a44;
    border: 1px solid #2a3b5c;
    color: #f0f0f0;
}

body.dark .process__title {
    color: var(--color-light);
}

body.dark .process__text {
    color: #ccc;
}

body.dark .process__icon img {
    filter: brightness(0) invert(1);
}

body.dark .faq {
    background: #121c35;
    color: #f0f0f0;
}

body.dark .faq__item {
    background: #1f2a44;
    border: 1px solid #2c3a5a;
    border-radius: 8px;
}

body.dark .faq__question {
    color: #fff;
}

body.dark .faq__answer {
    color: #ccc;
}

body.dark .faq__icon {
    color: var(--color-light);
    transition: transform 0.3s ease;
}

body.dark .faq__item.active .faq__icon {
    transform: rotate(45deg);
}

body.dark .service-card__link {
    color: var(--color-light);
}

body.dark .service-card__link:hover {
    color: #ea0409;
}

body.dark .contact {
    background: #1a2640;
    color: #f0f0f0;
}

body.dark .contact__text,
body.dark .contact__item {
    color: #e0e6f0;
}

body.dark .contact-form input,
body.dark .contact-form textarea {
    background: #1f2a44;
    border: 1px solid #2c3a5a;
    color: #f0f0f0;
}

body.dark .contact-form input::placeholder,
body.dark .contact-form textarea::placeholder {
    color: #aaa;
}

body.dark .contact-form button {
    background: var(--color-primary);
    color: #fff;
}

body.dark .contact-form button:hover {
    background: var(--color-secondary);
}

body.dark .contact__map iframe {
    filter: brightness(0.6);
}

body.dark .contact {
    background: #0d1a33;
    color: #f0f0f0;
}

body.dark .contact__lead {
    color: #e0e6f0;
}

body.dark .contact__item a {
    color: var(--color-light);
}

body.dark .contact__item a:hover {
    color: var(--color-accent);
}

body.dark .contact__worktime {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--color-accent);
}