/* Navigation */
:root {
  --nav-text: #1a1a1a;
  --nav-gold: #b8860b;
  --portal-bg: #0f172a;
  --portal-hover: #1e293b;
  --nav-hover-bg: #f5f5f5;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  padding: 20px 0;
}

.site-header.scrolled {
  padding: 10px 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
}

.site-header.scrolled .logo__primary {
  font-size: 18px;
}

.nav-container {
  display: flex;
  align-items: center;
  height: 80px;
  transition: all 0.3s ease;
}

.logo { display: flex; flex-direction: column; line-height: 1.1; text-decoration: none; }
.logo__primary { font-family: var(--font-heading); font-size: 24px; color: var(--nav-text); font-weight: 700; }
.logo__secondary { font-family: var(--font-heading); font-size: 18px; color: var(--nav-text); font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-link {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--nav-text);
  text-decoration: none; transition: color 0.2s; position: relative;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--nav-gold); transition: width 250ms ease-out;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--nav-gold); }

.nav-actions { display: flex; align-items: center; gap: 16px; margin-left: 48px; }

/* Buttons */
.btn--qa, .btn--portal {
  height: 44px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 24px; font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; cursor: pointer;
}
.btn--qa { border: 1px solid var(--nav-text); background: transparent; color: var(--nav-text); transition: all 0.2s; }
.btn--qa:hover { background: var(--nav-text); color: var(--white); }
.btn--portal { background: var(--portal-bg); color: var(--white); transition: all 0.2s; border: 1px solid var(--portal-bg); }
.btn--portal:hover { background: var(--portal-hover); border-color: var(--portal-hover); transform: translateY(-1px); }

/* Dropdown */
.nav-item-dropdown { position: relative; }
.nav-chevron { transition: transform 200ms ease; width: 12px; height: 12px; margin-left: 4px; vertical-align: middle; }
.nav-item-dropdown:hover .nav-chevron, .nav-item-dropdown.focus-within .nav-chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--white); border: 0.5px solid var(--border); border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08); padding: 24px; width: max-content;
  display: flex; gap: 24px; opacity: 0; visibility: hidden; transition: opacity 150ms ease, transform 150ms ease, visibility 150ms;
}
.nav-item-dropdown:hover .dropdown-menu, .nav-item-dropdown.focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.dropdown-card { width: 200px; text-decoration: none; display: block; padding: 16px; border-radius: var(--radius-sm); transition: opacity 150ms ease, transform 150ms ease, background 0.2s; opacity: 0; transform: translateY(10px); }
.dropdown-card:hover { background: var(--cream); }
.nav-item-dropdown:hover .dropdown-card, .nav-item-dropdown.focus-within .dropdown-card { opacity: 1; transform: translateY(0); }
.nav-item-dropdown:hover .dropdown-card:nth-child(1), .nav-item-dropdown.focus-within .dropdown-card:nth-child(1) { transition-delay: 50ms; }
.nav-item-dropdown:hover .dropdown-card:nth-child(2), .nav-item-dropdown.focus-within .dropdown-card:nth-child(2) { transition-delay: 100ms; }
.dropdown-card h4 { margin-bottom: 8px; font-size: 14px; text-transform: none; letter-spacing: 0; color: var(--nav-text); }
.dropdown-card p { font-size: 12px; line-height: 1.4; margin: 0; color: var(--muted); }

/* Accessibility */
:focus-visible { outline: 2px solid var(--nav-gold); outline-offset: 2px; }

/* Mobile Actions */
.mobile-actions { display: none; align-items: center; gap: 24px; margin-left: auto; }
.mobile-toggle { background: none; border: none; cursor: pointer; padding: 8px; margin-left: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: 0.3s; }

/* Mobile menu scrim (drawer backdrop) — inactive above 1024px */
.mobile-menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  pointer-events: none;
}
.mobile-menu-scrim.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 1025px) {
  .mobile-menu-scrim {
    display: none !important;
    pointer-events: none !important;
  }
}

/* Hidden on desktop; drawer rules apply ≤1024px only */
.mobile-menu {
  display: none;
}

/* Mobile slide-in drawer (≤1024px — hamburger nav) */
@media (max-width: 1024px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-actions { display: flex; }
  .mobile-only-link { display: none; }
  .mobile-only-btn { display: none; }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 82vw;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: var(--navy);
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 88px 0 0;
    margin: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu .nav-link {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 24px;
    min-height: 48px;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: normal;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    border-left: 3px solid transparent;
  }
  .mobile-menu .nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
  }
  .mobile-menu .nav-link.active {
    border-left-color: #BA7517;
    padding-left: 21px;
  }
  .mobile-menu .nav-actions-mobile {
    margin-top: auto;
    padding: 24px 24px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
  }
  .mobile-menu .nav-actions-mobile .btn {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    min-height: 48px;
    justify-content: center;
    font-size: 13px;
    margin: 0;
  }
  .mobile-menu .nav-actions-mobile .btn--qa {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.95);
  }
  .mobile-menu .nav-actions-mobile .btn--qa:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }
  .mobile-menu .nav-actions-mobile .btn--portal {
    background: var(--portal-bg);
    color: var(--white);
    border: 1px solid var(--portal-bg);
  }
  .mobile-menu .nav-actions-mobile .btn--portal:hover {
    background: var(--portal-hover);
    border-color: var(--portal-hover);
    color: var(--white);
  }
}

/* Mobile navbar: sticky bar, logo + menu only; scroll-driven background on ≤768px */
@media (max-width: 768px) {
  .mobile-actions .btn--portal.mobile-only-btn {
    display: none !important;
  }
  .site-header,
  .nav-container {
    padding-top: 12px;
    padding-bottom: 12px;
    min-height: unset;
  }
  .logo__primary {
    font-size: 20px;
  }
  .logo__secondary {
    font-size: 14px;
  }
  .site-header {
    position: sticky !important;
    top: 0;
    z-index: 100;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  }
  .site-header.scrolled {
    background: var(--white);
  }
}

/* Footer */
.site-footer { background: var(--navy); color: var(--white); padding: 80px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 64px; }
.footer-logo { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--white); text-decoration: none; display: inline-block; margin-bottom: 16px; }
.footer-col h4 { color: var(--white); margin-bottom: 24px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 0.5px solid rgba(255,255,255,0.15); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.5); margin: 0; }
.footer-badges { display: flex; gap: 16px; }
.footer-badges span { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .footer-col:first-child {
    grid-column: 1 / -1;
  }
  .footer-col h4 {
    margin-bottom: 10px;
    font-size: 11px;
  }
  .footer-links {
    gap: 6px;
  }
  .footer-links li,
  .footer-links a {
    font-size: 13px;
    line-height: 1.4;
  }
  .footer-col:first-child p {
    font-size: 13px;
    margin-top: 8px;
    line-height: 1.5;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 20px;
    margin-top: 20px;
  }
  .footer-bottom p {
    font-size: 12px;
  }
  .footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .footer-badges span {
    font-size: 10px;
  }
  .section-pad {
    padding: clamp(40px, 8vw, 72px) 0;
  }
  .section-pad-sm {
    padding: clamp(28px, 5vw, 48px) 0;
  }
  h2 {
    margin-bottom: 12px;
  }
}

/* Forms */
.form-group { margin-bottom: 24px; position: relative; }
.form-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 8px; color: var(--navy); }
.form-control { width: 100%; padding: 14px 16px; border: 0.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; background: var(--white); transition: border-color 0.2s; }
.form-control:focus { outline: none; border-color: var(--gold); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-error { color: #d93025; font-size: 11px; margin-top: 6px; display: none; }
.form-group.invalid .form-control { border-color: #d93025; }
.form-group.invalid .form-error { display: block; }

#contact-form .contact-form__submit {
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
#contact-form .contact-form__submit:disabled {
  opacity: 0.88;
  transform: none;
  cursor: wait;
}

/* Scroll Progress */
.scroll-progress { position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: var(--gold); z-index: 1000; transition: width 0.1s; }

/* Specific Page Components */
.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy);
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 14s ease-out forwards;
  transform-origin: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 22, 40, 0.72) 0%,
    rgba(10, 22, 40, 0.45) 55%,
    rgba(10, 22, 40, 0.15) 100%
  );
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-text h1 {
  color: var(--white);
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-trust-bar {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  padding-top: 28px;
  flex-wrap: wrap;
  border-top: 0.5px solid rgba(255, 255, 255, 0.2);
}
.hero-trust-bar span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll-hint span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--white);
  animation: scrollLine 2s infinite ease-in-out;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

.btn-secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.ticker-wrap {
  background: var(--navy);
  overflow: hidden;
  padding: 14px 0;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
}
.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}
.ticker-track span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Audience Splitter */
.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.split-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.split-card-media {
  height: 240px;
  position: relative;
}
.split-card-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.split-card h3 {
  margin: 16px 0;
}
.feature-list {
  list-style: none;
  margin-top: 24px;
  flex: 1;
}
.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--muted);
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}
@media (max-width: 900px) {
  .split-cards {
    grid-template-columns: 1fr;
  }
}

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit !important;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card * {
  text-decoration: none !important;
  color: inherit;
}
.product-card h3 {
  color: var(--navy);
}
.product-card .eyebrow {
  color: var(--gold);
}
.product-card .tag {
  color: var(--cocoa);
}
.product-card .tag[style*="coffee-dark"] {
  color: var(--coffee-dark) !important;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.product-card-media {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-card-overlay {
  opacity: 1;
}
.product-card-cta {
  background: var(--white);
  color: var(--navy);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: transform 0.3s;
}
.product-card:hover .product-card-cta {
  transform: translateY(0);
}
.product-card-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-specs {
  margin-top: auto;
  padding-top: 24px;
  border-top: 0.5px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-item span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.spec-item strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Origin Strip */
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.origin-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.stat-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 900px) {
  .origin-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .origin-stats {
    grid-template-columns: 1fr;
  }
}

/* Supply Chain Flow */
.chain-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  gap: 16px;
}
.chain-node {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.chain-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--muted);
}
.chain-icon-wrap--active {
  border-color: var(--gold);
  color: var(--gold);
}
.chain-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  color: var(--muted);
}
.chain-badge--active {
  background: var(--gold-pale);
  color: var(--navy);
  border-color: var(--gold-pale);
}
.chain-node h4 {
  margin-bottom: 8px;
}
.chain-node p {
  font-size: 13px;
  line-height: 1.5;
}
.chain-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
.chain-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: none;
}
.chain-line-fill.animated {
  animation: chainGrow 0.7s ease forwards;
}
@media (max-width: 900px) {
  .chain-flow {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .chain-line {
    width: 2px;
    height: 40px;
    margin: -20px 0;
  }
  .chain-line-fill {
    width: 100%;
    height: 0%;
  }
  .chain-line-fill.animated {
    animation: chainGrowY 0.7s ease forwards;
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 32px;
  flex: 1;
}
.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 0.5px solid var(--border);
  padding-top: 24px;
}
.attr-avatar {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}
.testimonial-attr strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
}
.testimonial-attr span {
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.split-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.split-hero-content { padding: 140px 8% 80px; display: flex; flex-direction: column; justify-content: center; background: var(--navy); color: var(--white); }
.split-hero-media { position: relative; }
.split-hero-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
@media (max-width: 900px) { .split-hero { grid-template-columns: 1fr; } .split-hero-media { min-height: 400px; } }

.spec-table { width: 100%; border-collapse: collapse; margin-top: 40px; }
.spec-table th, .spec-table td { padding: 16px 24px; text-align: left; border-bottom: 0.5px solid var(--border); font-size: 15px; }
.spec-table th { font-weight: 600; color: var(--navy); width: 30%; }
.spec-table tr:nth-child(even) { background: rgba(0,0,0,0.02); }

.qa-doc-row { display: flex; align-items: center; justify-content: space-between; padding: 24px; border: 0.5px solid var(--border); border-radius: var(--radius-md); margin-bottom: 16px; background: var(--white); transition: all 0.3s; }
.qa-doc-row:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.qa-doc-info { display: flex; align-items: center; gap: 20px; }
.qa-doc-icon { width: 48px; height: 48px; background: var(--cream); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.qa-doc-meta { display: flex; gap: 16px; margin-top: 8px; font-size: 12px; color: var(--muted); }
.qa-doc-action .btn { min-width: 140px; }
.qa-doc-row.locked .qa-doc-action .btn { background: var(--cream); color: var(--muted); border: none; pointer-events: none; }
@media (max-width: 700px) { .qa-doc-row { flex-direction: column; align-items: flex-start; gap: 20px; } .qa-doc-action { width: 100%; } .qa-doc-action .btn { width: 100%; } }
