/* Delivery */
.dl-body { padding: 2.5rem 0 4rem; }
.dl-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 1024px) {
    .dl-layout { grid-template-columns: 1fr; }
}

.dl-intro {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 1.5rem 1.75rem;
    margin-bottom: 1.75rem; box-shadow: var(--shadow);
}
.dl-intro p { color: var(--muted); line-height: 1.7; font-size: .95rem; }

.dl-modes {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
    margin-bottom: 2rem;
}
@media (max-width: 700px) { .dl-modes { grid-template-columns: 1fr; } }
.dl-mode {
    padding: 1.5rem 1.6rem;
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
    transition: border-color .2s;
}
.dl-mode.on { border-color: var(--accent); }
.dl-mode-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--accent-soft); color: var(--accent);
    display: grid; place-items: center; margin-bottom: .85rem;
}
.dl-mode h3 {
    font-size: 1rem; font-weight: 800; letter-spacing: -.02em;
    margin-bottom: .4rem;
}
.dl-mode p {
    font-size: .86rem; color: var(--muted); line-height: 1.6; margin: 0;
}

.dl-section-title {
    font-size: 1.1rem; font-weight: 800;
    letter-spacing: -.02em; margin-bottom: 1rem;
}

.dl-tabs {
    display: flex; flex-wrap: wrap; gap: .45rem;
    margin-bottom: 1.25rem;
}
.dl-tab-btn {
    padding: .55rem 1.1rem; border-radius: 999px;
    border: 1px solid var(--line); background: var(--card);
    font: inherit; font-size: .84rem; font-weight: 600;
    color: var(--muted); cursor: pointer; transition: all .2s;
}
.dl-tab-btn:hover { border-color: var(--accent); color: var(--accent); }
.dl-tab-btn.on {
    background: var(--accent); border-color: var(--accent); color: #272824;
}

.dl-flow {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 1.5rem 1.65rem;
    margin-bottom: 2.5rem; box-shadow: var(--shadow);
}
.dl-flow-lead {
    font-size: .9rem; color: var(--muted); line-height: 1.65;
    margin-bottom: 1.25rem; padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}
.dl-steps {
    display: flex; flex-direction: column; gap: 0;
}
.dl-step {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 1rem; position: relative;
}
.dl-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 19px; top: 40px; bottom: -4px;
    width: 2px; background: var(--line);
}
.dl-step-num {
    width: 40px; height: 40px; border-radius: 12px;
    background: var(--surface-2); border: 1px solid var(--line);
    display: grid; place-items: center;
    font-family: 'Outfit', sans-serif; font-weight: 800;
    font-size: .9rem; color: var(--accent); z-index: 1;
}
.dl-step-body { padding-bottom: 1.15rem; }
.dl-step-body h4 {
    font-size: .92rem; font-weight: 800; margin-bottom: .3rem;
}
.dl-step-body p {
    font-size: .84rem; color: var(--muted); line-height: 1.6; margin: 0;
}
.dl-step-body a { color: var(--accent); }

.dl-carriers {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 900px) { .dl-carriers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .dl-carriers { grid-template-columns: 1fr; } }
.dl-carrier {
    padding: 1.2rem 1.3rem;
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.dl-carrier h4 {
    font-size: .92rem; font-weight: 800; margin-bottom: .35rem;
}
.dl-carrier p {
    font-size: .82rem; color: var(--muted); line-height: 1.55; margin: 0;
}
.dl-carrier-tag {
    display: inline-block; margin-top: .55rem;
    padding: .2rem .5rem; border-radius: 999px;
    background: var(--surface-2); border: 1px solid var(--line);
    font-size: .68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .04em;
    color: var(--steel);
}

.dl-checklist {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 600px) { .dl-checklist { grid-template-columns: 1fr; } }
.dl-check {
    display: flex; align-items: flex-start; gap: .55rem;
    padding: .9rem 1rem; background: var(--card);
    border: 1px solid var(--line); border-radius: 10px;
    font-size: .86rem; line-height: 1.5;
}
.dl-check::before {
    content: '✓'; width: 22px; height: 22px; border-radius: 6px;
    background: var(--accent-soft); color: var(--accent);
    display: grid; place-items: center;
    font-size: .7rem; font-weight: 800; flex-shrink: 0;
    margin-top: .1rem;
}

.dl-pack {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 700px) { .dl-pack { grid-template-columns: 1fr; } }
.dl-pack-card {
    padding: 1.25rem 1.35rem;
    background: var(--surface-2); border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}
.dl-pack-card h4 {
    font-size: .92rem; font-weight: 800; margin-bottom: .4rem;
}
.dl-pack-card ul {
    margin: 0; padding: 0; list-style: none;
    display: flex; flex-direction: column; gap: .4rem;
}
.dl-pack-card li {
    font-size: .84rem; color: var(--muted); line-height: 1.55;
    padding-left: 1.1rem; position: relative;
}
.dl-pack-card li::before {
    content: '·'; position: absolute; left: 0;
    color: var(--accent); font-weight: 700;
}

.dl-warn {
    display: flex; gap: .85rem; padding: 1.15rem 1.35rem;
    background: rgba(220,80,80,.06); border: 1px solid rgba(220,80,80,.15);
    border-radius: var(--radius-lg); margin-bottom: 2.5rem;
    font-size: .88rem; color: #9a5050; line-height: 1.6;
}
.dl-warn svg { flex-shrink: 0; margin-top: .1rem; }
.dl-warn a { color: #9a5050; font-weight: 600; }

.dl-faq-item {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); overflow: hidden;
    margin-bottom: .65rem;
}
.dl-faq-q {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; padding: 1rem 1.15rem; border: none; background: transparent;
    text-align: left; font: inherit; font-size: .92rem; font-weight: 600;
    cursor: pointer;
}
.dl-faq-q:hover { background: var(--surface-2); }
.dl-faq-q svg { flex-shrink: 0; transition: transform .25s; color: var(--muted); }
.dl-faq-item.open .dl-faq-q svg { transform: rotate(180deg); }
.dl-faq-a {
    display: none; padding: 0 1.15rem 1rem;
    font-size: .88rem; color: var(--muted); line-height: 1.65;
}
.dl-faq-item.open .dl-faq-a { display: block; }
.dl-faq-a a { color: var(--accent); }

.dl-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.dl-side-card {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 1.25rem 1.35rem;
    box-shadow: var(--shadow);
}
.dl-side-card h3 {
    font-size: .92rem; font-weight: 800; margin-bottom: .75rem;
}
.dl-side-links {
    display: flex; flex-direction: column; gap: .45rem;
}
.dl-side-links a {
    font-size: .86rem; color: var(--muted); text-decoration: none;
    transition: color .2s;
}
.dl-side-links a:hover { color: var(--accent); }
.dl-side-cta p {
    font-size: .84rem; color: var(--muted); line-height: 1.55;
    margin-bottom: .85rem;
}
.dl-side-cta .btn {
    display: inline-flex; padding: .65rem 1.2rem;
    border-radius: 999px; background: var(--accent); color: #272824;
    text-decoration: none; font-weight: 700; font-size: .84rem;
}
