/* =========================================================
   GIRN LUBE & DETAILING — Dark / Mobile Detailing Theme
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800;900&family=Manrope:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --bg-950: #060607;
  --bg-900: #0B0B0D;
  --surface-900: #131316;
  --surface-800: #1B1B1F;
  --surface-700: #242429;
  --border-800: #2A2A2F;
  --border-700: #38383F;

  --red-400: #FF6259;
  --red-500: #FF3B30;
  --red-600: #E2231A;
  --red-700: #B81810;

  --white: #FFFFFF;
  --gray-200: #E6E6E9;
  --gray-300: #C7C7CD;
  --gray-400: #9B9BA3;
  --gray-500: #6E6E76;

  --success-500: #2ECC71;
  --success-bg: #0F2418;
  --warn-500: #F5A524;

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --max-width: 1180px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-300);
  background: var(--bg-950);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); color: var(--white); font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
:focus-visible { outline: 3px solid var(--red-500); outline-offset: 2px; }

.wrap { max-width: var(--max-width); margin-inline: auto; padding-inline: 24px; }
.eyebrow { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-500); font-weight: 600; }
.section { padding-block: clamp(52px, 8vw, 92px); position: relative; }
.section--tight { padding-block: clamp(32px, 5vw, 52px); }
.section-head { max-width: 640px; margin-bottom: clamp(26px, 4vw, 40px); }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-top: 8px; }
.section-head p { margin-top: 12px; font-size: 1.02rem; color: var(--gray-400); line-height: 1.6; }
.section-head.center { margin-inline: auto; text-align: center; }

/* Background photo sections */
.bg-photo {
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--gray-200);
}
.bg-photo h2, .bg-photo h3 { color: var(--white); }
.bg-photo--why { background-image: linear-gradient(180deg, rgba(6,6,7,0.90), rgba(6,6,7,0.94)), url('../assets/img/mechanic-inspection.jpg'); }
.bg-photo--inspect { background-image: linear-gradient(180deg, rgba(6,6,7,0.90), rgba(6,6,7,0.95)), url('../assets/img/steam-clean-interior.jpg'); }
.bg-photo--offers { background-image: linear-gradient(180deg, rgba(6,6,7,0.90), rgba(6,6,7,0.95)), url('../assets/img/highway-traffic.jpg'); }
.bg-photo--cta { background-image: linear-gradient(160deg, rgba(6,6,7,0.88), rgba(20,4,3,0.9)), url('../assets/img/garage-sign.jpg'); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.96rem; border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red-600); color: var(--white); box-shadow: 0 6px 20px rgba(226,35,26,0.35); }
.btn-primary:hover { background: var(--red-500); }
.btn-outline { background: transparent; border-color: var(--border-700); color: var(--white); }
.btn-outline:hover { border-color: var(--red-500); color: var(--red-400); }
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }

/* =========================================================
   NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6,6,7,0.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-800);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding-block: 12px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 40px; width: auto; }
.brand-name { font-family: var(--font-display); font-weight: 700; color: var(--white); line-height: 1.05; font-size: 1.05rem; }
.brand-name span { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 0.6rem; letter-spacing: 0.12em; color: var(--gray-500); text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--gray-300); padding-block: 4px; border-bottom: 2px solid transparent; transition: color 0.15s ease, border-color 0.15s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); border-color: var(--red-500); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-call { display: flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 0.86rem; font-weight: 500; color: var(--gray-200); }
.nav-toggle { display: none; background: none; border: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 22px; height: 2px; background: var(--white); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle span { margin: 5px 0; }
@media (max-width: 880px) {
  .nav-links { position: fixed; top: 64px; left: 0; right: 0; background: var(--bg-900); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 18px; border-bottom: 1px solid var(--border-800); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: transform 0.18s ease, opacity 0.18s ease; }
  .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding-block: 12px; border-bottom: 1px solid var(--border-800); }
  .nav-call { display: none; }
  .nav-toggle { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 78vh;
  display: flex; align-items: center;
  background: linear-gradient(180deg, rgba(6,6,7,0.55) 0%, rgba(6,6,7,0.75) 55%, rgba(6,6,7,0.96) 100%), url('../assets/img/foam-wheel-wash.jpg');
  background-size: cover; background-position: center 30%;
  padding-block: clamp(60px, 10vw, 80px);
}
.hero-inner { max-width: 680px; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); line-height: 1.05; margin-top: 14px; }
.hero-sub { margin-top: 18px; font-size: 1.1rem; color: var(--gray-300); line-height: 1.65; max-width: 52ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

/* Quick book/call/text bar */
.quickbar { background: var(--surface-900); border-bottom: 1px solid var(--border-800); }
.quickbar-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.quickbar-item {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  padding: 22px 16px; border-right: 1px solid var(--border-800);
  transition: background 0.15s ease;
}
.quickbar-item:last-child { border-right: none; }
.quickbar-item:hover { background: var(--surface-800); }
.quickbar-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--red-600); display: grid; place-items: center; flex-shrink: 0; color: var(--white); }
.quickbar-text strong { display: block; color: var(--white); font-size: 0.98rem; font-family: var(--font-display); }
.quickbar-text span { font-size: 0.82rem; color: var(--gray-500); }
@media (max-width: 780px) {
  .quickbar-inner { grid-template-columns: 1fr; }
  .quickbar-item { border-right: none; border-bottom: 1px solid var(--border-800); justify-content: flex-start; }
  .quickbar-item:last-child { border-bottom: none; }
}

/* =========================================================
   GRIDS / CARDS
   ========================================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 24px; }
@media (max-width: 780px) { .check-grid { grid-template-columns: 1fr; } }
.check-item { display: flex; align-items: center; gap: 10px; font-size: 0.96rem; color: var(--gray-200); }
.check-item svg { flex-shrink: 0; color: var(--red-500); }

.feature-card {
  background: var(--surface-900); border: 1px solid var(--border-800);
  border-radius: var(--radius-md); padding: 26px;
}
.feature-card .icon-badge { width: 44px; height: 44px; border-radius: 10px; background: var(--red-600); color: var(--white); display: grid; place-items: center; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.15rem; }
.feature-card p { margin-top: 8px; color: var(--gray-400); font-size: 0.93rem; line-height: 1.55; }

/* Service summary card (home) */
.svc-card {
  background: var(--surface-900); border: 1px solid var(--border-800);
  border-radius: var(--radius-md); overflow: hidden;
  display: flex; flex-direction: column;
}
.svc-card img { height: 170px; width: 100%; object-fit: cover; }
.svc-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-card-body h3 { font-size: 1.2rem; }
.svc-card-body p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.55; }
.svc-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.tag { font-family: var(--font-mono); font-size: 0.72rem; background: var(--surface-700); color: var(--gray-300); padding: 4px 9px; border-radius: 5px; border: 1px solid var(--border-700); }
.svc-card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border-800); }
.svc-card-price { font-family: var(--font-mono); color: var(--red-400); font-weight: 600; font-size: 0.95rem; }

/* =========================================================
   PRICING TABLES
   ========================================================= */
.pricing-block { margin-bottom: 46px; scroll-margin-top: 90px; }
.pricing-block-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.pricing-block-head h3 { font-size: 1.4rem; }
.pricing-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; align-items: start; }
@media (max-width: 860px) { .pricing-layout { grid-template-columns: 1fr; } }
.includes-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
@media (max-width: 560px) { .includes-list { grid-template-columns: 1fr; } }
.includes-list li { display: flex; gap: 8px; font-size: 0.92rem; color: var(--gray-300); }
.includes-list svg { flex-shrink: 0; margin-top: 3px; color: var(--red-500); }

.price-table { background: var(--surface-900); border: 1px solid var(--border-800); border-radius: var(--radius-md); overflow: hidden; }
.price-table table { width: 100%; }
.price-table th { text-align: left; font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-500); padding: 12px 18px; border-bottom: 1px solid var(--border-800); }
.price-table th:last-child, .price-table td:last-child { text-align: right; }
.price-table td { padding: 13px 18px; border-bottom: 1px solid var(--border-800); font-size: 0.95rem; color: var(--gray-200); }
.price-table tr:last-child td { border-bottom: none; }
.price-table td.price { font-family: var(--font-mono); color: var(--red-400); font-weight: 600; }

.free-banner {
  display: flex; align-items: center; gap: 12px; background: var(--success-bg);
  border: 1px solid #17492c; border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: 0.88rem; color: #7fe0a6; margin-top: 16px;
}
.free-banner svg { flex-shrink: 0; }

.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .addon-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .addon-grid { grid-template-columns: 1fr; } }
.addon-card { background: var(--surface-900); border: 1px solid var(--border-800); border-radius: var(--radius-md); padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.addon-card h4 { font-size: 1.02rem; color: var(--white); }
.addon-card p { font-size: 0.86rem; color: var(--gray-400); line-height: 1.5; flex: 1; }
.addon-price { font-family: var(--font-mono); color: var(--red-400); font-weight: 600; font-size: 0.95rem; margin-top: 4px; }

/* =========================================================
   INSPECTION CHECKLIST
   ========================================================= */
.inspect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .inspect-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .inspect-grid { grid-template-columns: 1fr; } }
.inspect-card { background: rgba(19,19,22,0.7); border: 1px solid var(--border-800); border-radius: var(--radius-md); padding: 18px 20px; }
.inspect-card h4 { font-family: var(--font-mono); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red-500); margin-bottom: 10px; }
.inspect-card li { display: flex; gap: 8px; font-size: 0.88rem; color: var(--gray-300); padding-block: 3px; }
.inspect-card svg { flex-shrink: 0; margin-top: 3px; color: var(--red-500); }

/* Perfect For chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { border: 1px solid var(--border-700); border-radius: 999px; padding: 9px 18px; font-size: 0.88rem; color: var(--gray-200); background: var(--surface-900); }

/* Offers */
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 780px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-card { background: rgba(19,19,22,0.75); border: 1px solid var(--border-700); border-radius: var(--radius-md); padding: 24px; }
.offer-card .offer-tag { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red-500); }
.offer-card h3 { font-size: 1.15rem; margin-top: 8px; }
.offer-card p { margin-top: 8px; font-size: 0.9rem; color: var(--gray-300); line-height: 1.55; }

/* CTA / positioning band */
.cta-band { border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 52px); text-align: center; }
.cta-band .eyebrow { display: block; margin-bottom: 10px; }
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.cta-band .tagline { font-family: var(--font-mono); color: var(--red-400); margin-top: 10px; font-size: 1rem; letter-spacing: 0.04em; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

/* =========================================================
   PAGE HEADER
   ========================================================= */
.page-header { padding-block: clamp(44px, 7vw, 68px); border-bottom: 1px solid var(--border-800); }
.page-header h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.6rem); margin-top: 10px; }
.page-header p { margin-top: 12px; max-width: 60ch; line-height: 1.6; color: var(--gray-400); }

/* =========================================================
   BOOKING CALENDAR
   ========================================================= */
.book-layout { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 26px; align-items: start; }
@media (max-width: 940px) { .book-layout { grid-template-columns: 1fr; } }

.cal-shell { background: var(--surface-900); border: 1px solid var(--border-800); border-radius: var(--radius-lg); padding: 22px; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-header h3 { font-size: 1.2rem; }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button { background: var(--surface-800); border: 1px solid var(--border-700); color: var(--white); width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center; }
.cal-nav button:hover { border-color: var(--red-500); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-dow { text-align: center; font-family: var(--font-mono); font-size: 0.68rem; color: var(--gray-500); text-transform: uppercase; padding-bottom: 6px; }
.cal-day {
  aspect-ratio: 1; border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 0.88rem; color: var(--gray-300); background: var(--surface-800); border: 1px solid transparent;
  cursor: pointer; transition: all 0.12s ease; gap: 2px;
}
.cal-day:hover:not(.is-disabled) { border-color: var(--red-500); }
.cal-day.is-disabled { opacity: 0.28; cursor: default; }
.cal-day.is-empty { visibility: hidden; }
.cal-day.is-selected { background: var(--red-600); color: var(--white); }
.cal-day .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--success-500); }
.cal-day.is-full .dot { background: var(--warn-500); }
.cal-day .dnum { font-weight: 600; }

.slot-panel { margin-top: 20px; border-top: 1px solid var(--border-800); padding-top: 18px; }
.slot-panel h4 { font-size: 0.98rem; color: var(--white); margin-bottom: 12px; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 10px; }
.slot-btn {
  background: var(--surface-800); border: 1.5px solid var(--border-700); color: var(--gray-200);
  padding: 12px; border-radius: 8px; font-family: var(--font-mono); font-size: 0.85rem; font-weight: 500;
  text-align: center; transition: all 0.12s ease;
}
.slot-btn:hover:not(.is-taken) { border-color: var(--red-500); color: var(--white); }
.slot-btn.is-selected { background: var(--red-600); border-color: var(--red-600); color: var(--white); }
.slot-btn.is-taken { opacity: 0.35; text-decoration: line-through; cursor: not-allowed; }

.waitlist-box { margin-top: 16px; background: rgba(245,165,36,0.08); border: 1px solid #5c4014; border-radius: var(--radius-sm); padding: 16px 18px; }
.waitlist-box p { font-size: 0.9rem; color: #f0c98a; line-height: 1.5; margin-bottom: 12px; }

.legend-row { display: flex; gap: 18px; margin-top: 14px; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--gray-500); }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }

/* =========================================================
   FORMS
   ========================================================= */
.form-shell { background: var(--surface-900); border: 1px solid var(--border-800); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 34px); }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field.full { grid-column: 1 / -1; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--white); }
.field .hint { font-size: 0.76rem; color: var(--gray-500); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 0.95rem; padding: 11px 13px;
  border: 1.5px solid var(--border-700); border-radius: var(--radius-sm);
  background: var(--surface-800); color: var(--white);
  transition: border-color 0.15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--gray-500); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red-500); outline: none; }
.field textarea { resize: vertical; min-height: 84px; }
.field-error { font-size: 0.78rem; color: var(--red-400); min-height: 1em; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red-500); }

.form-status {
  display: none; align-items: flex-start; gap: 12px;
  background: var(--success-bg); border: 1px solid #17492c;
  color: #7fe0a6; border-radius: var(--radius-sm); padding: 15px 18px;
  margin-top: 16px; font-size: 0.9rem; line-height: 1.5;
}
.form-status.is-visible { display: flex; }
.form-status svg { flex-shrink: 0; margin-top: 2px; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.info-row { display: flex; gap: 14px; padding-block: 15px; border-bottom: 1px solid var(--border-800); }
.info-row:last-child { border-bottom: none; }
.info-row .icon-badge { width: 40px; height: 40px; border-radius: 9px; background: var(--surface-700); color: var(--red-400); display: grid; place-items: center; flex-shrink: 0; }
.info-row h4 { font-size: 0.96rem; color: var(--white); }
.info-row p, .info-row a { font-size: 0.9rem; color: var(--gray-400); margin-top: 3px; }
.info-row a:hover { color: var(--red-400); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--bg-900); border-top: 1px solid var(--border-800); padding-block: 48px 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 940px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand p { margin-top: 12px; font-size: 0.88rem; line-height: 1.6; max-width: 32ch; color: var(--gray-500); }
.footer-col h5 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 14px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.89rem; color: var(--gray-300); }
.footer-col a:hover { color: var(--red-400); }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--border-800); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; color: var(--gray-500); }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* =========================================================
   DETAILING PROCESS
   ========================================================= */
.process-block { background: var(--surface-900); border: 1px solid var(--border-800); border-radius: var(--radius-md); padding: 22px 24px; margin-bottom: 18px; }
.process-block-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; flex-wrap: wrap; gap: 8px; }
.process-block-head h4 { font-size: 1.15rem; }
.process-time { font-family: var(--font-mono); font-size: 0.8rem; color: var(--red-400); background: rgba(226,35,26,0.1); padding: 4px 11px; border-radius: 999px; border: 1px solid var(--red-700); }
.process-steps { list-style: decimal; padding-left: 20px; display: grid; gap: 10px; }
.process-steps li { font-size: 0.92rem; color: var(--gray-300); line-height: 1.55; padding-left: 4px; }
.process-steps li strong { color: var(--white); font-weight: 600; }

/* =========================================================
   BLOG
   ========================================================= */
.blog-article { background: var(--surface-900); border: 1px solid var(--border-800); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 34px); margin-bottom: 22px; scroll-margin-top: 90px; }
.blog-article h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); display: flex; align-items: center; gap: 12px; }
.blog-article .icon-badge { width: 40px; height: 40px; border-radius: 9px; background: var(--red-600); color: var(--white); display: grid; place-items: center; flex-shrink: 0; }
.blog-article .blog-meta { font-family: var(--font-mono); font-size: 0.74rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; }
.blog-section { margin-top: 18px; }
.blog-section h3 { font-size: 0.95rem; color: var(--red-400); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.blog-section p { font-size: 0.95rem; color: var(--gray-300); line-height: 1.65; }
.blog-warn { margin-top: 18px; background: rgba(245,165,36,0.08); border: 1px solid #5c4014; border-radius: var(--radius-sm); padding: 14px 18px; display: flex; gap: 12px; }
.blog-warn svg { flex-shrink: 0; color: var(--warn-500); margin-top: 2px; }
.blog-warn p { font-size: 0.9rem; color: #f0c98a; line-height: 1.55; }
.blog-toc { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.blog-toc a { border: 1px solid var(--border-700); border-radius: 999px; padding: 8px 16px; font-size: 0.86rem; color: var(--gray-200); background: var(--surface-900); }
.blog-toc a:hover { border-color: var(--red-500); color: var(--red-400); }
