:root {
  --bg: #fafaf9;
  --bg-2: #ffffff;
  --bg-3: #f5f5f4;
  --text: #0a0a0b;
  --muted: #52525b;
  --muted-2: #78716c;
  --accent: #BF1717;
  --accent-2: #DC2626;
  --accent-soft: #fef2f2;
  --line: #e7e5e4;
  --line-2: #d6d3d1;
  --shadow-sm: 0 1px 2px rgba(10,10,11,0.04);
  --shadow-md: 0 4px 12px rgba(10,10,11,0.06), 0 1px 3px rgba(10,10,11,0.04);
  --shadow-lg: 0 16px 40px rgba(10,10,11,0.08), 0 4px 8px rgba(10,10,11,0.04);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; display: inline-flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--accent); }

/* ===== HERO ===== */
.hero { padding: 56px 0 88px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(191,23,23,0.05) 0%, transparent 65%); pointer-events: none; }
.nav { display: flex; justify-content: space-between; align-items: center; padding-bottom: 80px; position: relative; z-index: 2; }
.logo { font-weight: 900; font-size: 22px; letter-spacing: -0.02em; display: inline-flex; align-items: center; transform: translateY(10px); }
.logo span { color: var(--accent); }
.logo-img { height: 84px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.nav-links a.current { color: var(--text); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.nav-cta { background: var(--accent); color: white; padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: 14px; transition: background 0.15s; }
.nav-cta:hover { background: var(--accent-2); }

/* Mobile nav toggle (hamburger), hidden on desktop */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; background: none; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links-cta { display: none; }

.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(48px, 7vw, 84px); letter-spacing: -0.04em; line-height: 0.98; font-weight: 800; margin: 24px 0 28px; }
.hero h1 .red { color: var(--accent); }
.hero-sub { font-size: 19px; color: var(--muted); max-width: 540px; margin-bottom: 36px; line-height: 1.55; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.btn { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; padding: 16px 28px; border-radius: 999px; border: none; cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; text-decoration: none; }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); }
.trust-item { background: var(--bg-2); padding: 22px 20px; }
.trust-num { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; white-space: nowrap; }
.trust-num .red { color: var(--accent); }
.trust-label { font-size: 11px; color: var(--muted-2); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }

.hero-photo { background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); overflow: hidden; position: relative; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(191,23,23,0.06), transparent 60%); pointer-events: none; z-index: 1; }
.hero-photo img { width: 100%; height: auto; object-fit: contain; display: block; }

/* Compact page hero (used on Services / Quote / Contact) */
.page-hero { padding: 40px 0 64px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(191,23,23,0.05) 0%, transparent 65%); pointer-events: none; }
.page-hero .nav { padding-bottom: 56px; }
.page-hero-content { max-width: 760px; position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(40px, 6vw, 64px); letter-spacing: -0.03em; line-height: 1.04; font-weight: 800; margin: 18px 0 22px; }
.page-hero h1 .red { color: var(--accent); }
.page-hero-sub { font-size: 18px; color: var(--muted); max-width: 620px; line-height: 1.6; }
.page-hero-content .page-hero-sub { margin-bottom: 16px; }
.page-hero-content .page-hero-sub:last-child { margin-bottom: 0; }
.quote-detail-list { list-style: none; padding: 0; margin: 0 0 16px; max-width: 640px; }
.quote-detail-list li { position: relative; padding: 9px 0 9px 26px; color: var(--muted); font-size: 16px; line-height: 1.55; border-top: 1px solid var(--line); }
.quote-detail-list li:first-child { border-top: 0; }
.quote-detail-list li::before { content: "→"; position: absolute; left: 0; top: 9px; color: var(--accent); font-weight: 700; }
/* Two-column page hero (text + photo) used on Quote / Contact */
.page-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: stretch; position: relative; z-index: 1; }
.page-hero-grid .page-hero-content { max-width: none; }
.page-hero-aside { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); align-self: start; aspect-ratio: 3 / 2; }
.page-hero-aside img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== SECTIONS ===== */
section { padding: 112px 0; border-bottom: 1px solid var(--line); position: relative; }
.section-head { margin-bottom: 64px; max-width: 760px; }
.section-label { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }
.section-title { font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.03em; line-height: 1.05; font-weight: 800; }
.section-title .red { color: var(--accent); }
.section-lead { color: var(--muted); font-size: 18px; margin-top: 22px; max-width: 620px; line-height: 1.65; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.form-input, .form-select, .form-textarea { width: 100%; background: var(--bg-3); border: 1px solid var(--line); padding: 14px 16px; border-radius: 8px; font-size: 15px; color: var(--text); font-family: 'Inter', sans-serif; transition: border-color 0.15s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--accent); background: var(--bg-2); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted-2); }
.form-textarea { min-height: 140px; resize: vertical; font-family: 'Inter', sans-serif; line-height: 1.55; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
.form-submit { background: var(--accent); color: white; border: none; padding: 18px 36px; border-radius: 999px; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.15s; font-family: 'Inter', sans-serif; display: inline-flex; align-items: center; gap: 10px; }
.form-submit:hover { background: var(--accent-2); transform: translateY(-1px); }
.form-foot { font-size: 13px; color: var(--muted-2); margin-top: 16px; }
.form-intro { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.form-file { padding: 12px 16px; cursor: pointer; }
.form-file::file-selector-button { background: var(--bg-2); color: var(--text); border: 1px solid var(--line); padding: 8px 16px; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; margin-right: 14px; transition: border-color 0.15s; }
.form-file::file-selector-button:hover { border-color: var(--accent); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; padding: 36px; transition: all 0.2s; box-shadow: var(--shadow-sm); }
.service-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-num { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); letter-spacing: 0.2em; margin-bottom: 18px; }
.service-title { font-size: 24px; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.02em; }
.service-desc { color: var(--muted); font-size: 15px; line-height: 1.65; margin-bottom: 22px; }
.service-feats { list-style: none; padding: 0; }
.service-feats li { padding: 7px 0 7px 22px; font-size: 14px; color: var(--muted); position: relative; }
.service-feats li::before { content: ""; position: absolute; left: 0; top: 18px; width: 12px; height: 1px; background: var(--accent); }
.services-foot { margin-top: 40px; text-align: center; }
.services-link { color: var(--accent); font-weight: 600; font-size: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border: 1px solid var(--line); border-radius: 999px; transition: all 0.15s; }
.services-link:hover { border-color: var(--accent); background: var(--accent-soft); }

/* ===== EXTRA SERVICES (Services page) ===== */
.extra-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.extra-card { background: var(--bg-3); border: 1px solid var(--line); border-radius: 12px; padding: 28px; }
.extra-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.extra-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.why-item { background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 18px 22px; display: flex; gap: 14px; align-items: flex-start; }
.why-mark { color: var(--accent); font-weight: 800; flex-shrink: 0; font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 0.1em; }
.why-text { font-size: 15px; color: var(--text); font-weight: 500; }

/* ===== COVERAGE / MAP ===== */
.coverage-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: stretch; }
.map-wrap { background: var(--bg-3); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; min-height: 420px; box-shadow: var(--shadow-md); position: relative; }
.map-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; }
.coverage-zone-title { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 22px; font-weight: 500; }
.coverage-list { list-style: none; padding: 0; margin-bottom: 32px; }
.coverage-list li { padding: 13px 0 13px 28px; position: relative; color: var(--muted); font-size: 16px; border-top: 1px solid var(--line); }
.coverage-list li:first-child { border-top: 0; }
.coverage-list li::before { content: "→"; position: absolute; left: 0; top: 13px; color: var(--accent); font-weight: 700; }
.coverage-list strong { color: var(--text); font-weight: 600; }
.coverage-foot { color: var(--muted); font-size: 15px; line-height: 1.6; padding: 20px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 12px; }
.coverage-link { color: var(--accent); font-weight: 600; }
.coverage-link:hover { text-decoration: underline; }

/* ===== WATERPROOF ===== */
.waterproof { background: var(--bg-2); }
.waterproof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.waterproof-image { background: var(--bg-3); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 0; box-shadow: var(--shadow-md); }
.waterproof-image img { width: 100%; height: auto; display: block; }
.waterproof-points { list-style: none; padding: 0; margin-top: 32px; }
.waterproof-points li { padding: 14px 0 14px 28px; position: relative; color: var(--muted); font-size: 16px; line-height: 1.5; border-top: 1px solid var(--line); }
.waterproof-points li:first-child { border-top: 0; }
.waterproof-points li::before { content: "✓"; position: absolute; left: 0; top: 14px; color: var(--accent); font-weight: 700; }
.waterproof-points strong { color: var(--text); font-weight: 600; }

/* ===== FLEET SHOWCASE (full-bleed) ===== */
.fleet-showcase { padding: 112px 0 0; }
.fleet-showcase .section-head { margin: 0 auto 56px; text-align: center; }
.fleet-showcase .section-lead { margin-left: auto; margin-right: auto; }
.fleet-photo { width: 100%; overflow: hidden; }
.fleet-photo img { width: 100%; height: clamp(320px, 54vh, 640px); object-fit: cover; display: block; }

/* ===== PAGE-HERO PHOTO (interior pages) ===== */
.page-hero-photo { margin-top: 44px; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); position: relative; z-index: 1; }
.page-hero-photo img { width: 100%; height: clamp(240px, 42vh, 460px); object-fit: cover; display: block; }

/* ===== SOCIAL PROOF ===== */
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px; }
.testimonial { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; padding: 32px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
.testimonial-quote { font-size: 17px; line-height: 1.55; margin-bottom: 24px; letter-spacing: -0.01em; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-soft); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-meta { font-size: 12px; color: var(--muted-2); margin-top: 2px; }
.stars { color: var(--accent); margin-bottom: 14px; letter-spacing: 2px; font-size: 14px; }

.trust-line { text-align: center; font-style: italic; color: var(--muted); font-size: 16px; margin: 56px auto 0; padding-top: 36px; border-top: 1px solid var(--line); max-width: 720px; line-height: 1.6; }
.trust-line strong { color: var(--text); font-style: normal; font-weight: 600; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 24px 0; cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-size: 18px; font-weight: 600; gap: 24px; }
.faq-q .plus { color: var(--accent); font-size: 28px; font-weight: 300; transition: transform 0.2s; line-height: 1; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { color: var(--muted); font-size: 15px; line-height: 1.7; margin-top: 16px; display: none; max-width: 720px; }
.faq-item.open .faq-a { display: block; }

/* ===== QUOTE / CONTACT FORM LAYOUT ===== */
.form-section { padding: 80px 0; }
.form-grid { display: grid; grid-template-columns: 1.4fr 0.85fr; gap: 56px; align-items: start; }
.form-grid .form-side { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; padding: 40px; box-shadow: var(--shadow-md); }
.form-grid .info-side h3 { font-size: 22px; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.01em; }
.form-grid .info-side p { color: var(--muted); font-size: 16px; line-height: 1.65; margin-bottom: 16px; }
.form-grid .info-side { position: sticky; top: 24px; align-self: start; }
.form-example { background: var(--bg-3); border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; margin-top: 10px; font-family: 'JetBrains Mono', monospace; font-size: 12.5px; line-height: 1.7; color: var(--muted); white-space: pre-line; }
.form-example .ex-label { display: block; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-2); margin-bottom: 6px; }
.contact-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 22px 24px; margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.contact-row { display: flex; align-items: center; gap: 14px; }
.contact-key { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted-2); letter-spacing: 0.15em; text-transform: uppercase; width: 84px; flex-shrink: 0; }
.contact-val { font-size: 15px; font-weight: 500; color: var(--text); }
.contact-val a { color: var(--accent); }
.contact-val a:hover { text-decoration: underline; }

/* ===== FINAL CTA ===== */
.final-cta { background: var(--accent); color: white; text-align: center; padding: 120px 24px; border-bottom: none; }
.final-cta .section-title { color: white; }
.final-cta-sub { font-size: 19px; opacity: 0.9; margin: 22px auto 40px; max-width: 600px; line-height: 1.55; }
.final-cta-btns { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.final-cta-btn { background: white; color: var(--accent); padding: 18px 36px; border-radius: 999px; font-weight: 700; font-size: 16px; display: inline-flex; align-items: center; gap: 10px; transition: transform 0.15s; }
.final-cta-btn:hover { transform: translateY(-2px); }
.final-cta-btn.ghost { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.4); }
.final-cta-btn.ghost:hover { background: rgba(255,255,255,0.1); }

/* ===== FOOTER ===== */
footer { background: var(--bg-3); padding: 64px 0 32px; border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.foot-logo-img { height: 68px; width: auto; display: block; margin-bottom: 4px; }
.foot-tag { color: var(--muted); font-size: 14px; max-width: 320px; line-height: 1.65; margin-top: 14px; }
.foot-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-2); margin-bottom: 20px; font-weight: 600; }
.foot-col a, .foot-col p { display: block; color: var(--muted); font-size: 14px; padding: 6px 0; transition: color 0.15s; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted-2); }
.foot-social { display: flex; gap: 12px; margin-top: 20px; }
.foot-social a { background: var(--bg-2); border: 1px solid var(--line); padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--text); transition: all 0.15s; }
.foot-social a:hover { border-color: var(--accent); color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero-grid, .waterproof-grid, .coverage-grid, .form-grid { grid-template-columns: 1fr; gap: 48px; }
  .map-wrap { min-height: 320px; }
  .services-grid, .extra-services { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Mobile dropdown menu */
  .nav { position: relative; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 4px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    z-index: 60;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; border-radius: 8px; font-size: 16px; color: var(--text); }
  .nav-links a:hover { background: var(--bg-3); }
  .nav-links a.current { color: var(--accent); border-bottom: 0; padding-bottom: 13px; }
  .nav-links-cta { display: block; background: var(--accent); color: #fff; text-align: center; font-weight: 600; margin-top: 4px; }
  .nav-links-cta:hover { background: var(--accent-2); color: #fff; }

  section { padding: 80px 0; }
  .hero { padding: 32px 0 64px; }
  .nav { padding-bottom: 48px; }
  .logo-img { height: 64px; }
  .form-grid .form-side { padding: 28px; }
  .form-grid .info-side { position: static; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .page-hero-aside { min-height: 200px; max-height: 280px; }
}
@media (max-width: 600px) {
  body { overflow-x: hidden; }
  .form-row, .form-row.three { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { flex: 1 1 100%; justify-content: center; }
  .hero h1 { font-size: clamp(40px, 11vw, 56px); }
  .page-hero h1 { font-size: clamp(34px, 9vw, 48px); }
  .section-head { margin-bottom: 40px; }
  .final-cta { padding: 72px 20px; }
  .final-cta-btns { flex-direction: column; width: 100%; }
  .final-cta-btn { justify-content: center; }
  section { padding: 64px 0; }
}

/* ===== BLOG / GUIDE ARTICLE ===== */
.post { padding: 64px 0 96px; }
.post-wrap { max-width: 760px; margin: 0 auto; }
.post-back { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 24px; display: inline-flex; gap: 8px; align-items: center; }
.post-back:hover { color: var(--accent); }
.post-meta { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted-2); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; display: flex; gap: 18px; flex-wrap: wrap; }
.post h1 { font-size: clamp(34px, 5.2vw, 52px); letter-spacing: -0.03em; line-height: 1.08; font-weight: 800; margin: 0 0 24px; }
.post h1 .red { color: var(--accent); }
.post-tldr { background: var(--bg-2); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 14px; padding: 26px 30px; margin: 0 0 44px; box-shadow: var(--shadow-sm); }
.post-tldr .post-tldr-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-2); margin-bottom: 12px; font-weight: 600; }
.post-tldr p { margin: 0; font-size: 17px; color: var(--text); line-height: 1.6; }
.post-body { font-size: 17px; line-height: 1.75; }
.post-body > p { color: var(--muted); margin: 0 0 22px; }
.post-body .lead { font-size: 20px; color: var(--text); line-height: 1.6; margin-bottom: 32px; }
.post-body h2 { font-size: clamp(25px, 3.6vw, 32px); letter-spacing: -0.02em; font-weight: 800; margin: 48px 0 16px; line-height: 1.18; }
.post-body h3 { font-size: 19px; font-weight: 700; margin: 30px 0 10px; letter-spacing: -0.01em; }
.post-body ul, .post-body ol { margin: 0 0 22px; padding: 0; list-style: none; }
.post-body ul li { position: relative; padding: 9px 0 9px 28px; color: var(--muted); border-top: 1px solid var(--line); }
.post-body ul li:first-child { border-top: 0; }
.post-body ul li::before { content: "\2192"; position: absolute; left: 0; top: 9px; color: var(--accent); font-weight: 700; }
.post-body ol { counter-reset: step; }
.post-body ol li { position: relative; padding: 10px 0 10px 38px; color: var(--muted); border-top: 1px solid var(--line); counter-increment: step; }
.post-body ol li:first-child { border-top: 0; }
.post-body ol li::before { content: counter(step); position: absolute; left: 0; top: 9px; font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--accent); font-weight: 700; }
.post-body li strong { color: var(--text); font-weight: 600; }
.post-body strong { color: var(--text); font-weight: 600; }
.post-body a { color: var(--accent); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.post-callout { background: var(--accent-soft); border: 1px solid var(--line); border-radius: 12px; padding: 22px 26px; margin: 32px 0; }
.post-callout p { margin: 0; color: var(--text); font-size: 16px; line-height: 1.62; }
.post-callout strong { color: var(--accent); }
.post-cost-table { width: 100%; border-collapse: collapse; margin: 8px 0 28px; font-size: 15px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.post-cost-table th, .post-cost-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.post-cost-table th { background: var(--bg-3); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); font-weight: 600; }
.post-cost-table td { color: var(--muted); }
.post-cost-table td strong { color: var(--text); }
.post-cost-table tr:last-child td { border-bottom: 0; }
.post-cta-inline { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: #fff !important; padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px; margin: 10px 0; text-decoration: none !important; }
.post-cta-inline:hover { background: var(--accent-2); }
.post-related { max-width: 760px; margin: 0 auto; padding: 40px 0 0; border-top: 1px solid var(--line); }
.post-related .post-tldr-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-2); margin-bottom: 18px; font-weight: 600; }
.post-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.post-related-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 20px 22px; transition: all 0.2s; box-shadow: var(--shadow-sm); }
.post-related-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.post-related-card .rc-kicker { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--accent); letter-spacing: 0.14em; text-transform: uppercase; }
.post-related-card .rc-title { font-size: 16px; font-weight: 700; margin-top: 8px; color: var(--text); letter-spacing: -0.01em; }

/* Guides hub */
.guide-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 980px; margin: 0 auto; }
.guide-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; padding: 32px; transition: all 0.2s; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.guide-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.guide-card .gc-kicker { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px; }
.guide-card h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.2; }
.guide-card p { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 20px; flex: 1; }
.guide-card .gc-link { color: var(--accent); font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }

@media (max-width: 700px) {
  .post-related-grid, .guide-list { grid-template-columns: 1fr; }
  .post { padding: 40px 0 72px; }
}
