/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:     #0a1628;
  --navy-mid: #111e35;
  --silver:   #c8d0d8;
  --silver-dim: #8a9299;
  --amber:    #f5a623;
  --amber-dim: rgba(245, 166, 35, 0.12);
  --white:    #ffffff;
  --off-white:#f4f5f7;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--silver);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 208, 216, 0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--silver-dim);
  font-weight: 500;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 166, 35, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 166, 35, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.08) 0%, transparent 65%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-dim);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--amber);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(56px, 9vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--silver-dim);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 208, 216, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  max-width: 560px;
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat-val {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 11px;
  color: var(--silver-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(200, 208, 216, 0.15);
}

/* === SERVICES === */
.services {
  padding: 100px 24px;
  background: var(--navy-mid);
  border-top: 1px solid rgba(200, 208, 216, 0.06);
}

.services-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.services .section-title { text-align: center; margin-bottom: 56px; }
.services .section-eyebrow { text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 208, 216, 0.1);
  border-radius: 16px;
  padding: 36px 32px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(245, 166, 35, 0.25);
  transform: translateY(-4px);
}

.service-card.featured {
  background: var(--amber-dim);
  border-color: rgba(245, 166, 35, 0.3);
}

.service-icon {
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.service-card p {
  font-size: 14px;
  color: var(--silver-dim);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 13px;
  color: var(--silver);
  padding-left: 16px;
  position: relative;
  font-weight: 500;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
}

/* === DIFFERENCE === */
.difference {
  padding: 100px 24px;
  background: var(--navy);
}

.difference-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.diff-content .section-eyebrow { margin-bottom: 8px; }

.diff-body {
  font-size: 16px;
  color: var(--silver-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

.diff-body strong { color: var(--white); }

.diff-pillars {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pillar-icon {
  width: 36px;
  height: 36px;
  background: var(--amber-dim);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.pillar p {
  font-size: 13px;
  color: var(--silver-dim);
}

.diff-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 48px;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 208, 216, 0.1);
  border-radius: 12px;
  padding: 24px;
}

.comparison-card.tkm {
  background: rgba(245, 166, 35, 0.07);
  border-color: rgba(245, 166, 35, 0.25);
}

.comp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.comp-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comp-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(245, 166, 35, 0.15);
  color: var(--amber);
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.comp-badge.shop {
  background: rgba(138, 146, 153, 0.12);
  color: var(--silver-dim);
  border-color: rgba(138, 146, 153, 0.2);
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comp-con, .comp-pro {
  font-size: 13px;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.comp-con { color: var(--silver-dim); }
.comp-pro { color: var(--silver); font-weight: 500; }

.comp-con::before { content: '×'; position: absolute; left: 0; color: var(--silver-dim); font-weight: 700; }
.comp-pro::before { content: '✓'; position: absolute; left: 0; color: var(--amber); font-weight: 700; }

/* === PROCESS === */
.process {
  padding: 100px 24px;
  background: var(--navy-mid);
  border-top: 1px solid rgba(200, 208, 216, 0.06);
}

.process-inner {
  max-width: 900px;
  margin: 0 auto;
}

.process .section-title { text-align: center; margin-bottom: 64px; }
.process .section-eyebrow { text-align: center; }

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
}

.step-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: rgba(245, 166, 35, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.step-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.step-body p {
  font-size: 13px;
  color: var(--silver-dim);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 166, 35, 0.3), rgba(245, 166, 35, 0.1));
  margin: 0 8px;
  margin-top: -40px;
}

/* === CLOSING === */
.closing {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}

.closing-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.closing-glow {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.closing p {
  font-size: 17px;
  color: var(--silver-dim);
  line-height: 1.8;
  margin-bottom: 40px;
}

.closing-cta {
  display: inline-block;
}

.closing-cta-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 6px;
}

.closing-cta-sub {
  font-size: 13px;
  color: var(--silver-dim);
}

/* === FOOTER === */
.footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(200, 208, 216, 0.08);
  background: var(--navy);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.footer-tagline {
  font-size: 12px;
  color: var(--silver-dim);
  margin-top: 4px;
  line-height: 1.6;
}

.footer-meta p {
  font-size: 12px;
  color: var(--silver-dim);
  text-align: right;
}

.footer-copy {
  margin-top: 4px;
}

/* === PRICING HERO === */
.pricing-hero {
  position: relative;
  padding: 120px 24px 80px;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}

.pricing-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pricing-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 166, 35, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 166, 35, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
}

.pricing-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--amber-dim);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.pricing-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.pricing-sub {
  font-size: 18px;
  color: var(--silver-dim);
  line-height: 1.7;
  margin-bottom: 36px;
}

.pricing-promise {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--silver);
}

/* === PRICING SECTION === */
.pricing-section {
  padding: 80px 24px;
  background: var(--navy-mid);
  border-top: 1px solid rgba(200, 208, 216, 0.06);
}

.pricing-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.services-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 0 4px;
}

.legend-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.legend-note {
  font-size: 12px;
  color: var(--silver-dim);
}

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

.price-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 208, 216, 0.1);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.price-card:hover {
  border-color: rgba(245, 166, 35, 0.25);
  transform: translateY(-3px);
}

.price-card-badge {
  position: absolute;
  top: -1px;
  right: 16px;
  background: var(--amber);
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 0 0 6px 6px;
}

.price-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-card-icon {
  width: 36px;
  height: 36px;
  background: var(--amber-dim);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.price-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.price-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-note {
  font-size: 11px;
  color: var(--silver-dim);
  font-weight: 500;
}

.price-card-includes {
  font-size: 12px;
  color: var(--silver-dim);
  line-height: 1.6;
  flex: 1;
}

.price-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(200, 208, 216, 0.08);
}

.price-time {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--silver-dim);
  font-weight: 500;
}

.price-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: var(--amber);
  padding: 7px 16px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s ease;
}

.price-cta:hover {
  background: #e8971a;
}

.pricing-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 208, 216, 0.08);
  border-radius: 10px;
  font-size: 12px;
  color: var(--silver-dim);
  line-height: 1.6;
}

/* === PRICING FAQ === */
.pricing-faq {
  padding: 100px 24px;
  background: var(--navy);
  border-top: 1px solid rgba(200, 208, 216, 0.06);
}

.pricing-faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-faq .section-eyebrow { margin-bottom: 8px; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 208, 216, 0.08);
  border-radius: 14px;
  padding: 28px;
}

.faq-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.faq-a {
  font-size: 14px;
  color: var(--silver-dim);
  line-height: 1.75;
}

/* === NAV LINKS === */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--silver-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--white);
}

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: var(--amber);
  padding: 7px 18px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: #e8971a;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .difference-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .diff-visual {
    padding-top: 0;
  }
  .process-steps {
    flex-direction: column;
    gap: 32px;
  }
  .step-connector {
    width: 1px;
    height: 32px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(245, 166, 35, 0.3), rgba(245, 166, 35, 0.1));
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .stat-divider {
    width: 40px;
    height: 1px;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-meta p { text-align: left; }
  .nav-phone { display: none; }
}

/* === SERVICE AREA PAGES === */
.sa-hero {
  position: relative;
  background: var(--navy);
  padding: 80px 0 60px;
  overflow: hidden;
}

.sa-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sa-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 166, 35, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 166, 35, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.sa-hero-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
}

.sa-hero-inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.sa-breadcrumb {
  font-size: 12px;
  color: var(--amber);
  margin-bottom: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sa-breadcrumb a {
  color: var(--amber);
  text-decoration: none;
}

.sa-breadcrumb a:hover { text-decoration: underline; }

.sa-sep {
  margin: 0 8px;
  opacity: 0.5;
}

.sa-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.sa-tagline {
  font-size: 20px;
  color: var(--silver);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.5;
}

.sa-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.sa-btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.sa-btn-primary:hover {
  background: #e09010;
}

.sa-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--silver);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1px solid rgba(200, 208, 216, 0.3);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, color 0.2s;
}

.sa-btn-secondary:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.sa-btn-lg {
  font-size: 18px;
  padding: 16px 40px;
}

/* === LAYOUT === */
.sa-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === LOCAL PRESENCE === */
.sa-local {
  background: var(--navy-mid);
  padding: 60px 0;
  border-top: 1px solid rgba(245, 166, 35, 0.1);
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
}

.sa-local-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.sa-local-text {
  flex: 1;
}

.sa-local-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.sa-local-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 12px;
}

.sa-radius-block {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sa-radius-icon {
  opacity: 0.8;
}

.sa-radius-label {
  font-size: 12px;
  color: var(--silver-dim);
  text-align: center;
  line-height: 1.5;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === SERVICES === */
.sa-services {
  padding: 60px 0;
  background: var(--navy);
}

.sa-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
}

.sa-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.sa-service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy-mid);
  border: 1px solid rgba(200, 208, 216, 0.08);
  border-radius: 8px;
  padding: 16px 20px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.sa-service-card:hover {
  border-color: rgba(245, 166, 35, 0.4);
  background: rgba(245, 166, 35, 0.04);
}

.sa-service-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.sa-service-price {
  font-size: 13px;
  color: var(--amber);
  font-weight: 500;
}

.sa-service-arrow {
  font-size: 16px;
  color: var(--amber);
  margin-left: 8px;
}

.sa-services-footnote {
  margin-top: 20px;
  font-size: 13px;
  color: var(--silver-dim);
}

.sa-services-footnote a {
  color: var(--amber);
}

/* === CITY GRID (INDEX) === */
.sa-city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.sa-city-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--navy-mid);
  border: 1px solid rgba(200, 208, 216, 0.08);
  border-radius: 10px;
  padding: 28px 24px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}

.sa-city-card:hover {
  border-color: rgba(245, 166, 35, 0.4);
  transform: translateY(-2px);
}

.sa-city-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.sa-city-tagline {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.5;
  flex: 1;
}

.sa-city-arrow {
  font-size: 14px;
  color: var(--amber);
  font-weight: 600;
}

/* === TRUST BLOCK === */
.sa-trust {
  padding: 60px 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(200, 208, 216, 0.06);
  border-bottom: 1px solid rgba(200, 208, 216, 0.06);
}

.sa-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sa-trust-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sa-trust-icon {
  font-size: 24px;
  color: var(--amber);
}

.sa-trust-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.sa-trust-item p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.6;
}

/* === MAP === */
.sa-map {
  padding: 60px 0;
  background: var(--navy);
}

.sa-map-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.sa-map-text {
  flex: 1;
}

.sa-map-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.sa-map-text p {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 24px;
}

.sa-map-placeholder {
  flex-shrink: 0;
  width: 200px;
  height: 180px;
  background: rgba(245, 166, 35, 0.05);
  border: 1px dashed rgba(245, 166, 35, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sa-map-inner-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.sa-map-inner-placeholder p {
  font-size: 12px;
  color: var(--silver-dim);
  line-height: 1.5;
}

/* === CTA === */
.sa-cta {
  padding: 80px 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(245, 166, 35, 0.1);
  text-align: center;
}

.sa-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.sa-cta-inner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.sa-cta-inner p {
  font-size: 18px;
  color: var(--silver);
  margin-bottom: 32px;
}

.sa-cta-buttons {
  margin-bottom: 20px;
}

.sa-cta-note {
  font-size: 14px;
  color: var(--silver-dim);
}

.sa-cta-note a {
  color: var(--amber);
  text-decoration: none;
}

.sa-cta-note a:hover {
  text-decoration: underline;
}

/* === FOOTER LINKS === */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0;
}

.footer-section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white) !important;
  pointer-events: none;
  cursor: default;
}

.footer-links a {
  color: var(--silver-dim);
  text-decoration: none;
  font-size: 13px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.05em;
}

.footer-links a:hover {
  color: var(--amber);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .sa-local-inner,
  .sa-map-inner {
    flex-direction: column;
  }

  .sa-trust-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sa-city-grid {
    grid-template-columns: 1fr;
  }

  .sa-services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .sa-h1 {
    font-size: 40px;
  }

  .sa-cta-row {
    flex-direction: column;
  }

  .sa-services-grid {
    grid-template-columns: 1fr;
  }

  .sa-map-placeholder {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* === TRUST STRIP === */
.sa-trust-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(245, 166, 35, 0.1);
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
  padding: 16px 0;
}

.sa-trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.sa-trust-chip {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 4px 12px;
  border: 1px solid rgba(200, 208, 216, 0.15);
  border-radius: 100px;
  white-space: nowrap;
}

.sa-trust-chip::before {
  content: '✓ ';
  color: var(--amber);
}

/* === FAQ (service-area city pages) === */
.sa-faq {
  padding: 80px 0;
  background: var(--navy);
  border-top: 1px solid rgba(200, 208, 216, 0.06);
}

.sa-faq-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === REVIEWS WIDGET (service-area city pages) === */
.sa-reviews {
  padding: 80px 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(200, 208, 216, 0.06);
}

.sa-reviews .section-eyebrow {
  max-width: 960px;
  margin: 0 auto 32px;
  padding: 0 24px;
}

/* === STICKY CTA BAR === */
.sa-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy-mid);
  border-top: 1px solid rgba(245, 166, 35, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 24px;
  display: none;
}

.sa-sticky-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sa-sticky-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--silver);
}

.sa-sticky-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: var(--amber);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.sa-sticky-btn:hover {
  background: #e8971a;
}

/* Show sticky CTA when body is scrolled past hero */
@media (max-width: 768px) {
  .sa-sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }
}

/* === REVIEWS GRID (on service-area city pages) === */
.reviews-section {
  padding: 80px 0;
  background: var(--navy);
}

.reviews-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.reviews-inner .section-eyebrow {
  margin-bottom: 32px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.review-card-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 208, 216, 0.1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-stars {
  display: flex;
  gap: 3px;
}

.star-active {
  color: var(--amber);
  font-size: 16px;
}

.star-inactive {
  color: rgba(200, 208, 216, 0.2);
  font-size: 16px;
}

.review-quote-text {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.7;
  font-style: italic;
}

.review-attribution {
  font-size: 12px;
  color: var(--silver-dim);
  font-weight: 600;
  margin-top: auto;
}

/* === STICKY MOBILE CALL BAR === */
.sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 56px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
}

.sticky-call-bar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 1;
}

.sticky-call-bar-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--navy);
}

.sticky-call-bar-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.sticky-call-bar-number {
  font-size: 15px;
  font-weight: 600;
}

.sticky-call-bar-dismiss {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 22, 40, 0.12);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  transition: background 0.2s;
}

.sticky-call-bar-dismiss:hover {
  background: rgba(10, 22, 40, 0.22);
}

/* Only show on mobile */
@media (min-width: 768px) {
  .sticky-call-bar { display: none !important; }
}

/* ── Text Matt Button ── */
.tkm-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.tkm-btn-call:hover { background: #e0961f; }

.tkm-btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--amber);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 1.5px solid rgba(245,166,35,0.45);
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.tkm-btn-text:hover { background: rgba(245,166,35,0.08); border-color: var(--amber); }
.tkm-btn-text svg, .tkm-btn-call svg { flex-shrink: 0; }

/* CTA row: side-by-side call + text */
.tkm-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Micro note under Text button */
.tkm-text-note {
  display: block;
  font-size: 11px;
  color: var(--silver-dim);
  font-weight: 500;
  margin-top: 5px;
  text-align: center;
}

/* Sticky bar: call + text split */
.sticky-call-bar {
  height: 60px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
}
.sticky-call-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 42px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
  min-width: 0;
}
.sticky-call-btn.call {
  background: var(--navy);
  color: var(--white);
}
.sticky-call-btn.text {
  background: rgba(10,22,40,0.2);
  color: var(--navy);
  border: 1.5px solid rgba(10,22,40,0.3);
}
.sticky-call-btn:hover { opacity: 0.88; }
.sticky-call-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.sticky-call-btn-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sticky-call-bar-dismiss {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(10,22,40,0.12);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  transition: background 0.2s;
}
.sticky-call-bar-dismiss:hover { background: rgba(10,22,40,0.22); }

/* Fix card CTA pair */
.sd-fix-ctas {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}
.sd-fix-call {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #0a1628;
  background: var(--amber);
  padding: 7px 14px;
  border-radius: 7px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.sd-fix-call:hover { opacity: 0.85; }
.sd-fix-text {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  background: transparent;
  padding: 7px 14px;
  border-radius: 7px;
  text-decoration: none;
  border: 1px solid rgba(245,166,35,0.4);
  transition: background 0.15s, border-color 0.15s;
}
.sd-fix-text:hover { background: rgba(245,166,35,0.08); border-color: var(--amber); }

/* Price card CTA pair */
.price-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(200,208,216,0.08);
}
.price-card-footer-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.price-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: var(--amber);
  padding: 7px 12px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.price-cta:hover { background: #e8971a; }
.price-text-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  background: transparent;
  padding: 7px 12px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.03em;
  border: 1px solid rgba(245,166,35,0.4);
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}
.price-text-cta:hover { background: rgba(245,166,35,0.08); border-color: var(--amber); }

/* Navbar text link (mobile) */
.nav-phone-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-phone-link.call { color: var(--amber); }
.nav-phone-link.text { color: var(--silver-dim); }
.nav-phone-link:hover { background: rgba(255,255,255,0.06); color: var(--amber); }
.nav-phone-link svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Homepage closing CTA row */
.closing-phone-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .nav-phone { display: none; }
}
@media (min-width: 601px) {
  .nav-phone-links { display: none; }
}

/* ── Dealership vs TurnKeyMech comparison block ── */
.comparison-block {
  padding: 80px 24px;
  background: var(--navy);
  border-top: 1px solid rgba(200, 208, 216, 0.06);
}

.comparison-inner {
  max-width: 900px;
  margin: 0 auto;
}

.comparison-block .section-eyebrow {
  margin-bottom: 8px;
}

.comparison-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(200, 208, 216, 0.1);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.comp-col-header {
  padding: 20px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comp-col-header.shop {
  background: rgba(255, 255, 255, 0.03);
  color: var(--silver-dim);
  border-bottom: 1px solid rgba(200, 208, 216, 0.1);
}

.comp-col-header.tkm {
  background: rgba(245, 166, 35, 0.08);
  color: var(--amber);
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
}

.comp-row-label {
  padding: 18px 24px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--silver-dim);
  border-bottom: 1px solid rgba(200, 208, 216, 0.06);
}

.comp-row-label.shop {
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(200, 208, 216, 0.08);
}

.comp-row-label.tkm {
  background: rgba(245, 166, 35, 0.04);
}

.comp-row-val {
  padding: 18px 24px;
  font-size: 14px;
  color: var(--silver);
  line-height: 1.5;
  border-bottom: 1px solid rgba(200, 208, 216, 0.06);
}

.comp-row-val.shop {
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(200, 208, 216, 0.08);
  color: var(--silver-dim);
}

.comp-row-val.tkm {
  background: rgba(245, 166, 35, 0.04);
  color: var(--silver);
}

.comp-row-val.tkm .checkmark {
  color: var(--amber);
  font-weight: 700;
  margin-right: 6px;
}

.comparison-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.comp-cta-scroll {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 208, 216, 0.15);
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.comp-cta-scroll:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 208, 216, 0.3);
  color: var(--white);
}

.comp-cta-scroll svg {
  color: var(--amber);
}

.comp-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.comp-cta-call:hover { background: #e0961f; }

/* Mobile stack: labels above each row value */
@media (max-width: 600px) {
  .comparison-table {
    grid-template-columns: 1fr;
  }

  .comp-col-header {
    display: none;
  }

  /* Show column headers as row headers on mobile via data-label */
  .comp-row-label { display: none; }

  .comp-row-val.shop::before {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--silver-dim);
    margin-bottom: 6px;
    content: attr(data-label);
    opacity: 0.6;
  }

  .comp-row-val.tkm::before {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 6px;
    content: attr(data-label);
  }
}