/* ============================================
   CHOCOFOOD — Courier Landing Page
   Mobile First Responsive Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Google Sans', sans-serif;
    color: #1a1a2e;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- CSS Variables --- */
:root {
    --color-brand: #F0001E;
    --color-brand-dark: #c70018;
    --color-brand-light: #ff3350;
    --color-text: #1a1a2e;
    --color-text-secondary: #67687d;
    --color-bg: #ffffff;
    --color-bg-gray: #f4f4f4;
    --color-bg-dark: #1a1a2e;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-brand: 0 4px 20px rgba(240, 0, 30, 0.3);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* --- Typography --- */
.text-secondary {
    color: var(--color-text-secondary);
}

.brand {
    color: var(--color-brand);
}

/* --- Layout --- */
.section {
    padding: 40px 20px;
}

.section--gray {
    background-color: var(--color-bg-gray);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

/* --- Header --- */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__logo {
    height: 28px;
    width: auto;
}

.header__lang {
    display: flex;
    gap: 8px;
}

.header__lang-item {
    font-size: 13px;
    color: var(--color-text-secondary);
    letter-spacing: 0.3px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    cursor: pointer;
}

.header__lang-item:hover {
    color: var(--color-brand);
    background: rgba(240, 0, 30, 0.05);
}

.header__lang-item--active {
    color: var(--color-brand);
    font-weight: 600;
}

/* --- Hero Section --- */
.hero {
    padding: 32px 20px 40px;
}

.hero__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 280px;
    margin: 0 auto;
}

.hero__image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.hero__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.hero__subtitle {
    font-size: 15px;
    color: var(--color-text-secondary);
    letter-spacing: 0.3px;
    max-width: 400px;
}

.hero__benefits {
    display: inline-flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.hero__benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.hero__benefit-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.hero__benefit-text {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

/* --- Section Headline --- */
.headline {
    text-align: center;
    margin-bottom: 32px;
}

.headline__title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 8px;
}

.headline__subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
}

/* --- Conditions / Benefits Cards --- */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card__icon-wrap {
    background-color: var(--color-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.card__icon {
    height: 32px;
    width: 32px;
}

.card__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.card__text {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* --- Cooperation Block (image + text grid) --- */
.split-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    align-items: center;
}

.split-block__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 260px;
}

.split-block__image {
    width: 100%;
    border-radius: var(--radius-md);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.08));
}

.split-block__content {
    background-color: var(--color-bg-gray);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
}

.split-block__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.split-block__text b {
    color: var(--color-text);
}

/* --- How It Works --- */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    position: relative;
}

.step__icon {
    font-size: 32px;
    color: var(--color-brand);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(240, 0, 30, 0.08);
    border-radius: 50%;
}

.step__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step__text {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* --- Transport Section --- */
.transport-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.transport-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.transport-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.transport-card__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.transport-card__image {
    max-width: 260px;
    width: 100%;
    border-radius: var(--radius-md);
    transition: transform var(--transition-slow);
}

.transport-card:hover .transport-card__image {
    transform: scale(1.05);
}

.transport-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.transport-card__text {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* --- FAQ Section --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(240, 0, 30, 0.2);
}

.faq-item.is-open {
    border-color: rgba(240, 0, 30, 0.3);
    box-shadow: 0 2px 12px rgba(240, 0, 30, 0.06);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    background: var(--color-bg);
    transition: background var(--transition-fast);
    -webkit-user-select: none;
    user-select: none;
}

.faq-item__question:hover {
    background: var(--color-bg-gray);
}

.faq-item__question-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    transition: transform var(--transition-base);
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-brand);
    border-radius: 2px;
    transition: transform var(--transition-base);
}

.faq-item__icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item__icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item__answer-inner {
    padding: 0 20px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.faq-item__answer-inner b {
    color: var(--color-text);
}

.faq-item__answer-inner ul {
    margin-top: 10px;
    padding-left: 20px;
}

.faq-item__answer-inner ul li {
    margin-bottom: 4px;
}

.faq-item__answer-inner p + p {
    margin-top: 12px;
}

/* --- CTA Button --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-brand);
    color: #ffffff;
    font-family: 'Google Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    min-height: 48px;
    padding: 0 32px;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-base), background-color var(--transition-fast);
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: none;
    z-index: 1;
    pointer-events: none;
}

.btn:hover {
    box-shadow: var(--shadow-brand);
    background-color: var(--color-brand-dark);
}

.btn:hover::before {
    left: 120%;
    transition: left 0.5s ease;
}

.btn:active {
    transform: scale(0.97);
    box-shadow: 0 2px 10px rgba(240, 0, 30, 0.2);
}

.btn--lg {
    min-height: 54px;
    padding: 0 40px;
    font-size: 16px;
}

/* --- Ripple effect on button --- */
.btn .btn__ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* --- Modal / Popup --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    width: 100%;
    max-width: 420px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.is-open .modal {
    transform: translateY(0) scale(1);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--transition-fast);
}

.modal__close:hover {
    background: var(--color-bg-gray);
}

.modal__close::before,
.modal__close::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background: var(--color-text-secondary);
    border-radius: 1px;
}

.modal__close::before {
    transform: rotate(45deg);
}

.modal__close::after {
    transform: rotate(-45deg);
}

.modal__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    padding-right: 32px;
}

.modal__subtitle {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.form__group {
    margin-bottom: 16px;
}

.form__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
}

.form__input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: 'Google Sans', sans-serif;
    font-size: 15px;
    color: var(--color-text);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    background: var(--color-bg);
}

.form__input::placeholder {
    color: #b0b0c0;
}

.form__input:focus {
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px rgba(240, 0, 30, 0.1);
}

.form__checkbox-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    cursor: pointer;
}

.form__checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.form__checkbox:checked {
    background: var(--color-brand);
    border-color: var(--color-brand);
}

.form__checkbox:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form__checkbox-text {
    font-size: 12px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.form__submit {
    width: 100%;
    transition: transform var(--transition-fast), box-shadow var(--transition-base), background-color var(--transition-fast), opacity var(--transition-base);
}

.form__submit.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* --- Form Result States --- */
.modal__result {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    min-height: 280px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.modal__result.is-visible {
    opacity: 1;
    transform: scale(1);
}

.modal__result-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
}

.modal__result-svg {
    width: 100%;
    height: 100%;
}

/* Circle draw animation */
.modal__result-circle {
    fill: none;
    stroke-dasharray: 214;
    stroke-dashoffset: 214;
}

.modal__result.is-visible .modal__result-circle {
    animation: drawCircle 0.6s ease forwards;
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

/* Checkmark draw animation */
.modal__result-check {
    fill: none;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
}

.modal__result.is-visible .modal__result-check {
    animation: drawCheck 0.4s 0.4s ease forwards;
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

/* Cross draw animation */
.modal__result-cross {
    fill: none;
    stroke-dasharray: 28;
    stroke-dashoffset: 28;
}

.modal__result.is-visible .modal__result-cross {
    animation: drawCross 0.4s 0.4s ease forwards;
}

@keyframes drawCross {
    to { stroke-dashoffset: 0; }
}

.modal__result-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal__result-title--success {
    color: #22c55e;
}

.modal__result-title--error {
    color: #ef4444;
}

.modal__result-text {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    max-width: 280px;
}

/* --- Footer --- */
.footer {
    background: var(--color-bg-dark);
    padding: 32px 20px;
    text-align: center;
}

.footer__logo {
    height: 24px;
    margin: 0 auto 12px;
    filter: brightness(0) invert(1);
}

.footer__text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.footer__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 13px;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    transition: all var(--transition-fast);
}

a.footer__contact-item:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.footer__contact-item .material-icons-round {
    font-size: 15px;
    color: var(--color-brand);
}

.footer__contact-item svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--color-brand);
}

.footer__link {
    display: inline-block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* --- GSAP Animation Helpers --- */
.gs-reveal {
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
}

/* --- Privacy Page --- */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.privacy-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
}

.privacy-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}

.privacy-content ul {
    padding-left: 24px;
    margin-bottom: 12px;
}

.privacy-content ul li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

/* --- Error 404 Page --- */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-page__content {
    text-align: center;
}

.error-page__code {
    font-size: 120px;
    font-weight: 700;
    color: var(--color-brand);
    line-height: 1;
    margin-bottom: 16px;
}

.error-page__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.error-page__text {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   RESPONSIVE — Large Phone (480px+)
   ============================================ */
@media (min-width: 480px) {
    .hero__title {
        font-size: 32px;
    }

    .hero__image-wrap {
        max-width: 320px;
    }

    .headline__title {
        font-size: 28px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step__icon {
        font-size: 36px;
        width: 60px;
        height: 60px;
    }
}

/* ============================================
   RESPONSIVE — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
    .section {
        padding: 60px 40px;
    }

    .header {
        padding: 16px 40px;
    }

    .header__logo {
        height: 32px;
    }

    /* Hero */
    .hero {
        padding: 48px 40px 60px;
    }

    .hero__grid {
        flex-direction: row;
        gap: 40px;
    }

    .hero__image-wrap {
        max-width: 320px;
        flex-shrink: 0;
    }

    .hero__content {
        text-align: left;
        align-items: flex-start;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__benefits {
        display: flex;
        flex-direction: row;
        gap: 24px;
        width: 100%;
    }

    .hero__benefit {
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
    }

    /* Headline */
    .headline {
        margin-bottom: 40px;
    }

    .headline__title {
        font-size: 32px;
    }

    .headline__subtitle {
        font-size: 18px;
    }

    /* Cards */
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .card {
        padding: 32px 20px;
    }

    /* Split block */
    .split-block {
        flex-direction: row;
        gap: 32px;
    }

    .split-block__image-wrap {
        max-width: 300px;
        flex-shrink: 0;
    }

    .split-block__content {
        padding: 32px;
    }

    .split-block__text {
        font-size: 15px;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .step {
        padding: 28px 20px;
    }

    /* Transport */
    .transport-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* FAQ */
    .faq-item__question {
        padding: 20px 24px;
    }

    .faq-item__question-text {
        font-size: 16px;
    }

    .faq-item__answer-inner {
        padding: 0 24px 24px;
        font-size: 15px;
    }

    /* Footer */
    .footer {
        padding: 40px;
    }

    /* Privacy */
    .privacy-content__title {
        font-size: 36px;
    }
}

/* ============================================
   RESPONSIVE — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .section {
        padding: 80px 60px;
    }

    .header {
        padding: 20px 60px;
    }

    .header__logo {
        height: 36px;
    }

    /* Hero */
    .hero {
        padding: 60px 60px 80px;
    }

    .hero__image-wrap {
        max-width: 380px;
    }

    .hero__title {
        font-size: 44px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    /* Headline */
    .headline__title {
        font-size: 40px;
    }

    .headline__subtitle {
        font-size: 20px;
    }

    /* Cards */
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .card__icon-wrap {
        width: 72px;
        height: 72px;
    }

    .card__icon {
        height: 36px;
        width: 36px;
    }

    .card__title {
        font-size: 18px;
    }

    .card__text {
        font-size: 14px;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .step__title {
        font-size: 17px;
    }

    .step__text {
        font-size: 14px;
    }

    /* Transport */
    .transport-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .transport-card {
        padding: 28px 20px;
    }

    .transport-card__image {
        max-width: 300px;
    }

    .transport-card__title {
        font-size: 20px;
    }

    .transport-card__text {
        font-size: 14px;
    }

    /* Split block */
    .split-block__image-wrap {
        max-width: 340px;
    }

    .split-block__text {
        font-size: 16px;
    }

    /* Footer */
    .footer {
        padding: 48px 60px;
    }
}

/* ============================================
   RESPONSIVE — Large Desktop (1280px+)
   ============================================ */
@media (min-width: 1280px) {
    .section {
        padding: 100px 80px;
    }

    .header {
        padding: 20px 80px;
    }

    .hero {
        padding: 80px 80px 100px;
    }

    .hero__grid {
        gap: 60px;
    }

    .hero__image-wrap {
        max-width: 440px;
    }

    .hero__title {
        font-size: 50px;
    }

    .hero__subtitle {
        font-size: 17px;
        max-width: 480px;
    }

    .headline__title {
        font-size: 44px;
    }

    .card {
        padding: 36px 24px;
    }

    .split-block {
        gap: 48px;
    }

    .split-block__image-wrap {
        max-width: 380px;
    }

    .split-block__content {
        padding: 40px;
    }

    .footer {
        padding: 48px 80px;
    }
}
