
  :root {
    --red: #B22234;
    --navy: #1B2A4A;
    --steel: #2C3E6B;
    --light: #F4F6FA;
    --white: #FFFFFF;
    --gray: #6B7280;
    --border: #D1D5DB;
    --green: #065F46;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'Source Sans 3', sans-serif; background: var(--light); color: var(--navy); overflow-x: hidden; }

  /* HEADER */
  header { background: var(--navy); position: relative; overflow: hidden; }
  .header-stripe { position: absolute; top: 0; left: 0; right: 0; height: 6px;
    background: linear-gradient(90deg, var(--red) 33%, var(--white) 33%, var(--white) 66%, var(--navy) 66%); }
  .header-inner { max-width: 1100px; margin: 0 auto; padding: 36px 32px 28px;
    display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
  .logo-svg { width: 110px; height: 110px; flex-shrink: 0; }
  .header-text h1 { font-family: 'Oswald', sans-serif; font-size: 2.4rem; font-weight: 700;
    color: var(--red); letter-spacing: 0.06em; line-height: 1; }
  .header-text h2 { font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 400;
    color: var(--white); letter-spacing: 0.12em; margin-top: 4px; }
  .header-text .tagline { margin-top: 8px; font-size: 0.9rem; color: #9CA3AF; letter-spacing: 0.04em; }
  .header-contact { margin-left: auto; text-align: right; color: #CBD5E1; font-size: 0.88rem; line-height: 1.8; }
  .header-contact a { color: var(--white); text-decoration: none; }
  .header-contact a:hover { text-decoration: underline; }

  /* NAV */
  nav { background: rgba(15,24,41,0.97); border-bottom: 2px solid var(--red);
    position: sticky; top: 0; z-index: 100; display: flex; justify-content: center; }
  nav a { font-family: 'Oswald', sans-serif; font-size: 0.85rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: #94A3B8; text-decoration: none;
    padding: 14px 22px; border-right: 1px solid rgba(255,255,255,0.06); transition: color 0.2s, background 0.2s; }
  nav a:hover { color: var(--white); background: rgba(178,34,52,0.15); }

  /* HERO */
  .hero { background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 50%, #1a1a2e 100%);
    position: relative; overflow: hidden; padding: 72px 32px; text-align: center; }
  .hero::before { content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg,rgba(255,255,255,.02) 0,rgba(255,255,255,.02) 1px,transparent 1px,transparent 40px),
    repeating-linear-gradient(-45deg,rgba(255,255,255,.02) 0,rgba(255,255,255,.02) 1px,transparent 1px,transparent 40px); }
  .hero-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
  .hero-badge { display: inline-block; background: var(--red); color: var(--white);
    font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.18em;
    padding: 5px 18px; margin-bottom: 20px; text-transform: uppercase; border-radius: 2px; }
  .hero h2 { font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
  .hero h2 span { color: var(--red); }
  .hero p { font-size: 1.1rem; color: #CBD5E1; max-width: 580px; margin: 0 auto 32px; line-height: 1.7; }
  .hero-cta { display: inline-block; background: var(--red); color: var(--white);
    font-family: 'Oswald', sans-serif; font-size: 1.05rem; letter-spacing: 0.08em;
    padding: 14px 40px; border-radius: 3px; text-decoration: none; transition: background .2s, transform .2s; }
  .hero-cta:hover { background: #8B1A27; transform: translateY(-2px); }

  /* STATS */
  .stats-bar { background: var(--red); display: flex; justify-content: center; flex-wrap: wrap; }
  .stat { flex: 1; min-width: 180px; padding: 20px 24px; text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2); color: var(--white); }
  .stat:last-child { border-right: none; }
  .stat .num { font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: 700; }
  .stat .lbl { font-size: 0.8rem; letter-spacing: 0.1em; opacity: .85; text-transform: uppercase; margin-top: 2px; }

  /* PAYMENT BANNER */
  .payment-banner { background: linear-gradient(90deg, var(--navy), var(--steel));
    color: var(--white); text-align: center; padding: 20px 32px; font-size: 0.95rem; }
  .payment-banner strong { color: #FCD34D; }

  /* SECTIONS */
  section { padding: 64px 32px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label { font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.2em;
    color: var(--red); text-transform: uppercase; margin-bottom: 8px; }
  .section-title { font-family: 'Oswald', sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700; color: var(--navy); margin-bottom: 40px;
    border-bottom: 3px solid var(--red); padding-bottom: 12px; display: inline-block; }

  /* SERVICES */
  .services-bg { background: var(--white); }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
  .service-card { border: 1px solid var(--border); border-top: 4px solid var(--navy);
    background: var(--light); padding: 24px 20px; border-radius: 2px;
    transition: border-top-color .2s, transform .2s, box-shadow .2s; }
  .service-card:hover { border-top-color: var(--red); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(27,42,74,.12); }
  .service-icon { font-size: 2rem; margin-bottom: 12px; }
  .service-card h3 { font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 600;
    color: var(--navy); margin-bottom: 6px; letter-spacing: .04em; }
  .service-card p { font-size: .87rem; color: var(--gray); line-height: 1.6; }

  /* HOW IT WORKS */
  .how-bg { background: var(--navy); }
  .how-bg .section-title { color: var(--white); }
  .how-bg .section-label { color: #F87171; }
  .steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .step { padding: 32px 28px; border-right: 1px solid rgba(255,255,255,.1); }
  .step:last-child { border-right: none; }
  .step-num { font-family: 'Oswald', sans-serif; font-size: 3.5rem; font-weight: 700;
    color: rgba(255,255,255,.08); line-height: 1; margin-bottom: 8px; }
  .step h3 { font-family: 'Oswald', sans-serif; font-size: 1.05rem; color: var(--white); margin-bottom: 8px; letter-spacing: .05em; }
  .step p { font-size: .88rem; color: #94A3B8; line-height: 1.65; }
  .step-icon { font-size: 1.6rem; margin-bottom: 10px; }

  /* FORM SECTION */
  .form-bg { background: var(--light); }
  .form-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
  .form-info h3 { font-family: 'Oswald', sans-serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 16px; }
  .form-info p { font-size: .95rem; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
  .info-box { background: var(--navy); color: var(--white); padding: 24px; border-radius: 4px; margin-top: 24px; }
  .info-box h4 { font-family: 'Oswald', sans-serif; font-size: .9rem; letter-spacing: .12em;
    color: var(--red); text-transform: uppercase; margin-bottom: 12px; }
  .info-box p, .info-box a { font-size: .9rem; color: #CBD5E1; line-height: 1.9; text-decoration: none; }
  .info-box a:hover { color: var(--white); }

  /* FORM */
  .estimate-form { background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--red);
    padding: 32px; border-radius: 2px; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
  .estimate-form h3 { font-family: 'Oswald', sans-serif; font-size: 1.3rem; color: var(--navy);
    margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }

  /* Section divider within form */
  .form-section-head { font-family: 'Oswald', sans-serif; font-size: 0.78rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--white); background: var(--navy);
    padding: 8px 14px; margin: 28px -32px 20px; border-left: 4px solid var(--red); }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { margin-bottom: 16px; }
  label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy);
    letter-spacing: .05em; text-transform: uppercase; margin-bottom: 5px; }
  label .opt { font-weight: 400; color: var(--gray); text-transform: none; letter-spacing: 0; font-size: .78rem; }
  input, select, textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--border);
    border-radius: 3px; font-family: 'Source Sans 3', sans-serif; font-size: .95rem;
    color: var(--navy); background: var(--light); transition: border-color .2s, box-shadow .2s; outline: none; }
  input:focus, select:focus, textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,42,74,.1); background: var(--white); }
  textarea { resize: vertical; min-height: 100px; }

  /* Upload areas */
  .upload-area { border: 2px dashed var(--border); border-radius: 3px; padding: 22px;
    text-align: center; cursor: pointer; background: var(--light);
    transition: border-color .2s, background .2s; position: relative; }
  .upload-area:hover { border-color: var(--navy); background: #EEF2FF; }
  .upload-area input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
  .upload-icon { font-size: 1.8rem; margin-bottom: 6px; }
  .upload-area p { font-size: .82rem; color: var(--gray); line-height: 1.5; }
  .upload-area strong { color: var(--navy); }

  /* Logo preview */
  #logoPreview { display: none; margin-top: 12px; text-align: center; }
  #logoPreview img { max-height: 80px; max-width: 220px; border: 1px solid var(--border);
    border-radius: 4px; padding: 6px; background: white; object-fit: contain; }
  #logoPreview p { font-size: .78rem; color: var(--green); margin-top: 4px; }

  .upload-area.logo-zone { border-color: #6366F1; background: #F5F3FF; }
  .upload-area.logo-zone:hover { background: #EDE9FE; border-color: #4F46E5; }

  /* Address fields */
  .addr-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 10px; }

  .submit-btn { width: 100%; margin-top: 20px; padding: 14px; background: var(--red);
    color: var(--white); border: none; border-radius: 3px; font-family: 'Oswald', sans-serif;
    font-size: 1.1rem; letter-spacing: .1em; cursor: pointer; transition: background .2s, transform .2s; }
  .submit-btn:hover { background: #8B1A27; transform: translateY(-1px); }
  .form-note { margin-top: 12px; font-size: .8rem; color: var(--gray); text-align: center; line-height: 1.6; }

  .success-msg { display: none; background: #D1FAE5; border: 1px solid #34D399;
    border-radius: 4px; padding: 24px; text-align: center; color: #065F46; margin-top: 16px; font-size: .95rem; line-height: 1.7; }
  .success-msg strong { font-size: 1.05rem; }

  /* FOOTER */
  footer { background: #0F1829; color: #64748B; text-align: center; padding: 32px; font-size: .85rem; }
  footer strong { color: var(--white); }
  footer a { color: var(--white); text-decoration: none; }

  /* RESPONSIVE */
  @media(max-width: 900px) { .form-layout { grid-template-columns: 1fr; } }
  @media(max-width: 600px) {
    .header-inner { flex-direction: column; gap: 16px; }
    .header-contact { margin-left: 0; text-align: center; }
    .steps { grid-template-columns: 1fr; }
    .step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
    nav a { padding: 12px 10px; font-size: .72rem; letter-spacing: .07em; }
    .form-row, .addr-grid { grid-template-columns: 1fr; }
    .form-section-head { margin: 28px -20px 20px; }
    .estimate-form { padding: 20px; }
  }


  /* ============================================================
     ADDITIONS FOR SEO CONTENT PAGES (pillar / trade / service)
     ============================================================ */

  /* Breadcrumbs */
  .breadcrumb { max-width: 1100px; margin: 0 auto; padding: 14px 32px;
    font-size: .8rem; color: var(--gray); letter-spacing: .03em; }
  .breadcrumb a { color: var(--steel); text-decoration: none; }
  .breadcrumb a:hover { color: var(--red); text-decoration: underline; }
  .breadcrumb span { color: var(--gray); }

  /* Sub-page hero (shorter than the homepage hero) */
  .subhero { background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 55%, #1a1a2e 100%);
    position: relative; overflow: hidden; padding: 56px 32px; }
  .subhero::before { content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg,rgba(255,255,255,.02) 0,rgba(255,255,255,.02) 1px,transparent 1px,transparent 40px),
    repeating-linear-gradient(-45deg,rgba(255,255,255,.02) 0,rgba(255,255,255,.02) 1px,transparent 1px,transparent 40px); }
  .subhero-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
  .subhero .eyebrow { font-family: 'Oswald', sans-serif; font-size: .75rem; letter-spacing: .2em;
    color: #F87171; text-transform: uppercase; margin-bottom: 10px; }
  .subhero h1 { font-family: 'Oswald', sans-serif; font-size: clamp(1.8rem, 4.5vw, 2.9rem);
    font-weight: 700; color: var(--white); line-height: 1.12; max-width: 820px; }
  .subhero h1 span { color: var(--red); }
  .subhero .lead { font-size: 1.08rem; color: #CBD5E1; max-width: 700px; margin-top: 16px; line-height: 1.7; }
  .subhero .subhero-cta { display: inline-block; margin-top: 26px; background: var(--red); color: var(--white);
    font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: .08em;
    padding: 13px 36px; border-radius: 3px; text-decoration: none; transition: background .2s, transform .2s; }
  .subhero .subhero-cta:hover { background: #8B1A27; transform: translateY(-2px); }

  /* Prose content area */
  .content-bg { background: var(--white); }
  .prose { max-width: 760px; margin: 0 auto; }
  .prose h2 { font-family: 'Oswald', sans-serif; font-size: 1.5rem; color: var(--navy);
    margin: 36px 0 14px; letter-spacing: .03em; }
  .prose h2:first-child { margin-top: 0; }
  .prose p { font-size: 1rem; color: #374151; line-height: 1.8; margin-bottom: 18px; }
  .prose ul { margin: 0 0 18px 0; padding-left: 0; list-style: none; }
  .prose ul li { position: relative; padding-left: 26px; margin-bottom: 10px;
    font-size: 1rem; color: #374151; line-height: 1.65; }
  .prose ul li::before { content: '▸'; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 700; }
  .prose strong { color: var(--navy); }

  /* Inline highlight / value-prop callout */
  .callout { background: var(--light); border-left: 4px solid var(--red);
    padding: 20px 24px; border-radius: 0 4px 4px 0; margin: 28px 0; }
  .callout p { margin: 0; font-size: .98rem; color: var(--navy); line-height: 1.7; }

  /* Mid-page CTA strip */
  .cta-strip { background: var(--red); text-align: center; padding: 40px 32px; }
  .cta-strip h3 { font-family: 'Oswald', sans-serif; font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--white); margin-bottom: 18px; letter-spacing: .03em; }
  .cta-strip a { display: inline-block; background: var(--white); color: var(--red);
    font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: .08em;
    padding: 13px 38px; border-radius: 3px; text-decoration: none; transition: background .2s, transform .2s; }
  .cta-strip a:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

  /* Related trades / internal-link grid */
  .related-bg { background: var(--light); }
  .related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
  .related-card { display: block; border: 1px solid var(--border); border-left: 4px solid var(--navy);
    background: var(--white); padding: 18px 20px; border-radius: 2px; text-decoration: none;
    transition: border-left-color .2s, transform .2s, box-shadow .2s; }
  .related-card:hover { border-left-color: var(--red); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(27,42,74,.1); }
  .related-card h4 { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600;
    color: var(--navy); letter-spacing: .03em; margin-bottom: 4px; }
  .related-card span { font-size: .82rem; color: var(--gray); }

  /* Dropdown nav for Trades */
  nav { position: sticky; align-items: stretch; }
  /* Make top-level links AND the Trades wrapper align identically (vertically centered) */
  nav > a, nav > .nav-item { display: flex; align-items: center; }
  .nav-item { position: relative; }
  .nav-item > a { display: flex; align-items: center; }
  .nav-dropdown { display: none; position: absolute; top: 100%; left: 0;
    background: rgba(15,24,41,0.99); border: 1px solid rgba(255,255,255,.08);
    border-top: 2px solid var(--red); min-width: 240px; z-index: 200; box-shadow: 0 12px 30px rgba(0,0,0,.35); }
  .nav-item:hover .nav-dropdown { display: block; }
  .nav-dropdown a { display: block; border-right: none; border-bottom: 1px solid rgba(255,255,255,.05);
    padding: 11px 18px; font-size: .78rem; }
  .nav-dropdown a:last-child { border-bottom: none; }

  @media(max-width: 700px) {
    .nav-dropdown { position: static; display: none; min-width: 0; }
    .nav-item:hover .nav-dropdown { display: none; }
  }
