.page-hero { padding-top: 72px; background: radial-gradient(circle at 20% 20%, #4C1300 0%, #111111 80%); position: relative; overflow: hidden; }
.page-hero::before { display: none; }
.page-hero-inner { padding: 72px 0 56px; position: relative; z-index: 1; }
.sec-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 14px; }
.page-hero-title { font-size: clamp(40px, 6vw, 72px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 16px; color: var(--white); }
.page-hero-title em { font-style: normal; color: var(--accent); }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.7); font-weight: 300; line-height: 1.7; max-width: 480px; }

.sec-title { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; color: var(--text); }
.sec-title .thin { font-weight: 300; color: var(--text-muted); }

/* ── DELIVERY OPTIONS ── */
.delivery-section { padding: 80px 0; }
.delivery-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.delivery-card {
    background: var(--cream-2); border-radius: 20px; padding: 32px 28px;
    border: 1px solid rgba(212,196,168,0.3);
    transition: all 0.4s var(--ease-out); position: relative; overflow: hidden;
}
.delivery-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--accent); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}
.delivery-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.09); }
.delivery-card:hover::before { transform: scaleX(1); }
.delivery-card-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.delivery-card-title { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 6px; letter-spacing: -0.01em; }
.delivery-card-price {
    font-size: 22px; font-weight: 800; color: var(--accent);
    margin-bottom: 14px; display: block;
}
.delivery-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
.delivery-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 10px; border-radius: 50px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
    background: rgba(255,79,0,0.1); color: var(--accent);
    margin-bottom: 12px;
}

/* ── PAYMENT ── */
.payment-section { padding: 80px 0; background: var(--cream-2); }
.payment-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px;
}
.payment-card {
    background: var(--cream); border-radius: 16px; padding: 28px 20px;
    text-align: center; border: 1px solid rgba(212,196,168,0.3);
    transition: all 0.35s var(--ease-out);
}
.payment-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(0,0,0,0.08); border-color: rgba(255,79,0,0.2); }
.payment-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.payment-name { font-size: 13px; font-weight: 800; color: var(--text); letter-spacing: -0.01em; }
.payment-note { font-size: 11px; color: var(--text-muted); margin-top: 4px; font-weight: 400; }

/* ── TIMELINE ── */
.timeline-section { padding: 80px 0; }
.timeline {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 56px; position: relative;
}
.timeline::before {
    content: '';
    position: absolute; top: 32px; left: 12.5%; right: 12.5%;
    height: 2px; background: linear-gradient(to right, var(--accent), var(--sand));
    z-index: 0;
}
.timeline-step {
    text-align: center; padding: 0 16px; position: relative; z-index: 1;
}
.step-circle {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--accent); color: white;
    font-size: 20px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; border: 4px solid var(--cream);
    box-shadow: 0 8px 24px rgba(255,79,0,0.3);
}
.step-title { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.step-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }
.step-time {
    display: inline-block; margin-top: 8px;
    padding: 3px 10px; border-radius: 50px;
    background: var(--cream-2); font-size: 10px; font-weight: 700;
    color: var(--accent); letter-spacing: 0.06em;
}

/* ── FAQ ── */
.faq-section { padding: 80px 0; background: var(--cream-2); }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--cream); border-radius: 14px;
    border: 1px solid rgba(212,196,168,0.35); overflow: hidden;
}
.faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; cursor: pointer;
    font-size: 14px; font-weight: 700; color: var(--text);
    transition: color 0.2s; user-select: none;
}
.faq-q:hover { color: var(--accent); }
.faq-arrow {
    font-size: 18px; font-weight: 700; color: var(--text-muted);
    transition: transform 0.35s var(--ease-out); flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); color: var(--accent); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
    padding: 0 24px 20px;
    font-size: 13px; color: var(--text-muted); line-height: 1.75; font-weight: 300;
}

/* ── CTA ── */
.delivery-cta { background: var(--bark); padding: 80px 28px; text-align: center; position: relative; overflow: hidden; }
.delivery-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,79,0,0.12) 0%, transparent 65%);
}
.delivery-cta-inner { max-width: 580px; margin: 0 auto; position: relative; z-index: 1; }
.delivery-cta h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; color: white; letter-spacing: -0.02em; margin-bottom: 14px; }
.delivery-cta h2 em { font-style: normal; color: var(--accent); }
.delivery-cta p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 32px; }
.btn-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 36px; background: var(--accent); color: white;
    border-radius: 50px; font-size: 14px; font-weight: 800;
    letter-spacing: 0.04em; transition: all 0.35s;
}
.btn-cta:hover { background: #E84500; transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,79,0,0.4); }

@media (max-width: 900px) {
    .delivery-cards { grid-template-columns: 1fr; }
    .payment-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
    .timeline::before { display: none; }
}
@media (max-width: 600px) {
    .payment-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline { grid-template-columns: 1fr; }
}