:root {
  --navy: #071a2e;
  --navy-2: #0d2b4a;
  --blue: #1a6bb5;
  --blue-bright: #2d8fd9;
  --blue-soft: #e8f2fa;
  --blue-mist: #f3f8fc;
  --accent: #e8923a;
  --accent-deep: #d47820;
  --gold: #f0b35a;
  --ink: #152232;
  --muted: #5a6b7d;
  --line: rgba(26, 107, 181, 0.14);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 26, 46, 0.12);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans TC", sans-serif;
  color: var(--ink);
  background: var(--blue-mist);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; cursor: pointer; }
ul { list-style: none; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.nav.is-solid {
  background: rgba(7, 26, 46, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.nav__brand img {
  height: 64px;
  width: auto;
  border-radius: 8px;
}
.nav__brand span {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: .08em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav__links a {
  color: rgba(255,255,255,.86);
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  padding: .65rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 8px 22px rgba(232, 146, 58, .35);
  transition: transform .2s, box-shadow .2s;
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(232, 146, 58, .45);
}
.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  color: #fff;
  align-items: center;
  justify-content: center;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,26,46,.55) 0%, rgba(7,26,46,.25) 38%, rgba(7,26,46,.78) 72%, rgba(7,26,46,.95) 100%),
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(232,146,58,.18), transparent 55%);
}
.hero__content {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 8.5rem 0 4.5rem;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .18em;
  font-size: .78rem;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}
.hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}
.hero h1 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: .04em;
  max-width: 12ch;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
  opacity: 0;
  animation: fadeUp .9s .35s forwards;
}
.hero__lead {
  margin-top: 1.15rem;
  max-width: 34rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.9);
  opacity: 0;
  animation: fadeUp .9s .5s forwards;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp .9s .65s forwards;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .95rem 1.55rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 12px 30px rgb(0 0 0 / 40%);
}
.btn--ghost {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.18); }
.btn--blue {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: #fff;
  box-shadow: 0 12px 30px rgb(0 0 0 / 40%);
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 2.4rem;
  opacity: 0;
  animation: fadeUp .9s .8s forwards;
}
.hero__pills span {
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  font-size: .85rem;
  color: rgba(255,255,255,.88);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
section { padding: 5.5rem 0; }
.section-head {
  text-align: center;
  max-width: 45rem;
  margin: 0 auto 3rem;
}
.section-head .tag {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: .78rem;
  margin-bottom: .7rem;
}
.section-head h2 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.55rem);
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: .8rem;
}
.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
}

/* Pricing - KEY */
.pricing {
  background:
    radial-gradient(ellipse 55% 35% at 90% 0%, rgba(26,107,181,.08), transparent 50%),
    var(--blue-mist);
  position: relative;
}
.rate-table-wrap {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5eaf0;
  overflow: hidden;
}
.rate-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.rate-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: .9rem;
  line-height: 1.65;
  color: #333;
}
.rate-table th,
.rate-table td {
  padding: 1rem 1.15rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #eceff3;
}
.rate-table thead th {
  background: #e8f2fa;
  color: #0d3a66;
  font-weight: 800;
  text-align: center;
  font-size: 1.05rem;
  letter-spacing: .04em;
  padding: 1.05rem 1.15rem;
  border-bottom: 1px solid #d5e6f4;
}
.rate-table thead th:first-child {
  background: #e8f2fa;
  color: transparent;
  font-size: 0;
  width: 6.5rem;
}
.rate-table thead th:nth-child(2) {
  background: #dff0ff;
  color: #1565a8;
}
.rate-table thead th:nth-child(3) {
  background: #fff3e6;
  color: #c97820;
}
.rate-table tbody th {
  background: #f5f9fc;
  color: #1a6bb5;
  font-weight: 700;
  width: 6.5rem;
  white-space: nowrap;
  border-right: 1px solid #e8eef4;
}
.rate-table tbody tr:last-child td,
.rate-table tbody tr:last-child th { border-bottom: none; }
.rate-table td p { margin: 0 0 .55rem; }
.rate-table td p:last-child { margin-bottom: 0; }
.pricing__note {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: .9rem;
  text-align: center;
}
.pricing__cta {
  display: flex;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

/* Services */
.services {
  background:
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.services::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,143,217,.25), transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}
.services .section-head .tag { color: var(--gold); }
.services .section-head h2 { color: #fff; }
.services .section-head p { color: rgba(255,255,255,.72); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}
.service-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  backdrop-filter: blur(8px);
  transition: transform .3s, background .3s, border-color .3s;
}
.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.1);
  border-color: rgba(240,179,90,.45);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  box-shadow: 0 10px 24px rgba(232,146,58,.35);
  color: #fff;
}
.service-card__icon svg {
  width: 30px;
  height: 30px;
  display: block;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: .55rem;
  font-weight: 700;
}
.service-card p {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
}
.service-extra {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}
.service-extra li {
  text-align: center;
  padding: 1rem .8rem;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
}

/* Features */
.features {
  background: linear-gradient(180deg, #fff 0%, var(--blue-mist) 100%);
}
.feature-pitch {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.feature-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
}
.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.feature-copy .tag {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: .78rem;
  margin-bottom: .9rem;
}
.feature-copy h2 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 1rem;
}
.feature-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 28rem;
}

/* Goods - KEY */
.goods {
  background: #fff;
}
.goods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.goods-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 200px;
  isolation: isolate;
  box-shadow: 0 10px 28px rgba(7,26,46,.1);
}
.goods-card--wide { grid-column: span 2; min-height: 240px; }
.goods-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .6s ease;
}
.goods-card:hover img { transform: scale(1.08); }
.goods-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,26,46,.15) 0%, rgba(7,26,46,.72) 100%);
  z-index: 1;
}
.goods-card span {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .06em;
}
.goods-note {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
}
.goods-banner {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.goods-banner img {
  width: 100%;
  height: auto;
}

/* Process */
.process {
  background:
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(232,146,58,.1), transparent 55%),
    linear-gradient(180deg, var(--blue-mist) 0%, #fff 55%);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.5rem 1.1rem 1.4rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: .6rem;
  letter-spacing: .04em;
}
.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -1.15rem;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.step h3 {
  font-size: 1.02rem;
  color: var(--navy);
  margin-bottom: .45rem;
}
.step p {
  font-size: .86rem;
  color: var(--muted);
}
.process__cta {
  margin-top: 3rem;
  text-align: center;
  padding: 2.2rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.process__cta h3 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin-bottom: .55rem;
}
.process__cta p {
  color: rgba(255,255,255,.75);
  margin-bottom: 1.4rem;
}
.process__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .85rem;
}

/* Warehouse */
.warehouse {
  background: linear-gradient(180deg, #fff 0%, var(--blue-mist) 100%);
}
.warehouse-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
.warehouse-copy h2 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: var(--navy);
  margin: .5rem 0 1rem;
}
.warehouse-copy .tag {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: .78rem;
}
.warehouse-copy p { color: var(--muted); margin-bottom: 1rem; }
.warehouse-points {
  display: grid;
  gap: .65rem;
}
.warehouse-points li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-weight: 600;
  color: var(--navy-2);
}
.warehouse-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: .45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--blue-bright));
  flex-shrink: 0;
}
.warehouse-hero {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
}
.warehouse-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}
.gallery figure {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 24px rgba(7,26,46,.1);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Reviews */
.reviews {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(232,146,58,.18), transparent 65%);
  pointer-events: none;
}
.reviews .section-head .tag { color: var(--gold); }
.reviews .section-head h2 { color: #fff; }
.reviews .section-head p { color: rgba(255,255,255,.7); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}
.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .25s, background .25s;
}
.review-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.1);
}
.review-card__stars {
  color: var(--gold);
  letter-spacing: .15em;
  font-size: .95rem;
}
.review-card blockquote {
  font-size: .95rem;
  color: rgba(255,255,255,.88);
  line-height: 1.75;
  flex: 1;
}
.review-card__shot {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  max-height: 180px;
}
.review-card__shot img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top;
}
.review-card__user {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .3rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--accent));
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .85rem;
}
.review-card__user strong {
  display: block;
  font-size: .95rem;
}
.review-card__user span {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

/* CTA */
.cta {
  padding: 5rem 0;
  background:
    linear-gradient(120deg, rgba(7,26,46,.88), rgba(13,58,102,.78)),
    url("images/cta-bg.webp") center/cover;
  color: #fff;
  text-align: center;
}
.cta h2 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  margin-bottom: .8rem;
}
.cta p {
  color: rgba(255,255,255,.82);
  max-width: 32rem;
  margin: 0 auto 1.8rem;
}
.cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .85rem;
}

/* Footer */
footer {
  position: relative;
  color: #fff;
  padding: 3.5rem 0 1.8rem;
  font-size: .92rem;
  background: linear-gradient(120deg, #071a2e, #0d3a66 55%, #071a2e);
  overflow: hidden;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 2.5rem 2.75rem;
  align-items: start;
}
.footer__brand-block {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
}
.footer__brand-block img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 12px;
  background: transparent;
}
.footer__slogans {
  display: grid;
  gap: .3rem;
  margin-bottom: 1rem;
}
.footer__slogans p {
  color: rgba(255,255,255,.92);
  letter-spacing: .04em;
  line-height: 1.55;
  font-size: .88rem;
}
.footer__hours {
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  line-height: 1.7;
}
.footer__hours strong {
  display: block;
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .12em;
  margin-bottom: .25rem;
}
.footer__contact {
  margin-top: 1rem;
  color: rgba(255,255,255,.78);
  font-size: .86rem;
  line-height: 1.65;
}
.footer__contact strong {
  display: block;
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .12em;
  margin-bottom: .4rem;
}
.footer__contact p {
  margin: 0 0 .45rem;
}
.footer__contact p:last-child { margin-bottom: 0; }
.footer__contact span {
  display: inline-block;
  min-width: 4.2em;
  color: rgba(255,255,255,.55);
  margin-right: .35rem;
}
.footer__contact a {
  color: #fff;
  font-weight: 700;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.35);
  transition: color .2s, border-color .2s;
}
.footer__contact a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.footer__social h3,
.footer__line h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: .06em;
}
.footer__social {
  width: max-content;
  max-width: 7.5rem;
}
.footer__social-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer__social-list a {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background .2s, transform .2s;
}
.footer__social-list a:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-2px);
}
.footer__social-list svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.footer__line {
  text-align: center;
  min-width: 160px;
  padding-left: .25rem;
}
.footer__line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-width: 150px;
  padding: 1rem 1.4rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #06c755, #05a848);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 12px 28px rgba(6, 199, 85, .3);
  transition: transform .2s, box-shadow .2s;
}
.footer__line-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(6, 199, 85, .4);
}
.footer__line-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.footer__line-note {
  margin-top: .7rem;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}
.footer__copy {
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

/* Floating CTA */
.float-cta {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.float-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  transition: transform .2s;
}
.float-cta a:hover { transform: translateY(-2px); }
.float-cta__line {
  background: linear-gradient(135deg, #06c755, #05a848);
}
.float-cta__price {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Mobile */
@media (max-width: 980px) {
  .wrap { width: min(100% - 1.25rem, var(--max)); }
  section { padding: 2.75rem 0; }
  .section-head { margin-bottom: 1.5rem; }
  .section-head h2 { font-size: 1.45rem; }
  .section-head p { font-size: .92rem; }

  .nav__inner { padding: .45rem 0; }
  .nav__brand img { height: 40px; }
  .nav__cta { padding: .5rem .9rem; font-size: .82rem; }
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(7,26,46,.96);
    padding: .85rem 1.1rem 1.1rem;
    gap: .75rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav__toggle { display: inline-flex; width: 38px; height: 38px; }
  .nav__brand span { display: none; }

  .hero {
    min-height: 0;
    align-items: flex-end;
  }
  .hero__content { padding: 5.2rem 0 1.6rem; }
  .hero h1 {
    max-width: none;
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }
  .hero__lead {
    margin-top: .7rem;
    font-size: .95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero__actions { margin-top: 1.1rem; gap: .55rem; }
  .hero__actions .btn { padding: .75rem 1.15rem; font-size: .9rem; }
  .hero__pills {
    margin-top: 1rem;
    gap: .4rem;
  }
  .hero__pills span {
    padding: .28rem .65rem;
    font-size: .75rem;
  }

  .feature-pitch { gap: 1.25rem; }
  .feature-visual,
  .feature-visual img { height: 180px;min-height: 180px; }
  .feature-copy h2 { font-size: 1.35rem; }
  .feature-copy p { font-size: .92rem; }

  .goods-grid { grid-template-columns: 1fr 1fr; gap: .65rem; }
  .goods-card { min-height: 120px; border-radius: 12px; }
  .goods-card--wide { grid-column: span 2; min-height: 140px; }
  .goods-card span { left: .75rem; bottom: .7rem; font-size: .95rem; }
  .goods-note { margin-top: .9rem; font-size: .82rem; }

  .rate-table th,
  .rate-table td { padding: .7rem .75rem; font-size: .82rem; }
  .rate-table {
    border-collapse: separate;
    border-spacing: 0;
    min-width: 680px;
  }
  .rate-table thead th:first-child,
  .rate-table tbody th {
    position: sticky;
    left: 0;
    z-index: 3;
    width: 3.6rem;
    min-width: 3.6rem;
    max-width: 3.6rem;
    padding: .7rem .4rem;
    white-space: normal;
    word-break: break-all;
    line-height: 1.35;
    text-align: center;
    box-shadow: 4px 0 8px rgba(7, 26, 46, .06);
  }
  .rate-table thead th:first-child {
    z-index: 4;
    background: #e8f2fa;
  }
  .rate-table tbody th {
    background: #f5f9fc;
  }
  .pricing__cta { margin-top: 1.2rem; gap: .55rem; }
  .pricing__cta .btn { padding: .75rem 1.1rem; font-size: .88rem; }

  .service-grid { gap: .75rem; }
  .service-card { padding: 1.15rem 1rem; }
  .service-card__icon { width: 44px; height: 44px; margin-bottom: .75rem; border-radius: 12px; }
  .service-card__icon svg { width: 24px; height: 24px; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: .88rem; }
  .service-extra {
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
    margin-top: 1rem;
  }
  .service-extra li { padding: .7rem .55rem; font-size: .82rem; }

  .warehouse-intro { gap: 1.2rem; margin-bottom: 1.1rem; }
  .warehouse-copy h2 { font-size: 1.35rem; margin: .35rem 0 .7rem; }
  .warehouse-hero,
  .warehouse-hero img { min-height: 180px; }
  .gallery { grid-template-columns: 1fr 1fr; gap: .55rem; }
  .gallery figure:nth-child(n + 5) { display: none; }

  .review-grid { gap: .75rem; }
  .review-card { padding: 1.1rem; gap: .7rem; }
  .review-card blockquote { font-size: .88rem; }
  .review-card__shot { max-height: 120px; }
  .review-card__shot img { height: 120px; }

  .process-steps {
    grid-template-columns: 1fr;
    gap: .65rem;
  }
  .step {
    padding: .85rem 1rem;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: .75rem;
    align-items: start;
  }
  .step::before {
    grid-row: 1 / span 2;
    align-self: center;
    margin-bottom: 0;
    font-size: 1.15rem;
  }
  .step h3 { margin-bottom: .15rem; font-size: .95rem; }
  .step p { font-size: .8rem; }
  .step:not(:last-child)::after { display: none; }
  .process__cta {
    margin-top: 1.5rem;
    padding: 1.35rem 1rem;
    border-radius: 14px;
  }
  .process__cta h3 { font-size: 1.2rem; }
  .process__cta p { font-size: .88rem; margin-bottom: 1rem; }
  .process__actions .btn { padding: .75rem 1.15rem; font-size: .9rem; }

  .service-grid,
  .feature-pitch,
  .warehouse-intro,
  .review-grid,
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand-block { grid-template-columns: auto 1fr; gap: .75rem; }
  .footer__brand-block img { width: 52px; height: 52px; }
  .footer__line { text-align: left; }
  footer { padding: 2.2rem 0 5.5rem; }
  .footer__slogans { gap: .15rem; margin-bottom: .7rem; }
  .footer__slogans p { font-size: .8rem; }
  .footer__hours { font-size: .8rem; }
  .footer__social h3,
  .footer__line h3 { margin-bottom: .7rem; font-size: .95rem; }
  .footer__social-list a { width: 42px; height: 42px; }
  .footer__line-btn { min-width: 0; padding: .85rem 1.15rem; font-size: .95rem; }
  .footer__copy { margin-top: 1.4rem; padding-top: .9rem; }

  .float-cta {
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: row;
    gap: 0;
    padding: .55rem .65rem calc(.55rem + env(safe-area-inset-bottom));
    background: rgba(7, 26, 46, .94);
    backdrop-filter: blur(10px);
    box-shadow: 0 -6px 24px rgba(0,0,0,.2);
  }
  .float-cta a {
    flex: 1;
    border-radius: 10px;
    padding: .7rem .5rem;
    font-size: .85rem;
    box-shadow: none;
  }
  .float-cta a + a { margin-left: .5rem; }
}

@media (max-width: 560px) {
  section { padding: 1.5rem 0; }
  .hero__content { padding: 4.6rem 0 1.35rem; }
  .hero__pills span:nth-child(n + 3) { display: none; }
  .goods-card { min-height: 108px; }
  .goods-card--wide { min-height: 120px; }
  .service-extra { grid-template-columns: 1fr 1fr; }
  .review-card__shot { display: none; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .rate-table { min-width: 620px; font-size: .78rem; }
  .rate-table thead th:first-child,
  .rate-table tbody th {
    width: 3.2rem;
    min-width: 3.2rem;
    max-width: 3.2rem;
    padding: .65rem .28rem;
    font-size: .72rem;
  }
}
