/* ============================================================
   JIANHUI — Computer Systems Design and E-commerce
   Dark theme · rose-berry accent · solid colors only
   ============================================================ */

:root {
  --bg: #150C10;
  --bg-soft: #1E1218;
  --bg-raised: #291821;
  --line: #3A222C;
  --line-soft: #2C1A23;
  --text: #F4EBEF;
  --text-muted: #C9B1BC;
  --rose: #D94F6C;
  --rose-dark: #B83A55;
  --pale-rose: #F2A3B5;
  --sand: #E8D5C0;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #150C10;
  color: #F4EBEF;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: #D94F6C;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #F2A3B5;
}

h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #F4EBEF;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  border-radius: 8px;
  padding: 14px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: #D94F6C;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #B83A55;
  color: #FFFFFF;
}

.btn-ghost {
  background-color: transparent;
  color: #F2A3B5;
  border-color: #F2A3B5;
}

.btn-ghost:hover {
  background-color: #F2A3B5;
  color: #150C10;
}

.btn-light {
  background-color: #FFFFFF;
  color: #150C10;
}

.btn-light:hover {
  background-color: #E8D5C0;
  color: #150C10;
}

/* ============================================================
   BARCODE NAV
   ============================================================ */

.barcode-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #150C10;
  border-bottom: 1px solid #D94F6C;
}

.barcode-nav .nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.barcode-nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.barcode-nav .barcode {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
}

.barcode-nav .barcode i {
  display: block;
  width: 2px;
  height: 28px;
  background-color: #D94F6C;
}

.barcode-nav .barcode i:nth-child(2) { width: 5px; }
.barcode-nav .barcode i:nth-child(3) { width: 2px; }
.barcode-nav .barcode i:nth-child(4) { width: 8px; }
.barcode-nav .barcode i:nth-child(5) { width: 2px; }
.barcode-nav .barcode i:nth-child(6) { width: 4px; }
.barcode-nav .barcode i:nth-child(7) { width: 3px; }

.barcode-nav .brand-name {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.16em;
  color: #F4EBEF;
}

.barcode-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.barcode-nav .nav-links a {
  color: #C9B1BC;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}

.barcode-nav .nav-links a:hover {
  color: #F4EBEF;
}

.barcode-nav .nav-links a.active {
  color: #F4EBEF;
}

.barcode-nav .nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background-color: #D94F6C;
  border-radius: 2px;
}

.barcode-nav .nav-cta {
  background-color: #D94F6C;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  white-space: nowrap;
}

.barcode-nav .nav-cta:hover {
  background-color: #B83A55;
  color: #FFFFFF;
}

.barcode-nav .nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.barcode-nav .nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #F4EBEF;
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.barcode-nav .nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.barcode-nav .nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.barcode-nav .nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   PARCEL STACK HERO
   ============================================================ */

.parcel-hero {
  position: relative;
  background-color: #150C10;
  padding: 96px 0 110px;
  border-bottom: 1px solid #2C1A23;
}

.parcel-hero .hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.parcel-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #D94F6C;
  color: #F2A3B5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.parcel-hero .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #F2A3B5;
}

.parcel-hero .hero-title {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #F4EBEF;
  margin-bottom: 24px;
}

.parcel-hero .hero-copy {
  color: #C9B1BC;
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.parcel-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Parcel stack illustration */

.parcel-stack {
  position: relative;
  width: 100%;
  max-width: 430px;
  height: 420px;
  margin: 0 auto;
}

.parcel {
  position: absolute;
  border-radius: 14px;
}

.parcel .tape {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 22px;
}

.parcel-box1 {
  background-color: #D94F6C;
  width: 320px;
  height: 190px;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.parcel-box1 .tape {
  background-color: #F2A3B5;
}

.parcel-box2 {
  background-color: #E8D5C0;
  width: 250px;
  height: 150px;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
}

.parcel-box2 .tape {
  background-color: #D94F6C;
}

.parcel-box3 {
  background-color: #291821;
  border: 1px solid #3A222C;
  width: 200px;
  height: 120px;
  bottom: 262px;
  left: 50%;
  transform: translateX(-50%);
}

.parcel-box3 .tape {
  background-color: #F2A3B5;
}

.parcel-top {
  background-color: #F2A3B5;
  width: 132px;
  height: 84px;
  bottom: 336px;
  left: 50%;
  transform: translateX(-50%) rotate(3deg);
  border-radius: 12px;
  position: absolute;
}

.parcel-top .tape {
  background-color: #D94F6C;
}

.parcel-tag {
  position: absolute;
  width: 34px;
  height: 34px;
  background-color: #150C10;
  border: 2px solid #F2A3B5;
  top: 26px;
  right: 82px;
  transform: rotate(8deg);
  border-radius: 4px;
}

.parcel-tag::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 2px;
  height: 18px;
  background-color: #E8D5C0;
  transform: translateX(-50%);
}

/* ============================================================
   STATEMENT ROW
   ============================================================ */

.statement-row {
  background-color: #1E1218;
  border-bottom: 1px solid #2C1A23;
  padding: 72px 0;
}

.statement-row .container {
  max-width: 980px;
  text-align: center;
}

.statement-row .statement-text {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #F4EBEF;
}

.statement-row .statement-text em {
  font-style: normal;
  color: #F2A3B5;
}

/* ============================================================
   SKU ROWS
   ============================================================ */

.sku-rows {
  background-color: #150C10;
  padding: 88px 0;
}

.sku-rows .sku-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.sku-rows .sku-head h2 {
  font-size: 34px;
  font-weight: 800;
}

.sku-rows .sku-head .sku-note {
  color: #E8D5C0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sku-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 8px;
  border-bottom: 1px solid #2C1A23;
}

.sku-row:first-of-type {
  border-top: 1px solid #2C1A23;
}

.sku-row .sku-name {
  font-size: 20px;
  font-weight: 700;
  color: #F4EBEF;
}

.sku-row .sku-desc {
  color: #C9B1BC;
  font-size: 16px;
}

.sku-row .sku-price {
  font-size: 28px;
  font-weight: 800;
  color: #E8D5C0;
  letter-spacing: -0.01em;
  text-align: right;
  min-width: 84px;
}

/* ============================================================
   SPLIT METRIC
   ============================================================ */

.split-metric {
  background-color: #1E1218;
  border-top: 1px solid #2C1A23;
  border-bottom: 1px solid #2C1A23;
  padding: 96px 0;
}

.split-metric .metric-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.split-metric .metric-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.split-metric .metric-item {
  display: flex;
  flex-direction: column;
}

.split-metric .metric-num {
  font-size: 84px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #D94F6C;
}

.split-metric .metric-label {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E8D5C0;
}

.split-metric .metric-right {
  position: relative;
  padding-left: 28px;
}

.split-metric .metric-mark {
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background-color: #D94F6C;
}

.split-metric .metric-right h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

.split-metric .metric-right p {
  color: #C9B1BC;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ============================================================
   SUPPORT COLS
   ============================================================ */

.support-cols {
  background-color: #150C10;
  padding: 96px 0;
}

.support-cols .support-head {
  margin-bottom: 48px;
}

.support-cols .support-head h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}

.support-cols .support-head p {
  color: #C9B1BC;
  font-size: 17px;
  max-width: 640px;
}

.support-cols .support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.support-col {
  padding: 8px 36px 8px 0;
}

.support-col + .support-col {
  padding-left: 36px;
  border-left: 1px solid #3A222C;
}

.support-col .support-marker {
  width: 14px;
  height: 14px;
  background-color: #D94F6C;
  margin-bottom: 22px;
}

.support-col .support-title {
  font-size: 21px;
  font-weight: 700;
  color: #F4EBEF;
  margin-bottom: 14px;
}

.support-col .support-copy {
  color: #C9B1BC;
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-section {
  background-color: #1E1218;
  border-top: 1px solid #2C1A23;
  padding: 96px 0;
}

.faq-section .faq-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.faq-section .faq-head h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}

.faq-section .faq-head p {
  color: #C9B1BC;
  font-size: 17px;
}

.faq {
  max-width: 860px;
}

.faq-item {
  border-bottom: 1px solid #3A222C;
}

.faq-item:first-child {
  border-top: 1px solid #3A222C;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 4px;
  font-size: 18px;
  font-weight: 600;
  color: #F4EBEF;
}

.faq-q .faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #D94F6C;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  color: #C9B1BC;
  font-size: 16px;
  line-height: 1.7;
  padding: 0 4px 24px;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  background-color: #D94F6C;
  padding: 72px 0;
}

.cta-band .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band .cta-title {
  font-size: 34px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.cta-band .cta-sub {
  color: #F2A3B5;
  font-size: 17px;
  margin-top: 8px;
  max-width: 520px;
}

/* ============================================================
   LABEL FOOTER
   ============================================================ */

.label-footer {
  background-color: #150C10;
  border-top: 1px solid #D94F6C;
  padding: 64px 0 40px;
}

.label-footer .footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.label-footer .footer-cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}

.label-footer .footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.label-footer .footer-brand .barcode {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.label-footer .footer-brand .barcode i {
  display: block;
  width: 2px;
  height: 22px;
  background-color: #D94F6C;
}

.label-footer .footer-brand .barcode i:nth-child(2) { width: 4px; }
.label-footer .footer-brand .barcode i:nth-child(3) { width: 2px; }
.label-footer .footer-brand .barcode i:nth-child(4) { width: 6px; }
.label-footer .footer-brand .barcode i:nth-child(5) { width: 2px; }
.label-footer .footer-brand .barcode i:nth-child(6) { width: 3px; }

.label-footer .footer-brand .brand-name {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.16em;
  color: #F4EBEF;
  display: block;
  margin-bottom: 10px;
}

.label-footer .footer-brand p {
  color: #C9B1BC;
  font-size: 15px;
  line-height: 1.7;
}

.label-footer .footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E8D5C0;
  margin-bottom: 18px;
}

.label-footer .footer-links ul {
  list-style: none;
}

.label-footer .footer-links li {
  margin-bottom: 12px;
}

.label-footer .footer-links a {
  color: #C9B1BC;
  font-size: 16px;
}

.label-footer .footer-links a:hover {
  color: #F2A3B5;
}

.label-footer .footer-contact p {
  color: #C9B1BC;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 6px;
}

.label-footer .footer-contact a {
  color: #F2A3B5;
}

.label-footer .footer-contact a:hover {
  color: #F4EBEF;
}

.label-footer .footer-legal {
  border-top: 1px solid #3A222C;
  padding-top: 26px;
  text-align: center;
  color: #C9B1BC;
  font-size: 14px;
}

.label-footer .footer-legal a {
  color: #F2A3B5;
}

.label-footer .footer-legal a:hover {
  color: #F4EBEF;
}

/* ============================================================
   SECONDARY PAGE HEADER
   ============================================================ */

.page-hero {
  background-color: #150C10;
  border-bottom: 1px solid #2C1A23;
  padding: 72px 0;
}

.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E8D5C0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero .eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background-color: #D94F6C;
}

.page-hero h1 {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.page-hero .page-lede {
  color: #C9B1BC;
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.service-section {
  background-color: #1E1218;
  border-bottom: 1px solid #2C1A23;
  padding: 64px 0;
}

.service-section:nth-of-type(even) {
  background-color: #150C10;
}

.service-section .service-grid {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 40px;
  align-items: start;
}

.service-section .service-num {
  font-size: 40px;
  font-weight: 800;
  color: #D94F6C;
  letter-spacing: -0.02em;
  line-height: 1;
}

.service-section .service-num span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9B1BC;
  margin-top: 8px;
}

.service-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.service-section p {
  color: #C9B1BC;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.service-section ul {
  list-style: none;
  margin-top: 12px;
}

.service-section ul li {
  position: relative;
  padding-left: 22px;
  color: #C9B1BC;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.service-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background-color: #D94F6C;
}

/* Process overview */

.process {
  background-color: #150C10;
  border-top: 1px solid #2C1A23;
  padding: 96px 0;
}

.process h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
}

.process .process-lede {
  color: #C9B1BC;
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 48px;
}

.process .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process .process-step {
  border-top: 2px solid #D94F6C;
  padding-top: 22px;
}

.process .process-step .step-num {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8D5C0;
  margin-bottom: 12px;
}

.process .process-step h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process .process-step p {
  color: #C9B1BC;
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-layout {
  background-color: #150C10;
  padding: 88px 0;
}

.contact-layout .contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  background-color: #1E1218;
  border: 1px solid #3A222C;
  border-radius: 14px;
  padding: 40px;
}

.contact-form h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #E8D5C0;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background-color: #150C10;
  border: 1px solid #3A222C;
  border-radius: 8px;
  color: #F4EBEF;
  font-family: inherit;
  font-size: 16px;
  padding: 13px 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #D94F6C;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .form-note {
  color: #C9B1BC;
  font-size: 14px;
  margin-top: 8px;
}

.contact-info .info-block {
  margin-bottom: 36px;
}

.contact-info .info-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E8D5C0;
  margin-bottom: 12px;
}

.contact-info .info-block p {
  color: #C9B1BC;
  font-size: 16px;
  line-height: 1.8;
}

.contact-info .info-block a {
  color: #F2A3B5;
}

.contact-info .info-block a:hover {
  color: #F4EBEF;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

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

  .parcel-hero .hero-title {
    font-size: 42px;
  }

  .parcel-stack {
    height: 360px;
  }

  .split-metric .metric-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .support-cols .support-grid {
    grid-template-columns: 1fr;
  }

  .support-col + .support-col {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #3A222C;
    padding-top: 28px;
    margin-top: 28px;
  }

  .label-footer .footer-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-section .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

@media (max-width: 768px) {
  .barcode-nav .nav-toggle {
    display: block;
  }

  .barcode-nav .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background-color: #150C10;
    border-bottom: 1px solid #D94F6C;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    display: none;
  }

  .barcode-nav .nav-links.open {
    display: flex;
  }

  .barcode-nav .nav-links a {
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid #2C1A23;
  }

  .barcode-nav .nav-links a.active::after {
    display: none;
  }

  .barcode-nav .nav-cta {
    display: none;
  }

  .parcel-hero {
    padding: 64px 0 80px;
  }

  .parcel-hero .hero-title {
    font-size: 36px;
  }

  .statement-row .statement-text {
    font-size: 24px;
  }

  .sku-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sku-row .sku-price {
    text-align: left;
  }

  .split-metric .metric-num {
    font-size: 60px;
  }

  .cta-band .cta-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .parcel-hero .hero-title {
    font-size: 32px;
  }

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