/* ============================================================
   ca_sts.css — California ATS State-to-State Pages
   Format 3: Comprehensive Route Guide
   v4-restored — simple hero, quote section below, sync CSS load
   ============================================================ */

:root {
  --primary:    #1b3d6e;
  --secondary:  #a06000;   /* darkened from #e07820 — now 5.05:1 with white text */
  --accent:     #0066cc;   /* darkened from #2979b5 — now 4.78:1 on light backgrounds */
  --light-bg:   #f5f7fa;
  --border:     #dde3ea;
  --text:       #2c2c2c;
  --text-light: #5a6472;
  --white:      #ffffff;
  --shadow:     0 2px 12px rgba(0,0,0,0.10);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.14);
  --radius:     6px;
  --container:  1140px;
  --nav-height: 52px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Roboto', sans-serif; font-size: 16px; line-height: 1.75; color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
/* Links inside paragraph or list-item text — WCAG "links distinguishable" requirement */
p a, main li a { text-decoration: underline; }
ul, ol { list-style: none; padding: 0; margin: 0; }

.ats-container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   NAVIGATION
   Desktop: phone icon left + nav links + phone number right
   Mobile:  phone icon left + hamburger right
   ============================================================ */
#menu {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: stretch;
  min-height: var(--nav-height);
  box-shadow: 0 2px 8px rgba(0,0,0,0.28);
}

/* Phone icon — left side, always visible */
.mobile-phone-icon {
  display: flex;
  align-items: center;
  padding: 10px 12px 10px 16px;
  flex-shrink: 0;
  text-decoration: none;
}
.mobile-phone-icon img { display: block; }

/* Nav links */
.nav-collapse { flex: 1; display: flex; align-items: stretch; }
.nav-collapse ul { display: flex; align-items: stretch; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.nav-collapse .menu-item { display: flex; align-items: stretch; }
.nav-collapse .menu-item a {
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
  min-height: var(--nav-height);
  transition: background 0.2s;
  border-bottom: 3px solid transparent;
}
.nav-collapse .menu-item a:hover,
.nav-collapse .menu-item.active a {
  background: rgba(255,255,255,0.12);
  border-bottom-color: var(--secondary);
}

/* Phone number — right side, desktop only */
.nav-phone-number {
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  border-left: 1px solid rgba(255,255,255,0.18);
  min-height: var(--nav-height);
  letter-spacing: 0.01em;
}
.nav-phone-number:hover { color: var(--secondary); text-decoration: none; }

/* Hamburger — mobile only */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 52px;
  height: var(--nav-height);
  flex-shrink: 0;
  position: relative;
}
.nav-toggle::before,
.nav-toggle::after,
.nav-toggle span {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle::before { top: calc(50% - 7px); }
.nav-toggle span    { top: 50%; transform: translateX(-50%) translateY(-50%); }
.nav-toggle::after  { top: calc(50% + 5px); }
.nav-toggle.active::before { transform: translateX(-50%) translateY(7px) rotate(45deg); }
.nav-toggle.active span    { opacity: 0; }
.nav-toggle.active::after  { transform: translateX(-50%) translateY(-5px) rotate(-45deg); }

.mask { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 999; }
.mask.opened { display: block; }

/* ============================================================
   HERO — simple: H1, subtext, button. No form inside.
   ============================================================ */
#ats-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: var(--primary);
}

#ats-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ats-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(27,61,110,0.92) 0%,
    rgba(27,61,110,0.70) 55%,
    rgba(27,61,110,0.25) 100%
  );
  display: flex;
  align-items: center;
}

.ats-hero-overlay .ats-container { width: 100%; }

.ats-hero-content { max-width: 620px; }

.ats-hero-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.ats-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  margin-bottom: 26px;
}

.ats-hero-content .ats-btn { font-size: 1rem; padding: 13px 28px; }

/* ============================================================
   QUOTE FORM SECTION — white background, two columns
   ============================================================ */
#ats-quote {
  background: var(--white);
  padding: 40px 0 52px;
  border-bottom: 1px solid var(--border);
}

.ats-quote-grid {
  display: grid;
  grid-template-columns: 1fr 344px;
  gap: 48px;
  align-items: start;
}

/* min-width:0 prevents grid item from overflowing its column */
.ats-quote-text { min-width: 0; }

.ats-quote-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 16px;
}

.ats-quote-text p {
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 14px;
  overflow-wrap: break-word;
}
.ats-quote-text p:last-child { margin-bottom: 0; }

.ats-quote-text ul { list-style: none; padding: 0; margin: 0 0 18px; }
.ats-quote-text ul li {
  color: var(--text);
  font-size: 0.93rem;
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.6;
}
.ats-quote-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.ats-quote-phone { font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.ats-quote-phone a { color: var(--accent); text-decoration: none; }
.ats-quote-phone a:hover { text-decoration: underline; }

/* White form card — add border so it stands out on white background */
.ats-form-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px 18px 14px;
  box-shadow: var(--shadow-md);
  text-align: center;
  flex-shrink: 0;
}
.ats-form-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin: 0 0 4px; line-height: 1.4; }
.ats-form-card .ats-form-phone { font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px; }
.ats-form-card .ats-form-phone a { color: var(--accent); font-weight: 500; }

/* Breadcrumb inside #ats-quote — no background bar, just inline text */
#ats-quote .ats-breadcrumb {
  background: transparent;
  border-bottom: none;
  padding: 0 0 22px 0;
}
#ats-quote .ats-breadcrumb .ats-breadcrumb-inner {
  padding: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.ats-btn { display: inline-block; background: var(--secondary); color: var(--white); font-size: 1rem; font-weight: 600; padding: 13px 28px; border-radius: var(--radius); text-decoration: none; border: 2px solid var(--secondary); transition: background 0.2s, border-color 0.2s, transform 0.12s; cursor: pointer; }
.ats-btn:hover { background: #7a4800; border-color: #7a4800; text-decoration: none; transform: translateY(-1px); color: var(--white); }
.ats-btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.ats-btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.ats-breadcrumb { background: var(--light-bg); border-bottom: 1px solid var(--border); padding: 10px 0; }
.ats-breadcrumb-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.ats-breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; font-size: 0.875rem; }
.ats-breadcrumb ol li + li::before { content: "›"; margin-right: 4px; color: var(--text-light); }
.ats-breadcrumb ol li a { color: var(--accent); }
.ats-breadcrumb ol li a:hover { text-decoration: underline; }
.ats-breadcrumb ol li[aria-current="page"] { color: var(--text); font-weight: 500; }
.ats-updated { font-size: 0.78rem; color: var(--text-light); font-style: italic; white-space: nowrap; }

/* ============================================================
   TABLE OF CONTENTS
   ============================================================ */
.ats-toc-section { padding: 32px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.ats-toc {
  display: block;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius);
  padding: 22px 28px;
}
.ats-toc h2 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 14px; }
.ats-toc ol { list-style: decimal; padding-left: 20px; margin: 0; columns: 5; column-gap: 32px; }
.ats-toc ol li { margin-bottom: 7px; font-size: 0.9rem; break-inside: avoid; }
.ats-toc ol li a { color: var(--accent); }
.ats-toc ol li a:hover { text-decoration: underline; }

/* ============================================================
   GENERIC CONTENT SECTIONS
   ============================================================ */
.ats-section { padding: 44px 0; background: var(--white); }
.ats-section-alt { background: var(--light-bg); }
.ats-section h2 { font-size: 1.75rem; font-weight: 700; color: var(--primary); margin-bottom: 18px; line-height: 1.25; }
.ats-section h3 { font-size: 1.15rem; font-weight: 600; color: var(--primary); margin: 26px 0 10px; }
.ats-section p { margin-bottom: 16px; color: var(--text); line-height: 1.8; }
.ats-section p:last-child { margin-bottom: 0; }
.ats-section-img { margin: 8px 0 26px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ats-section-img img { width: 100%; }
.ats-list { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.ats-list li { margin-bottom: 8px; line-height: 1.7; }
.ats-price-note { font-size: 0.83rem; color: var(--text-light); font-style: italic; margin-top: 10px; line-height: 1.6; }

/* Rates image — float right */
.ats-rates-img { float: right; max-width: 340px; margin: 4px 0 22px 30px; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.ats-rates-body::after { content: ''; display: table; clear: both; }

/* ============================================================
   DATA TABLES
   ============================================================ */
.ats-table-wrap { overflow-x: auto; margin: 22px 0; border-radius: var(--radius); box-shadow: var(--shadow); }
.ats-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.93rem; }
.ats-table thead th { background: var(--primary); color: var(--white); padding: 13px 18px; text-align: left; font-weight: 600; white-space: nowrap; font-size: 0.88rem; letter-spacing: 0.02em; }
.ats-table tbody tr:nth-child(even) { background: #f0f4f9; }
.ats-table tbody tr:hover { background: #e2eaf5; }
.ats-table tbody td { padding: 12px 18px; border-bottom: 1px solid var(--border); color: var(--text); line-height: 1.5; }
.ats-table tbody tr:last-child td { border-bottom: none; }

/* ============================================================
   MID-PAGE CTA BANNER
   ============================================================ */
.ats-cta-banner { background: linear-gradient(135deg, var(--primary) 0%, #254f8a 100%); padding: 48px 0; text-align: center; }
.ats-cta-banner h2 { font-size: 1.65rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.ats-cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.88); margin-bottom: 26px; line-height: 1.65; }
.ats-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CITIES / SERVICE AREA
   ============================================================ */
.ats-cities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 26px; }
.ats-city-col h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); padding-bottom: 10px; border-bottom: 3px solid var(--secondary); margin-bottom: 0; }
.ats-city-col ul { list-style: none; padding: 0; margin: 0; }
.ats-city-col ul li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; color: var(--text); }
.ats-city-col ul li strong { display: block; color: var(--primary); font-weight: 600; margin-bottom: 2px; }
.ats-city-col ul li span { font-size: 0.83rem; color: var(--text-light); line-height: 1.5; display: block; }

/* ============================================================
   OPEN vs ENCLOSED
   ============================================================ */
.ats-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 26px; }
.ats-compare-card { background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--border); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow); }
.ats-compare-card.ats-compare-recommended { border-top-color: var(--secondary); }
.ats-compare-card.ats-compare-premium { border-top-color: var(--accent); }
.ats-compare-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.ats-compare-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; padding: 3px 11px; border-radius: 20px; margin-bottom: 16px; background: var(--secondary); color: var(--white); }
.ats-compare-card ul { list-style: none; padding: 0; margin: 0 0 16px; }
.ats-compare-card ul li { display: flex; gap: 9px; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; line-height: 1.5; }
.ats-compare-card ul li:last-child { border-bottom: none; }
.ats-compare-card ul li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.ats-compare-price { font-size: 0.88rem; color: var(--text-light); font-weight: 600; border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px; }

/* ============================================================
   CAR PREP CHECKLIST
   ============================================================ */
.ats-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; list-style: none; padding: 0; }
.ats-checklist li { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 13px 14px 13px 44px; position: relative; font-size: 0.92rem; line-height: 1.5; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.ats-checklist li::before { content: "✓"; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--secondary); font-size: 1rem; font-weight: 700; }

/* ============================================================
   SEASONAL — image right of intro text
   ============================================================ */
.ats-seasonal-header { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; margin-bottom: 30px; }
.ats-seasonal-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ats-seasonal-img img { width: 100%; display: block; }

/* ============================================================
   CARDS GRID
   ============================================================ */
.ats-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ats-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; box-shadow: var(--shadow); }
.ats-card-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; line-height: 1; }
.ats-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin: 0 0 8px; }
.ats-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; margin: 0; }
.ats-card a { color: var(--accent); font-size: 0.83rem; }

/* ============================================================
   FAQ
   ============================================================ */
.ats-faq-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.ats-faq-item { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 24px 28px; box-shadow: 0 1px 5px rgba(0,0,0,0.06); }
.ats-faq-item h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin: 0 0 10px; padding-left: 28px; position: relative; line-height: 1.4; }
.ats-faq-item h3::before { content: "Q"; position: absolute; left: 0; top: 0; color: var(--secondary); font-weight: 900; }
.ats-faq-item p { font-size: 0.92rem; color: var(--text); line-height: 1.78; margin: 0; padding-left: 28px; }

/* ============================================================
   RELATED ROUTES
   ============================================================ */
.ats-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 26px; }
.ats-related-link { display: flex; align-items: center; justify-content: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 10px; text-align: center; font-size: 0.875rem; font-weight: 600; color: var(--primary); text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.12s; box-shadow: 0 1px 4px rgba(0,0,0,0.07); min-height: 54px; line-height: 1.35; }
.ats-related-link:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-2px); text-decoration: none; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.ats-final-cta { background: linear-gradient(135deg, #152d52 0%, var(--primary) 50%, #254f8a 100%); padding: 68px 0; text-align: center; }
.ats-final-cta h2 { font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.25; }
.ats-final-cta p { font-size: 1.02rem; color: rgba(255,255,255,0.88); margin-bottom: 34px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.ats-final-cta .ats-btn { font-size: 1.02rem; padding: 15px 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: #0f1822; padding: 34px 24px 20px; }
#footer ul { display: flex; flex-wrap: wrap; gap: 6px 20px; list-style: none; padding: 0; margin: 0 0 16px; justify-content: center; }
#footer ul li a {
  color: #c8d5e0;   /* solid color: 11.2:1 contrast on #0f1822 */
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
#footer ul li a:hover { color: var(--white); text-decoration: underline; }
#footer p {
  text-align: center;
  color: #8a9aaa;   /* solid color: 6.1:1 contrast on #0f1822 */
  font-size: 0.8rem;
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- TABLET 900px ---- */
@media (max-width: 900px) {
  .ats-hero-content h1 { font-size: 1.9rem; }

  /* Quote section: single column */
  .ats-quote-grid { grid-template-columns: 1fr; gap: 28px; }
  .ats-form-card { max-width: 380px; margin: 0 auto; }

  .ats-toc ol { columns: 3; }
  .ats-seasonal-header { grid-template-columns: 1fr; gap: 20px; }
  .ats-seasonal-img { max-width: 480px; }
  .ats-cities-grid { grid-template-columns: 1fr; gap: 24px; }
  .ats-compare-grid { grid-template-columns: 1fr; }
  .ats-checklist { grid-template-columns: 1fr; }
  .ats-cards-grid { grid-template-columns: 1fr 1fr; }
  .ats-related-grid { grid-template-columns: repeat(2, 1fr); }
  .ats-final-cta h2 { font-size: 1.7rem; }
  .ats-rates-img { float: none; max-width: 100%; margin: 0 0 22px; }
  .nav-phone-number { font-size: 0.95rem; padding: 0 14px; }
}

/* ---- MOBILE 640px ---- */
@media (max-width: 640px) {
  /* Hero */
  #ats-hero { height: 240px; }
  .ats-hero-content h1 { font-size: 1.45rem; }
  .ats-hero-content p { display: none; }
  .ats-hero-content .ats-btn { padding: 10px 20px; font-size: 0.9rem; }

  /* Quote section */
  #ats-quote { padding: 32px 0; }
  .ats-quote-text h2 { font-size: 1.4rem; }

  /* Hide phone number, show icon only */
  .nav-phone-number { display: none; }
  .nav-toggle { display: flex; }

  /* ---- MOBILE NAV: phone icon left, hamburger right ---- */
  #menu { flex-wrap: wrap; }
  .mobile-phone-icon { display: flex; }
  .nav-toggle { display: flex; margin-left: auto; }
  /* flex:0 0 100% prevents nav-collapse shrinking onto row 1 with the toggle,
     so margin-left:auto has free space to push the toggle to the right */
  .nav-collapse { flex: 0 0 100%; flex-direction: column; }
  .nav-collapse ul { display: none; flex-direction: column; width: 100%; background: #162e55; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-collapse.opened ul { display: flex; }
  .nav-collapse ul.opened   { display: flex; }
  .nav-collapse .menu-item { width: 100%; }
  .nav-collapse .menu-item a { padding: 13px 20px; min-height: auto; border-bottom: 1px solid rgba(255,255,255,0.08); border-left: 3px solid transparent; font-size: 0.93rem; width: 100%; display: flex; }
  .nav-collapse .menu-item a:hover,
  .nav-collapse .menu-item.active a { border-left-color: var(--secondary); background: rgba(255,255,255,0.08); }

  /* Content sections */
  .ats-section { padding: 40px 0; }
  .ats-section h2 { font-size: 1.4rem; }
  .ats-section h3 { font-size: 1.05rem; }
  .ats-updated { white-space: normal; font-size: 0.75rem; }
  .ats-toc ol { columns: 1; }
  .ats-toc-section { padding: 22px 0; }
  .ats-cards-grid { grid-template-columns: 1fr; }
  .ats-related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ats-final-cta { padding: 48px 0; }
  .ats-final-cta h2 { font-size: 1.45rem; }
  .ats-final-cta .ats-btn { padding: 13px 22px; font-size: 0.93rem; }
  .ats-cta-banner h2 { font-size: 1.35rem; }

  /* Tables — stack rows, no horizontal scroll */
  .ats-table-wrap { box-shadow: none; overflow-x: visible; }
  .ats-table { font-size: 0.88rem; }
  .ats-table thead { display: none; }
  .ats-table tbody tr { display: block; margin-bottom: 12px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: 0 1px 4px rgba(0,0,0,0.07); overflow: hidden; }
  .ats-table tbody tr:nth-child(even) { background: var(--white); }
  .ats-table tbody td { display: flex; align-items: baseline; gap: 8px; padding: 9px 14px; border-bottom: 1px solid var(--border); color: var(--text); }
  .ats-table tbody td:last-child { border-bottom: none; }
  .ats-table tbody td::before { content: attr(data-label); font-weight: 700; color: var(--primary); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; min-width: 80px; flex-shrink: 0; }
}