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


  :root {
    --navy: #222222;
    --navy-mid: #2D2D2D;
    --navy-light: #3A3A3A;
    --amber: #e30613;
    --amber-dark: #c0000c;
    --amber-pale: #FDEDEA;
    --white: #F2F2F2;
    --off-white: #EBEBEB;
    --light: #E5E5E5;
    --text: #1C1C1C;
    --muted: #4A4A4A;
    --border: #E0E0E0;
    --success: #1A7A4A;
    --radius: 10px;
    --radius-lg: 16px;
  }


  html { scroll-behavior: smooth; }

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


  /* ─── TOP BAR ─────────────────────────────────────── */
  .topbar {
    background: #1C1C1C;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  .topbar a { color: var(--amber); text-decoration: none; font-weight: 600; }

  .topbar-left { display: flex; align-items: center; gap: 20px; }

  .topbar-item { display: flex; align-items: center; gap: 6px; }

  .topbar-item svg { width: 14px; height: 14px; flex-shrink: 0; }


  /* ─── NAV ─────────────────────────────────────────── */
  nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 170px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(11,30,61,0.07);
  }


  .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

  .logo-bolt {
    width: 52px; height: 38px;
    background: #1C1C1C;
    border-radius: 50%;
    border: 2.5px solid #FFFFFF;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .logo-bolt svg { width: 20px; height: 20px; }

  .logo-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: 0.01em;
  }

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

  .logo-sub { font-size: 11px; color: #3D3D3D; font-weight: 400; letter-spacing: 0.05em; }


  .nav-links { display: flex; align-items: center; gap: 4px; }

  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #3D3D3D;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
  }

  .nav-links a:hover { color: var(--navy); background: var(--light); }


  .nav-cta {
    background: var(--amber);
    color: var(--navy) !important;
    font-weight: 600 !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    transition: background 0.15s !important;
  }

  .nav-cta:hover { background: var(--amber-dark) !important; color: var(--white) !important; }


  .nav-phone {
    display: flex; align-items: center; gap: 8px;
    background: #F2F2F2;
    color: #222222 !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
  }

  .nav-phone:hover { background: var(--navy-mid) !important; }

  .nav-phone svg { width: 16px; height: 16px; }


  /* ─── MOBILE NAV (hamburger + drawer) ──────────────── */
  .hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 300;
    flex-shrink: 0;
  }

  .hamburger-btn span {
    display: block;
    width: 26px; height: 3px;
    background: #222222;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .hamburger-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }

  .hamburger-btn.open span:nth-child(2) { opacity: 0; }

  .hamburger-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav-close-btn { display: none; }


  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 250;
  }

  .nav-overlay.open { display: block; }


  /* ─── HERO ────────────────────────────────────────── */
  .hero {
    background: #F2F2F2;
    padding: 72px 24px 0;
    overflow: hidden;
    position: relative;
  }


  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(
      45deg,
      var(--white) 0, var(--white) 1px,
      transparent 0, transparent 50%
    );
    background-size: 32px 32px;
  }


  .hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: end;
  }


  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--amber-pale);
    border: 1px solid rgba(227,6,19,0.3);
    color: var(--amber);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .hero-badge svg { width: 12px; height: 12px; }


  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    color: #222222;
    line-height: 1.0;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--amber);
  }


  .hero-desc {
    font-size: 17px;
    color: #4A4A4A;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 32px;
  }


  .hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }


  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--amber);
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
    border: none; cursor: pointer;
  }

  .btn-primary:hover { background: var(--amber-dark); color: var(--white); }

  .btn-primary svg { width: 18px; height: 18px; }


  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: #222222;
    font-weight: 500;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid #D0D0D0;
    transition: border-color 0.15s, background 0.15s;
    cursor: pointer;
  }

  .btn-ghost:hover { border-color: #666666; background: #F5F5F5; }

  .btn-ghost svg { width: 18px; height: 18px; }


  .hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-trust-item { display: flex; align-items: center; gap: 8px; }

  .trust-icon {
    width: 32px; height: 32px;
    background: #F5F5F5;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .trust-icon svg { width: 16px; height: 16px; color: var(--amber); }

  .trust-text { font-size: 13px; color: #5A5A5A; line-height: 1.3; }

  .trust-text strong { display: block; color: #222222; font-size: 14px; }


  /* ─── HERO FORM CARD ──────────────────────────────── */
  .hero-form-card {
    background: var(--white);
    border-radius: 16px 16px 0 0;
    padding: 28px;
    animation: slideUp 0.5s ease both;
  }

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


  .form-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }

  .form-sub { font-size: 13px; color: #3D3D3D; margin-bottom: 20px; }


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

  .form-group label { display: block; font-size: 12px; font-weight: 600; color: #3D3D3D; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.04em; }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.15s;
    outline: none;
  }

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

  .form-group textarea { resize: vertical; min-height: 72px; }


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


  .form-submit {
    width: 100%;
    background: var(--amber);
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 13px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.15s;
    margin-top: 4px;
  }

  .form-submit:hover { background: var(--amber-dark); color: var(--white); }

  .form-submit svg { width: 18px; height: 18px; }


  .form-note { font-size: 11px; color: #3D3D3D; text-align: center; margin-top: 8px; }


  /* ─── TRUST BAR ───────────────────────────────────── */
  .trust-bar {
    background: var(--amber);
    padding: 16px 24px;
  }

  .trust-bar-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .trust-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #222222;
  }

  .trust-bar-item svg { width: 18px; height: 18px; flex-shrink: 0; }


  /* ─── SECTIONS ────────────────────────────────────── */
  section { padding: 80px 24px; }

  .container { max-width: 1160px; margin: 0 auto; }


  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-dark);
    background: var(--amber-pale);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .section-title em { font-style: normal; color: var(--amber-dark); }

  .section-desc { font-size: 16px; color: #3D3D3D; line-height: 1.7; max-width: 560px; }


  .photo-upload {
    border: 1.5px dashed var(--border);
    border-radius: 8px;
    text-align: center;
    cursor: default;
    transition: border-color 0.15s, background 0.15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .photo-upload:hover { border-color: var(--amber); background: var(--amber-pale); }

  .photo-upload svg { width: 20px; height: 20px; color: #999999; margin-bottom: 6px; }

  .photo-upload-text { font-size: 12px; color: #999999; }


  /* ─── SERVICES ────────────────────────────────────── */
  .services-bg { background: var(--off-white); }


  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px;
  }


  .service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--amber);
    transform: scaleX(0);
    transition: transform 0.2s;
    transform-origin: left;
  }

  .service-card:hover::before { transform: scaleX(1); }

  .service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(227,6,19,0.12); border-color: var(--amber); }


  .service-icon {
    width: 52px; height: 52px;
    background: #F2F2F2;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }

  .service-icon svg { width: 26px; height: 26px; color: var(--amber); }


  .service-card h3 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }

  .service-card p { font-size: 14px; color: #3D3D3D; line-height: 1.6; margin-bottom: 16px; }


  .service-list { list-style: none; }

  .service-list li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #3D3D3D;
    padding: 4px 0;
  }

  .service-list li svg { width: 14px; height: 14px; color: var(--amber-dark); flex-shrink: 0; }


  .service-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    margin-top: 16px;
    border-bottom: 1.5px solid var(--amber);
    padding-bottom: 1px;
    transition: color 0.15s;
  }

  .service-link:hover { color: var(--amber-dark); }

  .service-link svg { width: 14px; height: 14px; }


  /* ─── WHY CHOOSE US ───────────────────────────────── */
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
  }


  .why-points { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }

  .why-point { display: flex; gap: 16px; }

  .why-num {
    width: 40px; height: 40px;
    background: #F2F2F2;
    color: var(--amber);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 800;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .why-point h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }

  .why-point p { font-size: 14px; color: #3D3D3D; line-height: 1.6; }


  .why-visual {
    background: #F2F2F2;
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
  }

  .why-visual-bg {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: repeating-linear-gradient(45deg, var(--white) 0, var(--white) 1px, transparent 0, transparent 50%);
    background-size: 24px 24px;
  }


  .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; }

  .stat-card {
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
  }

  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 4px;
  }

  .stat-label { font-size: 13px; color: #5A5A5A; }


  .zip-badge {
    margin-top: 20px;
    position: relative;
    background: var(--amber-pale);
    border: 1px solid rgba(227,6,19,0.3);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .zip-icon {
    width: 44px; height: 44px;
    background: var(--amber);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .zip-icon svg { width: 22px; height: 22px; color: var(--navy); }

  .zip-text { color: #222222; font-size: 13px; line-height: 1.5; }

  .zip-text strong { display: block; font-size: 15px; color: var(--amber); margin-bottom: 2px; }


  /* ─── REVIEWS ─────────────────────────────────────── */
  .reviews-bg { background: var(--off-white); }


  .reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }


  .google-rating {
    display: flex; align-items: center; gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 20px;
    flex-shrink: 0;
  }

  .google-logo { font-size: 24px; font-weight: 800; }

  .google-logo .g-blue { color: #4285F4; }

  .google-logo .g-red { color: #DB4437; }

  .google-logo .g-yellow { color: #F4B400; }

  .google-logo .g-green { color: #0F9D58; }

  .stars { color: #e30613; font-size: 18px; letter-spacing: 1px; }

  .rating-num { font-size: 28px; font-weight: 700; color: var(--navy); }

  .rating-count { font-size: 12px; color: #3D3D3D; }


  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }


  .review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: transform 0.2s;
  }

  .review-card:hover { transform: translateY(-3px); }

  .review-stars { color: #e30613; font-size: 14px; margin-bottom: 12px; letter-spacing: 1px; }

  .review-text { font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 16px; font-style: italic; }

  .review-author { display: flex; align-items: center; gap: 10px; }

  .review-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    flex-shrink: 0;
  }

  .review-name { font-size: 14px; font-weight: 600; color: var(--navy); }

  .review-date { font-size: 12px; color: #3D3D3D; }


  /* ─── SERVICE AREA ────────────────────────────────── */
  .area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 48px;
  }

  .area-map {
    background: var(--light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .map-placeholder {
    text-align: center;
    color: #3D3D3D;
  }

  .map-placeholder svg { width: 48px; height: 48px; margin-bottom: 12px; opacity: 0.4; }

  .map-placeholder p { font-size: 14px; }

  .map-placeholder a { color: var(--amber-dark); font-weight: 600; }


  .area-list h3 { font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 20px; }

  .suburb-tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
  }

  .suburb-tag {
    background: var(--light);
    border: 1px solid var(--border);
    color: var(--navy);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
  }

  .suburb-tag.primary {
    background: #1C1C1C;
    color: #ffffff;
    border-color: #1C1C1C;
  }


  .area-note {
    background: var(--amber-pale);
    border: 1px solid rgba(227,6,19,0.3);
    border-radius: 10px;
    padding: 16px;
    font-size: 13px;
    color: var(--navy);
    line-height: 1.6;
    display: flex;
    gap: 10px;
  }

  .area-note svg { width: 18px; height: 18px; color: var(--amber-dark); flex-shrink: 0; margin-top: 1px; }


  /* ─── CREDENTIALS ─────────────────────────────────── */
  .creds-bg { background: #F2F2F2; }

  .creds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 48px;
  }

  .cred-card {
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: background 0.2s;
  }

  .cred-card:hover { background: #F5F5F5; }

  .cred-icon {
    width: 48px; height: 48px;
    background: var(--amber-pale);
    border: 1px solid rgba(227,6,19,0.3);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
  }

  .cred-icon svg { width: 24px; height: 24px; color: var(--amber); }

  .cred-card h4 { font-size: 14px; font-weight: 600; color: #222222; margin-bottom: 4px; }

  .cred-card p { font-size: 12px; color: #666666; line-height: 1.5; }

  .creds-bg .section-title { color: #222222; }

  .creds-bg .section-desc { color: #5A5A5A; }


  /* ─── FAQ ─────────────────────────────────────────── */
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
  }

  .faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s;
  }

  .faq-q:hover { background: var(--off-white); }

  .faq-q svg { width: 18px; height: 18px; color: #3D3D3D; flex-shrink: 0; transition: transform 0.2s; }

  .faq-q.open svg { transform: rotate(180deg); }

  .faq-a {
    display: none;
    padding: 0 20px 18px;
    font-size: 14px;
    color: #3D3D3D;
    line-height: 1.7;
    border-top: 1px solid var(--border);
    padding-top: 14px;
  }

  .faq-a.open { display: block; }


  /* ─── FOOTER ──────────────────────────────────────── */
  footer {
    background: #F2F2F2;
    color: #4A4A4A;
    padding: 56px 24px 32px;
  }

  .footer-inner {
    max-width: 1160px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 32px;
  }

  .footer-brand .logo { margin-bottom: 16px; }

  .footer-brand .logo-name { color: var(--white); }

  .footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

  .footer-contact a {
    display: flex; align-items: center; gap: 8px;
    color: var(--amber);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .footer-contact a svg { width: 16px; height: 16px; }

  .footer-col h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 14px; }

  .footer-col a { display: block; font-size: 14px; color: #5A5A5A; text-decoration: none; margin-bottom: 8px; transition: color 0.15s; }

  .footer-col a:hover { color: var(--white); }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #888888;
  }

  .footer-lic {
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    color: #666666;
  }


  /* ─── STICKY MOBILE CTA ───────────────────────────── */
  .sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #F2F2F2;
    border-top: 2px solid var(--amber);
    padding: 12px 16px;
    z-index: 200;
    gap: 10px;
  }

  .sticky-cta a {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }

  .sticky-call { background: var(--amber); color: var(--navy); }

  .sticky-quote { background: transparent; color: #222222; border: 1px solid #D0D0D0; }

  .sticky-cta svg { width: 17px; height: 17px; }


  /* ─── ANIMATIONS ──────────────────────────────────── */
  @keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

  .fade-in { animation: fadeIn 0.5s ease both; }

  .fade-in-2 { animation: fadeIn 0.5s 0.1s ease both; }

  .fade-in-3 { animation: fadeIn 0.5s 0.2s ease both; }

  .fade-in-4 { animation: fadeIn 0.5s 0.3s ease both; }


  /* ─── RESPONSIVE ──────────────────────────────────── */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-form-card { border-radius: 16px; margin-bottom: 40px; }
    .why-grid { grid-template-columns: 1fr; }
    .area-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hamburger-btn { display: flex; }
    .nav-links {
      display: flex;
      position: fixed;
      top: 0; right: -100%;
      height: 100vh;
      width: min(300px, 80vw);
      background: #ffffff;
      flex-direction: column;
      align-items: stretch;
      gap: 4px;
      padding: 96px 24px 24px;
      box-shadow: -4px 0 24px rgba(0,0,0,0.2);
      z-index: 260;
      overflow-y: auto;
      transition: right 0.3s ease;
    }
    .nav-links.open { right: 0; }
    .nav-links a { width: 100%; padding: 14px 10px; font-size: 16px; border-bottom: 1px solid #eee; }
    .nav-links .nav-cta { margin-top: 8px; text-align: center; }
    .nav-links .nav-phone { margin-top: 8px; justify-content: center; }
    .nav-close-btn {
      display: block;
      position: absolute; top: 16px; right: 16px;
      width: 36px; height: 36px;
      background: none; border: none;
      font-size: 28px; line-height: 1;
      color: #222222; cursor: pointer;
    }
    .sticky-cta { display: flex; }
    body { padding-bottom: 72px; }
    [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  }

  @media (max-width: 600px) {
    section { padding: 56px 16px; }
    .topbar { font-size: 12px; }
    .footer-top { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero { padding: 48px 16px 0; }
  }


.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: #666666;
  margin-bottom: 0;
}

.breadcrumb a { color: #666666; text-decoration: none; }

.breadcrumb a:hover { color: var(--amber); }

.breadcrumb svg { width: 12px; height: 12px; }


  /* ─── NAV SERVICE AREA DROPDOWN ───────────────────── */
  .nav-dropdown { position: relative; }

  .nav-dropdown-inner { display: flex; align-items: center; }

  .nav-dropdown-chevron { background: none; border: none; cursor: pointer; padding: 6px 4px; display: flex; align-items: center; color: #3D3D3D; }

  .nav-dropdown-chevron svg { width: 13px; height: 13px; }

  .nav-dropdown-menu { display: none; background: #ffffff; }

  .nav-dropdown-menu.open { display: block; }

  @media (min-width: 901px) {
    .nav-dropdown:hover .nav-dropdown-menu { display: block; }
    .nav-dropdown-menu {
      position: absolute; top: 100%; left: 0;
      border: 1px solid var(--border); border-radius: 10px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.14);
      padding: 8px; min-width: 220px; max-height: 60vh; overflow-y: auto; z-index: 150;
    }
    .nav-dropdown-menu a { display: block; padding: 8px 12px; border-radius: 6px; font-size: 14px; color: #3D3D3D; text-decoration: none; white-space: nowrap; }
    .nav-dropdown-menu a:hover { background: var(--light); color: var(--navy); }
  }

  .dropdown-divider { border-top: 1px solid var(--border); margin: 6px 4px; }

  .dropdown-all { font-weight: 600; color: var(--amber-dark) !important; }

  @media (max-width: 900px) {
    .nav-dropdown-menu {
      position: static; border: none; box-shadow: none; padding: 0 0 4px 16px; min-width: 0; max-height: none; overflow: visible;
    }
    .nav-dropdown-menu a { display: block; padding: 10px 10px; font-size: 15px; color: #3D3D3D; text-decoration: none; border-bottom: 1px solid #f2f2f2; }
    .nav-dropdown-inner { justify-content: space-between; }
  }


  :root {
    --navy: #222222;
    --navy-mid: #2D2D2D;
    --navy-light: #3A3A3A;
    --amber: #e30613;
    --amber-dark: #c0000c;
    --amber-pale: #FDEDEA;
    --white: #F2F2F2;
    --off-white: #F8F8F8;
    --light: #F2F2F2;
    --text: #1C1C1C;
    --muted: #4A4A4A;
    --border: #E0E0E0;
    --success: #1A7A4A;
    --radius: 10px;
    --radius-lg: 16px;
  }

  .topbar a { color: #FFFFFF; text-decoration: none; font-weight: 600; }


  .hero-bg-pattern { display: none; }

  .trust-icon {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .trust-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
  }

  .why-visual-bg { display: none; }

  .cred-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: box-shadow 0.2s;
  }

  .cred-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

  .cred-card p { font-size: 12px; color: #555555; line-height: 1.5; }

  .creds-bg .section-desc { color: #333333; }


  /* ─── RESPONSIVE ──────────────────────────────────── */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-form-card { border-radius: 16px; margin-bottom: 40px; }
    .why-grid { grid-template-columns: 1fr; }
    .area-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hamburger-btn { display: flex; }
    .nav-links {
      display: flex;
      position: fixed;
      top: 0; right: -100%;
      height: 100vh;
      width: min(300px, 80vw);
      background: #ffffff;
      flex-direction: column;
      align-items: stretch;
      gap: 4px;
      padding: 96px 24px 24px;
      box-shadow: -4px 0 24px rgba(0,0,0,0.2);
      z-index: 260;
      overflow-y: auto;
      transition: right 0.3s ease;
    }
    .nav-links.open { right: 0; }
    .nav-links a { width: 100%; padding: 14px 10px; font-size: 16px; border-bottom: 1px solid #eee; }
    .nav-links .nav-cta { margin-top: 8px; text-align: center; }
    .nav-links .nav-phone { margin-top: 8px; justify-content: center; }
    .nav-close-btn {
      display: block;
      position: absolute; top: 16px; right: 16px;
      width: 36px; height: 36px;
      background: none; border: none;
      font-size: 28px; line-height: 1;
      color: #222222; cursor: pointer;
    }
    .sticky-cta { display: flex; }
    body { padding-bottom: 72px; }
  }



/* ─── AC PAGE EXTRAS ──────────────────────────── */
.ac-hero {
  background: #F2F2F2;
  padding: 64px 24px 64px;
  position: relative;
  overflow: hidden;
}

.ac-hero-bg { display: none; }

.ac-hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative;
}

.ac-hero-visual {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ac-stat {
  background: #FFFFFF;
  border: 0.5px solid #E0E0E0;
  border-left: 4px solid #e30613;
  border-radius: 10px;
  padding: 18px 20px;
  text-align: left;
  transition: box-shadow 0.2s;
}

.ac-stat:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.ac-stat-label {
  font-size: 12px; color: #666666;
}

.ac-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 700;
  color: var(--amber); line-height: 1; margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.ac-stat-label { font-size: 12px; color: #666666; line-height: 1.4; letter-spacing: 0.02em; }

.ac-stat.wide { grid-column: 1 / -1; }


.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: #666666;
  margin-bottom: 16px;
}


/* Feature grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; gap: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(227,6,19,0.08); }

.feature-icon-wrap {
  width: 52px; height: 52px;
  background: #F2F2F2;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.feature-icon-wrap svg { width: 26px; height: 26px; color: var(--amber); }

.feature-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }

.feature-card p { font-size: 13px; color: #3D3D3D; line-height: 1.65; }


/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 40px; right: 40px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px; height: 56px;
  background: #F2F2F2;
  color: var(--amber);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
}

.process-step h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }

.process-step p { font-size: 12px; color: #3D3D3D; line-height: 1.6; }


/* Install types */
.install-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.install-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.install-card:hover { border-color: var(--amber); box-shadow: 0 8px 24px rgba(227,6,19,0.08); }

.install-card-icon {
  width: 44px; height: 44px;
  background: var(--amber-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.install-card-icon svg { width: 22px; height: 22px; color: var(--amber-dark); }

.install-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }

.install-card p { font-size: 13px; color: #3D3D3D; line-height: 1.6; }


/* Brands */
.brands-section { background: var(--off-white); }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  transition: border-color 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.brand-card:hover { border-color: var(--amber); box-shadow: 0 4px 16px rgba(227,6,19,0.1); }

.brand-logo-wrap { display: flex; align-items: center; justify-content: center; width: 100%; }

.brand-logo-wrap img { display: block; margin: 0 auto; }

.brand-name { text-align: center; width: 100%; }


/* Warranty banner */
.warranty-banner {
  background: #F2F2F2;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}


.warranty-item {
  display: flex; align-items: center; gap: 14px;
  position: relative;
}

.warranty-icon {
  width: 48px; height: 48px;
  background: var(--amber-pale);
  border: 1px solid rgba(227,6,19,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.warranty-icon svg { width: 24px; height: 24px; color: var(--amber); }

.warranty-item h4 { font-size: 15px; font-weight: 700; color: #222222; margin-bottom: 3px; }

.warranty-item p { font-size: 12px; color: #5A5A5A; line-height: 1.5; }


/* Pricing box */
.pricing-box {
  background: var(--amber-pale);
  border: 2px solid rgba(227,6,19,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.pricing-note { font-size: 13px; color: #3D3D3D; line-height: 1.7; }

.pricing-note strong { color: var(--navy); }

.pricing-ctas { display: flex; flex-direction: column; gap: 10px; }


/* CTA section */
.ac-cta-section {
  background: #F2F2F2;
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.ac-cta-inner { max-width: 600px; margin: 0 auto; position: relative; }

.ac-cta-section h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 800; color: #222222; margin-bottom: 14px; }

.ac-cta-section h2 em { font-style: normal; color: var(--amber); }

.ac-cta-section p { font-size: 16px; color: #4A4A4A; margin-bottom: 32px; line-height: 1.6; }

.ac-cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }


@media (max-width: 900px) {
  .ac-hero-inner { grid-template-columns: 1fr; }
  .warranty-banner { grid-template-columns: 1fr; }
  .pricing-box { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
}

@media (max-width: 600px) {
  .ac-hero { padding: 40px 16px; }
  .ac-cta-section h2 { font-size: 36px; }
}


.gallery-cat-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.gallery-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(0,0,0,0.1); }

.gallery-card-img { width: 100%; height: 220px; object-fit: cover; display: block; background: #F2F2F2; }

.gallery-card-body { padding: 16px 18px; }

.gallery-card-body h4 { font-size: 14.5px; font-weight: 700; color: #222222; margin-bottom: 4px; }

.gallery-card-body p { font-size: 12.5px; color: #666666; line-height: 1.55; }


  .hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
  }


  /* ─── HERO FORM CARD ──────────────────────────────── */
  .hero-form-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.14), 0 6px 16px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
    border-top: 4px solid var(--amber);
    animation: slideUp 0.5s ease both;
  }


  .photo-upload {
    border: 1.5px dashed var(--border);
    border-radius: 8px;
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    position: relative;
  }

  .photo-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }

  .photo-upload svg { width: 22px; height: 22px; color: #999999; margin-bottom: 6px; }

  .photo-upload-text { font-size: 13px; color: #5A5A5A; }

  .photo-upload-text strong { color: var(--amber-dark); }

  .photo-file-list { font-size: 12px; color: #3D3D3D; margin-top: 8px; text-align: left; }

  .photo-file-list div { padding: 2px 0; }



  /* ─── WORK PREVIEW ────────────────────────────────── */
  .work-preview-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 40px;
  }

  .work-preview-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #F2F2F2;
  }

  .work-preview-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .work-preview-card .work-preview-label {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 10px 10px 8px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
  }

  .work-preview-more { text-align: center; margin-top: 28px; }

  @media (max-width: 900px) {
    .work-preview-grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 600px) {
    .work-preview-grid { grid-template-columns: repeat(2, 1fr); }
  }


  /* ─── TRUST BAR ───────────────────────────────────── */
  .trust-bar {
    background: var(--white);
    padding: 24px 24px;
    margin: 24px 0 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .trust-bar-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
  }

  .trust-bar-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 600;
    color: #222222;
    position: relative;
    padding-right: 36px;
  }

  .trust-bar-item:last-child { padding-right: 0; }

  .trust-bar-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--border);
  }

  .trust-bar-item svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--amber); }


.gallery-cat { margin-bottom: 56px; }

.gallery-cat:last-child { margin-bottom: 0; }

.gallery-cat-head h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #222222;
}


  /* ─── MOBILE NAV ──────────────────────────────────── */
  .hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 300;
    flex-shrink: 0;
  }


  /* ─── SHARED UTILITY ──────────────────────────────── */
  .container { max-width: 1160px; margin: 0 auto; }

  .section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: 10px;
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    color: #222222;
    line-height: 1.05;
    margin-bottom: 16px;
  }

  .section-desc { font-size: 16px; color: #3D3D3D; line-height: 1.7; max-width: 640px; }


  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--amber);
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
  }


  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: #222222;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid #CCCCCC;
    transition: border-color 0.15s, background 0.15s;
  }


  .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 8px; }


  /* ─── RESOURCES: HUB PAGE ─────────────────────────── */
  .resources-hero {
    background: #F2F2F2;
    padding: 56px 24px 48px;
    text-align: center;
  }

  .resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 56px 24px;
  }

  .resource-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    color: inherit;
  }

  .resource-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }

  .resource-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }

  .resource-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--amber-dark);
    background: var(--amber-pale);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
  }

  .resource-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #222222;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .resource-card p { font-size: 14px; color: #5A5A5A; line-height: 1.6; margin-bottom: 16px; flex: 1; }

  .resource-read-more { font-size: 13px; font-weight: 700; color: var(--amber-dark); display: flex; align-items: center; gap: 6px; }


  /* ─── RESOURCES: ARTICLE PAGE ─────────────────────── */
  .article-hero { background: #F2F2F2; padding: 40px 24px 44px; }

  .article-meta { display: flex; align-items: center; gap: 14px; font-size: 13px; color: #666666; margin-top: 18px; flex-wrap: wrap; }

  .article-meta-item { display: flex; align-items: center; gap: 6px; }

  .article-meta-item svg { width: 14px; height: 14px; }

  .article-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 52px 24px 20px;
    font-size: 16.5px;
    line-height: 1.8;
    color: #2E2E2E;
  }

  .article-body h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #222222;
    margin: 40px 0 16px;
    line-height: 1.15;
  }

  .article-body p { margin-bottom: 20px; }

  .article-body ul, .article-body ol { margin: 0 0 20px 22px; }

  .article-body li { margin-bottom: 10px; }

  .article-body strong { color: #222222; }

  .quick-answer {
    background: var(--amber-pale);
    border-left: 4px solid var(--amber);
    border-radius: 8px;
    padding: 18px 22px;
    margin-bottom: 8px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #3D1010;
  }

  .quick-answer strong { color: var(--amber-dark); }

  .cta-box {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin: 44px 0;
    text-align: center;
    color: #fff;
  }

  .cta-box h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; margin-bottom: 10px; }

  .cta-box p { color: rgba(255,255,255,0.7); margin-bottom: 22px; font-size: 15px; }

  .cta-box .btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

  .related-section { background: #F2F2F2; padding: 52px 24px 60px; }

  .related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }


  /* ─── RESPONSIVE ──────────────────────────────────── */
  @media (max-width: 900px) {
    .hamburger-btn { display: flex; }
    .nav-links {
      display: flex;
      position: fixed;
      top: 0; right: -100%;
      height: 100vh;
      width: min(300px, 80vw);
      background: #ffffff;
      flex-direction: column;
      align-items: stretch;
      gap: 4px;
      padding: 96px 24px 24px;
      box-shadow: -4px 0 24px rgba(0,0,0,0.2);
      z-index: 260;
      overflow-y: auto;
      transition: right 0.3s ease;
    }
    .nav-links.open { right: 0; }
    .nav-links a { width: 100%; padding: 14px 10px; font-size: 16px; border-bottom: 1px solid #eee; }
    .nav-links .nav-cta { margin-top: 8px; text-align: center; }
    .nav-links .nav-phone { margin-top: 8px; justify-content: center; }
    .nav-close-btn {
      display: block;
      position: absolute; top: 16px; right: 16px;
      width: 36px; height: 36px;
      background: none; border: none;
      font-size: 28px; line-height: 1;
      color: #222222; cursor: pointer;
    }
    .sticky-cta { display: flex; }
    body { padding-bottom: 72px; }
    .resources-grid { grid-template-columns: 1fr 1fr; }
    .related-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    .resources-grid { grid-template-columns: 1fr; padding: 40px 16px; }
    .article-body { padding: 40px 16px 10px; font-size: 16px; }
    .cta-box { padding: 28px 20px; }
  }