    @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@700;800&display=swap");

    :root {
      --brand-primary-hover: #1d4ed8;
      --border: #dbe3ec;
      --ink-soft: #475569;
      --max: 1120px;
      --shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: "Inter", sans-serif;
      line-height: 1.5;
      padding-bottom: 78px;
    }

    .container { width: min(91vw, var(--max)); margin-inline: auto; }

    h1, h2, h3 {
      font-family: "Montserrat", sans-serif;
      line-height: 1.05;
      color: var(--text);
    }

    h1 {
      max-width: 18ch;
      font-size: clamp(2.2rem, 6vw, 4.1rem);
      font-weight: 800;
      letter-spacing: -0.055em;
    }

    h2 {
      font-size: clamp(1.65rem, 4vw, 2.45rem);
      letter-spacing: -0.035em;
    }

    h3 { font-size: 1.06rem; }

    p { color: var(--ink-soft); }

    a { color: var(--brand-primary); }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, 0.94);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(12px);
    }

    .topbar-inner {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand img {
      width: clamp(180px, 28vw, 290px);
      height: 54px;
      object-fit: contain;
      display: block;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 1.15rem;
      font-weight: 700;
      font-size: 0.94rem;
    }

    .nav a {
      color: var(--text);
      text-decoration: none;
    }

    .nav a:hover { color: var(--brand-primary); }

    .actions {
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }

    .phone {
      color: var(--brand-primary);
      font-weight: 800;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      border-radius: var(--radius);
      border: 1px solid transparent;
      padding: 0.78rem 1.05rem;
      background: var(--brand-primary);
      color: var(--white);
      font-weight: 800;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn:hover { background: var(--brand-primary-hover); }

    .btn-secondary {
      background: var(--white);
      color: var(--text);
      border-color: var(--border);
    }

    .hero {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(248, 250, 252, 1) 0%, rgba(248, 250, 252, 0.97) 42%, rgba(248, 250, 252, 0.28) 76%),
        url("./garage-door-2.jpg") center right / cover no-repeat;
      border-bottom: 1px solid var(--border);
    }

    .hero-inner {
      min-height: 420px;
      display: grid;
      align-items: center;
      padding: 4rem 0;
    }

    .hero-card { max-width: 760px; }

    .eyebrow {
      display: inline-flex;
      margin-bottom: 1rem;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: var(--white);
      color: var(--brand-primary);
      padding: 0.45rem 0.65rem;
      font-weight: 800;
      font-size: 0.9rem;
    }

    .hero-sub {
      max-width: 590px;
      margin-top: 1.1rem;
      font-size: clamp(1.04rem, 2vw, 1.25rem);
      color: #334155;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-top: 1.55rem;
    }

    .crumbs {
      margin-bottom: 0.85rem;
      font-size: 0.9rem;
      font-weight: 700;
    }

    .crumbs a {
      color: var(--brand-primary);
      text-decoration: none;
    }

    .crumbs a:hover { text-decoration: underline; }

    .crumbs span { color: var(--ink-soft); }

    .section { padding: 3.2rem 0; }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }

    .section-head p { max-width: 520px; }

    .article-grid {
      display: grid;
      grid-template-columns: 1fr 0.72fr;
      gap: 1.25rem;
      align-items: start;
    }

    .prose {
      display: grid;
      gap: 0.9rem;
    }

    .prose p,
    .prose li {
      font-size: 1.02rem;
      color: var(--ink-soft);
    }

    .prose a {
      color: var(--brand-primary);
      font-weight: 800;
      text-decoration: none;
    }

    .prose a:hover { text-decoration: underline; }

    .sign-list,
    .next-list {
      display: grid;
      gap: 0.7rem;
      margin-top: 0.35rem;
    }

    .next-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .sign-list div,
    .next-list div {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      padding: 0.95rem 1rem;
    }

    .sign-list strong,
    .next-list strong {
      display: block;
      color: var(--text);
      font-family: "Montserrat", sans-serif;
      font-size: 1.02rem;
      margin-bottom: 0.2rem;
    }

    .next-list b {
      display: inline-grid;
      place-items: center;
      width: 2rem;
      height: 2rem;
      margin-bottom: 0.7rem;
      border-radius: 999px;
      background: var(--brand-primary);
      color: var(--white);
    }

    .callout {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow);
      padding: 1.2rem;
    }

    .callout h2 {
      font-size: 1.35rem;
      margin-bottom: 0.55rem;
    }

    .callout p { margin-bottom: 0.7rem; }

    .areas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin-top: 1.1rem;
    }

    .areas span {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      padding: 0.55rem 0.75rem;
      font-weight: 800;
    }

    .faq {
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 0.72fr 1fr;
      gap: 1.2rem;
      align-items: start;
    }

    .faq-list { display: grid; gap: 0.7rem; }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--bg);
      padding: 1rem;
    }

    .faq-item h3 {
      font-size: 1rem;
      letter-spacing: -0.015em;
    }

    .faq-item p {
      margin-top: 0.45rem;
      font-size: 0.95rem;
    }

    .faq-item a {
      color: var(--brand-primary);
      font-weight: 800;
      text-decoration: none;
    }

    .faq-item a:hover { text-decoration: underline; }

    .final { margin-bottom: 1rem; }

    .final-box {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 1rem;
      align-items: center;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow);
      padding: 1.35rem;
    }

    .sticky-mobile {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 30;
      display: none;
      grid-template-columns: 1fr;
      gap: 0.55rem;
      border-top: 1px solid var(--border);
      background: var(--white);
      padding: 0.75rem;
      box-shadow: 0 -8px 20px rgba(15, 23, 42, 0.08);
    }

    .footer {
      border-top: 1px solid var(--border);
      background: var(--white);
      padding: 1.35rem 0 calc(1.35rem + 78px);
    }

    .footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      color: var(--ink-soft);
      font-size: 0.95rem;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      flex-wrap: wrap;
    }

    .footer a {
      color: var(--brand-primary);
      font-weight: 800;
      text-decoration: none;
    }

    .footer a:hover { text-decoration: underline; }

    @media (max-width: 1100px) {
      .next-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 820px) {
      .topbar-inner { min-height: 68px; }
      .brand img { width: 185px; height: 46px; }
      .nav, .phone { display: none; }
      .actions .btn { min-height: 42px; padding: 0.62rem 0.72rem; font-size: 0.9rem; }

      .hero {
        background:
          linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(248, 250, 252, 0.97) 54%, rgba(248, 250, 252, 0.62) 100%),
          url("./garage-door-2.jpg") center bottom / cover no-repeat;
      }

      .hero-inner {
        min-height: 390px;
        align-items: start;
        padding: 3.25rem 0 4.5rem;
      }

      h1 { max-width: 12ch; font-size: clamp(2.3rem, 12vw, 3.4rem); }
      .hero-sub { max-width: 22rem; font-size: 1rem; }
      .hero-buttons { display: none; }
      .article-grid, .faq-grid, .next-grid { grid-template-columns: 1fr; }
      .section { padding: 2.15rem 0; }
      .section-head { display: block; }
      .section-head p { margin-top: 0.55rem; }
      .final-box { grid-template-columns: 1fr; padding: 1rem; }
      .final-box .hero-buttons { display: flex; }
      .sticky-mobile { display: grid; }
    }

    .band {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .next-grid-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.8rem;
    }

    a.guide-card {
      display: grid;
      gap: 0.35rem;
      align-content: start;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      padding: 1rem;
      text-decoration: none;
    }

    a.guide-card:hover {
      border-color: rgba(37, 99, 235, 0.42);
      background: #fbfdff;
    }

    a.guide-card strong {
      color: var(--text);
      font-family: "Montserrat", sans-serif;
      font-size: 1.02rem;
    }

    a.guide-card span {
      color: var(--ink-soft);
      font-size: 0.94rem;
      font-weight: 500;
    }

    a.guide-card em {
      color: var(--brand-primary);
      font-style: normal;
      font-weight: 800;
      font-size: 0.92rem;
    }

    @media (max-width: 1100px) {
      .next-grid-3 { grid-template-columns: 1fr 1fr; }
      .related-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 820px) {
      .next-grid-3, .related-grid { grid-template-columns: 1fr; }
    }

