:root {
    --sp-yellow: #f7c600;
    --sp-yellow-dark: #ddb000;
    --sp-black: #101010;
    --sp-white: #ffffff;
    --sp-gray-50: #f8f8f8;
    --sp-gray-100: #f1f1f1;
    --sp-gray-200: #e5e5e5;
    --sp-gray-600: #5f5f5f;
    --sp-gray-800: #232323;
    --sp-shadow: 0 18px 48px rgba(16, 16, 16, 0.08);
    --sp-radius-lg: 28px;
    --sp-radius-md: 20px;
    --sp-radius-sm: 14px;
    --sp-container: 1320px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--sp-black);
    background: var(--sp-white);
}

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

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

.site-shell {
    overflow-x: clip;
}

.scroll-to-top-btn {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 3.2rem;
    height: 3.2rem;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--sp-black), #2c2c2c);
    color: var(--sp-yellow);
    box-shadow: 0 18px 34px rgba(16, 16, 16, 0.22);
    transform: translateY(18px) scale(0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
    z-index: 1045;
}

.scroll-to-top-btn:hover {
    background: var(--sp-yellow);
    color: var(--sp-black);
}

.scroll-to-top-btn.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.container-fluid.sp-contained,
.container.sp-contained {
    max-width: var(--sp-container);
}

.topbar {
    background: var(--sp-black);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.topbar a {
    color: inherit;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar-social a {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.topbar-social a:hover {
    background: var(--sp-yellow);
    color: var(--sp-black);
    transform: translateY(-2px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(16, 16, 16, 0.08);
}

.site-navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.navbar-brand img {
    height: 70px;
    width: auto;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--sp-yellow), #ffd94d);
    color: var(--sp-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.08);
}

.brand-copy strong {
    display: block;
    font-size: 1.05rem;
    line-height: 1.1;
}

.brand-copy span {
    display: block;
    color: var(--sp-gray-600);
    font-size: 0.78rem;
    line-height: 1.3;
}

.footer-brand-logo {
    max-height: 74px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--sp-black);
    padding: 0.8rem 1rem;
    transition: color 0.2s ease;
}

.nav-services-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: transparent;
    border: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--sp-black);
}

.dropdown-menu {
    border: 1px solid rgba(16, 16, 16, 0.08);
    border-radius: 16px;
    box-shadow: var(--sp-shadow);
    padding: 0.75rem;
}

.nav-item-services {
    position: relative;
}

.nav-services-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    min-width: 250px;
    margin: 0;
}

.nav-item-services.is-open .nav-services-menu {
    display: block;
}

.dropdown-item {
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    font-weight: 500;
}

.btn-sp-primary,
.btn-sp-dark,
.btn-sp-outline {
    border-radius: 999px;
    font-weight: 700;
    padding: 0.9rem 1.4rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn-sp-primary {
    background: var(--sp-yellow);
    color: var(--sp-black);
    border: 1px solid var(--sp-yellow);
}

.btn-sp-primary:hover {
    background: var(--sp-yellow-dark);
    color: var(--sp-black);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(247, 198, 0, 0.25);
}

.btn-sp-dark {
    background: var(--sp-black);
    color: var(--sp-white);
    border: 1px solid var(--sp-black);
}

.btn-sp-dark:hover {
    background: #000;
    color: var(--sp-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(16, 16, 16, 0.2);
}

.btn-sp-outline {
    background: transparent;
    color: var(--sp-black);
    border: 1px solid rgba(16, 16, 16, 0.16);
}

.btn-sp-outline:hover {
    background: var(--sp-black);
    color: var(--sp-white);
    transform: translateY(-2px);
}

.section-space {
    padding: 5.5rem 0;
}

.section-space-sm {
    padding: 4rem 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(247, 198, 0, 0.14);
    color: var(--sp-black);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3.5rem);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title .text-accent {
    color: #c69100;
}

.section-copy {
    color: var(--sp-gray-600);
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero {
    position: relative;
    padding: 4.5rem 0 3rem;
    background:
        radial-gradient(circle at top right, rgba(247, 198, 0, 0.22), transparent 28%),
        linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 16, 16, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 16, 16, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
}

.hero-card {
    position: relative;
    z-index: 1;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    background: var(--sp-white);
    border: 1px solid rgba(16, 16, 16, 0.08);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(16, 16, 16, 0.05);
    font-weight: 600;
}

.hero-badge i {
    color: #c69100;
}

.hero-badge-feature {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 122px;
    gap: 0.8rem;
}

.hero-badge-feature span:last-child {
    line-height: 1.35;
}

.hero-badge-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 18px;
    background: linear-gradient(145deg, #f7c600, #ffd84a);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.08);
}

.hero-badge-icon i {
    font-size: 1.45rem;
    color: var(--sp-black);
}

.hero-visual {
    position: relative;
    z-index: 1;
    min-height: 560px;
}

.hero-panel {
    position: relative;
    border-radius: 32px;
    background: linear-gradient(160deg, #fff 0%, #f4f4f4 100%);
    border: 1px solid rgba(16, 16, 16, 0.08);
    box-shadow: var(--sp-shadow);
    overflow: hidden;
    min-height: 560px;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: auto -8% -18% auto;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(247, 198, 0, 0.95), rgba(247, 198, 0, 0) 70%);
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: auto auto 0 -6%;
    width: 280px;
    height: 180px;
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.08), rgba(16, 16, 16, 0));
    border-top-right-radius: 140px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 16, 16, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 16, 16, 0.045) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.55;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.8), transparent 78%);
}

.hero-map {
    position: absolute;
    inset: 8% 10% auto;
    opacity: 0.08;
    font-size: 16rem;
    text-align: center;
}

.hero-person {
    position: absolute;
    bottom: 0;
    right: 6%;
    max-height: 95%;
    z-index: 3;
}

.hero-panel-courier {
    min-height: 640px;
    background:
        radial-gradient(circle at 72% 22%, rgba(247, 198, 0, 0.28), transparent 24%),
        linear-gradient(160deg, #fffef7 0%, #ffffff 42%, #f3f3f1 100%);
}

.hero-panel-courier::before {
    inset: auto -10% -10% auto;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(247, 198, 0, 0.88), rgba(247, 198, 0, 0) 68%);
}

.hero-panel-courier::after {
    inset: auto auto 0 -4%;
    width: 320px;
    height: 170px;
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.1), rgba(16, 16, 16, 0));
    border-top-right-radius: 180px;
}

.hero-panel-tag,
.hero-copy-chip,
.hero-side-card,
.hero-metric-card {
    position: absolute;
    z-index: 4;
    backdrop-filter: blur(12px);
}

.hero-panel-tag {
    top: 1.5rem;
    left: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    max-width: 290px;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(16, 16, 16, 0.08);
    box-shadow: 0 18px 36px rgba(16, 16, 16, 0.08);
}

.hero-panel-tag strong,
.hero-side-card strong,
.hero-metric-card strong {
    display: block;
    line-height: 1.2;
}

.hero-panel-tag span:last-child,
.hero-side-card p,
.hero-metric-card span {
    display: block;
    color: var(--sp-gray-600);
    font-size: 0.92rem;
    line-height: 1.4;
    margin: 0;
}

.hero-panel-tag-icon,
.hero-side-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f7c600, #ffd84d);
    color: var(--sp-black);
    box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.08);
    flex-shrink: 0;
}

.hero-copy-chip {
    top: 5.75rem;
    right: 1.75rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(16, 16, 16, 0.9);
    color: var(--sp-white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-image-stage {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-image-halo {
    position: absolute;
    right: 13%;
    bottom: 7%;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 217, 77, 0.78) 0%, rgba(247, 198, 0, 0.24) 48%, rgba(247, 198, 0, 0) 72%);
    filter: blur(6px);
}

.hero-image-base {
    position: absolute;
    left: 18%;
    right: 16%;
    bottom: 2.2rem;
    height: 86px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 16, 16, 0.2) 0%, rgba(16, 16, 16, 0.03) 68%, rgba(16, 16, 16, 0) 100%);
    z-index: 1;
}

.hero-person-fresh {
    right: -4%;
    bottom: -263px;
    max-height: none;
    height: 138%;
    width: auto;
    z-index: 3;
    filter: drop-shadow(0 36px 40px rgba(16, 16, 16, 0.18));
    object-fit: cover;
}

.hero-side-stack {
    position: absolute;
    right: 1.5rem;
    bottom: 8.25rem;
    width: min(235px, 34%);
    display: grid;
    gap: 0.9rem;
    z-index: 4;
}

.hero-side-card {
    padding: 1rem 1.05rem;
    border-radius: 22px;
    border: 1px solid rgba(16, 16, 16, 0.08);
    box-shadow: 0 16px 34px rgba(16, 16, 16, 0.08);
}

.hero-side-card-dark {
    background: linear-gradient(150deg, rgba(16, 16, 16, 0.96), rgba(40, 40, 40, 0.92));
    color: var(--sp-white);
}

.hero-side-card-dark p,
.hero-side-card-dark .hero-side-card-label {
    color: rgba(255, 255, 255, 0.76);
}

.hero-side-card-label {
    display: inline-block;
    margin-bottom: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-side-card-light {
    background: rgba(255, 255, 255, 0.88);
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
}

.hero-metric-strip {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    right: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    z-index: 4;
}

.hero-metric-card {
    position: relative;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(16, 16, 16, 0.08);
    box-shadow: 0 14px 26px rgba(16, 16, 16, 0.08);
}

.floating-card,
.stat-card,
.feature-card,
.service-card,
.serve-card,
.step-card,
.info-card,
.contact-card,
.mini-panel {
    border: 1px solid rgba(16, 16, 16, 0.08);
    border-radius: var(--sp-radius-md);
    background: var(--sp-white);
    box-shadow: var(--sp-shadow);
}

.floating-card {
    position: absolute;
    left: 2rem;
    top: 2rem;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    max-width: 240px;
    z-index: 4;
}

.floating-card-top {
    top: 1.8rem;
    left: 1.6rem;
}

.floating-card-bottom {
    top: auto;
    bottom: 1.8rem;
    left: 1.8rem;
}

.floating-card i,
.icon-badge,
.card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 198, 0, 0.16);
    color: var(--sp-black);
    font-size: 1.2rem;
}

.hero-orbit {
    position: absolute;
    border: 2px dashed rgba(16, 16, 16, 0.18);
    border-radius: 999px;
    z-index: 1;
}

.hero-orbit-one {
    width: 250px;
    height: 250px;
    right: 18%;
    top: 12%;
}

.hero-orbit-two {
    width: 340px;
    height: 340px;
    right: 7%;
    top: 2%;
    opacity: 0.6;
}

.hero-box-stack {
    position: absolute;
    left: 8%;
    bottom: 8%;
    display: grid;
    grid-template-columns: 92px 70px;
    gap: 0.8rem;
    align-items: end;
    z-index: 2;
}

.hero-box {
    position: relative;
    border-radius: 12px;
    background: linear-gradient(145deg, #c88f4f, #f0bf83);
    box-shadow: 0 18px 24px rgba(16, 16, 16, 0.14);
}

.hero-box::before,
.hero-box::after {
    content: "";
    position: absolute;
    background: rgba(122, 70, 18, 0.22);
}

.hero-box::before {
    left: 12%;
    right: 12%;
    top: 18%;
    height: 3px;
}

.hero-box::after {
    top: 12%;
    bottom: 12%;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
}

.hero-box-lg {
    width: 92px;
    height: 92px;
    grid-row: span 2;
}

.hero-box-md {
    width: 70px;
    height: 70px;
}

.hero-box-sm {
    width: 58px;
    height: 58px;
    margin-left: 8px;
}

.hero-side-panel {
    position: absolute;
    right: 2rem;
    bottom: 2.4rem;
    display: grid;
    gap: 0.75rem;
    z-index: 4;
}

.mini-stat {
    min-width: 180px;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 16, 16, 0.08);
    box-shadow: 0 14px 28px rgba(16, 16, 16, 0.08);
}

.mini-stat strong {
    display: block;
    font-size: 0.98rem;
}

.mini-stat span {
    display: block;
    margin-top: 0.2rem;
    color: var(--sp-gray-600);
    font-size: 0.82rem;
    line-height: 1.45;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
}

.stat-card {
    padding: 1.2rem;
}

.stat-card strong {
    display: block;
    font-size: 1.4rem;
    line-height: 1.1;
}

.stat-card span {
    display: block;
    margin-top: 0.35rem;
    color: var(--sp-gray-600);
    font-size: 0.92rem;
}

.feature-card,
.service-card,
.serve-card,
.step-card,
.mini-panel,
.contact-card,
.info-card {
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover,
.service-card:hover,
.serve-card:hover,
.step-card:hover,
.mini-panel:hover,
.contact-card:hover,
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(16, 16, 16, 0.11);
    border-color: rgba(247, 198, 0, 0.55);
}

.process-truck-wrap {
    position: relative;
    padding: 1.25rem 1rem 1rem;
}

.process-truck-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    right: 12%;
    bottom: 0;
    height: 78%;
    border-radius: 30px;
    background: linear-gradient(145deg, #f7c600, #ffd84d);
    box-shadow: var(--sp-shadow);
}

.process-truck-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 20px 30px rgba(16, 16, 16, 0.18));
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.process-step-card {
    position: relative;
    min-height: 220px;
    padding: 1.4rem 1rem 1.2rem;
    border-radius: 24px;
    border: 1px solid rgba(16, 16, 16, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    box-shadow: 0 16px 34px rgba(16, 16, 16, 0.06);
    text-align: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.process-step-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -0.7rem;
    width: 1.4rem;
    border-top: 2px dashed rgba(16, 16, 16, 0.18);
}

.process-step-card:last-child::after {
    display: none;
}

.process-step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(247, 198, 0, 0.58);
    box-shadow: 0 24px 48px rgba(16, 16, 16, 0.1);
}

.process-step-number {
    width: 2.4rem;
    height: 2.4rem;
    margin: 0 auto 1rem;
    border-radius: 999px;
    background: var(--sp-black);
    color: var(--sp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.process-step-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1rem;
    border-radius: 22px;
    background: linear-gradient(145deg, #f7c600, #ffd84d);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.08);
}

.process-step-icon i {
    font-size: 1.7rem;
    color: var(--sp-black);
}

.process-step-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
}

.card-kicker {
    color: #b68200;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.feature-list,
.tick-list,
.service-list,
.step-list,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tick-list li,
.service-list li,
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--sp-gray-600);
}

.tick-list li + li,
.service-list li + li,
.contact-list li + li {
    margin-top: 0.85rem;
}

.tick-list li i,
.service-list li i,
.contact-list li i {
    color: #b68200;
    margin-top: 0.2rem;
}

.section-soft {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.section-accent {
    background:
        linear-gradient(180deg, rgba(247, 198, 0, 0.12), rgba(247, 198, 0, 0.04)),
        #fff;
}

.media-stack {
    position: relative;
    padding: 1rem 0 1rem 1rem;
}

.media-stack::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.2rem;
    bottom: 0;
    width: 74%;
    border-radius: 28px;
    background: linear-gradient(160deg, var(--sp-yellow), #fff3bf);
}

.media-stack img {
    position: relative;
    z-index: 1;
    border-radius: 28px;
    box-shadow: var(--sp-shadow);
}

.benefit-strip {
    border-radius: 28px;
    background: linear-gradient(90deg, #f7c600 0%, #ffd63f 100%);
    box-shadow: var(--sp-shadow);
}

.about-story-media {
    position: relative;
    min-height: 560px;
    padding: 1.4rem 0 3.8rem 2rem;
}

.about-story-media::before {
    content: "";
    position: absolute;
    inset: 1rem 0 2.6rem 0.8rem;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(247, 198, 0, 0.3), transparent 34%),
        linear-gradient(160deg, #fff8dc 0%, #ffffff 58%, #f5f5f5 100%);
    border: 1px solid rgba(16, 16, 16, 0.06);
}

.about-story-media-main,
.about-story-media-accent,
.about-story-badge {
    position: absolute;
    z-index: 1;
}

.about-story-media-main {
    inset: 0 0 42px 0;
}

.about-story-media-accent {
    right: 0;
    bottom: 0;
    width: 46%;
    max-width: 260px;
}

.about-story-media-main img,
.about-story-media-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 24px 48px rgba(16, 16, 16, 0.12);
    object-position: bottom;
}

.about-story-media-accent img {
    aspect-ratio: 0.9;
    object-position: center top;
    border: 8px solid rgba(255, 255, 255, 0.92);
}

.about-story-badge {
    left: 0;
    bottom: 1rem;
    max-width: 280px;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(16, 16, 16, 0.92);
    color: var(--sp-white);
    box-shadow: 0 18px 34px rgba(16, 16, 16, 0.18);
}

.about-story-badge strong {
    display: block;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.about-story-badge span {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
    line-height: 1.45;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 1.4rem 1rem;
    height: 100%;
    font-weight: 700;
    text-align: center;
}

.benefit-item i {
    font-size: 1.3rem;
}

.cta-banner {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: var(--sp-black);
    color: var(--sp-white);
    box-shadow: var(--sp-shadow);
}

.cta-banner::before,
.cta-banner::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(247, 198, 0, 0.14);
}

.cta-banner::before {
    width: 240px;
    height: 240px;
    left: -40px;
    top: -70px;
}

.cta-banner::after {
    width: 220px;
    height: 220px;
    right: -40px;
    bottom: -90px;
}

.page-hero {
    padding: 4.75rem 0 3.5rem;
    background:
        linear-gradient(135deg, rgba(247, 198, 0, 0.16), rgba(247, 198, 0, 0.03)),
        #fff;
}

.page-hero-card {
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(16, 16, 16, 0.08);
}

.contact-hero-card {
    background:
        radial-gradient(circle at top right, rgba(247, 198, 0, 0.22), transparent 36%),
        rgba(255, 255, 255, 0.9);
}

.contact-hero-card-centered {
    text-align: center;
    padding: 2.5rem;
}

.contact-hero-points {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-hero-points-inline {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
}

.contact-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--sp-gray-800);
    font-weight: 600;
}

.contact-hero-points i {
    color: #b68200;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-hero-panel-wide {
    grid-column: 1 / -1;
}

.contact-hero-panel {
    padding: 1.5rem;
    border-radius: 28px;
    border: 1px solid rgba(16, 16, 16, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    box-shadow: var(--sp-shadow);
}

.contact-hero-panel-dark {
    background: linear-gradient(145deg, #121212, #252525);
    color: var(--sp-white);
}

.contact-hero-panel-accent {
    background: linear-gradient(145deg, #fff5c9, #fffdf1);
}

.contact-hero-panel-map {
    background: linear-gradient(145deg, #f7f7f7, #ffffff);
}

.contact-hero-panel-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
}

.contact-hero-panel-inline {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.contact-hero-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f7c600, #ffd84d);
    color: var(--sp-black);
    font-size: 1.4rem;
    box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.08);
}

.contact-hero-panel-inline .contact-hero-icon {
    margin-bottom: 0;
}

.contact-hero-panel h2,
.contact-hero-panel p,
.contact-hero-panel a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-hero-panel h2 {
    line-height: 1.3;
}

.contact-form-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.98));
}

.contact-side-card {
    padding: 1.8rem;
}

.contact-side-card-dark {
    background: linear-gradient(145deg, #101010, #232323);
    border-color: rgba(255, 255, 255, 0.06);
}

.tracking-panel,
.form-panel {
    border-radius: 28px;
    border: 1px solid rgba(16, 16, 16, 0.08);
    background: #fff;
    box-shadow: var(--sp-shadow);
}

.tracking-panel .form-control,
.tracking-panel .form-check-input,
.form-panel .form-control,
.form-panel .form-select {
    border-radius: 14px;
}

.tracking-panel .form-control,
.form-panel .form-control,
.form-panel .form-select {
    border: 1px solid rgba(16, 16, 16, 0.14);
    padding: 0.95rem 1rem;
}

.tracking-panel .form-control:focus,
.form-panel .form-control:focus,
.form-panel .form-select:focus {
    border-color: rgba(247, 198, 0, 0.9);
    box-shadow: 0 0 0 0.2rem rgba(247, 198, 0, 0.18);
}

.table-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(16, 16, 16, 0.08);
    background: #fff;
    box-shadow: var(--sp-shadow);
}

.table-card table {
    margin-bottom: 0;
}

.contact-form .form-control,
.contact-form textarea {
    border-radius: 14px;
    border: 1px solid rgba(16, 16, 16, 0.14);
    padding: 0.95rem 1rem;
}

.contact-form .form-control:focus,
.contact-form textarea:focus {
    border-color: rgba(247, 198, 0, 0.9);
    box-shadow: 0 0 0 0.2rem rgba(247, 198, 0, 0.18);
}

.site-footer {
    background: #0d0d0d;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 2.6rem;
    height: 2.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.footer-social a:hover {
    background: var(--sp-yellow);
    color: var(--sp-black);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li + li {
    margin-top: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
    color: var(--sp-yellow);
}

.footer-link-icon {
    color: var(--sp-yellow);
    margin-right: 0.65rem;
    width: 1rem;
    text-align: center;
    flex: 0 0 1rem;
}

.footer-links a,
.footer-contact-item {
    display: inline-flex;
    align-items: center;
}

.footer-contact-item {
    color: rgba(255, 255, 255, 0.78);
    gap: 0;
}

.footer-contact-item-start {
    align-items: flex-start;
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    .hero-visual,
    .hero-panel {
        min-height: 500px;
    }

    .hero-panel-courier {
        min-height: 580px;
    }

    .hero-map {
        font-size: 15rem;
    }

    .hero-badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .site-header .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 20px;
        background: #fff;
        box-shadow: var(--sp-shadow);
    }

    .nav-item-services {
        width: 100%;
    }

    .nav-services-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .nav-services-menu {
        position: static;
        min-width: 100%;
        margin-top: 0.35rem;
        box-shadow: none;
        border-radius: 14px;
        background: #fafafa;
    }

    .hero {
        padding-top: 3.5rem;
    }

    .hero-visual,
    .hero-panel {
        min-height: 460px;
    }

    .hero-panel-courier {
        min-height: 620px;
    }

    .hero-copy-chip {
        right: 1.25rem;
    }

    .hero-side-stack {
        right: 1.25rem;
        bottom: 8rem;
        width: 220px;
    }

    .hero-person-fresh {
        right: 4%;
        height: 88%;
    }

    .floating-card {
        left: 1rem;
        top: 1rem;
    }

    .floating-card-bottom {
        bottom: 1rem;
        top: auto;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .hero-side-panel {
        right: 1rem;
        bottom: 1rem;
    }

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

    .process-step-card::after {
        display: none;
    }

    .contact-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-story-media {
        min-height: 520px;
        padding-left: 1.2rem;
    }

    .about-story-media-main {
        right: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .topbar {
        display: none;
    }

    .navbar-brand img {
        height: 54px;
    }

    .brand-copy span {
        display: none;
    }

    .section-space {
        padding: 4rem 0;
    }

    .section-space-sm {
        padding: 3rem 0;
    }

    .hero-visual,
    .hero-panel {
        min-height: 380px;
    }

    .hero-panel-courier {
        min-height: 560px;
    }

    .hero-map {
        font-size: 10rem;
        inset: 10% 5% auto;
    }

    .hero-panel-tag {
        left: 1rem;
        top: 1rem;
        max-width: 250px;
        padding: 0.9rem;
    }

    .hero-copy-chip {
        display: none;
    }

    .hero-person-fresh {
        right: 50%;
        transform: translateX(50%);
        height: 78%;
    }

    .hero-side-stack {
        left: 1rem;
        right: 1rem;
        bottom: 7.9rem;
        width: auto;
        grid-template-columns: 1fr;
    }

    .floating-card {
        position: static;
        margin: 1rem;
        max-width: none;
    }

    .floating-card-bottom {
        margin-top: 0;
    }

    .hero-badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-badge-feature {
        min-height: 108px;
    }

    .hero-metric-strip {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        grid-template-columns: 1fr;
    }

    .hero-side-card-light {
        grid-template-columns: 2.75rem minmax(0, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 0.85rem;
    }

    .process-step-card {
        min-height: 190px;
    }

    .page-hero {
        padding: 3.5rem 0 2.5rem;
    }

    .contact-hero-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-card-centered {
        text-align: left;
        padding: 2rem;
    }

    .about-story-media {
        min-height: 480px;
        padding: 1rem 0 3.2rem 0.8rem;
    }

    .about-story-media-main {
        inset: 0 1.2rem 7.2rem 0;
    }

    .about-story-media-accent {
        width: 44%;
        max-width: 220px;
    }

    .about-story-badge {
        max-width: 230px;
        padding: 0.95rem 1rem;
    }

    .contact-hero-points-inline {
        justify-content: flex-start;
    }

    .contact-hero-panel-inline {
        grid-template-columns: 1fr;
    }

    .scroll-to-top-btn {
        right: 1rem;
        bottom: 1rem;
        width: 2.85rem;
        height: 2.85rem;
    }
}

@media (max-width: 575.98px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .hero-panel-courier {
        min-height: 640px;
    }

    .hero-person-fresh {
        height: 130%;
        object-fit: cover;
    }

    .hero-image-base {
        left: 10%;
        right: 10%;
        bottom: 8.2rem;
    }

    .about-story-media {
        min-height: auto;
        padding: 0;
        display: grid;
        gap: 1rem;
    }

    .about-story-media::before {
        inset: 0;
        bottom: 0;
    }

    .about-story-media-main,
    .about-story-media-accent,
    .about-story-badge {
        position: relative;
    }

    .about-story-media-main,
    .about-story-media-accent {
        inset: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: none;
    }

    .about-story-media-main {
        padding: 0.9rem 0.9rem 0;
    }

    .about-story-media-accent {
        padding: 0 0.9rem;
    }

    .about-story-media-main img {
        min-height: 260px;
    }

    .about-story-media-accent img {
        aspect-ratio: 1.2;
    }

    .about-story-badge {
        left: auto;
        bottom: auto;
        max-width: none;
        margin: 0 0.9rem 0.9rem;
    }

    .process-truck-wrap::after {
        box-shadow: 160px 0 0 rgba(16, 16, 16, 0.1);
    }
}

.pickup-shell {
    padding: 2.2rem;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(247, 198, 0, 0.14), transparent 28%),
        rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(16, 16, 16, 0.08);
    box-shadow: 0 24px 60px rgba(16, 16, 16, 0.08);
}

.pickup-shell-header {
    max-width: 760px;
    margin: 0 auto 2.2rem;
}

.pickup-overline {
    display: inline-block;
    margin-bottom: 0.55rem;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pickup-title {
    margin: 0 0 0.8rem;
    font-size: clamp(2.6rem, 4vw, 4.5rem);
    line-height: 1;
    font-weight: 900;
}

.pickup-subtitle {
    margin: 0;
    color: var(--sp-gray-600);
    font-size: 1.05rem;
    line-height: 1.75;
}

.pickup-form .pickup-input {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(16, 16, 16, 0.14);
    padding: 0.95rem 1rem;
    font-size: 1rem;
}

.pickup-form .pickup-input:focus {
    border-color: rgba(247, 198, 0, 0.9);
    box-shadow: 0 0 0 0.2rem rgba(247, 198, 0, 0.18);
}

.pickup-textarea {
    min-height: 120px;
}

.pickup-calculator {
    padding: 1.7rem;
    border-radius: 28px;
    background: linear-gradient(180deg, #fffdf0 0%, #fff9df 100%);
    border: 2px solid rgba(247, 198, 0, 0.95);
    box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.03);
}

.pickup-calc-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.pickup-calc-header h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.7rem, 2vw, 2.5rem);
    font-weight: 800;
}

.pickup-calc-header p {
    margin: 0;
    color: var(--sp-gray-600);
    font-size: 1rem;
    font-weight: 600;
}

.pickup-calc-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.05rem;
    border-radius: 999px;
    background: var(--sp-black);
    color: var(--sp-yellow);
    font-size: 0.9rem;
    font-weight: 800;
    white-space: nowrap;
}

.pickup-result-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.pickup-result-card {
    padding: 1.2rem 1.25rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(16, 16, 16, 0.08);
    box-shadow: 0 12px 24px rgba(16, 16, 16, 0.04);
}

.pickup-result-card span {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--sp-gray-600);
    font-size: 0.96rem;
    font-weight: 700;
}

.pickup-result-card strong {
    display: block;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    line-height: 1.1;
    font-weight: 900;
}

.pickup-result-card-dark {
    background: var(--sp-black);
    color: var(--sp-white);
}

.pickup-result-card-dark span {
    color: rgba(255, 255, 255, 0.74);
}

.pickup-calc-note {
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(16, 16, 16, 0.04);
    color: var(--sp-gray-800);
    font-weight: 600;
}

.pickup-form-message {
    padding: 1rem 1.15rem;
    border-radius: 18px;
    font-weight: 700;
    line-height: 1.5;
    border: 1px solid transparent;
}

.pickup-form-message.is-success {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
    border-color: rgba(34, 197, 94, 0.2);
}

.pickup-form-message.is-error {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border-color: rgba(239, 68, 68, 0.2);
}

.pickup-actions {
    margin-top: 1.9rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
}

.pickup-action-btn {
    min-width: 180px;
}

.rate-estimator-panel {
    background: linear-gradient(180deg, #fffdf4 0%, #fff9e5 100%);
}

.rate-mode-tabs {
    display: inline-flex;
    padding: 0.35rem;
    gap: 0.35rem;
    border-radius: 18px;
    border: 1px solid rgba(16, 16, 16, 0.1);
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.02);
}

.rate-mode-tab {
    border: 0;
    min-width: 132px;
    padding: 0.8rem 1.15rem;
    border-radius: 14px;
    background: transparent;
    color: var(--sp-black);
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.rate-mode-tab.active {
    background: #1e90ba;
    color: #fff;
}

.rate-mode-tab:hover {
    transform: translateY(-1px);
}

.rate-input-group .pickup-input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.rate-input-addon {
    min-width: 66px;
    justify-content: center;
    border-color: rgba(16, 16, 16, 0.14);
    border-left: 0;
    border-radius: 0 16px 16px 0;
    background: #e8eef5;
    color: var(--sp-gray-700);
    font-weight: 700;
}

.rate-input-addon-prepend {
    min-width: 54px;
    border-left: 1px solid rgba(16, 16, 16, 0.14);
    border-right: 0;
    border-radius: 16px 0 0 16px;
}

.rate-input-group .rate-input-addon-prepend + .pickup-input {
    border-radius: 0 16px 16px 0;
}

.rate-dimension-block {
    padding-top: 1.8rem;
    border-top: 1px solid rgba(16, 16, 16, 0.08);
}

.rate-dimension-header {
    margin-bottom: 1.25rem;
}

.rate-dimension-header h2 {
    margin: 0 0 0.35rem;
    font-size: 1.75rem;
    font-weight: 800;
}

.rate-dimension-header p {
    margin: 0;
    color: var(--sp-gray-600);
}

.rate-form-actions {
    padding-top: 0.25rem;
}

.rate-calculate-btn {
    border-radius: 16px;
    min-height: 58px;
    font-size: 1.05rem;
}

.rate-live-panel {
    background: linear-gradient(180deg, #fffdf0 0%, #fff8dc 100%);
}

.rate-results-wrap,
.rate-results-list {
    display: grid;
    gap: 1rem;
}

.rate-estimate-card {
    padding: 1.5rem;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 220, 0.94));
    border: 1px solid rgba(16, 16, 16, 0.08);
    box-shadow: 0 20px 40px rgba(16, 16, 16, 0.08);
}

.rate-estimate-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(247, 198, 0, 0.2);
    color: var(--sp-black);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rate-estimate-price {
    display: block;
    margin-top: 1rem;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1;
    font-weight: 900;
    color: var(--sp-black);
}

.rate-estimate-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    margin-top: 1rem;
}

.rate-estimate-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sp-gray-700);
    font-size: 0.95rem;
    font-weight: 700;
}

.rate-estimate-copy {
    margin: 1rem 0 0;
    color: var(--sp-gray-600);
    line-height: 1.6;
}

.rate-platform-card {
    padding: 1.4rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 16, 16, 0.08);
}

.rate-platform-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.05rem;
}

.rate-platform-header h3 {
    margin: 0;
    text-transform: capitalize;
    font-size: 1.25rem;
    font-weight: 800;
}

.rate-platform-header span {
    font-size: 0.92rem;
    color: var(--sp-gray-600);
    font-weight: 700;
}

.rate-option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.rate-option-card {
    padding: 1.15rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(16, 16, 16, 0.08);
    box-shadow: 0 12px 24px rgba(16, 16, 16, 0.04);
}

.rate-option-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.rate-option-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.rate-option-logo {
    width: 54px;
    height: 54px;
    padding: 0.55rem;
    border-radius: 16px;
    background: #fff7d8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rate-option-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rate-option-brand h4 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.rate-option-content {
    min-width: 0;
}

.rate-option-inline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
}

.rate-option-price {
    white-space: nowrap;
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--sp-black);
}

.rate-option-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--sp-gray-700);
    font-size: 0.92rem;
    font-weight: 700;
}

.rate-empty-state {
    padding: 1.2rem 1.25rem;
    border-radius: 18px;
    background: rgba(16, 16, 16, 0.05);
    color: var(--sp-gray-700);
    font-weight: 600;
}

.rate-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.rate-breakdown-card {
    padding: 1.05rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(16, 16, 16, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.rate-breakdown-card span {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--sp-gray-600);
    font-size: 0.9rem;
    font-weight: 700;
}

.rate-breakdown-card strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.15;
}

.rate-breakdown-card-total {
    background: var(--sp-black);
    color: var(--sp-white);
}

.rate-breakdown-card-total span {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767.98px) {
    .pickup-shell {
        padding: 1.4rem;
        border-radius: 24px;
    }

    .pickup-shell-header {
        margin-bottom: 1.6rem;
    }

    .pickup-calc-header {
        flex-direction: column;
    }

    .pickup-result-grid {
        grid-template-columns: 1fr;
    }

    .rate-breakdown-grid {
        grid-template-columns: 1fr;
    }

    .rate-option-grid {
        grid-template-columns: 1fr;
    }

    .rate-option-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .rate-option-brand {
        width: 100%;
    }

    .rate-option-price {
        width: 100%;
        white-space: normal;
        text-align: left;
    }

    .pickup-actions {
        justify-content: stretch;
    }

    .pickup-action-btn {
        width: 100%;
    }

    .rate-mode-tabs {
        width: 100%;
    }

    .rate-mode-tab {
        flex: 1 1 0;
        min-width: 0;
    }
}

.benefit-support-strip {
    overflow: hidden;
    border: 1px solid rgba(16, 16, 16, 0.08);
}

.benefit-intro {
    height: 100%;
    padding: 2rem 2rem 1.9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--sp-black);
}

.benefit-intro-kicker {
    display: inline-block;
    margin-bottom: 0.6rem;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.benefit-intro h2 {
    margin: 0 0 0.8rem;
    font-size: clamp(1.7rem, 2vw, 2.4rem);
    line-height: 1.08;
    font-weight: 800;
}

.benefit-intro p {
    margin: 0;
    max-width: 420px;
    color: rgba(16, 16, 16, 0.8);
    font-size: 1rem;
    line-height: 1.7;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    height: 100%;
}

.benefit-feature {
    min-height: 100%;
    padding: 1.65rem 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--sp-black);
    position: relative;
}

.benefit-feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: rgba(16, 16, 16, 0.14);
}

.benefit-feature:first-child::before {
    display: none;
}

.benefit-feature-icon {
    width: 4.4rem;
    height: 4.4rem;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sp-black);
    font-size: 2rem;
}

.benefit-feature span {
    max-width: 120px;
    font-weight: 700;
    line-height: 1.35;
}

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

    .benefit-feature:nth-child(4)::before {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .benefit-intro {
        padding: 1.7rem 1.4rem 1.4rem;
    }

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

    .benefit-feature::before {
        display: none;
    }
}
