.dropship-page {
    background: var(--background);
}

/* Hero */

.dropship-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.72fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
}

.dropship-hero__content h1 {
    max-width: 760px;
    margin: 0 0 22px;
    color: var(--text-dark);
    font-size: clamp(42px, 5.6vw, 74px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.068em;
}

.dropship-hero__content p:not(.eyebrow) {
    max-width: 680px;
    margin: 0 0 30px;
    color: var(--text-light);
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 500;
    line-height: 1.74;
}

.dropship-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.dropship-hero__visual {
    position: relative;
    min-height: 420px;
}

.dropship-cloud {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    min-height: 420px;
    padding: clamp(28px, 4vw, 52px);
    border: 1px solid rgba(206, 184, 152, 0.38);
    border-radius: 38px;
    background: linear-gradient(135deg, rgba(255, 253, 248, 0.95), rgba(255, 255, 255, 0.96));
    box-shadow: 0 30px 90px rgba(26, 26, 26, 0.14);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dropship-cloud:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 110px rgba(26, 26, 26, 0.18);
}

.dropship-cloud::before,
.dropship-cloud::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.dropship-cloud::before {
    right: -90px;
    top: -90px;
    width: 220px;
    height: 220px;
    background: rgba(var(--primary-rgb), 0.11);
}

.dropship-cloud::after {
    left: -90px;
    bottom: -90px;
    width: 220px;
    height: 220px;
    background: rgba(206, 184, 152, 0.20);
}

.dropship-cloud img {
    position: relative;
    z-index: 1;
    width: min(86%, 430px);
    height: auto;
    filter: drop-shadow(0 26px 28px rgba(16, 24, 23, 0.16));
    animation: dropshipFloat 5.5s ease-in-out infinite;
}

.dropship-orbit {
    z-index: 2;
}

.dropship-orbit__item--one {
    top: 12%;
    left: 2%;
}

.dropship-orbit__item--two {
    top: 24%;
    right: 0;
    animation-delay: -1.2s;
}

.dropship-orbit__item--three {
    left: 10%;
    bottom: 12%;
    animation-delay: -2.4s;
}

/* Overview cards */

.dropship-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 28px);
}

.dropship-overview-card {
    position: relative;
    min-height: 260px;
    padding: clamp(24px, 3.3vw, 36px);
    border: 1px solid rgba(206, 184, 152, 0.38);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dropship-overview-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 92% 8%, rgba(var(--primary-rgb), 0.11), transparent 38%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropship-overview-card > * {
    position: relative;
    z-index: 1;
}

.dropship-overview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(171, 135, 80, 0.52);
    box-shadow: var(--shadow);
}

.dropship-overview-card:hover::before {
    opacity: 1;
}

.dropship-overview-card span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 18px;
    background: rgba(var(--primary-rgb), 0.10);
    color: var(--primary-dark);
    font-size: 20px;
}

.dropship-overview-card h3 {
    margin: 0 0 12px;
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.dropship-overview-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 15.5px;
    font-weight: 550;
    line-height: 1.72;
}

/* How it works */

.dropship-route {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    max-width: 1180px;
    margin: 0 auto;
}

.dropship-route::before {
    content: '';
    position: absolute;
    left: 42px;
    right: 42px;
    top: 43px;
    height: 2px;
    background: linear-gradient(90deg, rgba(171, 135, 80, 0.08), rgba(171, 135, 80, 0.46), rgba(171, 135, 80, 0.08));
    pointer-events: none;
}

.dropship-route__step {
    position: relative;
    z-index: 1;
    min-height: 210px;
    padding: 18px;
    border: 1px solid rgba(206, 184, 152, 0.38);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 44px rgba(64, 48, 28, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.dropship-route__step::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 92% 8%, rgba(var(--primary-rgb), 0.11), transparent 38%);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.dropship-route__step:hover,
.dropship-route__step.is-active {
    transform: translateY(-8px);
    border-color: rgba(171, 135, 80, 0.58);
    box-shadow: var(--shadow);
}

.dropship-route__step:hover::before,
.dropship-route__step.is-active::before {
    opacity: 1;
}

.dropship-route__step > * {
    position: relative;
    z-index: 1;
}

.dropship-route__step p {
    margin: 0 0 9px;
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 950;
    line-height: 1.2;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.dropship-route__step h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -0.055em;
}

.dropship-route__mark {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.dropship-route__mark::after {
    content: '';
    position: absolute;
    left: 42px;
    right: 32px;
    top: 50%;
    height: 1px;
    background: rgba(171, 135, 80, 0.28);
    transform: translateY(-50%);
    z-index: -1;
}

.dropship-route__step:last-of-type .dropship-route__mark::after {
    display: none;
}

.dropship-route__mark span {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(206, 184, 152, 0.48);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #fbf7ef);
    color: rgba(171, 135, 80, 0.76);
    font-size: 15px;
    font-weight: 950;
    letter-spacing: -0.04em;
    box-shadow: 0 14px 34px rgba(64, 48, 28, 0.10);
}

.dropship-route__mark i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(var(--primary-rgb), 0.10);
    color: var(--primary-dark);
    font-size: 13px;
}

.dropship-route__details,
.dropship-route__panel {
    position: relative;
    grid-column: 1 / -1;
    display: grid;
    overflow: hidden;
}

.dropship-route__details-count,
.dropship-route__label {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.10);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.dropship-route__details-count {
    margin-bottom: 14px;
}

.dropship-route__label {
    margin-bottom: 16px;
}

.dropship-route__details {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(20px, 3vw, 40px);
    align-items: end;
    margin-top: 18px;
    padding: clamp(26px, 3.4vw, 42px);
    border: 1px solid rgba(206, 184, 152, 0.42);
    border-radius: 32px;
    background:
        radial-gradient(circle at 96% 12%, rgba(var(--primary-rgb), 0.13), transparent 34%),
        linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(255, 255, 255, 0.99));
    box-shadow: 0 24px 70px rgba(64, 48, 28, 0.10);
}

.dropship-route__details::before {
    content: '';
    position: absolute;
    right: -70px;
    top: -90px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(206, 184, 152, 0.16);
    pointer-events: none;
}

.dropship-route__details::after {
    content: '';
    position: absolute;
    left: clamp(24px, 3vw, 42px);
    right: clamp(24px, 3vw, 42px);
    bottom: 0;
    height: 4px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.18), rgba(171, 135, 80, 0.64), rgba(var(--primary-rgb), 0.18));
}

.dropship-route__details-kicker {
    margin: 0 0 10px;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 950;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dropship-route__details h3 {
    max-width: 760px;
    margin: 0 0 14px;
    color: var(--text-dark);
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.065em;
}

.dropship-route__details p:not(.dropship-route__details-kicker) {
    max-width: 820px;
    margin: 0;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 550;
    line-height: 1.72;
}

.dropship-route__panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: clamp(24px, 4vw, 54px);
    align-items: center;
    margin-top: 18px;
    padding: clamp(28px, 4vw, 46px);
}

.dropship-route__docs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.dropship-route__docs span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 14px 16px;
    border: 1px solid rgba(206, 184, 152, 0.38);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 14px 30px rgba(64, 48, 28, 0.06);
}

.dropship-route__docs i {
    color: var(--primary-dark);
    font-size: 14px;
}

@media (max-width: 1199px) {
    .dropship-route {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dropship-route::before,
    .dropship-route__mark::after {
        display: none;
    }

    .dropship-route__step {
        min-height: 190px;
    }
}

@media (max-width: 991px) {
    .dropship-route {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dropship-route__details,
    .dropship-route__panel {
        grid-template-columns: 1fr;
    }

    .dropship-route__details {
        align-items: start;
    }
}

@media (max-width: 768px) {
    .dropship-route {
        grid-template-columns: 1fr;
    }

    .dropship-route__step {
        min-height: auto;
        border-radius: 24px;
    }

    .dropship-route__mark {
        margin-bottom: 22px;
    }

    .dropship-route__details {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .dropship-route__panel {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .dropship-route__docs {
        grid-template-columns: 1fr;
    }
}

/* Accounting */

.dropship-accounting-section {
    padding-top: 80px !important;
    padding-bottom: 0 !important;
    overflow: hidden;
}

.dropship-accounting-section .section-title {
    position: relative;
    z-index: 3;
    margin-bottom: 60px;
}

.dropship-accounting-image {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: -30px auto 0;
}

.dropship-accounting-image img {
    display: block;
    width: 100%;
    height: auto;
}

@keyframes dropshipFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes dropshipPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-6px) scale(1.03);
    }
}

@media (max-width: 1199px) {
    .dropship-hero__grid {
        grid-template-columns: 1fr;
    }

    .dropship-hero__visual {
        max-width: 680px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .dropship-overview-grid {
        grid-template-columns: 1fr;
    }

    .dropship-overview-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .dropship-hero__content h1 {
        font-size: clamp(36px, 11vw, 54px);
    }

    .dropship-cloud,
    .dropship-how__figure {
        border-radius: 26px;
    }

    .dropship-cloud {
        min-height: 340px;
    }

    .dropship-hero__visual {
        display: grid;
        gap: 0;
    }
}
