:root {
  --ink: #163047;
  --ink-soft: #5d6e7b;
  --orange: #f2673a;
  --orange-dark: #d94d25;
  --orange-soft: #fff0e8;
  --cream: #fffaf4;
  --paper: #ffffff;
  --line: #e7e1d9;
  --navy: #12324a;
  --navy-soft: #eaf2f7;
  --green: #358f73;
  --gold: #bd7b19;
  --shadow: 0 18px 50px rgba(22, 48, 71, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body, button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
p, h1, h2, h3 { margin-top: 0; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

:focus-visible { outline: 3px solid rgba(242, 103, 58, .42); outline-offset: 4px; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(231, 225, 217, .76);
  background: rgba(255, 250, 244, .92);
  backdrop-filter: blur(16px);
}
.nav-shell { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 188px; max-height: 66px; object-fit: contain; }
.site-menu { display: flex; align-items: center; justify-content: flex-end; gap: 26px; font-size: 15px; font-weight: 600; }
.site-menu > a { min-height: 44px; display: inline-flex; align-items: center; position: relative; }
.site-menu > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.site-menu > a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 4px; }
.nav-login { min-height: 44px; padding: 8px 13px; color: var(--ink-soft); }
.menu-toggle { display: none; min-width: 72px; min-height: 44px; align-items: center; justify-content: center; gap: 7px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); cursor: pointer; }
.menu-toggle svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 22px;
  border: 1px solid var(--orange);
  border-radius: 13px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 12px 25px rgba(242, 103, 58, .2);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--orange-dark); box-shadow: 0 15px 30px rgba(217, 77, 37, .24); }
.button svg, .text-link svg, .product-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-small { min-height: 40px; padding: 9px 16px; border-radius: 11px; }
.button-secondary { border-color: var(--line); background: var(--paper); color: var(--ink); box-shadow: none; }
.button-secondary:hover { border-color: #d8cdc1; background: #fff; }

.hero { min-height: 680px; display: flex; align-items: center; position: relative; overflow: hidden; padding: 76px 0 88px; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(18, 50, 74, .028) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 50, 74, .028) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 420px; height: 420px; top: 8%; right: -110px; background: rgba(242, 103, 58, .11); }
.hero-glow-two { width: 310px; height: 310px; bottom: -160px; left: 10%; background: rgba(34, 111, 152, .09); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); align-items: center; gap: 72px; }
.eyebrow, .section-kicker { margin-bottom: 16px; color: var(--orange-dark); font-size: 14px; font-weight: 800; letter-spacing: .12em; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 30px; height: 2px; border-radius: 999px; background: var(--orange); }
.hero h1 { max-width: 700px; margin-bottom: 24px; font-size: clamp(40px, 5vw, 66px); line-height: 1.14; letter-spacing: -.035em; }
.hero-lead { max-width: 620px; margin-bottom: 31px; color: var(--ink-soft); font-size: 18px; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 20px; padding: 0; margin: 28px 0 0; list-style: none; color: var(--ink-soft); font-size: 14px; }
.hero-points li { display: flex; align-items: center; gap: 7px; }
.hero-points svg { width: 17px; height: 17px; fill: none; stroke: var(--green); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.fulfillment-visual { min-height: 500px; position: relative; display: grid; place-items: center; }
.shop-scene {
  width: min(100%, 440px);
  min-height: 360px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 34px 32px;
  border: 1px solid rgba(231, 225, 217, .9);
  border-radius: 36px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
}
.shop-awning { position: absolute; top: 34px; display: flex; filter: drop-shadow(0 10px 9px rgba(22, 48, 71, .08)); }
.shop-awning i { width: 56px; height: 54px; border-radius: 6px 6px 18px 18px; background: var(--orange); transform: skewX(-8deg); }
.shop-awning i:nth-child(even) { background: var(--navy); transform: skewX(8deg); }
.parcel-main { width: 172px; height: 150px; position: relative; display: grid; place-items: center; margin-top: 28px; border-radius: 20px; background: var(--orange); color: #fff; box-shadow: 0 26px 42px rgba(242, 103, 58, .28); }
.parcel-main::before { content: ""; position: absolute; top: -16px; width: 184px; height: 28px; border-radius: 10px; background: var(--orange-dark); }
.parcel-main svg { width: 70px; height: 70px; fill: none; stroke: currentColor; stroke-width: 1.2; opacity: .9; }
.parcel-ribbon { position: absolute; inset: 0 auto 0 75px; width: 22px; background: var(--navy); }
.parcel-bow { position: absolute; z-index: 2; top: -62px; color: var(--navy); font-family: Georgia, serif; font-size: 90px; line-height: 1; transform: rotate(90deg); }
.route-line { width: 100%; display: flex; align-items: center; justify-content: space-between; position: relative; margin-top: 40px; }
.route-line::before { content: ""; position: absolute; right: 8px; left: 8px; height: 2px; background: var(--line); }
.route-line span { z-index: 1; width: 18px; height: 18px; border: 5px solid var(--paper); border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 1px var(--line); }
.route-line span:nth-child(2) { background: var(--navy); }
.route-labels { width: 100%; display: flex; justify-content: space-between; margin-top: 9px; color: var(--ink-soft); font-size: 12px; }
.visual-note { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; max-width: 220px; padding: 12px 15px; border: 1px solid var(--line); border-radius: 15px; background: var(--paper); color: var(--ink-soft); font-size: 12px; line-height: 1.45; box-shadow: 0 15px 36px rgba(22, 48, 71, .12); }
.visual-note strong { display: block; color: var(--ink); font-size: 14px; }
.visual-note-top { top: 10px; right: -16px; animation: float 4s ease-in-out infinite; }
.visual-note-bottom { bottom: 2px; left: -22px; animation: float 4.6s ease-in-out infinite reverse; }
.note-icon { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: var(--navy-soft); color: var(--navy); }
.note-icon-orange { background: var(--orange-soft); color: var(--orange-dark); }
.note-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.section { padding: 96px 0; }
.section-heading { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-heading h2, .advantage-intro h2, .faq-intro h2, .final-cta h2 { margin-bottom: 17px; font-size: clamp(30px, 4vw, 46px); line-height: 1.22; letter-spacing: -.025em; }
.section-heading > p:last-child, .advantage-intro > p, .faq-intro > p { margin-bottom: 0; color: var(--ink-soft); font-size: 17px; }
.section-heading-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 32px; text-align: left; }
.section-heading-row > div { max-width: 760px; }
.section-heading-row .button { flex: 0 0 auto; margin-bottom: 4px; }

.scenarios { background: var(--paper); }
.scenario-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.scenario-card { min-height: 250px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--cream); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.scenario-card:hover { transform: translateY(-5px); border-color: #f0c3af; box-shadow: var(--shadow); }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 38px; border-radius: 15px; background: var(--orange-soft); color: var(--orange-dark); }
.feature-icon-blue { background: var(--navy-soft); color: var(--navy); }
.feature-icon-gold { background: #fff3d8; color: var(--gold); }
.feature-icon-green { background: #e9f6f0; color: var(--green); }
.feature-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.scenario-card h3 { margin-bottom: 10px; font-size: 21px; }
.scenario-card p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; }

.advantages { background: var(--navy); color: #fff; }
.advantage-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.advantage-intro { position: sticky; top: 130px; }
.advantages .section-kicker { color: #ffb18f; }
.advantage-intro > p { color: rgba(255,255,255,.68); }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; color: #ffc3a9; font-weight: 700; }
.advantage-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.advantage-card { padding: 25px; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-md); background: rgba(255,255,255,.055); }
.advantage-card > span { color: #ff9e76; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.advantage-card h3 { margin: 14px 0 8px; font-size: 20px; }
.advantage-card p { margin-bottom: 0; color: rgba(255,255,255,.65); font-size: 14px; }

.gifts { background: #f7f2eb; }
.product-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.product-card { min-width: 0; padding: 12px 12px 15px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.product-card:hover { transform: translateY(-4px); border-color: #f0bda8; box-shadow: 0 16px 36px rgba(22, 48, 71, .1); }
.product-image { aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; border-radius: 12px; background: #f5f3ef; }
.product-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-name { min-height: 54px; display: flex; align-items: center; padding: 13px 2px 6px; font-size: 14px; font-weight: 700; line-height: 1.45; }
.product-meta { min-width: 0; display: grid; gap: 6px; padding: 8px 2px 0; border-top: 1px solid #f0ece7; }
.product-price { min-width: 0; display: inline-flex; align-items: baseline; gap: 4px; color: var(--ink-soft); font-size: 12px; white-space: nowrap; }
.product-price strong { color: var(--orange-dark); font-size: 16px; line-height: 1; }
.product-link { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 4px; padding-top: 5px; border-top: 1px dashed #f0d9cf; color: var(--orange-dark); font-size: 11px; font-weight: 700; white-space: nowrap; }
.product-link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.product-card:hover .product-link svg { transform: translateX(3px); }
.product-more-card { min-width: 0; min-height: 100%; display: grid; place-content: center; justify-items: center; padding: 24px 18px; border: 1px dashed #eba98c; border-radius: 16px; background: linear-gradient(145deg, #fffaf6, #f9eee6); color: var(--navy); text-align: center; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.product-more-card:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: 0 16px 36px rgba(22, 48, 71, .1); }
.product-more-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(242, 103, 58, .22); }
.product-more-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.product-more-title { margin-top: 16px; font-size: 18px; font-weight: 800; }
.product-more-copy { margin-top: 6px; color: var(--ink-soft); font-size: 12px; line-height: 1.55; }
.product-more-card:hover .product-more-icon svg { transform: translateX(3px); }

.process { background: var(--navy); color: #fff; }
.section-heading-light > p:last-child { color: rgba(255,255,255,.68); }
.process .section-kicker { color: #ffb18f; }
.process-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; padding: 0; margin: 0; list-style: none; counter-reset: process; }
.process-list li { min-width: 0; position: relative; padding: 0 24px; text-align: center; }
.process-list li::after { content: ""; position: absolute; top: 28px; right: -16%; width: 32%; height: 1px; background: rgba(255,255,255,.24); }
.process-list li:last-child::after { display: none; }
.process-number { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 22px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: rgba(255,255,255,.07); color: #ffb18f; font-size: 14px; font-weight: 800; }
.process-list h3 { margin-bottom: 9px; font-size: 18px; }
.process-list p { margin-bottom: 0; color: rgba(255,255,255,.62); font-size: 13px; }

.guide { background: var(--paper); }
.guide-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.guide-card { display: flex; gap: 20px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--cream); }
.guide-mark { flex: 0 0 auto; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--orange-soft); color: var(--orange-dark); }
.guide-mark svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.guide-card h3 { margin-bottom: 7px; font-size: 19px; }
.guide-card p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; }

.faq { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 70px; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro .button { margin-top: 27px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: var(--paper); overflow: hidden; }
.faq-list summary { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 20px; cursor: pointer; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-soft); color: var(--orange-dark); font-size: 20px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 20px 20px; color: var(--ink-soft); font-size: 14px; }

.final-cta { padding: 42px 0 84px; background: var(--cream); }
.cta-shell { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 48px 54px; border-radius: var(--radius-lg); background: var(--orange); color: #fff; box-shadow: 0 24px 60px rgba(217, 77, 37, .22); }
.cta-shell .section-kicker { margin-bottom: 10px; color: #ffe1d5; }
.cta-shell h2 { max-width: 650px; margin-bottom: 10px; }
.cta-shell p:last-child { margin-bottom: 0; color: rgba(255,255,255,.8); }
.cta-actions { flex: 0 0 auto; display: flex; flex-wrap: wrap; gap: 10px; }
.button-light { border-color: #fff; background: #fff; color: var(--orange-dark); box-shadow: none; }
.button-light:hover { background: #fff7f3; }
.button-outline-light { border-color: rgba(255,255,255,.62); background: transparent; color: #fff; box-shadow: none; }
.button-outline-light:hover { background: rgba(255,255,255,.1); }

.site-footer { padding: 70px 0 24px; background: #0b2639; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1fr; gap: 54px; }
.footer-brand img { width: 210px; max-height: 84px; object-fit: contain; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p, .footer-note p { max-width: 380px; margin: 18px 0 0; color: rgba(255,255,255,.58); font-size: 13px; }
.footer-column h2 { margin-bottom: 17px; font-size: 15px; }
.footer-column a { min-height: 38px; display: block; color: rgba(255,255,255,.63); font-size: 13px; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { min-height: 44px; display: inline-flex; align-items: center; }

.back-to-top { position: fixed; z-index: 20; right: 22px; bottom: 22px; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.7); border-radius: 14px; background: var(--navy); color: #fff; box-shadow: 0 14px 30px rgba(18, 50, 74, .24); font-size: 20px; font-weight: 800; }
.back-to-top[hidden] { display: none; }

@media (max-width: 1099px) {
  .site-menu { gap: 17px; }
  .site-menu > a:nth-child(2) { display: none; }
  .hero-grid { gap: 38px; grid-template-columns: minmax(0, 1fr) minmax(380px, .88fr); }
  .scenario-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .process-list { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 42px; }
  .process-list li:nth-child(3)::after, .process-list li:last-child::after { display: none; }
  .footer-grid { grid-template-columns: 1.3fr .7fr .7fr; }
  .footer-note { grid-column: 1 / -1; }
}

@media (max-width: 899px) {
  .nav-shell { min-height: 72px; flex-wrap: wrap; padding-block: 6px; }
  .brand img { width: 165px; max-height: 58px; }
  .menu-toggle { display: inline-flex; }
  .site-menu { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 10px; padding: 8px 0 16px; }
  .site-menu[hidden] { display: none; }
  .site-menu > a, .site-menu > a:nth-child(2) { display: flex; padding-inline: 12px; border-radius: 10px; }
  .site-menu > a:hover { background: var(--paper); }
  .site-menu > a::after { display: none; }
  .nav-actions { grid-column: 1 / -1; margin: 5px 0 0; }
  .hero { min-height: auto; padding: 55px 0 74px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 720px; }
  .fulfillment-visual { width: min(100%, 590px); min-height: 430px; margin-inline: auto; }
  .advantage-layout, .faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .advantage-intro, .faq-intro { position: static; }
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-list li:nth-child(3)::after { display: block; }
  .process-list li:nth-child(even)::after, .process-list li:last-child::after { display: none; }
  .cta-shell { align-items: flex-start; flex-direction: column; padding: 42px; }
}

@media (max-width: 759px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .hero h1 { font-size: clamp(36px, 11vw, 52px); }
  .hero-lead { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-points { gap: 10px 17px; }
  .fulfillment-visual { min-height: 390px; }
  .shop-scene { width: calc(100% - 24px); min-height: 330px; padding-inline: 24px; }
  .shop-awning i { width: 44px; height: 47px; }
  .visual-note { max-width: 190px; }
  .visual-note-top { right: 0; }
  .visual-note-bottom { left: 0; }
  .scenario-grid, .guide-grid { grid-template-columns: 1fr; }
  .scenario-card { min-height: auto; }
  .feature-icon { margin-bottom: 28px; }
  .advantage-grid { grid-template-columns: 1fr; }
  .section-heading-row { align-items: stretch; flex-direction: column; }
  .section-heading-row .button { width: 100%; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .product-card { padding: 9px 9px 12px; }
  .product-name { min-height: 51px; font-size: 13px; }
  .product-meta { gap: 5px; }
  .product-price { font-size: 12px; }
  .product-price strong { font-size: 15px; }
  .product-link { font-size: 11px; }
  .process-list { grid-template-columns: 1fr; gap: 28px; }
  .process-list li { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: start; padding: 0; text-align: left; }
  .process-number { margin: 0; }
  .process-list li::after { display: none !important; }
  .guide-card { padding: 23px; }
  .faq-list summary { min-height: 72px; }
  .cta-shell { padding: 34px 24px; }
  .cta-actions { width: 100%; }
  .cta-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 26px; }
  .footer-brand, .footer-note { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
}

@media (max-width: 430px) {
  .shop-awning i { width: 38px; }
  .parcel-main { width: 148px; height: 130px; }
  .parcel-main::before { width: 160px; }
  .parcel-ribbon { left: 64px; }
  .visual-note { padding: 9px 10px; font-size: 11px; }
  .visual-note strong { font-size: 12px; }
  .note-icon { width: 34px; height: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
