/* چاپ دیجیتال — Chap Digital */
:root {
  --navy: #0b1f4a;
  --navy-deep: #071536;
  --navy-soft: #132a5c;
  --yellow: #f5c518;
  --yellow-hover: #e0b100;
  --violet: #6b3aa8;
  --violet-deep: #5a2d94;
  --text: #1a2332;
  --muted: #5c6b7a;
  --border: #e6ebf2;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --radius: 12px;
  --shadow: 0 8px 28px rgba(11, 31, 74, 0.08);
  --container: 1400px;
  --font: 'Vazirmatn', Tahoma, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { line-height: 1.35; margin: 0 0 .6rem; font-weight: 800; }
p { margin: 0 0 1rem; color: var(--muted); }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Topbar */
.topbar {
  background: var(--navy-deep);
  color: #d7deed;
  font-size: .85rem;
}
.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 42px;
}
.topbar-right, .topbar-left {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.topbar-left { justify-content: flex-start; }
.topbar-right { justify-content: flex-end; }
.topbar-center { text-align: center; color: #c9d2e8; }
.topbar-phone, .topbar-link, .btn-link {
  color: #e8edf8;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.topbar-phone:hover, .topbar-link:hover, .btn-link:hover { color: var(--yellow); }
.topbar-cart { position: relative; color: #fff; display: inline-flex; }
.cart-badge {
  position: absolute;
  top: -8px;
  left: -10px;
  background: var(--yellow);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.inline-form { display: inline; margin: 0; }

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow .2s ease;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(11, 31, 74, .08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong { font-size: 1.15rem; color: var(--navy); }
.logo-text small { font-size: .72rem; color: var(--muted); font-weight: 500; }

.nav {
  display: flex;
  align-items: center;
  gap: .15rem;
  flex-wrap: nowrap;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .55rem .85rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy-soft);
  transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--bg-soft); color: var(--navy); }
.nav-link.active { color: var(--yellow-hover); background: rgba(245, 197, 24, .12); }
.chevron { opacity: .6; }
.nav-dropdown { position: relative; }
.nav-link--dropdown { justify-content: space-between; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: .4rem;
  display: none;
  z-index: 20;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: .55rem .75rem;
  border-radius: 6px;
  font-size: .9rem;
}
.dropdown-menu a:hover { background: var(--bg-soft); }

/* Mega menu (Pixart-style) */
.dropdown-menu--mega {
  width: min(860px, calc(100vw - 2rem));
  min-width: min(560px, calc(100vw - 2rem));
  padding: .7rem .85rem;
  right: 0;
  left: auto;
}
.dropdown-menu--mega.mega-flip {
  right: auto;
  left: 0;
}
.dropdown-menu--mega.mega-center {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}
.dropdown-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}
.dropdown-mega-col {
  background: rgba(11, 31, 74, .02);
  border: 1px solid rgba(230, 235, 242, .9);
  border-radius: 12px;
  padding: .45rem;
}
.dropdown-mega-link {
  display: block;
  padding: .55rem .65rem;
  border-radius: 10px;
  font-weight: 800;
  color: var(--navy);
}
.dropdown-mega-link:hover { background: var(--bg-soft); }
.dropdown-mega-sub {
  margin-top: .35rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 0 .35rem .35rem;
}
.dropdown-mega-sublink {
  font-size: .9rem;
  font-weight: 650;
  color: var(--navy-soft);
  padding: .35rem .45rem;
  border-radius: 8px;
}
.dropdown-mega-sublink:hover { background: var(--bg-soft); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy);
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .7rem 1.25rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .15s, border-color .15s, color .15s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-yellow { background: var(--yellow); color: var(--navy); }
.btn-yellow:hover { background: var(--yellow-hover); }
.btn-outline {
  background: #fff;
  border-color: var(--border);
  color: var(--navy);
}
.btn-outline:hover { border-color: var(--navy); }
.btn-lg { padding: .85rem 1.5rem; font-size: 1rem; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); }
.btn-sm { padding: .45rem .85rem; font-size: .85rem; }
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-soft); }
.btn-sm { padding: .45rem .85rem; font-size: .85rem; }
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-soft); }

/* Hero */
.hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(245, 197, 24, .12), transparent 60%),
    linear-gradient(180deg, #fbfcfe 0%, #fff 100%);
}
.hero-slider .container { position: relative; }
.hero-slider__track { position: relative; min-height: 1px; }
.hero-slide { display: none; }
.hero-slide.active { display: block; }
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 2;
}
.hero-nav--prev { right: .5rem; }
.hero-nav--next { left: .5rem; }
.hero-dots {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-top: .75rem;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #c9d2e8;
  cursor: pointer;
}
.hero-dot.active { background: var(--navy); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-content h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
  color: var(--navy);
  margin-bottom: 1rem;
  animation: fadeUp .6s ease both;
}
.hero-sub {
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 1.75rem;
  animation: fadeUp .6s .1s ease both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  animation: fadeUp .6s .2s ease both;
}
.hero-visual {
  position: relative;
  animation: fadeIn .8s .15s ease both;
}
.hero-visual img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(11, 31, 74, .15);
  object-fit: cover;
  aspect-ratio: 4/3;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Features bar */
.features-bar {
  border-block: 1px solid var(--border);
  background: #fff;
  padding: 1.5rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 197, 24, .15);
  color: #c9a000;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.feature-item strong {
  display: block;
  color: var(--navy);
  font-size: .98rem;
}
.feature-item p { margin: 0; font-size: .85rem; }

/* Sections */
.section { padding: 4rem 0; }
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  color: var(--navy);
}
.section-head p { margin: 0 auto; max-width: 34rem; }
.section-cta { text-align: center; margin-top: 2.25rem; }
.category-strip { background: #fff; }
.category-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}
.category-pill {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .95rem 1rem;
  transition: .2s;
}
.category-pill:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}
.category-pill strong {
  display: block;
  color: var(--navy);
  font-size: .95rem;
}
.category-pill span {
  font-size: .78rem;
  color: var(--muted);
}

/* Services */
.services-section { background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(11, 31, 74, .04);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card-media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eef2f8;
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.service-card:hover .service-card-media img { transform: scale(1.05); }
.service-card-body { padding: 1.15rem 1.2rem 1.35rem; }
.service-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: .4rem;
}
.service-card-body h3 a { color: var(--navy); }
.service-card-body p {
  font-size: .9rem;
  margin-bottom: .9rem;
  min-height: 2.8em;
}
.link-order {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
}
.link-order:hover { color: var(--yellow-hover); }

/* Why */
.why-section { background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-item {
  text-align: center;
  padding: 1.5rem 1rem;
}
.why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border: 2px solid rgba(245, 197, 24, .55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #c9a000;
}
.why-item h3 { color: var(--navy); font-size: 1.05rem; }
.why-item p { margin: 0; font-size: .9rem; }
.trust-section { background: var(--bg-soft); padding-top: 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.15rem 1.2rem;
}
.trust-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: .35rem;
}
.trust-card p { margin: 0; font-size: .88rem; }

/* Steps */
.steps-section { background: var(--bg-soft); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  counter-reset: none;
  padding: 0;
  margin: 0;
  list-style: none;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d7deed, transparent);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
  background: transparent;
}
.step-num {
  width: 36px;
  height: 36px;
  margin: 0 auto .75rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 0 0 6px var(--bg-soft);
}
.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto .85rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--navy);
}
.step h3 { color: var(--navy); font-size: 1rem; }
.step p { margin: 0; font-size: .88rem; }
.seo-section { background: #fff; }
.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.seo-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}
.seo-card h3 {
  color: var(--navy);
  font-size: 1rem;
}
.seo-card p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.8;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(90deg, var(--violet-deep), var(--violet));
  color: #fff;
  padding: 1.75rem 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.newsletter-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 240px;
}
.newsletter-text strong { display: block; font-size: 1.1rem; }
.newsletter-text p { margin: .2rem 0 0; color: rgba(255,255,255,.85); font-size: .9rem; }
.newsletter-form {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  flex: 1;
  max-width: 460px;
  justify-content: flex-end;
}
.newsletter-input {
  flex: 1;
  min-width: 200px;
  border: 0;
  border-radius: 10px;
  padding: .85rem 1rem;
  font-family: inherit;
  font-size: .95rem;
}

/* Footer */
.footer {
  background: var(--navy-deep);
  color: #c5cee3;
  padding-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.footer p { color: #a8b4d0; font-size: .92rem; }
.footer a { color: #c5cee3; }
.footer a:hover { color: var(--yellow); }
.footer li { margin-bottom: .45rem; font-size: .92rem; }
.socials { display: flex; gap: .5rem; margin-top: 1rem; }
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 700;
}
.contact-list li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  margin-bottom: .7rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1rem 0;
  text-align: center;
  font-size: .85rem;
  color: #8e9bb8;
}

/* Forms & pages */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: .4rem; }
.page-hero p { color: rgba(255,255,255,.8); margin: 0; }
.page-body { padding: 3rem 0; }
.form-card, .content-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(11,31,74,.04);
  max-width: 640px;
  margin-inline: auto;
}
.form-control {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  margin-bottom: .2rem;
  background: #fff;
}
.form-control:focus {
  outline: 2px solid rgba(245, 197, 24, .45);
  border-color: var(--yellow);
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  margin-bottom: .35rem;
  font-weight: 600;
  color: var(--navy);
  font-size: .92rem;
}
.errorlist {
  color: #c0392b;
  font-size: .85rem;
  margin: .25rem 0 .5rem;
  padding: 0;
}
.messages-wrap { padding-top: 1rem; }
.alert {
  padding: .85rem 1rem;
  border-radius: 10px;
  margin-bottom: .75rem;
  font-size: .92rem;
}
.alert-success { background: #e8f8ef; color: #1b6b3a; }
.alert-error, .alert-danger { background: #fdecea; color: #a1281f; }
.alert-info { background: #eaf2ff; color: #1d4f91; }
.auth-links { text-align: center; margin-top: 1rem; font-size: .92rem; }
.auth-links a { color: var(--navy); font-weight: 700; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.price-table th, .price-table td {
  padding: .9rem 1rem;
  text-align: right;
  border-bottom: 1px solid var(--border);
}
.price-table th { background: var(--navy); color: #fff; }
.price-table tr:last-child td { border-bottom: 0; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}
.portfolio-item img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
}
.portfolio-item .cap { padding: 1rem; }
.portfolio-item h3 { font-size: 1rem; color: var(--navy); margin: 0; }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td {
  padding: .85rem;
  border-bottom: 1px solid var(--border);
  text-align: right;
}
.empty-note { text-align: center; grid-column: 1 / -1; color: var(--muted); }

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: start;
}
.detail-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #eef2f8;
}
.detail-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.price-from {
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 800;
  margin: 1rem 0;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}
.chip {
  padding: .45rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: .88rem;
  font-weight: 600;
}
.chip.active, .chip:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-top: 2rem;
}
.pagination a, .pagination span {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-weight: 600;
}
.pagination .current {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.muted { color: var(--muted); font-size: .9rem; }

/* Responsive */
@media (max-width: 992px) {
  .topbar-inner { grid-template-columns: 1fr; text-align: center; padding: .55rem 0; gap: .35rem; }
  .topbar-right, .topbar-left { justify-content: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .features-grid, .why-grid, .steps, .services-grid, .portfolio-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-strip__grid, .trust-grid, .seo-grid { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: .75rem 1rem 1rem;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .header-inner { position: relative; }
  .nav-link { width: 100%; }
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0 .5rem;
    background: transparent;
  }
  .nav-dropdown.open > .dropdown-menu { display: block; }
  .dropdown-menu--mega {
    width: auto;
    min-width: 0;
    padding: .5rem;
  }
  .dropdown-mega-grid {
    grid-template-columns: 1fr;
    gap: .5rem;
  }
  .dropdown-mega-col { padding: .35rem; }
  .dropdown-mega-link { padding: .55rem .65rem; }
  .features-grid, .why-grid, .steps, .services-grid, .portfolio-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .category-strip__grid, .trust-grid, .seo-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; align-items: stretch; }
  .newsletter-form { max-width: none; justify-content: stretch; }
  .hero { padding: 2rem 0; }
  .hero-nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
