@import './theme-tokens.css';

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: #D8DEE8;
  box-shadow: 0 4px 24px rgba(10, 36, 99, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: 64px;
  padding: 0.5rem 0;
}
@media (min-width: 768px) {
  .header-inner { min-height: 72px; padding: 0.625rem 0; gap: 1rem 1.25rem; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.brand:hover { transform: translateY(-1px); opacity: 0.92; }
.brand-name {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #0A2463;
  white-space: nowrap;
}
.brand-name--full { display: none; }
.brand-name--short { display: inline; }
@media (min-width: 768px) {
  .brand-name { font-size: 0.9375rem; }
}
@media (min-width: 1280px) {
  .brand-name--short { display: none; }
  .brand-name--full { display: inline; font-size: 1.0625rem; }
}
.header-brand { min-width: 0; flex-shrink: 1; }
.header-nav { overflow: hidden; }
@media (min-width: 768px) {
  .header-inner { gap: 0.5rem 0.75rem; }
}
@media (min-width: 1280px) {
  .header-inner { gap: 1rem 1.25rem; }
}
.brand-logo { height: 2rem; width: auto; max-width: 148px; transition: filter 0.35s ease; object-fit: contain; }
@media (min-width: 768px) { .brand-logo { height: 2.35rem; max-width: 168px; } }
.brand-logo--official,
.footer-logo.brand-logo--official {
  height: 2.5rem; max-width: 2.5rem; border-radius: 0.35rem;
  filter: none;
}
@media (min-width: 768px) {
  .brand-logo--official { height: 2.75rem; max-width: 2.75rem; }
}
.brand-text {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0A2463;
  text-decoration: none;
  transition: color 0.35s ease;
}
@media (min-width: 768px) { .brand-text { font-size: 1.05rem; } }

/* 首页：置顶时导航叠在深蓝 Hero 上；下滚后白底导航（蓝 Logo 清晰可见） */
body.nav-on-hero {
  --site-header-h: 64px;
}
@media (min-width: 768px) {
  body.nav-on-hero { --site-header-h: 72px; }
}
body.nav-on-hero .site-header:not(.is-scrolled) {
  background: linear-gradient(
    180deg,
    rgba(10, 36, 99, 0.98) 0%,
    rgba(10, 36, 99, 0.88) 50%,
    rgba(10, 36, 99, 0.45) 82%,
    transparent 100%
  );
  border-bottom-color: transparent;
  box-shadow: none;
}
body.nav-on-hero .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: #D8DEE8;
  box-shadow: 0 4px 24px rgba(10, 36, 99, 0.08);
  backdrop-filter: blur(12px);
}
body.nav-on-hero .site-header:not(.is-scrolled) .brand-text,
body.nav-on-hero .site-header:not(.is-scrolled) .brand-name { color: #fff; }
.site-header.is-scrolled .brand-text,
.site-header.is-scrolled .brand-name,
body.nav-on-hero .site-header.is-scrolled .brand-text,
body.nav-on-hero .site-header.is-scrolled .brand-name { color: #0A2463; }
body.nav-on-hero .site-header:not(.is-scrolled) .brand-logo:not(.brand-logo--official) {
  filter: brightness(0) invert(1);
}
.site-header.is-scrolled .brand-logo:not(.brand-logo--official),
body.nav-on-hero .site-header.is-scrolled .brand-logo:not(.brand-logo--official) {
  filter: none;
}
body.nav-on-hero .site-header:not(.is-scrolled) .brand-logo--official,
.site-header.is-scrolled .brand-logo--official,
body.nav-on-hero .site-header.is-scrolled .brand-logo--official {
  filter: none;
}

.header-nav { display: none; min-width: 0; }
@media (min-width: 992px) {
  .header-nav { display: flex; justify-content: center; }
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 768px) { .header-actions { gap: 0.75rem; } }

.nav-list { margin: 0; padding: 0; list-style: none; }
.nav-list--desktop {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.0625rem;
}
.nav-link {
  display: inline-block;
  padding: 0.5rem 0.4rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  color: #2D3142;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
@media (min-width: 992px) {
  .nav-link { padding: 0.5rem 0.5rem; font-size: 0.8125rem; }
}
@media (min-width: 1280px) {
  .nav-link { font-size: 0.875rem; padding: 0.5rem 0.65rem; }
}
.nav-link:hover {
  background: rgba(10, 36, 99, 0.06);
  color: #0A2463;
}
.nav-link.is-active {
  font-weight: 600;
  color: #0A2463;
  border-bottom-color: #FF8C38;
}
.site-header.is-scrolled .nav-link,
body.nav-on-hero .site-header.is-scrolled .nav-link {
  color: #334155;
}
.site-header.is-scrolled .nav-link:hover,
body.nav-on-hero .site-header.is-scrolled .nav-link:hover {
  background: rgba(10, 36, 99, 0.06);
  color: #0A2463;
}
.site-header.is-scrolled .nav-link.is-active,
body.nav-on-hero .site-header.is-scrolled .nav-link.is-active {
  color: #0A2463;
  border-bottom-color: #FF8C38;
}
body.nav-on-hero .site-header:not(.is-scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.92);
}
body.nav-on-hero .site-header:not(.is-scrolled) .nav-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
body.nav-on-hero .site-header:not(.is-scrolled) .nav-link.is-active {
  color: #FFD4B8;
  border-bottom-color: #FF8C38;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
  border-radius: 0.5rem;
  border: 1px solid #D8DEE8;
  background: rgba(255, 255, 255, 0.85);
}
body.nav-on-hero .site-header:not(.is-scrolled) .lang-switch {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}
.site-header.is-scrolled .lang-switch,
body.nav-on-hero .site-header.is-scrolled .lang-switch {
  border-color: #D8DEE8;
  background: #fff;
}
.lang-btn {
  display: inline-flex;
  min-height: 36px;
  min-width: 2.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.55rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2D3142;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-btn:hover { background: rgba(10, 36, 99, 0.08); color: #0A2463; }
.lang-btn.is-active {
  background: #0A2463;
  color: #fff;
}
.site-header.is-scrolled .lang-btn,
body.nav-on-hero .site-header.is-scrolled .lang-btn {
  color: #334155;
}
body.nav-on-hero .site-header:not(.is-scrolled) .lang-btn {
  color: rgba(255, 255, 255, 0.9);
}
.site-header.is-scrolled .lang-btn.is-active,
body.nav-on-hero .site-header.is-scrolled .lang-btn.is-active {
  background: #0A2463;
  color: #fff;
}
body.nav-on-hero .site-header:not(.is-scrolled) .lang-btn.is-active {
  background: #FF8C38;
  color: #fff;
}
.site-header.is-scrolled .lang-btn:hover,
body.nav-on-hero .site-header.is-scrolled .lang-btn:hover {
  background: rgba(10, 36, 99, 0.06);
  color: #0A2463;
}
body.nav-on-hero .site-header:not(.is-scrolled) .lang-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.lang-divider {
  width: 1px;
  height: 1.25rem;
  margin: 0 0.1rem;
  background: #D8DEE8;
}
body.nav-on-hero .site-header:not(.is-scrolled) .lang-divider {
  background: rgba(255, 255, 255, 0.25);
}
.site-header.is-scrolled .lang-divider,
body.nav-on-hero .site-header.is-scrolled .lang-divider {
  background: #D8DEE8;
}
.nav-mobile-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-switch--mobile {
  margin-top: 0.75rem;
  align-self: stretch;
  justify-content: center;
  width: 100%;
}

/* 覆盖 app.css 中 .lang-switch 在移动端的「抽屉式」边距，避免顶栏语言块错位 */
.header-actions > .lang-switch:not(.lang-switch--mobile) {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
/* 手机/平板：顶栏只保留汉堡，语言与 CTA 进抽屉 */
@media (max-width: 991px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem;
  }
  .header-actions > .lang-switch:not(.lang-switch--mobile) {
    display: none;
  }
  .header-actions .header-cta {
    display: none !important;
  }
  .header-actions {
    gap: 0.375rem;
  }
}

.btn-quote {
  display: none;
  min-height: 44px;
  padding: 0.625rem 0.875rem;
  border: none;
  border-radius: 8px;
  background: #FF8C38;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255, 140, 56, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
@media (min-width: 1280px) {
  .header-cta.btn-quote { padding: 0.625rem 1.125rem; font-size: 0.875rem; }
}
.btn-quote:hover {
  transform: translateY(-2px);
  background: #E86A17;
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 140, 56, 0.45);
}
@media (min-width: 992px) {
  .header-cta.btn-quote { display: inline-flex; align-items: center; justify-content: center; }
}

.nav-toggle {
  display: inline-flex;
  min-height: 44px;
  min-width: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem;
  border: 1px solid #D8DEE8;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: border-color 0.35s ease, background 0.35s ease;
}
@media (min-width: 992px) { .nav-toggle { display: none; } }
.nav-toggle-bar {
  width: 1.35rem;
  height: 2px;
  border-radius: 2px;
  background: #0A2463;
  transition: background 0.35s ease, transform 0.2s ease;
}
body.nav-on-hero .site-header:not(.is-scrolled) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}
body.nav-on-hero .site-header:not(.is-scrolled) .nav-toggle-bar {
  background: #fff;
}
.site-header.is-scrolled .nav-toggle,
body.nav-on-hero .site-header.is-scrolled .nav-toggle {
  border-color: #D8DEE8;
  background: #fff;
}
.site-header.is-scrolled .nav-toggle-bar,
body.nav-on-hero .site-header.is-scrolled .nav-toggle-bar {
  background: #0A2463;
}
.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(10, 36, 99, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-backdrop[hidden] {
  display: none !important;
}
@media (min-width: 992px) {
  .nav-backdrop, .nav-backdrop.is-open { display: none !important; }
}

/* 手机端：右上角下拉导航（锚定在汉堡按钮下方） */
.site-nav-mobile {
  position: fixed;
  z-index: 210;
  top: calc(var(--site-header-h, 64px) + 0.5rem);
  right: max(0.75rem, env(safe-area-inset-right, 0px));
  left: auto;
  width: min(20rem, calc(100vw - 1.5rem));
  max-height: min(28rem, calc(100dvh - var(--site-header-h, 64px) - 1.25rem));
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.65rem;
  background: #fff;
  border: 1px solid #D8DEE8;
  border-radius: 0.75rem;
  box-shadow: 0 16px 48px rgba(10, 36, 99, 0.18);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform-origin: top right;
  transform: translateY(-8px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}
.site-nav-mobile:not([hidden]) {
  display: flex;
}
.site-nav-mobile[hidden] {
  display: none !important;
}
.site-nav-mobile.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 992px) {
  .site-nav-mobile, .site-nav-mobile.is-open { display: none !important; }
}
.site-header.nav-open {
  z-index: 200;
}
body.nav-on-hero .site-header.nav-open {
  z-index: 220;
}

.nav-mobile-cta {
  display: flex !important;
  width: 100%;
  justify-content: center;
  margin-bottom: 0.35rem;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  border-radius: 8px;
}

.nav-list--mobile {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin: 0;
  padding: 0;
}
.nav-list--mobile .nav-link {
  display: block;
  padding: 0.65rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.35;
  color: #2D3142;
  text-decoration: none;
  border: none;
  border-radius: 0.5rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-list--mobile .nav-link:hover {
  background: rgba(10, 36, 99, 0.06);
  color: #0A2463;
}
.nav-list--mobile .nav-link.is-active {
  color: #0A2463;
  font-weight: 600;
  background: rgba(255, 140, 56, 0.12);
  box-shadow: inset 3px 0 0 #FF8C38;
}

.main { min-height: 50vh; padding-bottom: 4rem; }

.hero { position: relative; overflow: hidden; background: #0A2463; color: #fff; }
.hero--home { min-height: 0; }
/* 首页 Banner 在 main 流内、位于导航栏之后，滚动时保持在导航 z-index 之下 */
body.nav-on-hero .main { position: relative; z-index: 1; }
body.nav-on-hero .site-header { z-index: 200; }
body.nav-on-hero .hero--home {
  margin-top: calc(-1 * var(--site-header-h, 64px));
  padding-top: var(--site-header-h, 64px);
  isolation: isolate;
}
body.nav-on-hero .hero--home .hero-inner {
  padding-top: calc(var(--site-header-h, 64px) + 1.75rem);
  padding-bottom: 3.5rem;
}
.hero--b2b { min-height: clamp(420px, 72vh, 640px); display: flex; align-items: center; }
.hero--b2b .hero-inner { width: 100%; }
.hero-carousel {
  position: absolute; inset: 0; z-index: 0;
  background-color: #0A2463;
}
.hero-slide-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  transform: scale(1.02);
}
.hero-slide-img.is-active {
  opacity: 1;
  z-index: 1;
}
/* 兼容旧版 background 轮播层 */
.hero-bg,
.hero-bg-slide {
  position: absolute; inset: 0;
  background-color: #0A2463;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero--b2b .hero-bg-slide.is-active { opacity: 1; }
.hero-dots {
  position: absolute; z-index: 4; bottom: 1.25rem; left: 50%;
  display: flex; gap: 0.5rem; transform: translateX(-50%);
}
.hero-dot {
  width: 0.5rem; height: 0.5rem; padding: 0; border: 0; border-radius: 999px;
  background: rgba(255, 255, 255, 0.35); cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-dot.is-active,
.hero-dot:hover { background: #fff; transform: scale(1.15); }
.hero-dot:focus-visible { outline: 2px solid #FFD4B8; outline-offset: 2px; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.72) 0%, rgba(10, 36, 99, 0.45) 50%, rgba(10, 36, 99, 0.55) 100%);
}
.hero-overlay--readable {
  background:
    linear-gradient(105deg, rgba(8, 29, 79, 0.92) 0%, rgba(10, 36, 99, 0.72) 36%, rgba(10, 36, 99, 0.35) 58%, rgba(10, 36, 99, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 29, 79, 0.45) 0%, transparent 55%);
}
.hero--home .hero-inner {
  position: relative; z-index: 3;
  width: 100%;
  text-align: left;
}
.hero--home .hero-copy {
  max-width: 52rem;
}
.hero-kicker {
  margin: 0 0 0.65rem; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.06em;
  color: #FFD4B8;
}
html[lang^="en"] .hero-kicker {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: #FF8C38;
}
.hero--home .hero-title {
  margin: 0;
  font-size: clamp(1.75rem, 4.2vw, 2.875rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 52rem;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.4);
}
.hero--home .hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.25rem); margin-top: 0.85rem; max-width: 34rem;
  font-weight: 600; color: rgba(255, 255, 255, 0.95); line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}
.hero--home .hero-actions { margin-top: 1.75rem; gap: 0.875rem; }
.hero--home .hero-bullets li {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}
.hero--home .hero-micro-nav { margin-top: 1.25rem; }
.btn-hero-secondary {
  display: inline-flex; min-height: 54px; align-items: center; justify-content: center;
  padding: 0.875rem 1.5rem; border: 2px solid rgba(255, 255, 255, 0.55); border-radius: 8px;
  background: rgba(255, 255, 255, 0.08); color: #fff; font-size: 1rem; font-weight: 600;
  text-decoration: none; backdrop-filter: blur(4px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn-hero-secondary:hover {
  transform: translateY(-2px); border-color: #fff; background: rgba(255, 255, 255, 0.16); color: #fff;
}

/* Market ticker — horizontal feed (data from cached JSON) */
.market-ticker {
  border-bottom: 1px solid #D8DEE8; background: #F4F6F9;
}
.market-ticker-inner {
  display: flex; align-items: stretch; max-width: 100%; overflow: hidden;
}
.market-ticker-badge {
  flex-shrink: 0; display: inline-flex; align-items: center; padding: 0.65rem 1rem;
  background: #0A2463; color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  white-space: nowrap;
}
.market-ticker-viewport {
  flex: 1; min-width: 0; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}
.market-ticker-track {
  display: flex; align-items: center; gap: 2.5rem; margin: 0; padding: 0.75rem 1.25rem;
  list-style: none; width: max-content;
  animation: market-ticker-scroll 45s linear infinite;
}
.market-ticker:hover .market-ticker-track { animation-play-state: paused; }
.market-ticker-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 600; color: #2D3142; white-space: nowrap;
}
.market-ticker-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #FF8C38; flex-shrink: 0;
}
@keyframes market-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .market-ticker-track { animation: none; flex-wrap: wrap; width: auto; }
  .market-ticker-viewport { overflow-x: auto; }
}
/* Homepage — config_content.php driven sections */
.home-category-section { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.home-category-section .section-title {
  margin: 0 0 1.25rem; font-size: clamp(1.25rem, 2.5vw, 1.5rem); color: #0A2463; text-align: center;
}
.home-category-grid {
  display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .home-category-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.home-category-card {
  position: relative; display: flex; flex-direction: column; height: 100%;
  border: 1px solid #D8DEE8; border-radius: 0.75rem; overflow: hidden; background: #fff;
  text-decoration: none; color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.home-category-card:hover {
  border-color: #FF8C38; box-shadow: 0 8px 24px rgba(10, 36, 99, 0.1); transform: translateY(-2px);
}
.home-category-badge {
  position: absolute; top: 0.65rem; right: 0.65rem; z-index: 2;
  padding: 0.25rem 0.55rem; border-radius: 999px;
  background: linear-gradient(135deg, #e85d04 0%, #f48c06 100%);
  color: #fff; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(232, 93, 4, 0.35);
}
.home-category-media {
  position: relative; display: block; aspect-ratio: 5 / 3; overflow: hidden; background: #EEF2F7;
}
.home-category-media--slides .home-category-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 0.65s ease-in-out, transform 0.35s ease;
}
.home-category-media--slides .home-category-img.is-active { opacity: 1; }
.home-category-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.35s ease;
}
.home-category-card:hover .home-category-img.is-active { transform: scale(1.04); }
.home-category-slide-dots {
  position: absolute; z-index: 2; bottom: 0.45rem; left: 50%;
  display: flex; gap: 0.35rem; transform: translateX(-50%);
  pointer-events: none;
}
.home-category-slide-dot {
  width: 0.35rem; height: 0.35rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease, transform 0.2s ease;
}
.home-category-slide-dot.is-active {
  background: #fff; transform: scale(1.15);
}
.home-category-img.is-img-placeholder,
.home-category-img[src*="placeholder"] { object-fit: contain; padding: 1.5rem; background: #EEF2F7; }
.home-category-title {
  display: block; padding: 0.85rem 1rem; font-size: 0.9375rem; font-weight: 700;
  color: #0A2463; line-height: 1.35; text-align: center;
}
.home-stats-strip {
  padding: 2rem 0; background: linear-gradient(180deg, #0A2463 0%, #081D4F 100%); color: #fff;
}
.home-stats-grid {
  display: grid; gap: 1.5rem; margin: 0; padding: 0; list-style: none;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .home-stats-grid { grid-template-columns: repeat(3, 1fr); text-align: center; } }
.home-stat-num {
  display: block; font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 800; color: #FFD4B8; line-height: 1.1;
}
.home-stat-desc { display: block; margin-top: 0.35rem; font-size: 0.9375rem; color: rgba(255, 255, 255, 0.88); }
.home-faq-section .section-title { margin: 0 0 1rem; font-size: 1.25rem; color: #0A2463; }
.home-faq-accordion .faq-item { border: 1px solid #D8DEE8; border-radius: 0.5rem; margin-bottom: 0.5rem; background: #fff; }
.home-faq-accordion .faq-item summary { padding: 0.85rem 1rem; font-weight: 600; cursor: pointer; color: #0A2463; }
.home-faq-accordion .faq-item p { margin: 0; padding: 0 1rem 1rem; font-size: 0.9375rem; line-height: 1.65; color: #2D3142; }

.home-intro { padding-top: 2.5rem; padding-bottom: 2rem; }
.home-intro--scan { text-align: center; }
.home-intro-title { margin: 0 auto 0.75rem; max-width: 40rem; font-size: clamp(1.25rem, 2.5vw, 1.5rem); color: #0A2463; }
.home-intro-lead {
  margin: 0 auto; max-width: 36rem; font-size: 1rem; line-height: 1.55; color: #5c6478;
}
.home-intro-highlights {
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
  margin: 1.25rem auto 0; padding: 0; max-width: 48rem; list-style: none;
}
.home-intro-highlight {
  padding: 0.45rem 0.9rem; border-radius: 9999px;
  background: rgba(10, 36, 99, 0.06); border: 1px solid rgba(10, 36, 99, 0.1);
  font-size: 0.8125rem; font-weight: 600; color: #0A2463; line-height: 1.35;
}
.home-trust-strip { background: #0A2463; }
.home-trust-strip .trust-list { justify-content: center; }
.section-head .section-lead { margin: 0.75rem auto 0; max-width: 42rem; color: #5c6478; font-size: 1rem; line-height: 1.65; }
.section-lead--short { max-width: 34rem; font-size: 0.9375rem; line-height: 1.5; }
@media (min-width: 640px) {
  body.nav-on-hero .hero--home .hero-inner { padding-top: calc(var(--site-header-h, 72px) + 2rem); padding-bottom: 3.75rem; }
}
@media (min-width: 1024px) {
  body.nav-on-hero .hero--home .hero-inner { padding-top: calc(var(--site-header-h, 72px) + 2.5rem); padding-bottom: 4.25rem; }
}
.hero-title {
  margin: 0; max-width: 52rem;
  font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; color: #fff;
}
.hero--home .hero-title.hero-title {
  font-size: clamp(1.75rem, 4.2vw, 2.875rem);
  line-height: 1.15;
  max-width: 52rem;
}
.hero-lead {
  margin: 1rem 0 0; max-width: 48rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem); font-weight: 500; line-height: 1.55; color: rgba(255, 255, 255, 0.9);
}
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; margin: 1.25rem 0 0; padding: 0; list-style: none; }
.hero-trust-item { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8125rem; font-weight: 600; color: rgba(255, 255, 255, 0.92); }
@media (min-width: 768px) { .hero-trust-item { font-size: 0.875rem; } }
.hero-trust-icon { display: inline-flex; flex-shrink: 0; color: #FFD4B8; }
.hero-trust-icon svg { width: 1.1rem; height: 1.1rem; stroke-width: 2.5; }
.hero-services { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 768px) { .hero-services { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.hero-service-card {
  padding: 1.25rem 1.125rem; border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.07); backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.hero-service-card:hover { border-color: rgba(255, 140, 56, 0.55); background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
.hero-service-icon { display: inline-flex; margin-bottom: 0.75rem; padding: 0.5rem; border-radius: 0.5rem; background: rgba(255, 140, 56, 0.2); color: #FFD4B8; }
.why-card-icon-img { display: block; width: 3rem; height: 3rem; object-fit: contain; }
.why-card-icon:has(.why-card-icon-img) { padding: 0.25rem; background: rgba(255, 140, 56, 0.12); }
.brand-logo, .footer-logo { object-fit: contain; max-height: 2.5rem; width: auto; }
.hero-service-icon svg { width: 1.5rem; height: 1.5rem; }
.hero-service-title { margin: 0 0 0.5rem; font-size: 1rem; font-weight: 700; line-height: 1.3; color: #fff; }
@media (min-width: 768px) { .hero-service-title { font-size: 1.0625rem; } }
.hero-service-body { margin: 0; font-size: 0.875rem; line-height: 1.55; color: rgba(255, 255, 255, 0.78); }
.hero-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
@media (min-width: 540px) { .hero-actions { flex-direction: row; flex-wrap: wrap; align-items: center; } }
.btn-hero-primary {
  display: inline-flex; min-height: 54px; align-items: center; justify-content: center;
  padding: 0.875rem 1.75rem; border: none; border-radius: 8px; background: #FF8C38; color: #fff;
  font-size: 1rem; font-weight: 700; text-decoration: none; box-shadow: 0 4px 14px rgba(255, 140, 56, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-hero-primary:hover { transform: translateY(-2px); background: #E86A17; color: #fff; box-shadow: 0 8px 24px rgba(255, 140, 56, 0.55); }
.btn-hero-whatsapp {
  display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem; border: 2px solid #FF8C38; border-radius: 8px; background: transparent; color: #FFD4B8;
  font-size: 1rem; font-weight: 600; text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-hero-whatsapp:hover { transform: translateY(-2px); border-color: #5ADBB5; background: rgba(255, 140, 56, 0.12); color: #fff; }
.btn-hero-whatsapp .btn-icon { display: inline-flex; }
.btn-hero-whatsapp .btn-icon svg { width: 1.25rem; height: 1.25rem; }
.hero--home::before { display: none; }
.hero::before {
  content: ""; pointer-events: none; position: absolute; inset: 0; opacity: 0.07;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner { position: relative; padding: 3.5rem 0; }
@media (min-width: 640px) { .hero-inner { padding: 4rem 0; } }
@media (min-width: 1024px) { .hero-inner { padding: 5rem 0; } }
.hero h1 { max-width: 56rem; color: #fff; }
.hero .lead { margin-top: 1rem; max-width: 42rem; font-size: 1.125rem; line-height: 1.625; color: rgba(255, 255, 255, 0.85); }

.kicker {
  margin-bottom: 0.75rem; display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: #FF8C38;
}
.hero .kicker { color: #FF8C38; }

.trust-strip { border-top: 1px solid rgba(255, 255, 255, 0.15); background: #0A2463; }
.trust-strip-inner {
  display: grid; gap: 1.5rem; padding: 2rem 0;
}
@media (min-width: 640px) { .trust-strip-inner { grid-template-columns: repeat(3, 1fr); } }
.trust-item { display: flex; flex-direction: column; gap: 0.25rem; border-left: 2px solid #FF8C38; padding-left: 1rem; }
.trust-item strong { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.9); }
.trust-item span { font-size: 0.875rem; color: rgba(255, 255, 255, 0.7); }

.actions { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .actions { flex-direction: row; flex-wrap: wrap; } }

.btn {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 600;
  text-align: center; text-decoration: none; transition: all 0.15s; cursor: pointer; border: 1px solid transparent;
}
.btn-primary {
  border-color: #FF8C38; background: #FF8C38; color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn-primary:hover {
  border-color: #E86A17; background: #E86A17; color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 20px rgba(232, 106, 23, 0.35);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.35); background: transparent; color: #fff;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); color: #fff; }
.hero .btn-ghost { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.section .btn-ghost, .page-head .btn-ghost, .prose .btn-ghost, .site-footer .btn-ghost {
  border-color: #D8DEE8; background: #fff; color: #0A2463;
}
.section .btn-ghost:hover, .page-head .btn-ghost:hover, .prose .btn-ghost:hover, .site-footer .btn-ghost:hover {
  border-color: #FF8C38; background: #F4F6F9; color: #0A2463;
}

.section { padding: 3rem 0; }
@media (min-width: 1024px) { .section { padding: 4rem 0; } }
.section-alt { border-top: 1px solid #D8DEE8; border-bottom: 1px solid #D8DEE8; background: #F4F6F9; }

.page-head { border-bottom: 1px solid #D8DEE8; background: #F4F6F9; padding: 2.5rem 0; }
@media (min-width: 1024px) { .page-head { padding: 3rem 0; } }
.page-head h1 { margin-bottom: 0.75rem; }
.page-head .lead { max-width: 48rem; font-size: 1.125rem; color: rgba(45, 49, 66, 0.9); }

.lead { font-size: 1rem; line-height: 1.6; color: #2D3142; }

.cards { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  display: flex; flex-direction: column; padding: 1.5rem; border-radius: 0.75rem;
  border: 1px solid #D8DEE8; background: #fff;
  box-shadow: 0 1px 2px rgba(10, 36, 99, 0.06), 0 8px 24px rgba(10, 36, 99, 0.08);
  transition: box-shadow 0.15s;
}
.card:hover { box-shadow: 0 10px 15px -3px rgba(10, 36, 99, 0.1), 0 4px 6px -4px rgba(10, 36, 99, 0.08); }
.card-accent { border-left: 4px solid #FF8C38; }
.card-title { margin-bottom: 0.5rem; }
.card-icon {
  margin-bottom: 1rem; display: inline-flex; height: 2.75rem; width: 2.75rem;
  align-items: center; justify-content: center; border-radius: 0.5rem;
  background: rgba(10, 36, 99, 0.05); color: #0A2463;
}

.muted { color: rgba(45, 49, 66, 0.75); }
.site-footer .muted { color: rgba(255, 255, 255, 0.7); }
.small { font-size: 0.875rem; }

.prose { max-width: 48rem; font-size: 1rem; line-height: 1.6; color: #2D3142; }
.prose h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
.prose h2:first-child { margin-top: 0; }
.prose ul { margin: 1rem 0; padding-left: 1.25rem; list-style: disc; }
.prose ul li { margin-bottom: 0.5rem; }
.prose p { margin: 1rem 0; }

.site-footer { margin-top: auto; border-top: 1px solid #D8DEE8; background: #0A2463; color: #fff; }
.footer-grid {
  display: grid; gap: 2.5rem; padding: 3rem 0 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 2rem; } }

.footer-col--brand { max-width: 22rem; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo { height: 2.25rem; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-logo.brand-logo--official,
.footer-logo.footer-logo--official { filter: none; opacity: 1; }
.footer-brand-text,
.footer-brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: #fff;
}
.footer-about { margin: 0 0 1rem; font-size: 0.875rem; line-height: 1.6; color: rgba(255, 255, 255, 0.78); }
.footer-copyright { margin: 0; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.55); }

.footer-title {
  margin: 0 0 1rem; font-size: 0.8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.92);
}
.footer-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-list a {
  font-size: 0.875rem; color: rgba(255, 255, 255, 0.85); text-decoration: none; transition: color 0.15s;
}
.footer-list a:hover { color: #FFD4B8; }

.footer-contact-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-contact-list li {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.65rem;
  font-size: 0.875rem; color: rgba(255, 255, 255, 0.88);
}
.footer-contact-icon { display: inline-flex; flex-shrink: 0; color: #FF8C38; }
.footer-contact-list a { color: rgba(255, 255, 255, 0.9); text-decoration: none; }
.footer-contact-list a:hover { color: #FFD4B8; text-decoration: underline; }
.footer-copy-btn {
  border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 0.35rem;
  background: transparent; color: rgba(255, 255, 255, 0.85); font-size: 0.75rem;
  padding: 0.15rem 0.5rem; cursor: pointer; transition: border-color 0.15s, color 0.15s;
}
.footer-copy-btn:hover { border-color: #FF8C38; color: #FFD4B8; }

.footer-social { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9); cursor: pointer; text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.footer-social-link:hover {
  transform: translateY(-2px); border-color: #FF8C38; background: rgba(255, 140, 56, 0.25); color: #fff;
}
.footer-social-link.is-disabled { opacity: 0.45; cursor: not-allowed; }
.footer-social-link.is-disabled:hover {
  transform: none; border-color: rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.9);
}
.footer-social-link--linkedin:hover { border-color: #0a66c2; background: rgba(10, 102, 194, 0.35); }
.footer-social-link--youtube:hover { border-color: #ff0000; background: rgba(255, 0, 0, 0.25); }
.footer-social-link--facebook:hover { border-color: #1877f2; background: rgba(24, 119, 242, 0.3); }
.footer-social-link--whatsapp:hover { border-color: #25d366; background: rgba(37, 211, 102, 0.28); }
.footer-social-link--telegram:hover { border-color: #26a5e4; background: rgba(38, 165, 228, 0.28); }
.footer-social-link--wechat:hover { border-color: #07c160; background: rgba(7, 193, 96, 0.28); }

.footer-legal { border-top: 1px solid rgba(255, 255, 255, 0.12); background: rgba(0, 0, 0, 0.12); }
.footer-legal-inner {
  display: flex; flex-direction: column; gap: 0.75rem;
  padding: 1.25rem 0; text-align: center;
}
@media (min-width: 768px) {
  .footer-legal-inner { flex-direction: row; align-items: center; justify-content: space-between; text-align: left; }
}
.footer-legal-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.25rem; }
@media (min-width: 768px) { .footer-legal-nav { justify-content: flex-start; } }
.footer-legal-nav a {
  font-size: 0.8125rem; font-weight: 500; color: rgba(255, 255, 255, 0.8); text-decoration: none;
}
.footer-legal-nav a:hover { color: #FFD4B8; text-decoration: underline; }
.footer-legal-note { margin: 0; font-size: 0.75rem; line-height: 1.5; color: rgba(255, 255, 255, 0.5); max-width: 28rem; }

.legal-prose h2 { font-size: 1.125rem; margin-top: 1.75rem; }
.site-footer .muted { color: rgba(255, 255, 255, 0.7); }

.form .field { margin-bottom: 1.25rem; display: grid; gap: 0.5rem; }
.form label { font-size: 0.875rem; font-weight: 600; color: #0A2463; }
.form input[type="text"], .form input[type="email"], .form input[type="tel"], .form input[type="url"],
.form input[type="password"], .form input[type="file"], .form textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid #D8DEE8; border-radius: 0.5rem;
  background: #fff; color: #2D3142; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04); transition: border-color 0.15s, box-shadow 0.15s;
}
.form input:focus, .form textarea:focus {
  border-color: #FF8C38; outline: none; box-shadow: 0 0 0 3px rgba(255, 140, 56, 0.25);
}
.field.checkbox { display: flex; align-items: flex-start; gap: 0.75rem; }
.field.checkbox label { font-weight: 400; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { margin: 1rem 0; padding: 0.75rem 1rem; border-radius: 0.5rem; border: 1px solid; font-size: 0.875rem; }
.alert-success { border-color: #a7f3d0; background: #ecfdf5; color: #064e3b; }
.alert-error { border-color: #fecaca; background: #fef2f2; color: #7f1d1d; }

.faq { display: grid; gap: 0.75rem; max-width: 48rem; }
.faq-item { padding: 0.75rem 1rem; border: 1px solid #D8DEE8; border-radius: 0.5rem; background: #fff; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04); }
.faq-item summary { cursor: pointer; list-style: none; font-weight: 600; color: #0A2463; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.625; color: rgba(45, 49, 66, 0.85); }

.toast {
  position: fixed; bottom: 1.5rem; left: 50%; z-index: 2000; max-width: 32rem;
  transform: translateX(-50%); padding: 0.75rem 1rem; border-radius: 0.5rem;
  border: 1px solid #D8DEE8; background: #0A2463; color: #fff; font-size: 0.875rem;
  box-shadow: 0 1px 2px rgba(10, 36, 99, 0.06), 0 8px 24px rgba(10, 36, 99, 0.08);
}

.admin-body { background: #F4F6F9; padding: 2.5rem 0; }
.admin-card { padding: 1.5rem; border: 1px solid #D8DEE8; border-radius: 0.75rem; background: #fff; box-shadow: 0 1px 2px rgba(10, 36, 99, 0.06), 0 8px 24px rgba(10, 36, 99, 0.08); }
.admin-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.625rem; }

/* Homepage trust & service sections */
.section-head { margin-bottom: 2rem; text-align: center; }
@media (min-width: 768px) { .section-head { text-align: left; } }
.section-title {
  margin: 0; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; line-height: 1.25;
  letter-spacing: -0.02em; color: #0A2463;
}
.prose.text-center { margin-left: auto; margin-right: auto; text-align: center; }

.why-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.why-card {
  padding: 1.5rem 1.25rem; border-radius: 0.75rem;
  border: 1px solid #D8DEE8; background: #fff;
  box-shadow: 0 1px 2px rgba(10, 36, 99, 0.06), 0 8px 24px rgba(10, 36, 99, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 140, 56, 0.45);
  box-shadow: 0 12px 28px rgba(10, 36, 99, 0.1);
}
.why-card-icon {
  display: inline-flex; margin-bottom: 1rem; padding: 0.65rem;
  border-radius: 0.5rem; background: rgba(10, 36, 99, 0.06); color: #0A2463;
}
.why-card-icon svg { width: 1.75rem; height: 1.75rem; }
.why-card-title { margin: 0 0 0.35rem; font-size: 1.0625rem; font-weight: 700; color: #0A2463; }
.why-card-tagline { margin: 0; font-size: 0.875rem; line-height: 1.5; color: #5c6478; }
.why-card-body { margin: 0; font-size: 0.875rem; line-height: 1.55; color: rgba(45, 49, 66, 0.82); }

.recycle-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 0; padding: 0; list-style: none;
}
@media (min-width: 640px) { .recycle-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .recycle-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
@media (min-width: 1200px) { .recycle-grid { grid-template-columns: repeat(6, 1fr); } }
.recycle-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; padding: 1.25rem 0.75rem; text-align: center;
  border-radius: 0.75rem; border: 1px solid #D8DEE8; background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  cursor: default;
}
.recycle-item:hover {
  transform: scale(1.05);
  border-color: #FF8C38;
  background: rgba(255, 140, 56, 0.08);
  box-shadow: 0 8px 24px rgba(255, 140, 56, 0.2);
}
.recycle-icon {
  display: inline-flex; padding: 0.6rem; border-radius: 0.5rem;
  background: rgba(10, 36, 99, 0.05); color: #FF8C38;
  transition: background 0.22s ease, color 0.22s ease;
}
.recycle-item:hover .recycle-icon { background: #FF8C38; color: #fff; }
.recycle-icon svg { width: 1.75rem; height: 1.75rem; }
.recycle-name { font-size: 0.8125rem; font-weight: 600; line-height: 1.35; color: #2D3142; }
@media (min-width: 768px) { .recycle-name { font-size: 0.875rem; } }

.process-flow {
  display: grid; gap: 2rem; margin: 0; padding: 0; list-style: none;
  counter-reset: process;
}
@media (min-width: 900px) {
  .process-flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: stretch;
  }
}
.process-step {
  position: relative; display: flex; flex-direction: column; align-items: flex-start;
  padding: 1.5rem 1.25rem 1.25rem; border-radius: 0.75rem;
  border: 1px solid #D8DEE8; background: #fff;
  box-shadow: 0 1px 2px rgba(10, 36, 99, 0.05);
}
.process-num {
  position: absolute; top: 1rem; right: 1rem;
  display: inline-flex; height: 1.75rem; width: 1.75rem; align-items: center; justify-content: center;
  border-radius: 9999px; background: #0A2463; color: #fff;
  font-size: 0.75rem; font-weight: 700;
}
.process-icon {
  display: inline-flex; margin-bottom: 0.75rem; padding: 0.55rem;
  border-radius: 0.5rem; background: rgba(255, 140, 56, 0.12); color: #0A2463;
}
.process-icon svg { width: 1.5rem; height: 1.5rem; }
.process-step .process-title { margin: 0 0 0.5rem; font-size: 1rem; font-weight: 700; color: #0A2463; padding-right: 2rem; }
.process-body { margin: 0; font-size: 0.875rem; line-height: 1.55; color: rgba(45, 49, 66, 0.8); }
.process-connector {
  display: none;
}
@media (min-width: 900px) {
  .process-connector {
    display: block; position: absolute; top: 2.75rem; left: 100%; width: 1rem; height: 2px;
    margin-left: 0; background: linear-gradient(90deg, #FF8C38, rgba(255, 140, 56, 0.25));
    z-index: 1;
  }
  .process-step:last-child .process-connector { display: none; }
}
.process-cta { margin: 2.5rem 0 0; text-align: center; }
.home-cta-band .btn-primary { min-height: 48px; padding-left: 1.5rem; padding-right: 1.5rem; }

/* Inquiry modal & floating button */
/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-revealed { opacity: 1; transform: translateY(0); }

/* Card & link micro-interactions */
.card, .why-card, .hero-service-card, .recycle-item, .process-step {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover, .why-card:hover, .hero-service-card:hover, .recycle-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 36, 99, 0.12);
}
.prose a, .site-footer a:not(.btn), .cookie-consent-links a, .nav-list a {
  transition: color 0.2s ease, opacity 0.2s ease;
}
.prose a:hover, .site-footer a:not(.btn):hover, .cookie-consent-links a:hover {
  color: #FF8C38;
}
.btn { transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease; }

/* Contact FAB — merged quote / WhatsApp / inquiry menu */
.contact-fab {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 80;
  display: flex; flex-direction: column-reverse; align-items: flex-end;
  gap: 0.5rem; pointer-events: none;
}
.contact-fab > * { pointer-events: auto; }
@media (min-width: 768px) {
  .contact-fab { right: 1.5rem; bottom: 1.5rem; }
}
body:has(.cookie-consent:not([hidden])) .contact-fab {
  bottom: calc(1rem + 5.5rem);
}
@media (min-width: 768px) {
  body:has(.cookie-consent:not([hidden])) .contact-fab {
    bottom: calc(1.5rem + 5.75rem);
  }
}
.contact-fab-toggle {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: 52px; padding: 0.75rem 1.125rem;
  border: none; border-radius: 9999px;
  background: #FF8C38; color: #fff; font-size: 0.875rem; font-weight: 700;
  box-shadow: 0 6px 24px rgba(255, 140, 56, 0.45);
  cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-fab-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 140, 56, 0.55);
}
.contact-fab-toggle-icon { display: inline-flex; line-height: 0; }
.contact-fab.is-open .contact-fab-toggle-icon--open { display: none; }
.contact-fab:not(.is-open) .contact-fab-toggle-icon--close { display: none; }
@media (max-width: 767px) {
  .contact-fab-toggle-label { display: none; }
  .contact-fab-toggle {
    width: 56px; height: 56px; padding: 0; justify-content: center;
    border-radius: 50%;
  }
}
.contact-fab-menu {
  display: flex; flex-direction: column; gap: 0.35rem;
  min-width: min(100vw - 2rem, 260px);
  padding: 0.35rem; border-radius: 0.75rem;
  background: #fff; box-shadow: 0 12px 36px rgba(10, 36, 99, 0.18);
  border: 1px solid rgba(10, 36, 99, 0.08);
}
.contact-fab-menu[hidden] { display: none !important; }
.contact-fab-action {
  display: flex; align-items: center; gap: 0.65rem;
  width: 100%; padding: 0.65rem 0.85rem;
  border: none; border-radius: 0.5rem;
  background: transparent; color: #2D3142;
  font-size: 0.875rem; font-weight: 600; text-align: left;
  text-decoration: none; cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.contact-fab-action:hover {
  background: rgba(10, 36, 99, 0.06); color: #0A2463;
}
.contact-fab-action--primary {
  background: rgba(255, 140, 56, 0.12); color: #0A2463;
}
.contact-fab-action--primary:hover { background: rgba(255, 140, 56, 0.2); }
.contact-fab-action--whatsapp .contact-fab-action-icon { color: #25D366; }
.contact-fab-action-icon { display: inline-flex; flex-shrink: 0; line-height: 0; }
.contact-fab-action-text { line-height: 1.35; }

/* Cookie consent (GDPR) */
.cookie-consent {
  position: fixed; inset: auto 0 0 0; z-index: 150;
  padding: 0.75rem 1rem 1rem;
  pointer-events: none;
}
.cookie-consent[hidden] { display: none !important; }
.cookie-consent:not([hidden]) { pointer-events: auto; }
.cookie-consent-panel {
  max-width: 72rem; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; border-radius: 0.75rem;
  background: #fff; color: #2D3142;
  box-shadow: 0 -8px 40px rgba(10, 36, 99, 0.18);
  border: 1px solid rgba(10, 36, 99, 0.08);
}
.cookie-consent-title { margin: 0 0 0.35rem; font-size: 1.0625rem; color: #0A2463; }
.cookie-consent-desc { margin: 0; font-size: 0.875rem; line-height: 1.55; max-width: 52rem; }
.cookie-consent-links { margin: 0.5rem 0 0; font-size: 0.8125rem; }
.cookie-consent-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.cookie-settings {
  max-width: 72rem; margin: 0.75rem auto 0;
  padding: 1rem 1.25rem; border-radius: 0.75rem;
  background: #f4f7fb; border: 1px solid rgba(10, 36, 99, 0.08);
}
.cookie-settings-list { list-style: none; margin: 0; padding: 0; }
.cookie-settings-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.75rem 0; border-bottom: 1px solid rgba(10, 36, 99, 0.08);
}
.cookie-settings-list li:last-child { border-bottom: none; }
.cookie-always-on { font-size: 0.75rem; font-weight: 600; color: #0A2463; text-transform: uppercase; letter-spacing: 0.04em; }
.cookie-toggle { position: relative; display: inline-flex; cursor: pointer; }
.cookie-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.cookie-toggle-ui {
  position: relative;
  width: 2.75rem; height: 1.5rem; border-radius: 9999px; background: #c5cdd8;
  transition: background 0.2s ease;
}
.cookie-toggle-ui::after {
  content: ''; position: absolute; top: 0.2rem; left: 0.2rem;
  width: 1.1rem; height: 1.1rem; border-radius: 50%; background: #fff;
  transition: transform 0.2s ease;
}
.cookie-toggle input:checked + .cookie-toggle-ui { background: #FF8C38; }
.cookie-toggle input:checked + .cookie-toggle-ui::after { transform: translateX(1.25rem); }
.cookie-settings-actions { margin-top: 0.75rem; text-align: right; }
.section .cookie-consent .btn-ghost {
  border-color: rgba(10, 36, 99, 0.2); color: #0A2463;
}
.section .cookie-consent .btn-ghost:hover {
  border-color: #0A2463; background: rgba(10, 36, 99, 0.06); color: #0A2463;
}

/* Error pages */
.error-page {
  padding: 4rem 0 5rem; text-align: center;
  background: linear-gradient(180deg, #f4f7fb 0%, #fff 45%);
}
.error-page-inner { max-width: 36rem; }
.error-code {
  margin: 0 0 0.5rem; font-size: clamp(3.5rem, 12vw, 5.5rem); font-weight: 800;
  line-height: 1; color: rgba(10, 36, 99, 0.12);
}
.error-page h1 { margin: 0 0 0.75rem; font-size: 1.75rem; color: #0A2463; }
.error-lead { margin: 0 0 1.75rem; color: #5c6370; line-height: 1.6; }
.error-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

.inquiry-modal, .inquiry-success {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.inquiry-modal[hidden], .inquiry-success[hidden] { display: none; }
.inquiry-modal-backdrop {
  position: absolute; inset: 0; background: rgba(10, 36, 99, 0.55);
}
.inquiry-modal-panel, .inquiry-success-panel {
  position: relative; z-index: 1;
  width: min(100%, 640px); max-height: min(92vh, 900px);
  overflow: auto; border-radius: 0.75rem;
  background: #fff; box-shadow: 0 20px 50px rgba(10, 36, 99, 0.25);
}
.inquiry-success-panel { padding: 2rem; text-align: center; max-width: 420px; }
.inquiry-modal-header {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.25rem 0; position: sticky; top: 0; background: #fff; z-index: 2;
}
.inquiry-modal-header h2 { margin: 0; font-size: 1.25rem; color: #0A2463; }
.inquiry-modal-close {
  border: none; background: transparent; font-size: 1.75rem; line-height: 1;
  color: #2D3142; cursor: pointer; padding: 0.25rem 0.5rem;
}
.inquiry-modal-body { padding: 0.75rem 1.25rem 1.5rem; }

.form-grid { display: grid; gap: 0 1rem; }
@media (min-width: 600px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid .field[data-field="phone"] { grid-column: span 2; }
}
.form-section-label {
  margin: 1.25rem 0 0.75rem; font-size: 0.8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: #FF8C38;
}
.form-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem;
}
.form-actions .btn-primary { flex: 1 1 auto; min-height: 48px; }
.field-error {
  margin: 0.35rem 0 0; font-size: 0.8125rem; color: #b91c1c;
}
.field.has-error input, .field.has-error textarea {
  border-color: #b91c1c; box-shadow: 0 0 0 2px rgba(185, 28, 28, 0.15);
}
.form-global-error { margin-top: 1rem; }

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-nav-mobile,
  .nav-backdrop,
  .brand,
  .btn-quote,
  .btn-hero-primary,
  .btn-hero-whatsapp,
  .hero-service-card,
  .why-card,
  .recycle-item,
  .contact-fab-toggle,
  .reveal,
  .card,
  .why-card,
  .hero-service-card,
  .recycle-item { transition: none; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

.hero-lead-secondary {
  margin: 0.75rem 0 0; max-width: 48rem;
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem); line-height: 1.65; color: rgba(255, 255, 255, 0.82);
}
.company-prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: clamp(1.25rem, 2.5vw, 1.5rem); color: #0A2463; }
.company-prose h3 { margin-top: 1.75rem; margin-bottom: 0.75rem; font-size: 1.125rem; color: #0A2463; }
.company-prose ul { margin: 1rem 0; padding-left: 1.25rem; list-style: disc; }
.company-prose li { margin-bottom: 0.5rem; line-height: 1.6; }
.home-recycle-more { margin-top: 2rem; text-align: center; }

/* Page banner (upload/file) */
.page-head--banner {
  position: relative; overflow: hidden; color: #fff;
  border-bottom: none; background: #0A2463;
}
.page-head--banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--page-banner);
  background-size: cover; background-position: center;
}
.page-head--banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.88), rgba(10, 36, 99, 0.72));
}
.page-head--banner .container { position: relative; z-index: 1; }
.page-head--banner h1,
.page-head--banner .lead { color: #fff; }

/* Site media gallery */
.site-gallery-section { border-top: 1px solid #D8DEE8; }
.site-gallery-section .section-lead {
  margin: 0.5rem 0 0; max-width: 42rem; color: #5c6478; font-size: 1rem;
}
.site-gallery-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.25rem 0 1.5rem;
}
.site-gallery-filter {
  padding: 0.4rem 0.85rem; border: 1px solid #D8DEE8; border-radius: 9999px;
  background: #fff; color: #2D3142; font-size: 0.8125rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.site-gallery-filter:hover { border-color: #FF8C38; color: #0A2463; }
.site-gallery-filter.is-active {
  border-color: #FF8C38; background: #FF8C38; color: #fff;
}
.site-gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
  margin: 0; padding: 0; list-style: none;
}
@media (min-width: 640px) { .site-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .site-gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.site-gallery-item { margin: 0; }
.site-gallery-item.is-hidden { display: none; }
.site-gallery-figure { margin: 0; border-radius: 0.5rem; overflow: hidden; background: #EEF2F7; }
.site-gallery-link { display: block; aspect-ratio: 4 / 3; }
.site-gallery-link img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s ease;
}
.site-gallery-link:hover img { transform: scale(1.04); }

/* Quote / BOM page */
.quote-page .container { max-width: 52rem; }
.quote-channels { margin: 2rem 0; }
.quote-channels-title { margin: 0 0 0.5rem; font-size: 1.25rem; color: #0A2463; }
.quote-channel { margin-top: 1.5rem; padding: 1.25rem; border: 1px solid #D8DEE8; border-radius: 0.75rem; background: #fff; }
.quote-channel-label { margin: 0 0 0.75rem; font-size: 1rem; font-weight: 700; color: #0A2463; }
.quote-dropzone {
  border: 2px dashed #B8C4D4; border-radius: 0.75rem; padding: 2rem 1rem; text-align: center;
  background: #F8FAFC; cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.quote-dropzone.is-dragover { border-color: #FF8C38; background: rgba(255, 140, 56, 0.08); }
.quote-dropzone-text { margin: 0; font-weight: 600; color: #0A2463; }
.quote-bom-textarea { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.875rem; min-height: 12rem; }
.quote-file-list { margin: 0.75rem 0 0; padding: 0; list-style: none; font-size: 0.875rem; color: #5c6478; }
.quote-parse-preview { margin-top: 1rem; padding: 1rem; background: #F4F6F9; border-radius: 0.5rem; }
.quote-parse-table { width: 100%; border-collapse: collapse; font-size: 0.8125rem; }
.quote-parse-table th, .quote-parse-table td { padding: 0.35rem 0.5rem; border-bottom: 1px solid #D8DEE8; text-align: left; }
.quote-nda-link { margin-left: 0.35rem; padding: 0; border: none; background: none; color: #FF8C38; text-decoration: underline; cursor: pointer; font: inherit; }
.nda-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.nda-modal[hidden] { display: none !important; }
.nda-modal-backdrop { position: absolute; inset: 0; background: rgba(10, 36, 99, 0.55); }
.nda-modal-dialog {
  position: relative; z-index: 1; max-width: 36rem; max-height: 85vh; overflow: auto;
  background: #fff; border-radius: 0.75rem; box-shadow: 0 20px 50px rgba(10, 36, 99, 0.25);
}
.nda-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid #D8DEE8; }
.nda-modal-body { padding: 1.25rem; font-size: 0.875rem; line-height: 1.65; max-height: 50vh; overflow: auto; }
.nda-modal-footer { padding: 1rem 1.25rem; border-top: 1px solid #D8DEE8; text-align: right; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
@media (max-width: 640px) {
  .quote-dropzone { padding: 1.5rem 0.75rem; }
  .quote-channel { padding: 1rem; }
}

/* Quote / BOM submission */
.quote-form { max-width: 56rem; margin: 0 auto; }
.quote-dual { display: grid; gap: 1.25rem; }
@media (min-width: 768px) {
  .quote-dual { grid-template-columns: 1fr 1fr; }
}
.quote-channel {
  border: 1px solid #D8DEE8; border-radius: 0.75rem; padding: 1.25rem;
  background: #fff;
}
.quote-channel h3 { margin: 0 0 0.5rem; font-size: 1rem; color: #0A2463; }
.quote-dropzone {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 10rem; padding: 1.5rem; border: 2px dashed #B8C4D4; border-radius: 0.5rem;
  background: #F8FAFC; cursor: pointer; text-align: center; transition: border-color 0.2s, background 0.2s;
}
.quote-dropzone.is-dragover { border-color: #FF8C38; background: #FFF4EC; }
.quote-dropzone input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.quote-dropzone-hint { margin: 0.5rem 0 0; font-size: 0.875rem; color: #5c6478; }
.quote-dropzone-types { font-size: 0.75rem; color: #8a93a8; }
.quote-paste {
  width: 100%; min-height: 10rem; padding: 0.75rem; border: 1px solid #D8DEE8;
  border-radius: 0.5rem; font-family: ui-monospace, monospace; font-size: 0.8125rem;
  resize: vertical;
}
.quote-parse-hint { margin-top: 0.5rem; font-size: 0.8125rem; color: #FF8C38; }
.quote-file-list, .quote-media-list { margin: 0.75rem 0 0; padding: 0; list-style: none; }
.quote-file-list li, .quote-media-list li {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0;
  font-size: 0.875rem; border-bottom: 1px solid #EEF2F7;
}
.quote-media-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.quote-media-actions .btn { font-size: 0.875rem; }
.quote-media-preview { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.75rem 0 0; padding: 0; list-style: none; }
.quote-media-preview li {
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  font-size: 0.75rem; color: #5c6478; max-width: 5rem;
}
.quote-media-preview img { width: 72px; height: 72px; object-fit: cover; border-radius: 0.35rem; }
.quote-panel-title { margin: 0 0 0.35rem; font-size: 1.25rem; color: #0A2463; }
.quote-panel-lead { margin: 0 0 1rem; color: #5c6478; font-size: 0.9375rem; }
.quote-nda-link { margin-left: 0.35rem; padding: 0; border: none; background: none; color: #FF8C38; text-decoration: underline; cursor: pointer; font: inherit; }
.field.has-error input, .field.has-error textarea { border-color: #c0392b; }

/* Brand wall (recycling page) */
.brand-wall-section { margin: 2.5rem 0 1rem; padding-top: 2rem; border-top: 1px solid #D8DEE8; }
.brand-wall-section h2 { margin: 0 0 0.5rem; font-size: 1.25rem; color: #0A2463; }
.brand-wall-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
  margin: 1.25rem 0 0; padding: 0; list-style: none;
}
@media (min-width: 640px) { .brand-wall-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .brand-wall-grid { grid-template-columns: repeat(6, 1fr); } }
.brand-wall-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 6.5rem; padding: 0.75rem; border: 1px solid #D8DEE8; border-radius: 0.5rem;
  background: #fff; text-decoration: none; color: #2D3142; transition: border-color 0.2s, box-shadow 0.2s;
}
.brand-wall-card:hover { border-color: #FF8C38; box-shadow: 0 4px 12px rgba(10, 36, 99, 0.08); }
.brand-wall-monogram {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 0.35rem; background: #FFF4EC;
  font-weight: 700; font-size: 0.875rem; color: #0A2463;
}
.brand-wall-name { margin-top: 0.5rem; font-size: 0.75rem; font-weight: 600; text-align: center; line-height: 1.3; }
.brand-wall-meta { margin-top: 0.2rem; font-size: 0.6875rem; color: #8a93a8; }
.brand-wall-card--stack { cursor: default; }
.brand-wall-mpn-links { margin: 0.5rem 0 0; padding: 0; list-style: none; width: 100%; text-align: left; }
.brand-wall-mpn-links a { font-size: 0.6875rem; color: #FF8C38; text-decoration: none; }
.brand-wall-mpn-links a:hover { text-decoration: underline; }
.brand-wall-quote-link { margin-top: 0.5rem; font-size: 0.75rem; color: #FF8C38; }

/* PN programmatic SEO page */
.pn-page .pn-breadcrumb { margin-bottom: 1rem; }
.pn-hero { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: flex-start; margin-bottom: 1.5rem; }
.pn-brand-block { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; min-width: 8rem; text-align: center; }
.pn-hero-main { flex: 1; min-width: min(100%, 20rem); }
.pn-meta-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr)); gap: 0.75rem; margin: 1rem 0; padding: 0; list-style: none; }
.pn-meta-label { display: block; font-size: 0.75rem; color: #8a93a8; text-transform: uppercase; letter-spacing: 0.04em; }
.pn-meta-value { display: block; font-weight: 600; color: #0A2463; }
.pn-mpn { font-family: ui-monospace, monospace; font-size: 0.9375rem; }
.pn-process-steps { margin: 0.75rem 0 0; padding: 0; list-style: none; counter-reset: pnstep; }
.pn-process-steps li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.65rem; }
.pn-step-num {
  flex-shrink: 0; width: 1.75rem; height: 1.75rem; border-radius: 9999px;
  background: #FF8C38; color: #fff; font-size: 0.8125rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.pn-canonical-note { margin-top: 2rem; }
.brand-wall-logo { max-height: 2.5rem; width: auto; object-fit: contain; }

/* Service pages — three business lines */
.service-sibling-nav { margin-bottom: 1.5rem; }
.service-sibling-nav ul {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0; list-style: none;
}
.service-sibling-link {
  display: inline-block; padding: 0.45rem 0.9rem; border: 1px solid #D8DEE8; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 600; text-decoration: none; color: #2D3142;
  background: #fff; transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.service-sibling-link:hover { border-color: #3E92CC; color: #0A2463; }
.service-sibling-link.is-active { border-color: #3E92CC; background: #3E92CC; color: #fff; }
button.service-sibling-link,
a.service-sibling-link {
  cursor: pointer; font-family: inherit; line-height: inherit; text-decoration: none;
}
a.service-sibling-link:hover { color: inherit; }
.faq-noscript-hint { margin: 0 0 1rem; text-align: center; }
.faq-compliance-grid {
  display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none;
}
@media (min-width: 640px) {
  .faq-compliance-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .faq-compliance-grid { grid-template-columns: repeat(4, 1fr); }
}
.faq-compliance-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.85rem; border-radius: 0.5rem; border: 1px solid #D8DEE8; background: #fff;
}
.faq-compliance-text { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; }
.faq-compliance-body { margin: 0; line-height: 1.45; }
.home-cta-faq-link { font-size: 0.875rem; }
.faq-page .faq-compliance-strip {
  margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid #D8DEE8;
}
.faq-compliance-strip-title {
  margin: 0 0 0.75rem; font-size: 1.125rem; font-weight: 700; color: #0A2463; text-align: center;
}
.faq-category-nav { margin-bottom: 1.25rem; }
[data-faq-list] .faq-item.is-hidden { display: none; }
.service-cta-strip {
  margin-top: 2rem; padding: 1.25rem 1.5rem; border-radius: 0.5rem;
  background: linear-gradient(135deg, #eef2f7, var(--jj-surface)); border: 1px solid #D8DEE8;
  border-left: 4px solid #FF8C38;
}
.service-cta-lead { margin: 0 0 1rem; font-size: 0.9375rem; color: #2D3142; }
.service-cta-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.faq-intro { margin-bottom: 1.25rem; max-width: 42rem; }
.about-services-list { margin: 0.75rem 0 2rem; padding-left: 1.25rem; }
.about-services-list a { font-weight: 600; }
.contact-bom-hint { margin-bottom: 1rem; }
.contact-bom-hint a { font-weight: 600; }
.pn-brand-logo { max-height: 3rem; width: auto; object-fit: contain; }
.pn-brand-badge {
  display: flex; align-items: center; justify-content: center;
  width: 4.5rem; height: 4.5rem; border-radius: 0.5rem; background: #0A2463; color: #fff;
  font-size: 1.25rem; font-weight: 700;
}
.pn-eyebrow { margin: 0 0 0.35rem; font-size: 0.875rem; color: #FF8C38; font-weight: 600; }
.pn-hero h1 { margin: 0; font-size: clamp(1.5rem, 3vw, 2rem); color: #0A2463; }
.pn-catalog-tag { margin: 0.5rem 0 0; font-size: 0.8125rem; color: #2e7d32; }
.pn-cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.pn-process, .pn-related, .pn-faq { margin-bottom: 2rem; }
.pn-steps { margin: 0.75rem 0 0; padding-left: 1.25rem; }
.pn-steps li { margin-bottom: 0.5rem; line-height: 1.55; }
.pn-related-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.75rem 0 0; padding: 0; list-style: none; }
.pn-related-list a {
  display: inline-block; padding: 0.35rem 0.65rem; border: 1px solid #D8DEE8; border-radius: 9999px;
  font-size: 0.8125rem; text-decoration: none; color: #0A2463;
}
.pn-related-list a:hover { border-color: #FF8C38; background: #FFF4EC; }
.pn-faq .faq-item { margin-bottom: 0.5rem; border: 1px solid #D8DEE8; border-radius: 0.35rem; padding: 0.5rem 0.75rem; }
.pn-faq summary { cursor: pointer; font-weight: 600; color: #0A2463; }
.quote-grid { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) {
  .quote-grid { grid-template-columns: 1.15fr 1fr; align-items: start; }
}
.quote-panel { margin: 0; }
.quote-channel-title { margin: 0 0 0.5rem; font-size: 1rem; font-weight: 700; color: #0A2463; }
.quote-channel--media { margin-top: 1.25rem; }
.quote-legal { margin-top: 1rem; }
.quote-media-remove {
  border: none; background: #EEF2F7; color: #0A2463; width: 1.25rem; height: 1.25rem;
  border-radius: 999px; cursor: pointer; font-size: 0.875rem; line-height: 1;
}
.quote-submit { width: 100%; }
@media (min-width: 640px) {
  .quote-grid--contact { grid-template-columns: 1fr 1fr; }
}
.quote-nda-row { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 0.5rem; margin: 1rem 0; }
.quote-nda-row label { flex: 1; min-width: 12rem; font-size: 0.875rem; }
.nda-modal[hidden] { display: none; }
.nda-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.nda-modal-backdrop { position: absolute; inset: 0; background: rgba(10, 36, 99, 0.55); }
.nda-modal-dialog,
.nda-modal-panel {
  position: relative; z-index: 1; width: 100%; max-width: 36rem; max-height: 85vh;
  display: flex; flex-direction: column; background: #fff; border-radius: 0.75rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2); overflow: hidden;
}
.nda-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-bottom: 1px solid #EEF2F7;
}
.nda-modal-header h2 { margin: 0; font-size: 1.125rem; color: #0A2463; }
.nda-modal-close {
  border: none; background: transparent; font-size: 1.5rem; line-height: 1;
  cursor: pointer; color: #5c6478; padding: 0.25rem;
}
.nda-modal-body { padding: 1.25rem; overflow: auto; font-size: 0.875rem; line-height: 1.65; }
.nda-modal-footer { padding: 1rem 1.25rem; border-top: 1px solid #EEF2F7; text-align: right; }
.nda-modal-panel h2 { margin: 0 0 1rem; font-size: 1.125rem; color: #0A2463; }
.nda-modal-actions { margin-top: 1rem; text-align: right; }

/* Homepage — P0/P1/P2 blocks */
.hero-bullets {
  margin: 0.85rem 0 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 0.4rem;
  font-size: 0.9375rem; line-height: 1.45; color: rgba(255, 255, 255, 0.95);
}
@media (min-width: 640px) {
  .hero-bullets {
    flex-direction: row; flex-wrap: wrap; gap: 0.45rem 1rem;
  }
}
.hero-bullets li {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.35rem 0.65rem 0.35rem 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-bullets li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: #FF8C38; flex-shrink: 0;
}
.hero--home .hero-micro-nav { margin-top: 1rem; }
.hero-micro-nav {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; margin-top: 1.25rem;
  font-size: 0.8125rem; font-weight: 600;
}
.hero-micro-nav a {
  color: rgba(255, 255, 255, 0.85); text-decoration: underline; text-underline-offset: 3px;
}
.hero-micro-nav a:hover { color: #FF8C38; }

.home-services-section { padding-top: 2.5rem; }
.home-services-grid {
  display: grid; gap: 1.25rem; margin: 0; padding: 0; list-style: none;
}
@media (min-width: 900px) {
  .home-services-grid { grid-template-columns: repeat(3, 1fr); }
}
.home-service-pillar { height: 100%; }
.home-service-pillar-title { margin: 0 0 0.5rem; font-size: 1.125rem; color: #0A2463; }
.home-service-pillar-body { margin: 0 0 1rem; flex: 1; font-size: 0.875rem; line-height: 1.55; color: rgba(45, 49, 66, 0.85); }
.home-service-pillar-cta { margin-top: auto; align-self: flex-start; }

.home-stats-footnote { margin: 0.75rem 0 0; text-align: center; }
.home-category-note { margin: 1rem 0 0; max-width: 48rem; }
.home-category-more { margin-top: 1.25rem; text-align: center; }

.home-compliance-grid {
  display: grid; gap: 1rem; margin: 1.25rem 0 0; padding: 0; list-style: none;
}
@media (min-width: 640px) { .home-compliance-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .home-compliance-grid { grid-template-columns: repeat(4, 1fr); } }
.home-compliance-item {
  padding: 1.25rem; border-radius: 0.75rem; border: 1px solid #D8DEE8; background: #fff;
}
.home-compliance-icon {
  display: inline-flex; width: 2.5rem; height: 2.5rem; margin-bottom: 0.65rem;
  border-radius: 0.5rem; background: rgba(10, 36, 99, 0.06);
}
.home-compliance-icon--nda { box-shadow: inset 0 0 0 2px #3E92CC; }
.home-compliance-icon--data { box-shadow: inset 0 0 0 2px #0A2463; }
.home-compliance-icon--eco { background: rgba(255, 140, 56, 0.12); }
.home-compliance-icon--doc { background: rgba(62, 146, 204, 0.15); }
.home-compliance-item .home-compliance-title { margin: 0 0 0.35rem; font-size: 0.9375rem; font-weight: 700; color: #0A2463; }
.home-compliance-body { margin: 0; font-size: 0.8125rem; line-height: 1.5; color: rgba(45, 49, 66, 0.8); }

.home-bom-grid {
  display: grid; gap: 2rem; align-items: start;
}
@media (min-width: 900px) {
  .home-bom-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
.home-bom-textarea {
  width: 100%; font-family: ui-monospace, monospace; font-size: 0.8125rem; line-height: 1.5;
  padding: 1rem; border-radius: 0.5rem; border: 1px solid #D8DEE8; background: #fff;
  resize: vertical; min-height: 8rem; color: #334155;
}
.home-bom-hint { margin: 0.5rem 0 0; }
.home-bom-formats { margin: 0.5rem 0 1rem; }

.home-hot-parts-list {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0; list-style: none;
}
.home-hot-parts-list a {
  display: inline-block; padding: 0.4rem 0.75rem; border-radius: 9999px;
  border: 1px solid #D8DEE8; background: #fff; font-size: 0.8125rem; font-weight: 600;
  font-family: ui-monospace, monospace; text-decoration: none; color: #0A2463;
  transition: border-color 0.2s, background 0.2s;
}
.home-hot-parts-list a:hover { border-color: #FF8C38; background: rgba(255, 140, 56, 0.08); }
.home-hot-parts-more { margin-top: 1rem; font-size: 0.875rem; }
.home-hot-parts-more a { font-weight: 600; }

.home-brand-strip .brand-wall-section { margin-top: 0; }
.home-brand-strip-more { margin-top: 1.25rem; text-align: center; }

.home-cases-grid {
  display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none;
}
@media (min-width: 768px) { .home-cases-grid { grid-template-columns: repeat(3, 1fr); } }
.home-case-card { height: 100%; }
.home-case-industry { margin: 0 0 0.5rem; font-size: 1rem; color: #0A2463; }
.home-case-summary { margin: 0 0 0.75rem; font-size: 0.875rem; line-height: 1.55; }
.home-case-tags {
  display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0; padding: 0; list-style: none;
}
.home-case-tags li {
  font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.5rem; border-radius: 4px;
  background: rgba(10, 36, 99, 0.06); color: #0A2463;
}

.home-cta-band { padding-top: 0; }
.home-cta-band-title { margin: 0 0 0.5rem; font-size: 1.25rem; color: #0A2463; }
.home-cta-band-inner { margin: 0; }
.home-faq-more { margin-top: 1rem; font-size: 0.875rem; }
.home-faq-more a { font-weight: 600; }

.section-head { margin-bottom: 1.5rem; text-align: center; }
.section-head .section-title { margin-bottom: 0.5rem; }
.section-head .section-lead { margin: 0 auto; max-width: 42rem; }

/* Service landing pages (recycling / trading / consignment) */
.recycling-page-head.section,
.trading-page-head.section,
.consignment-page-head.section {
  padding-top: 0.75rem;
  padding-bottom: 0;
}
.trading-page .trading-compare-section,
.consignment-page .trading-compare-section,
.recycling-page .recycling-compare-section { padding-top: 1.5rem; }
.consignment-hybrid-links {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; margin: 1rem 0 0; padding: 0; list-style: none;
}

.section-title--sm { font-size: 1.125rem; }
.home-process-compact-grid {
  display: grid; gap: 0.75rem; margin: 0; padding: 0; list-style: none;
}
@media (min-width: 640px) {
  .home-process-compact-grid { grid-template-columns: repeat(4, 1fr); }
}
.home-process-compact-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1rem 0.75rem; border-radius: 0.75rem; border: 1px solid #D8DEE8; background: #fff;
}
.home-process-compact-num {
  font-size: 0.6875rem; font-weight: 700; color: #64748b; margin-bottom: 0.35rem;
}
.home-process-compact-icon { margin-bottom: 0.5rem; }
.home-process-compact-icon .process-icon { margin-bottom: 0; }
.home-process-compact-label {
  font-size: 0.8125rem; font-weight: 600; color: #0A2463; line-height: 1.35;
}
.home-compliance-compact-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem;
  margin: 0.75rem 0 0; padding: 0; list-style: none;
}
.home-compliance-compact-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; min-width: 5.5rem;
}
.home-compliance-compact-label {
  font-size: 0.8125rem; font-weight: 600; color: #0A2463; text-align: center;
}
.home-compliance-compact .home-compliance-icon { width: 2.5rem; height: 2.5rem; }
.recycling-brands-link-section { padding-top: 0; padding-bottom: 1.5rem; }
.recycling-brands-link-wrap { margin: 0; text-align: center; }
.recycling-brands-link { font-size: 1rem; }
.recycling-compliance-grid { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .recycling-compliance-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-intro-block { margin-bottom: 0; }
.service-intro-text {
  margin: 0 0 0.75rem; max-width: 36rem; font-size: 1rem; line-height: 1.5; color: #334155;
}
.service-intro-bullets {
  margin: 0 0 1.25rem; padding: 0; list-style: none;
  display: grid; gap: 0.45rem; max-width: 36rem;
}
.service-intro-bullets li {
  display: flex; gap: 0.55rem; align-items: flex-start;
  font-size: 0.9375rem; line-height: 1.45; color: #334155;
}
.service-intro-bullets li::before {
  content: ''; flex-shrink: 0; width: 6px; height: 6px; margin-top: 0.5rem;
  border-radius: 50%; background: #FF8C38;
}
.service-intro-cta {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center;
  margin: 0;
}
.service-intro-link { font-size: 0.875rem; }
.recycling-page .section-lead,
.trading-page .section-lead,
.consignment-page .section-lead,
.service-page .page-head .lead {
  max-width: 34rem; font-size: 0.9375rem; line-height: 1.5;
}
.trading-card-body,
.recycling-card-body,
.recycling-scenario-card .trading-card-body {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card-grid {
  display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none;
}
@media (min-width: 640px) { .service-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .service-card-grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.trading-card-title { margin: 0 0 0.5rem; font-size: 1rem; font-weight: 700; color: #0A2463; }
.trading-card-body { margin: 0; font-size: 0.875rem; line-height: 1.55; color: rgba(45, 49, 66, 0.85); }
.trading-card-link {
  display: inline-block; margin-top: 0.75rem; font-size: 0.8125rem; font-weight: 600;
  color: #FF8C38; text-decoration: none;
}
.trading-card-link:hover { text-decoration: underline; }

.trading-compare-grid {
  display: grid; gap: 1rem; margin: 1.25rem 0 0; padding: 0; list-style: none;
}
@media (min-width: 900px) { .trading-compare-grid { grid-template-columns: repeat(3, 1fr); } }
.trading-compare-card {
  height: 100%; padding: 1.25rem; border-radius: 0.75rem; border: 1px solid #D8DEE8; background: #fff;
}
.trading-compare-card.is-current {
  border-color: #3E92CC; box-shadow: 0 0 0 2px rgba(62, 146, 204, 0.2);
}
.trading-compare-here { display: block; margin-top: 0.75rem; }

.trading-docs-list {
  margin: 0 auto 1.25rem; padding: 0; max-width: 40rem; list-style: none;
}
.trading-docs-list li {
  position: relative; padding: 0.5rem 0 0.5rem 1.25rem; font-size: 0.9375rem; line-height: 1.5; color: #334155;
}
.trading-docs-list li::before {
  content: ''; position: absolute; left: 0; top: 0.85rem; width: 6px; height: 6px;
  border-radius: 50%; background: #FF8C38;
}
.trading-docs-cta { text-align: center; }

.trading-logistics-panel {
  padding: 1.5rem 1.75rem; border-radius: 0.75rem;
  background: linear-gradient(135deg, #eef2f7, #F4F6F9); border: 1px solid #D8DEE8;
  border-left: 4px solid #3E92CC;
}
.trading-logistics-title { margin: 0 0 0.65rem; font-size: 1.125rem; color: #0A2463; }
.trading-logistics-body { margin: 0; font-size: 0.9375rem; line-height: 1.65; color: #334155; }

.trading-compliance-grid {
  display: grid; gap: 1rem; margin: 1rem 0 0; padding: 0; list-style: none;
}
@media (min-width: 768px) { .trading-compliance-grid { grid-template-columns: repeat(3, 1fr); } }
.trading-compliance-item {
  padding: 1.15rem; border-radius: 0.75rem; border: 1px solid #D8DEE8; background: #fff;
}
.trading-compliance-more { margin-top: 1rem; text-align: center; }
.trading-process-note { margin-top: 1.25rem; text-align: center; }

.service-related-nav,
.recycling-related {
  padding: 2rem 0 2.5rem; background: #F4F6F9; border-top: 1px solid #D8DEE8;
}
.service-related-title,
.recycling-related-title { margin: 0 0 1rem; font-size: 1.125rem; color: #0A2463; text-align: center; }
.service-related-grid,
.recycling-related-grid {
  display: grid; gap: 1.5rem; margin: 0 auto; padding: 0; list-style: none; max-width: 48rem;
}
@media (min-width: 640px) {
  .service-related-grid,
  .recycling-related-grid { grid-template-columns: repeat(2, 1fr); }
}
.service-related-group ul,
.recycling-related-group ul { margin: 0.5rem 0 0; padding-left: 1.1rem; }
.service-related-group li,
.recycling-related-group li { margin-bottom: 0.35rem; font-size: 0.875rem; }
.service-related-label,
.recycling-related-label { margin: 0; font-size: 0.9375rem; font-weight: 700; color: #0A2463; }
.service-related-group a,
.recycling-related-group a { font-weight: 600; }

.recycling-card-grid {
  display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none;
}
@media (min-width: 640px) { .recycling-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .recycling-card-grid { grid-template-columns: repeat(3, 1fr); } }
.recycling-type-card { height: 100%; display: flex; flex-direction: column; }
.recycling-card-title { margin: 0 0 0.5rem; font-size: 1rem; font-weight: 700; color: #0A2463; }
.recycling-card-body { margin: 0 0 0.75rem; flex: 1; font-size: 0.875rem; line-height: 1.55; color: rgba(45, 49, 66, 0.85); }
.recycling-card-link {
  font-size: 0.8125rem; font-weight: 600; color: #FF8C38; text-decoration: none;
}
.recycling-card-link:hover { text-decoration: underline; }

.recycling-scenario-grid {
  display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none;
}
@media (min-width: 768px) { .recycling-scenario-grid { grid-template-columns: repeat(2, 1fr); } }
.recycling-scenario-card {
  padding: 1.25rem; border-radius: 0.75rem; border: 1px solid #D8DEE8; background: #fff;
  height: 100%;
}

.recycling-grade-table-wrap { overflow-x: auto; margin-top: 0.5rem; }
.recycling-grade-table {
  width: 100%; border-collapse: collapse; font-size: 0.875rem; background: #fff;
  border-radius: 0.5rem; overflow: hidden; box-shadow: 0 1px 2px rgba(10, 36, 99, 0.06);
}
.recycling-grade-table th,
.recycling-grade-table td {
  padding: 0.75rem 1rem; border-bottom: 1px solid #D8DEE8; text-align: left; vertical-align: top;
}
.recycling-grade-table th { background: #F4F6F9; font-weight: 600; color: #0A2463; }
.recycling-grade-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2rem; height: 2rem; border-radius: 0.35rem; font-weight: 700; font-size: 0.875rem;
  background: #0A2463; color: #fff;
}
.recycling-grade-badge--d { background: #64748b; }
.recycling-grades-faq { margin-top: 1rem; }

.recycling-related {
  padding: 2rem 0 2.5rem; background: #F4F6F9; border-top: 1px solid #D8DEE8;
}
.recycling-related-title { margin: 0 0 1rem; font-size: 1.125rem; color: #0A2463; text-align: center; }
.recycling-related-grid {
  display: grid; gap: 1.5rem; margin: 0; padding: 0; list-style: none;
  max-width: 48rem; margin-left: auto; margin-right: auto;
}
@media (min-width: 640px) { .recycling-related-grid { grid-template-columns: repeat(2, 1fr); } }
.recycling-related-group ul { margin: 0.5rem 0 0; padding-left: 1.1rem; }
.recycling-related-group li { margin-bottom: 0.35rem; font-size: 0.875rem; }
.recycling-related-label { margin: 0; font-size: 0.9375rem; font-weight: 700; color: #0A2463; }
.recycling-related a { font-weight: 600; }

/* CTA on orange — white text for contrast */
.btn-quote,
.btn-primary,
.btn-hero-primary,
.header-cta.btn-quote {
  color: #fff;
}
.btn-quote:hover,
.btn-primary:hover,
.btn-hero-primary:hover {
  color: #fff;
}
.site-header.is-scrolled .lang-btn.is-active,
body.nav-on-hero .site-header.is-scrolled .lang-btn.is-active {
  color: #fff;
}
body.nav-on-hero .site-header:not(.is-scrolled) .lang-btn.is-active {
  color: #fff;
}
