:root {
    --page: #f7f6f1;
    --surface: #ffffff;
    --surface-soft: #f0efe9;
    --ink: #15171b;
    --muted: #535a64;
    --muted-2: #68717c;
    --line: #dedfd9;
    --line-strong: #cfd2cc;
    --accent: #ffce00;
    --accent-hover: #efbf00;
    --accent-dark: #9c0000;
    --germany-red: #d20a11;
    --green: #23815f;
    --green-soft: #eaf6f1;
    --container: 1240px;
    --shadow: 0 22px 60px rgba(25, 28, 33, 0.08);
    --shadow-soft: 0 7px 26px rgba(25, 28, 33, 0.045);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--page);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 19.2px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

button,
input {
    font-family: inherit;
}

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

img,
svg {
    display: block;
    max-width: 100%;
}

button {
    cursor: pointer;
}

section {
    scroll-margin-top: 92px;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 104px 0;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid #2b2e33;
    border-radius: 11px;
    background: #2b2e33;
    color: #fff;
    font-size: 1.104rem;
    font-weight: 760;
    transition: 0.18s ease;
}

.button:hover {
    background: #3a3e44;
    border-color: #3a3e44;
}

.button-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--ink);
}

.button-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.button-small {
    min-height: 42px;
    padding-inline: 17px;
    font-size: 0.996rem;
}

.button-block {
    width: 100%;
}

.quote-submit {
    gap: 10px;
}

.quote-submit.is-loading,
.quote-submit:disabled {
    cursor: progress;
    opacity: 0.92;
}

.quote-submit-progress {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.quote-submit-progress[hidden] {
    display: none !important;
}

.quote-submit-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(21, 23, 27, 0.22);
    border-top-color: var(--ink);
    border-radius: 50%;
    animation: quote-spin 0.8s linear infinite;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 740;
}

.text-link span {
    transition: transform 0.18s ease;
}

.text-link:hover span {
    transform: translateX(3px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 246, 241, 0.92);
    border-bottom: 1px solid rgba(21, 23, 27, 0.06);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    font-size: 0.94rem;
    font-weight: 900;
}

.brand-name {
    font-size: 1.236rem;
    font-weight: 830;
    letter-spacing: -0.03em;
}

.brand-name span {
    color: var(--accent-dark);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-left: auto;
}

.desktop-nav a {
    color: #444951;
    font-size: 1.044rem;
    font-weight: 680;
}

.desktop-nav a:hover {
    color: #111;
}

.desktop-nav > a[aria-current="page"],
.nav-dropdown.is-current > summary {
    color: var(--accent-dark);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown summary {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #444951;
    font-size: 1.044rem;
    font-weight: 680;
    cursor: pointer;
    list-style: none;
    white-space: nowrap;
}

.nav-dropdown summary::-webkit-details-marker {
    display: none;
}

.nav-dropdown summary::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-top: -4px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.18s ease;
}

.nav-dropdown[open] summary::after {
    margin-top: 3px;
    transform: rotate(225deg);
}

.nav-dropdown[open]::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -18px;
    width: calc(100% + 36px);
    height: 16px;
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 20;
    width: 255px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 45px rgba(25, 28, 33, 0.14);
    transform: translateX(-50%);
}

.nav-submenu-wide {
    width: 275px;
}

.nav-submenu a {
    display: block;
    padding: 10px 12px;
    border-radius: 9px;
    line-height: 1.3;
}

.nav-submenu a:hover,
.nav-submenu a[aria-current="page"] {
    background: var(--surface-soft);
    color: var(--accent-dark);
}

.mobile-nav {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow-soft);
    font: inherit;
    font-size: 0.94rem;
    font-weight: 790;
    cursor: pointer;
}

.mobile-menu-icon {
    width: 18px;
    display: grid;
    gap: 4px;
}

.mobile-menu-icon i {
    width: 100%;
    height: 2px;
    display: block;
    border-radius: 99px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon i:first-child {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon i:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon i:last-child {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 10px 0 52px;
    background: linear-gradient(135deg, #faf9f5 0%, #f7f5ed 60%, #fff3bd 100%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -160px;
    top: -220px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(21, 23, 27, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 500px);
    align-items: center;
    gap: clamp(44px, 6vw, 88px);
}

.hero-content {
    max-width: 670px;
}

.hero-content .route-label {
    margin-inline: 0;
}

.route-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    padding: 8px 12px;
    border: 1px solid #e7d795;
    border-radius: 999px;
    background: rgba(255, 248, 218, 0.8);
    color: #675006;
    font-size: 0.936rem;
    font-weight: 770;
}

.route-label span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--germany-red);
}

.hero h1 {
    margin: 0;
    max-width: 670px;
    font-size: clamp(2.85rem, 4.5vw, 4.75rem);
    font-weight: 840;
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.hero h1 em {
    display: block;
    color: var(--germany-red);
    font-style: normal;
}

.hero-lead {
    max-width: 620px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 22px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 22px;
    margin-top: 22px;
}

.hero-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #363b42;
    font-size: 1.02rem;
    font-weight: 670;
}

.hero-benefits i {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    font-style: normal;
    font-size: 0.84rem;
    font-weight: 900;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 650px;
    margin: 28px 0 0;
    padding-top: 17px;
    border-top: 1px solid var(--line);
}

.hero-stats > div {
    padding-right: 18px;
}

.hero-stats > div + div {
    padding-left: 18px;
    border-left: 1px solid var(--line);
}

.hero-stats strong {
    display: block;
    font-size: 1rem;
    font-weight: 820;
}

.hero-stats span {
    display: block;
    margin-top: 3px;
    color: var(--muted-2);
    font-size: 0.9rem;
}

.quote-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(21, 23, 27, 0.08);
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow);
}

.cities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quote-card::before {
    content: "";
    display: block;
    height: 5px;
    background: linear-gradient(90deg, #111 0 33.333%, var(--germany-red) 33.333% 66.666%, var(--accent) 66.666% 100%);
}

.calculator-section {
    position: relative;
    padding: 50px 0 78px;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 10%, rgba(237, 193, 54, 0.16), transparent 28%),
        linear-gradient(180deg, #f0efe9 0%, #f7f6f1 100%);
}

.calculator-wrap {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.calculator-intro {
    max-width: 680px;
    margin: 0 auto 22px;
    text-align: center;
}

.calculator-intro h2 {
    margin: 8px 0 0;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.calculator-intro p {
    margin: 15px auto 0;
    color: var(--muted);
    font-size: 1rem;
}

.calculator-section .quote-card {
    width: 100%;
}

.calculator-section .quote-card-header,
.calculator-section .quote-card form,
.calculator-section .quote-note {
    padding-inline: 40px;
}

.calculator-section .quote-route,
.calculator-section .quote-summary,
.calculator-section .quote-inline-result,
.calculator-section .quote-inline-error {
    margin-inline: 40px;
}

.quote-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 25px 26px 19px;
    border-bottom: 1px solid var(--line);
}

.quote-eyebrow {
    display: block;
    color: var(--muted-2);
    font-size: 0.94rem;
    font-weight: 780;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.quote-card h2,
.quote-card h3 {
    margin: 5px 0 0;
    font-size: 1.45rem;
    font-weight: 820;
    letter-spacing: -0.035em;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding-top: 4px;
    color: #4d535a;
    font-size: 0.94rem;
    font-weight: 720;
}

.status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #36b87f;
}

.quote-route {
    display: grid;
    grid-template-columns: 1fr 90px 1fr;
    align-items: center;
    gap: 12px;
    margin: 21px 24px 0;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #f7f7f3;
}

.country {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-end {
    justify-content: flex-end;
    text-align: right;
}

.country-code {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    flex: 0 0 37px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 900;
}

.country-code-de {
    border-color: #e2c866;
    background: var(--accent);
}

.country strong {
    display: block;
    font-size: 1.02rem;
    font-weight: 800;
}

.country small {
    display: block;
    margin-top: 1px;
    color: var(--muted-2);
    font-size: 0.9rem;
}

.route-line {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 6px;
    color: var(--muted-2);
}

.route-line span {
    height: 1px;
    background: repeating-linear-gradient(to right, #bfc3bc 0, #bfc3bc 5px, transparent 5px, transparent 9px);
}

.route-line b {
    font-size: 0.984rem;
}

.quote-card form {
    padding: 22px 24px 5px;
}

.parcel-fields {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
}

.parcel-fields legend {
    width: 100%;
    grid-column: 1 / -1;
    margin-bottom: 7px;
    padding: 0;
    color: #353a41;
    font-size: 0.936rem;
    font-weight: 760;
}

.parcel-field {
    min-width: 0;
}

.parcel-field label {
    display: block;
    margin-bottom: 5px;
    color: #353a41;
    font-size: 0.9rem;
    font-weight: 720;
}

.input-with-unit {
    position: relative;
}

.input-with-unit input {
    width: 100%;
    height: 49px;
    padding: 0 44px 0 13px;
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    background: #fff;
    color: var(--ink);
    outline: 0;
    font-size: 1.1rem;
}

.input-with-unit input:focus {
    border-color: #b18d1b;
    box-shadow: 0 0 0 3px rgba(237, 193, 54, 0.16);
}

.input-with-unit span {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-2);
    font-size: 0.9rem;
    font-weight: 700;
    pointer-events: none;
}

.quote-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 14px 24px 0;
    padding: 15px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.quote-summary > div {
    padding-right: 10px;
}

.quote-summary > div + div {
    padding-left: 12px;
    border-left: 1px solid var(--line);
}

.quote-summary small {
    display: block;
    color: var(--muted-2);
    font-size: 0.88rem;
}

.quote-summary strong {
    display: block;
    margin-top: 3px;
    font-size: 1rem;
    font-weight: 800;
}

.quote-note {
    margin: 0;
    padding: 15px 24px 22px;
    color: var(--muted-2);
    font-size: 0.95rem;
    line-height: 1.65;
}

.quote-result-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-weight: 820;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quote-inline-result {
    margin: 18px 24px 0;
    padding: 18px;
    border: 1px solid #ead37a;
    border-radius: 22px;
    background: linear-gradient(145deg, #fffaf0, #fff4cc);
}

.quote-inline-main strong {
    display: block;
    margin-top: 10px;
    font-size: 2rem;
    font-weight: 860;
    letter-spacing: -0.05em;
}

.quote-inline-main p {
    margin: 10px 0 0;
    color: #665a33;
    font-size: 0.96rem;
    line-height: 1.6;
}

.quote-inline-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.quote-inline-metrics div,
.quote-inline-alt article {
    padding: 12px 13px;
    border: 1px solid rgba(123, 94, 0, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
}

.quote-inline-metrics small,
.quote-inline-alt small {
    display: block;
    color: #7a7253;
    font-size: 0.88rem;
}

.quote-inline-metrics strong,
.quote-inline-alt strong {
    display: block;
    margin-top: 4px;
    font-size: 0.96rem;
    font-weight: 810;
}

.quote-inline-alt {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.quote-inline-error {
    margin: 18px 24px 0;
    padding: 14px 16px;
    border: 1px solid #e7c8ba;
    border-radius: 16px;
    background: #fff3ef;
    color: #8a3f24;
}

.quote-inline-error strong {
    display: block;
    font-size: 1.08rem;
}

.quote-inline-error p {
    margin: 6px 0 0;
}

.quote-results-section {
    position: relative;
    padding: 46px 0 52px;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 0, rgba(255, 206, 0, 0.22), transparent 30%),
        #efeee8;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.quote-results-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 24px;
}

.quote-results-header h2 {
    margin: 5px 0 0;
    font-size: clamp(1.7rem, 2.8vw, 2.5rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.quote-shipment-meta {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.quote-shipment-meta > span {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--muted-2);
    font-size: 0.88rem;
}

.quote-shipment-meta strong {
    margin-left: 5px;
    color: var(--ink);
    font-weight: 790;
}

.quote-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.quote-offer-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(21, 23, 27, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 34px rgba(25, 28, 33, 0.06);
}

.quote-offer-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: #2b2e33;
}

.quote-offer-card.is-best {
    border-color: #dfb900;
    background: linear-gradient(145deg, #fffdf6, #fff4bd);
    box-shadow: 0 18px 42px rgba(123, 94, 0, 0.12);
}

.quote-offer-card.is-best::before {
    background: linear-gradient(90deg, #111 0 33%, var(--germany-red) 33% 66%, var(--accent) 66%);
}

.quote-offer-card:not(.is-best).service-rapid::before {
    background: #2878c8;
}

.quote-offer-card:not(.is-best).service-flash::before {
    background: linear-gradient(90deg, #ffce00, #f28d00);
}

.quote-offer-card:not(.is-best).service-economic::before {
    background: var(--green);
}

.quote-offer-top,
.quote-offer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.quote-offer-number {
    color: var(--muted-2);
    font-size: 0.86rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.quote-offer-badge,
.quote-offer-type {
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 860;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(21, 23, 27, 0.1);
}

.quote-offer-badge > span,
.quote-offer-type > span {
    font-size: 1rem;
    line-height: 1;
}

.quote-offer-badge {
    display: inline-flex;
    background: var(--accent);
    color: var(--ink);
}

.quote-offer-type {
    width: 132px;
    display: inline-flex;
    background: #f0f1ed;
    color: var(--muted);
}

.quote-offer-type-rapid {
    background: #e7f1ff;
    color: #15579d;
}

.quote-offer-type-flash {
    background: #fff0b8;
    color: #805700;
}

.quote-offer-type-economic {
    background: var(--green-soft);
    color: var(--green);
}

.quote-offer-service {
    flex: 1;
    margin-top: 22px;
}

.quote-offer-service small,
.quote-offer-price small {
    display: block;
    color: var(--muted-2);
    font-size: 0.9rem;
    font-weight: 700;
}

.quote-offer-service h3 {
    margin: 5px 0 0;
    font-size: 1.2rem;
    line-height: 1.25;
}

.quote-offer-service p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

.quote-offer-fit {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 15px;
    padding: 11px 12px;
    border-radius: 12px;
    background: rgba(21, 23, 27, 0.045);
    color: #343940;
    font-size: 0.95rem;
    font-weight: 760;
    line-height: 1.4;
}

.quote-offer-fit > span {
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    flex: 0 0 19px;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 900;
}

.quote-offer-card.is-best .quote-offer-fit {
    background: rgba(255, 255, 255, 0.65);
}

.quote-offer-price {
    padding: 17px 0;
    border-top: 1px solid rgba(21, 23, 27, 0.09);
}

.quote-offer-price strong {
    display: block;
    margin-top: 4px;
    font-size: clamp(2.15rem, 3.4vw, 2.8rem);
    font-weight: 880;
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.quote-offer-price strong span {
    font-size: 0.48em;
    letter-spacing: -0.02em;
}

.quote-offer-order {
    width: 100%;
    min-height: 52px;
    margin-bottom: 16px;
    justify-content: space-between;
    font-size: 1rem;
}

.quote-offer-order span {
    font-size: 1.2em;
    transition: transform 0.2s ease;
}

.quote-offer-order:hover span {
    transform: translateX(3px);
}

.quote-offer-footer {
    padding-top: 14px;
    border-top: 1px solid rgba(21, 23, 27, 0.09);
    color: var(--muted);
    font-size: 0.9rem;
}

.quote-offer-footer span:first-child {
    color: var(--ink);
    font-weight: 820;
}

.trust-strip {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
    padding: 20px 26px;
    border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
    padding-left: 0;
}

.trust-grid > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.trust-grid strong {
    display: block;
    font-size: 0.984rem;
    font-weight: 800;
}

.trust-grid span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.95rem;
}

.section-label {
    display: block;
    color: var(--germany-red);
    font-size: 0.9rem;
    font-weight: 820;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 34px;
}

.section-heading h2,
.service-copy h2,
.info-intro h2,
.coverage-copy h2,
.answer-box h2 {
    margin: 9px 0 0;
    font-size: clamp(2rem, 3.2vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -0.05em;
}

.section-heading > p,
.service-copy > p,
.info-intro > p,
.coverage-copy > p {
    margin: 0;
    color: var(--muted);
}

.section-heading-center {
    display: block;
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.section-heading-center > p {
    margin-top: 12px;
}

.service-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
    align-items: center;
    gap: clamp(50px, 7vw, 96px);
}

.service-copy > p {
    margin-top: 20px;
}

.service-list {
    display: grid;
    gap: 22px;
    margin-top: 32px;
}

.service-list article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
}

.service-list article > span,
.steps article > span {
    color: var(--germany-red);
    font-size: 0.9rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.service-list h3,
.steps h3,
.info-list h3 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.35;
}

.service-list p,
.steps p,
.info-list p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

.route-visual {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.route-visual-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
}

.route-visual-head strong {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink);
}

.route-visual-head i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.route-map {
    padding: 30px 24px;
}

.route-city {
    display: flex;
    align-items: center;
    gap: 13px;
}

.route-city-end {
    justify-content: flex-end;
    text-align: right;
}

.route-city strong,
.route-city small {
    display: block;
}

.route-city small {
    color: var(--muted-2);
    font-size: 0.9rem;
}

.route-circle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 850;
}

.route-circle-de {
    background: var(--accent);
    border-color: var(--accent);
}

.route-progress {
    display: grid;
    grid-template-columns: 1fr 44px 1fr;
    align-items: center;
    gap: 10px;
    margin: 18px 18px;
}

.route-progress > span {
    height: 1px;
    background: repeating-linear-gradient(90deg, #c7c9c4 0 6px, transparent 6px 11px);
}

.parcel-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--accent);
}

.parcel-icon svg,
.info-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.route-visual-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.route-visual-footer div {
    padding: 17px 20px;
}

.route-visual-footer div + div {
    border-left: 1px solid var(--line);
}

.route-visual-footer small,
.route-visual-footer strong {
    display: block;
}

.route-visual-footer small {
    color: var(--muted-2);
    font-size: 0.9rem;
}

.route-visual-footer strong {
    margin-top: 3px;
    font-size: 0.94rem;
}

.prices-section {
    background: var(--surface-soft);
}

.prices-table {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.price-row {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr 0.6fr 0.75fr 42px;
    align-items: center;
    gap: 22px;
    padding: 20px 22px;
}

.price-weight {
    display: flex;
    align-items: center;
    gap: 13px;
}

.price-weight span {
    color: var(--germany-red);
    font-size: 0.9rem;
    font-weight: 850;
}

.price-description,
.prices-note {
    color: var(--muted);
    font-size: 0.98rem;
}

.price-service small,
.price-amount small {
    display: block;
    color: var(--muted-2);
    font-size: 0.9rem;
}

.price-service strong,
.price-amount strong {
    display: block;
    margin-top: 2px;
}

.price-row > a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
}

.prices-note {
    margin: 12px 0 0;
    text-align: center;
}

.content-hero {
    padding: 64px 0 70px;
    background: linear-gradient(135deg, #faf9f5 0%, #f7f5ed 68%, #fff3bd 100%);
    border-bottom: 1px solid var(--line);
}

.content-hero-inner {
    max-width: 930px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 0.9rem;
}

.breadcrumbs a {
    font-weight: 750;
}

.content-hero h1 {
    max-width: 900px;
    margin: 10px 0 0;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.content-hero p {
    max-width: 780px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.7;
}

.content-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 26px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 70px;
    padding-top: 70px;
    padding-bottom: 92px;
}

.article-content {
    min-width: 0;
}

.article-content > section {
    padding: 0 0 42px;
}

.article-content > section + section {
    padding-top: 42px;
    border-top: 1px solid var(--line);
}

.article-content h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(1.6rem, 2.7vw, 2.35rem);
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.article-content h2 + p,
.article-content section > p {
    max-width: 800px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.article-content ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding-left: 24px;
}

.article-content li {
    padding-left: 5px;
    line-height: 1.6;
}

.article-sidebar {
    position: sticky;
    top: 105px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.article-sidebar > strong {
    display: block;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
}

.article-sidebar nav {
    display: grid;
    padding: 8px 22px;
}

.article-sidebar nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.4;
}

.article-sidebar nav a:last-child {
    border-bottom: 0;
}

.article-sidebar nav a:hover {
    color: var(--germany-red);
}

.sidebar-cta {
    padding: 22px;
    background: #fff4c9;
}

.sidebar-cta > span {
    color: var(--germany-red);
    font-size: 0.88rem;
    font-weight: 820;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sidebar-cta p {
    margin: 8px 0 16px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.source-box,
.article-notice {
    margin: 0 0 42px;
    padding: 22px 24px;
    border: 1px solid #eadca7;
    border-radius: 16px;
    background: #fffaf0;
}

.source-box ul {
    margin-top: 10px;
}

.source-box a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-faq details {
    border-bottom: 1px solid var(--line);
}

.article-faq h2 {
    margin: 9px 0 20px;
}

.article-faq summary {
    padding: 18px 28px 18px 0;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 760;
    line-height: 1.45;
}

.article-faq details p {
    margin: -4px 0 20px;
}

.article-price-table {
    margin-top: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.article-price-row {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
}

.article-price-row + .article-price-row {
    border-top: 1px solid var(--line);
}

.article-price-row h3 {
    display: grid;
    place-items: center;
    margin: 0;
    padding: 20px;
    border-right: 1px solid var(--line);
    background: #f8f8f4;
    font-size: 1.4rem;
}

.article-price-row > div {
    padding: 8px 20px;
}

.article-price-row p {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 0;
    padding: 11px 0;
    color: var(--muted);
}

.article-price-row p + p {
    border-top: 1px solid var(--line);
}

.article-price-row strong {
    color: var(--ink);
    white-space: nowrap;
}

.guides-section {
    padding-top: 0;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.guide-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.guide-card span {
    color: var(--germany-red);
    font-size: 0.86rem;
    font-weight: 820;
    text-transform: uppercase;
}

.guide-card strong {
    display: block;
    margin-top: 10px;
    font-size: 1.15rem;
    line-height: 1.35;
}

.guide-card b {
    color: var(--muted);
    font-size: 1.2rem;
}

.prices-unavailable {
    padding: 34px;
    text-align: center;
}

.prices-unavailable strong {
    display: block;
    font-size: 1.25rem;
}

.prices-unavailable p {
    max-width: 620px;
    margin: 8px auto 20px;
    color: var(--muted);
}

.fedex-price-group {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
}

.fedex-price-group + .fedex-price-group {
    border-top: 1px solid var(--line);
}

.fedex-weight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    border-right: 1px solid var(--line);
    background: #f8f8f4;
}

.fedex-weight span,
.fedex-weight small {
    color: var(--muted);
    font-size: 0.88rem;
}

.fedex-weight strong {
    margin: 4px 0;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

.fedex-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fedex-service-card {
    min-width: 0;
    padding: 22px;
}

.fedex-service-card + .fedex-service-card {
    border-left: 1px solid var(--line);
}

.fedex-service-tier {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fedex-service-card.tier-priority .fedex-service-tier {
    background: #e7f1ff;
    color: #15579d;
}

.fedex-service-card.tier-express .fedex-service-tier {
    background: #fff0b8;
    color: #805700;
}

.fedex-service-name {
    display: block;
    min-height: 2.7em;
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.35;
}

.fedex-service-price {
    margin-top: 14px;
    font-size: 1.6rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.04em;
}

.fedex-service-price span {
    font-size: 0.58em;
    letter-spacing: 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 42px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.steps article {
    padding: 28px 25px;
}

.steps article + article {
    border-left: 1px solid var(--line);
}

.steps h3 {
    margin-top: 16px;
}

.info-section {
    background: #fbfaf6;
}

.info-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
    gap: clamp(55px, 8vw, 110px);
}

.info-intro > p {
    margin-top: 20px;
}

.info-intro .text-link {
    margin-top: 24px;
}

.info-list {
    display: grid;
}

.info-list article {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 17px;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
}

.info-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #fff4c8;
    color: #8f6c00;
}

.coverage-box {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 60px;
    padding: 48px;
    border: 1px solid #eadca7;
    border-radius: 24px;
    background: linear-gradient(135deg, #fffdf7, #fff4c9);
}

.cities {
    align-content: center;
}

.cities span {
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 680;
}

.answer-section {
    padding: 0 0 92px;
}

.answer-box {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.answer-label {
    color: var(--germany-red);
    font-size: 0.88rem;
    font-weight: 820;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.answer-box h2 {
    font-size: clamp(1.5rem, 2.3vw, 2.3rem);
}

.answer-box p {
    margin: 12px 0 0;
    color: var(--muted);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 44px;
    border-top: 1px solid var(--line);
}

.faq-grid details {
    border-bottom: 1px solid var(--line);
}

.faq-grid summary {
    position: relative;
    padding: 18px 28px 18px 0;
    cursor: pointer;
    list-style: none;
    font-size: 1.05rem;
    line-height: 1.45;
    font-weight: 760;
}

.faq-grid summary::-webkit-details-marker {
    display: none;
}

.faq-grid summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    color: var(--germany-red);
}

.faq-grid details[open] summary::after {
    content: "−";
}

.faq-grid details p {
    margin: -4px 0 18px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

.cta-section {
    padding: 0 0 90px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 36px;
    border: 1px solid #ead37a;
    border-radius: 20px;
    background: #fff4c9;
}

.cta-box span {
    color: var(--germany-red);
    font-size: 0.88rem;
    font-weight: 820;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cta-box h2 {
    margin: 5px 0 0;
    font-size: 1.75rem;
}

.cta-box p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.cta-order-button {
    background: var(--ink);
    color: #fff;
}

.cta-order-button:hover {
    background: #34373c;
    transform: translateY(-1px);
}

.site-footer {
    padding: 54px 0 24px;
    background: #efeee8;
    border-top: 1px solid var(--line);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 45px;
}

.footer-brand {
    margin-bottom: 12px;
}

.footer-main > div > p {
    max-width: 350px;
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.footer-main nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-main nav strong {
    margin-bottom: 5px;
    font-size: 0.876rem;
    font-weight: 820;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.footer-main nav a {
    color: var(--muted);
    font-size: 0.96rem;
}

.footer-legal {
    display: grid;
    grid-template-columns: minmax(230px, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 34px;
    padding: 22px 24px;
    border: 1px solid #d8d9d2;
    border-radius: 15px;
    background: var(--surface);
    box-shadow: 0 8px 24px rgba(25, 28, 33, 0.04);
}

.footer-legal-label {
    display: block;
    margin-bottom: 6px;
    color: var(--germany-red);
    font-size: 0.66rem;
    font-weight: 820;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-legal-intro,
.footer-legal-item {
    min-width: 0;
    padding: 0 24px;
}

.footer-legal-intro {
    padding-left: 0;
}

.footer-legal-item {
    border-left: 1px solid #d8d9d2;
}

.footer-legal-intro > strong,
.footer-legal-item > strong {
    display: block;
    color: var(--ink);
    font-size: 0.86rem;
    line-height: 1.35;
}

.footer-legal p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.footer-legal a {
    color: var(--ink);
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #d8d9d2;
    color: var(--muted-2);
    font-size: 0.9rem;
}

@media (max-width: 1080px) {
    .desktop-nav {
        display: none;
    }

    .header-inner {
        flex-wrap: wrap;
        gap: 10px 20px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .footer-legal {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 0;
    }

    .footer-legal-item:nth-child(3) {
        border-left: 0;
    }

    .footer-legal-item:nth-child(n + 3) {
        padding-top: 18px;
        border-top: 1px solid #d8d9d2;
    }

    .mobile-nav {
        width: 100%;
        display: none;
        flex-direction: column;
        order: 3;
        gap: 0;
        max-height: calc(100vh - 96px);
        overflow-x: hidden;
        overflow-y: auto;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 45px rgba(25, 28, 33, 0.14);
        scrollbar-width: thin;
    }

    .mobile-nav:not([hidden]) {
        display: flex;
    }

    .mobile-nav::-webkit-scrollbar {
        display: none;
    }

    .mobile-nav > a,
    .mobile-nav .nav-dropdown summary {
        width: 100%;
        min-height: 46px;
        padding: 12px 13px;
        color: #444951;
        font-size: 1rem;
        font-weight: 680;
        white-space: normal;
    }

    .mobile-nav > a:not(.mobile-menu-cta),
    .mobile-nav .nav-dropdown {
        border-bottom: 1px solid var(--line);
    }

    .mobile-nav .nav-dropdown[open]::before {
        display: none;
    }

    .mobile-nav .nav-submenu {
        position: static;
        width: 100%;
        padding: 0 8px 9px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        transform: none;
    }

    .mobile-nav .nav-dropdown-last .nav-submenu {
        width: 100%;
    }

    .mobile-nav .nav-submenu a {
        padding: 11px 13px;
        border-radius: 10px;
        background: var(--surface-soft);
    }

    .mobile-nav .nav-submenu a + a {
        margin-top: 4px;
    }

    .mobile-menu-cta {
        justify-content: center;
        margin-top: 8px;
        color: var(--ink) !important;
    }

    .mobile-nav > a[aria-current="page"],
    .mobile-nav .nav-dropdown.is-current > summary {
        color: var(--accent-dark);
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 460px);
        gap: 36px;
    }

    .service-grid,
    .info-layout {
        gap: 48px;
    }

}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 720px;
    }

    .quote-card {
        width: min(100%, 680px);
        margin-inline: auto;
    }

    .service-grid,
    .info-layout,
    .coverage-box {
        grid-template-columns: 1fr;
    }

    .route-visual {
        width: min(100%, 680px);
        margin-inline: auto;
    }

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

    .steps article:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .steps article:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .fedex-price-group {
        grid-template-columns: 135px minmax(0, 1fr);
    }

    .fedex-weight,
    .fedex-service-card {
        padding: 18px;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-sidebar {
        position: static;
    }

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

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .section {
        padding: 72px 0;
    }

    .section-heading,
    .faq-grid,
    .price-row,
    .answer-box {
        grid-template-columns: 1fr;
    }

    .section-heading {
        gap: 16px;
        margin-bottom: 26px;
    }

    .section-heading h2,
    .service-copy h2,
    .info-intro h2,
    .coverage-copy h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 26px 0 34px;
    }

    .hero-grid {
        gap: 18px;
    }

    .quote-results-section {
        padding: 34px 0 38px;
    }

    .quote-results-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .quote-shipment-meta {
        justify-content: flex-start;
    }

    .quote-offer-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x proximity;
        scrollbar-width: thin;
        scrollbar-color: #c9a91f transparent;
    }

    .quote-offer-card {
        flex: 0 0 min(82vw, 320px);
        scroll-snap-align: start;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 12vw, 3.15rem);
    }

    .hero-lead,
    .hero-actions,
    .hero-benefits,
    .hero-stats {
        display: none;
    }

    .quote-summary,
    .trust-grid,
    .quote-inline-metrics,
    .quote-inline-alt {
        grid-template-columns: 1fr;
    }

    .hero-stats > div,
    .hero-stats > div + div,
    .quote-summary > div,
    .quote-summary > div + div {
        padding-left: 0;
        padding-right: 0;
        border-left: 0;
    }

    .quote-route {
        grid-template-columns: 1fr 50px 1fr;
        margin-inline: 18px;
    }

    .quote-card form,
    .quote-note {
        padding-inline: 18px;
    }

    .quote-card {
        width: 100%;
        max-width: 100%;
    }

    .calculator-section {
        padding: 60px 0 72px;
    }

    .calculator-section .quote-card-header,
    .calculator-section .quote-card form,
    .calculator-section .quote-note {
        padding-inline: 18px;
    }

    .calculator-section .quote-route,
    .calculator-section .quote-summary,
    .calculator-section .quote-inline-result,
    .calculator-section .quote-inline-error {
        margin-inline: 18px;
    }

    .parcel-fields {
        gap: 7px;
    }

    .parcel-fields .input-with-unit input {
        padding-left: 10px;
        padding-right: 34px;
    }

    .parcel-fields .input-with-unit span {
        right: 9px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-legal {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 34px;
        padding: 21px;
    }

    .footer-legal-intro,
    .footer-legal-item {
        padding: 0;
    }

    .footer-legal-item {
        padding-top: 18px;
        border-top: 1px solid #d8d9d2;
        border-left: 0;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom span + span {
        margin-top: 4px;
    }

    .quote-inline-result,
    .quote-inline-error {
        margin-inline: 18px;
    }

    .service-grid,
    .info-layout,
    .coverage-box {
        gap: 34px;
    }

    .route-map {
        padding: 24px 18px;
    }

    .route-progress {
        margin-inline: 4px;
    }

    .route-visual-footer div {
        padding: 14px 10px;
    }

    .price-row {
        gap: 12px;
        padding: 18px;
    }

    .price-row > a {
        position: absolute;
        right: 30px;
    }

    .fedex-price-group {
        grid-template-columns: 1fr;
    }

    .fedex-weight {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 18px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .fedex-weight strong {
        grid-column: 2;
        grid-row: 1 / span 2;
        margin: 0;
    }

    .fedex-services {
        grid-template-columns: 1fr;
    }

    .fedex-service-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 7px 18px;
    }

    .fedex-service-card + .fedex-service-card {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .fedex-service-tier {
        width: fit-content;
    }

    .fedex-service-name {
        min-height: 0;
        margin-top: 0;
    }

    .fedex-service-price {
        grid-column: 2;
        grid-row: 1 / span 2;
        margin-top: 0;
        white-space: nowrap;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .steps article,
    .steps article + article,
    .steps article:nth-child(3),
    .steps article:nth-child(4) {
        padding: 22px 0;
        border-left: 0;
        border-top: 0;
        border-bottom: 1px solid var(--line);
    }

    .coverage-box {
        padding: 28px 22px;
    }

    .answer-section {
        padding-bottom: 68px;
    }

    .answer-box {
        gap: 10px;
    }

    .faq-grid {
        gap: 0;
    }

    .cta-section {
        padding-bottom: 68px;
    }

    .cta-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px 22px;
    }

    .cta-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .cta-actions .button {
        width: 100%;
    }

    .content-hero {
        padding: 38px 0 48px;
    }

    .content-hero h1 {
        font-size: clamp(2.25rem, 11vw, 3.1rem);
    }

    .content-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-layout {
        padding-top: 48px;
        padding-bottom: 68px;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }

    .article-price-row {
        grid-template-columns: 80px minmax(0, 1fr);
    }

    .article-price-row > div {
        padding-inline: 14px;
    }
}

@media (max-width: 520px) {
    .header-cta {
        display: none;
    }

    .mobile-nav {
        max-height: calc(100vh - 82px);
    }

    .brand {
        gap: 8px;
    }

    .brand-name {
        font-size: 1.08rem;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    .mobile-menu-toggle {
        min-height: 38px;
        padding: 7px 10px;
    }

    .quote-card-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .status {
        padding-top: 0;
    }

    .parcel-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}

@keyframes quote-spin {
    to {
        transform: rotate(360deg);
    }
}
