  :root {
    --navy: #1a0a0a;
    --blue: #3d0f0f;
    --orange: #8b1a1a;
    --orange-dark: #6b1212;
    --gold: #c0c0c0;
    --white: #ffffff;
    --gray: #f4f6f9;
    --text: #2d3748;
    --text-light: #718096;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── HEADER ── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(10px);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--orange);
  }

  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 2px;
  }

  .logo span { color: var(--orange); }

  .header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .header-phone {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
  }

  .header-phone:hover { color: var(--orange); }

  .btn-primary {
    background: var(--orange);
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
  }

  .btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(139,26,26,0.4);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    background-image:
      linear-gradient(135deg, rgba(10,22,40,0.97) 0%, rgba(26,58,107,0.92) 50%, rgba(10,22,40,0.97) 100%),
      url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
  }

  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
  }

  .hero-badge {
    display: inline-block;
    background: rgba(139,26,26,0.15);
    border: 1px solid var(--orange);
    color: var(--orange);
    padding: 6px 18px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: var(--white);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  .hero h1 span { color: var(--orange); }

  .hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 300;
    max-width: 520px;
  }

  .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }

  .hero-tag {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    padding: 6px 14px;
    border-radius: 2px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-outline {
    background: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
  }

  .btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.05);
  }

  /* ── HERO FORM CARD ── */
  .hero-card {
    background: white;
    border-radius: 8px;
    padding: 36px 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    position: relative;
  }

  .hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--orange);
    border-radius: 8px 8px 0 0;
  }

  .hero-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .hero-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 24px;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color 0.2s;
    outline: none;
    background: white;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--orange);
  }

  .form-group input::placeholder { color: #a0aec0; }

  .form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-top: 8px;
  }

  .form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 12px;
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--orange);
    padding: 18px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }

  .trust-icon {
    font-size: 1.3rem;
  }

  /* ── SERVICES ── */
  .services {
    padding: 100px 40px;
    background: var(--white);
  }

  .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
  }

  .section-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
  }

  .section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    color: var(--navy);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
  }

  .services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card {
    background: var(--gray);
    border-radius: 6px;
    padding: 36px 30px;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--orange);
    transition: width 0.3s;
  }

  .service-card:hover {
    border-color: var(--orange);
    background: white;
    box-shadow: 0 10px 40px rgba(139,26,26,0.1);
    transform: translateY(-4px);
  }

  .service-card:hover::after { width: 100%; }

  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
  }

  .service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
  }

  /* ── WHY LRE ── */
  .why-lre {
    padding: 100px 40px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

  .why-lre::before {
    content: 'LRE';
    position: absolute;
    right: -20px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20rem;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    letter-spacing: -10px;
  }

  .why-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .why-lre .section-header {
    text-align: left;
    margin: 0;
  }

  .why-lre .section-label { color: var(--gold); }

  .why-lre h2 { color: var(--white); }

  .why-lre p { color: rgba(255,255,255,0.6); }

  .why-list {
    list-style: none;
    margin-top: 36px;
  }

  .why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .why-item:last-child { border-bottom: none; }

  .why-check {
    width: 28px; height: 28px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .why-item-text strong {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .why-item-text span {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .service-area-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 36px;
  }

  .service-area-box h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .city-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .city-item {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .city-item::before {
    content: '→';
    color: var(--orange);
    font-size: 0.8rem;
  }

  /* ── CTA SECTION ── */
  .cta-section {
    padding: 100px 40px;
    background: var(--gray);
    text-align: center;
  }

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

  .cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--navy);
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1;
  }

  .cta-section h2 span { color: var(--orange); }

  .cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
  }

  .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-call {
    background: var(--navy);
    color: white;
    padding: 18px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
  }

  .btn-call:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(10,22,40,0.3);
  }

  /* ── CHAT WIDGET ── */
  .chat-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
  }

  .chat-bubble {
    width: 64px; height: 64px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(139,26,26,0.5);
    transition: all 0.3s;
    animation: pulse 3s infinite;
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(139,26,26,0.5); }
    50% { box-shadow: 0 8px 50px rgba(139,26,26,0.8), 0 0 0 12px rgba(139,26,26,0.1); }
  }

  .chat-bubble:hover {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 12px 40px rgba(139,26,26,0.6);
  }

  .chat-bubble svg { width: 28px; height: 28px; fill: white; }

  .chat-window {
    position: fixed;
    bottom: 108px;
    right: 28px;
    width: 380px;
    height: 560px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9998;
    border: 1px solid rgba(0,0,0,0.08);
  }

  .chat-window.open { display: flex; animation: slideUp 0.3s ease; }

  @keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .chat-header {
    background: var(--navy);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .chat-avatar {
    width: 42px; height: 42px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
  }

  .chat-header-info h4 {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
  }

  .chat-header-info span {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
  }

  .chat-online {
    width: 8px; height: 8px;
    background: #48bb78;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    animation: blink 2s infinite;
  }

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

  .chat-close {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    padding: 4px;
  }

  .chat-close:hover { color: white; }

  .chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #f8fafc;
  }

  .msg {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: msgIn 0.2s ease;
  }

  @keyframes msgIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .msg-bot {
    background: white;
    color: var(--text);
    border-radius: 4px 16px 16px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    align-self: flex-start;
  }

  .msg-user {
    background: var(--navy);
    color: white;
    border-radius: 16px 4px 16px 16px;
    align-self: flex-end;
  }

  .msg-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
  }

  .msg-option {
    background: white;
    border: 2px solid var(--orange);
    color: var(--orange);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
  }

  .msg-option:hover {
    background: var(--orange);
    color: white;
  }

  .typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
    background: white;
    border-radius: 4px 16px 16px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    align-self: flex-start;
    width: fit-content;
  }

  .typing span {
    width: 7px; height: 7px;
    background: #a0aec0;
    border-radius: 50%;
    animation: bounce 1.2s infinite;
  }

  .typing span:nth-child(2) { animation-delay: 0.2s; }
  .typing span:nth-child(3) { animation-delay: 0.4s; }

  @keyframes bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); background: var(--orange); }
  }

  .chat-input-area {
    padding: 14px 16px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
    background: white;
  }

  .chat-input {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
  }

  .chat-input:focus { border-color: var(--orange); }

  .chat-send {
    width: 42px; height: 42px;
    background: var(--orange);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
  }

  .chat-send:hover { background: var(--orange-dark); transform: scale(1.05); }
  .chat-send svg { width: 18px; height: 18px; fill: white; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    padding: 40px;
    text-align: center;
    border-top: 2px solid var(--orange);
  }

  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 10px;
  }

  .footer-logo span { color: var(--orange); }

  footer p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-card { padding: 28px 22px; margin-top: 30px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-inner { grid-template-columns: 1fr; gap: 40px; }
    .trust-bar { gap: 24px; }
    header { padding: 14px 20px; }
    .hero { padding: 100px 20px 80px; }
    .services, .why-lre, .cta-section { padding: 60px 20px; }
    .chat-window { width: calc(100vw - 40px); right: 20px; }
  }

  @media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .header-cta .btn-primary { display: none; }
  }
.slot-btn {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    padding: 12px 8px;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-size: 0.82rem;
    color: #2d3748;
    line-height: 1.4;
    transition: all 0.2s;
    text-align: center;
  }
  .slot-btn:hover {
    border-color: #8b1a1a;
    background: #fff5f5;
    color: #8b1a1a;
    transform: translateY(-2px);
  }
  .slot-btn strong { color: #1a0a0a; font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════
   MULTI-PAGE ADDITIONS (nav, breadcrumb, content sections, FAQ,
   cost drivers, local links, footer sitemap) — shared by all pages.
   Uses the existing tokens/fonts only; no restyle of existing look.
   ═══════════════════════════════════════════════════════════ */

/* ── MAIN NAV (dropdowns) ── */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a,
.nav-dropbtn {
  color: rgba(255,255,255,0.85);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.4px;
  text-decoration: none; background: none; border: none; cursor: pointer;
  padding: 10px 12px; border-radius: 4px;
  transition: color 0.2s; white-space: nowrap;
}
.main-nav > a:hover,
.nav-dropbtn:hover,
.nav-dropdown:focus-within .nav-dropbtn { color: var(--orange); }
.nav-dropdown { position: relative; }
.nav-menu {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: rgba(10,22,40,0.98);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--orange);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  display: none; flex-direction: column; padding: 8px 0; z-index: 1001;
}
.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu { display: flex; }
.nav-menu a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  padding: 10px 20px; font-size: 0.9rem; transition: all 0.15s; white-space: nowrap;
}
.nav-menu a:hover { background: rgba(139,26,26,0.3); color: #fff; }

/* mobile nav toggle (hamburger) */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  z-index: 1002;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: #fff; margin: 6px 0;
  transition: transform 0.25s, opacity 0.25s;
}
header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 0; right: 0; height: 100dvh; width: 300px; max-width: 86vw;
    background: rgba(8,18,34,0.99); flex-direction: column; align-items: stretch;
    padding: 84px 16px 24px; gap: 2px; overflow-y: auto;
    transform: translateX(100%); transition: transform 0.3s ease;
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  }
  header.nav-open .main-nav { transform: translateX(0); }
  .main-nav > a { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-dropbtn {
    width: 100%; text-align: left; padding: 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06); color: var(--gold);
    text-transform: uppercase; font-size: 0.82rem; letter-spacing: 1.5px;
  }
  .nav-menu {
    position: static; display: flex; box-shadow: none; border: none;
    border-radius: 0; background: transparent; min-width: 0; padding: 0 0 8px;
  }
  .nav-menu a { padding: 10px 12px 10px 24px; }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: 1200px; margin: 0 auto; padding: 14px 40px 0;
  font-size: 0.82rem; color: var(--text-light);
}
.breadcrumb a { color: var(--orange); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #a0aec0; }

/* ── GENERIC CONTENT SECTION ── */
.content-section { padding: 84px 40px; background: var(--white); }
.content-section.alt { background: var(--gray); }
.content-inner { max-width: 880px; margin: 0 auto; }
.content-inner.wide { max-width: 1100px; }
.content-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem); color: var(--navy);
  line-height: 1.02; letter-spacing: 1.5px; margin-bottom: 20px;
}
.content-inner h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1.35rem; color: var(--navy); text-transform: uppercase;
  letter-spacing: 0.6px; margin: 28px 0 10px;
}
.prose p { font-size: 1.05rem; line-height: 1.75; color: #3a4658; margin-bottom: 18px; }
.prose strong { color: var(--navy); }
.prose ul { margin: 4px 0 20px; padding-left: 22px; }
.prose li { font-size: 1.03rem; line-height: 1.7; color: #3a4658; margin-bottom: 8px; }

/* ── PROCESS STEPS ── */
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
.step {
  background: var(--white); border: 2px solid #e8ecf2; border-radius: 8px;
  padding: 26px 24px; position: relative;
}
.content-section.alt .step { background: #fff; }
.step-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: #fff;
  background: var(--orange); width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.step h3 { margin: 0 0 8px; }
.step p { font-size: 0.96rem; line-height: 1.6; color: var(--text-light); }

/* ── COST DRIVERS ── */
.cost-driver {
  display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid #e8ecf2;
}
.cost-driver:last-child { border-bottom: none; }
.cost-driver .cd-icon { font-size: 1.5rem; flex-shrink: 0; }
.cost-driver strong { display: block; color: var(--navy); font-size: 1.05rem; margin-bottom: 4px; }
.cost-driver span { color: var(--text-light); font-size: 0.96rem; line-height: 1.6; }
.cost-callout {
  background: #fff5f5; border-left: 4px solid var(--orange);
  padding: 20px 24px; border-radius: 0 8px 8px 0; margin-top: 28px;
}
.cost-callout p { margin: 0; color: var(--navy); font-size: 1rem; line-height: 1.6; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid #e2e8f0; padding: 22px 0; }
.faq-item h3 {
  font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 1.12rem;
  color: var(--navy); text-transform: none; letter-spacing: 0; margin: 0 0 10px;
}
.faq-item p { font-size: 1rem; line-height: 1.7; color: #3a4658; margin: 0; }

/* ── LOCAL / SIBLING LINKS ── */
.local-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.local-link {
  display: block; background: var(--white); border: 2px solid #e8ecf2;
  border-radius: 8px; padding: 20px; text-decoration: none; transition: all 0.2s;
}
.local-link:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(139,26,26,0.1); }
.local-link strong { display: block; color: var(--navy); font-size: 1.05rem; margin-bottom: 4px; }
.local-link span { color: var(--text-light); font-size: 0.9rem; }

/* ── REP CREDENTIAL LINE ── */
.rep-line {
  max-width: 1100px; margin: 0 auto; padding: 22px 40px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px;
  font-size: 0.9rem; color: var(--text-light);
}
.rep-line strong { color: var(--navy); }

/* ── FOOTER SITEMAP ── */
.footer-nav {
  max-width: 1100px; margin: 0 auto 32px; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: left;
}
.footer-nav h4 {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--gold); font-size: 0.95rem; margin-bottom: 14px;
}
.footer-nav a {
  display: block; color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.9rem; padding: 5px 0; transition: color 0.15s;
}
.footer-nav a:hover { color: #fff; }

@media (max-width: 900px) {
  .content-section { padding: 56px 20px; }
  .breadcrumb { padding: 14px 20px 0; }
  .steps { grid-template-columns: 1fr; }
  .local-links { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 24px; }
  .rep-line { padding: 20px; }
}

/* ── clickable service cards (homepage hub) ── */
a.service-card { text-decoration: none; color: inherit; display: block; }
.card-more {
  display: inline-block; margin-top: 14px; color: var(--orange);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.3px;
}
