@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600;700&display=swap');

/* =====================================================================
     Design system
     ===================================================================== */

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    font-size: 16.5px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img, svg { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.15; letter-spacing: -.01em; margin: 0; color: var(--navy); }
  h1 { font-size: clamp(2.1rem, 5.4vw, 3.5rem); font-weight: 800; letter-spacing: -.02em; }
  h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800; }
  h3 { font-size: 1.18rem; font-weight: 700; }
  p { margin: 0 0 1em; }
  ul { margin: 0; padding: 0; list-style: none; }

  .container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
  .section { padding: clamp(70px, 10vw, 120px) 0; }
  .section-tight { padding: clamp(40px, 6vw, 70px) 0; }
  .eyebrow {
    display: inline-block; font-size: 12px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--orange);
    background: rgba(209,42,48,.09); padding: 6px 12px; border-radius: 999px;
    margin-bottom: 14px;
  }
  .lede { color: var(--muted); font-size: 1.075rem; max-width: 60ch; }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 14px 22px; border-radius: 999px; font-weight: 700; font-size: 0.98rem;
    transition: transform .12s ease, box-shadow .12s ease, background .15s;
    border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
    line-height: 1; min-height: 48px;
  }
  .btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-md); }
  .btn-primary:hover { background: var(--orange-dk); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
  .btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
  .btn-ghost:hover { background: var(--bg-soft); border-color: #c8d1dd; }
  .btn-dark { background: var(--navy); color: #fff; }
  .btn-dark:hover { background: var(--navy-2); transform: translateY(-1px); }
  .btn-lg { padding: 17px 28px; font-size: 1rem; min-height: 54px; }

  /* =====================================================================
     Top utility bar
     ===================================================================== */
  .utility {
    background: var(--navy); color: #d6e2f0;
    font-size: 13px; font-weight: 500; letter-spacing: .01em;
  }
  .utility-inner {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 8px 24px; padding: 9px 22px; max-width: var(--maxw); margin: 0 auto;
  }
  .utility-left, .utility-right { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
  .utility-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.08); padding: 3px 10px; border-radius: 999px;
    font-size: 12px;
  }
  .utility a { color: inherit; }
  .utility a:hover { color: #fff; }
  .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; box-shadow: 0 0 0 3px rgba(31,157,85,.25); }
  @media (max-width: 720px) { .utility-right { display: none; } }

  /* =====================================================================
     Header
     ===================================================================== */
  .header {
    position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.96);
    backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--line);
  }
  .header-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 22px;
    padding: 12px 22px; max-width: var(--maxw); margin: 0 auto;
  }
  .brand { display: flex; align-items: center; gap: 11px; }
  .brand-mark {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    display: grid; place-items: center; color: #fff; font-weight: 800;
    box-shadow: var(--shadow-md);
  }
  .brand-mark svg { width: 22px; height: 22px; }
  .brand-text { line-height: 1.15; }
  .brand-name { font-weight: 800; font-size: 1.05rem; color: var(--navy); letter-spacing: .01em; }
  .brand-sub { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }

  .nav { display: flex; gap: 22px; align-items: center; }
  .nav a {
    font-weight: 600; font-size: 0.93rem; color: var(--ink); padding: 6px 2px;
    position: relative;
  }
  .nav a:hover { color: var(--orange); }
  .nav a:hover::after {
    content: ""; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px;
    background: var(--orange); border-radius: 2px;
  }

  .header-cta { display: flex; gap: 10px; align-items: center; }
  .header-phone {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--navy); font-weight: 800; font-size: 1rem;
  }
  .header-phone svg { width: 16px; height: 16px; color: var(--orange); }
  /* Hamburger button — hidden on desktop */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background .15s ease;
    margin-left: 8px;
  }
  .nav-toggle:hover { background: rgba(0,0,0,.06); }
  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
    transform-origin: center;
  }
  /* X state when open */
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 980px) {
    .nav { display: none; }
    .nav-toggle { display: flex; }

    /* Mobile nav drawer */
    .nav-open .nav {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      border-top: 1px solid var(--line);
      border-bottom: 3px solid var(--orange);
      box-shadow: 0 8px 24px rgba(0,0,0,.1);
      padding: 12px 0 16px;
      gap: 0;
      z-index: 999;
      animation: mobileNavIn .2s cubic-bezier(.22,.61,.36,1);
    }
    .nav-open .nav a {
      padding: 12px 24px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 0;
      color: var(--navy);
    }
    .nav-open .nav a:hover { background: var(--bg-tint); color: var(--orange); }
    .nav-open .nav a:hover::after { display: none; }
  }
  @keyframes mobileNavIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @media (max-width: 560px) {
    .header-phone span { display: none; }
    .brand-sub { display: none; }
  }

  /* =====================================================================
     Hero
     ===================================================================== */
  .hero {
    position: relative; overflow: hidden;
    background:
      radial-gradient(circle at 90% 0%, rgba(209,42,48,.08), transparent 55%),
      linear-gradient(180deg, #fff 0%, var(--bg-tint) 100%);
    padding: clamp(48px, 8vw, 96px) 0 clamp(60px, 9vw, 110px);
  }
  .hero-grid {
    display: grid; grid-template-columns: 1.15fr .95fr; gap: clamp(28px, 4vw, 56px);
    align-items: center;
  }
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
  }
  .hero-rating {
    display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 6px;
    background: #fff; border: 1px solid var(--line); border-radius: 999px;
    font-size: 13px; font-weight: 600; color: var(--ink);
    box-shadow: var(--shadow-sm); margin-bottom: 16px;
  }
  .hero-rating-badge {
    background: var(--gold); color: #fff; font-weight: 800;
    padding: 3px 10px; border-radius: 999px; font-size: 12px; letter-spacing: .02em;
  }
  .hero-rating .stars { color: var(--gold); letter-spacing: 1px; font-size: 13px; }
  .hero-h1 { margin-bottom: 18px; }
  .hero-h1 span.highlight { color: var(--orange); }
  .hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 56ch; margin-bottom: 26px; }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
  .hero-trust {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
    max-width: 580px;
  }
  .hero-trust-item {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
    padding: 12px 14px; box-shadow: var(--shadow-sm);
  }
  .hero-trust-num { font-weight: 800; color: var(--navy); font-size: 1.1rem; }
  .hero-trust-lbl { font-size: 12px; color: var(--muted); font-weight: 500; }
  @media (max-width: 480px) {
    .hero-trust { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .hero-trust-item { padding: 10px; }
    .hero-trust-num { font-size: 0.98rem; }
    .hero-trust-lbl { font-size: 11px; }
  }

  /* Hero visual side */
  .hero-visual {
    position: relative;
    aspect-ratio: 5/4; border-radius: 24px; overflow: hidden;
    background:
      radial-gradient(circle at 30% 30%, #1d4076, #0a2540 70%);
    box-shadow: var(--shadow-lg);
    display: grid; place-items: center; color: #fff;
  }
  .hero-visual::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(10,37,64,.4), transparent 50%);
  }
  .hero-visual-content { position: relative; z-index: 1; text-align: center; padding: 30px; }
  .hero-visual-icon {
    width: 96px; height: 96px; margin: 0 auto 16px;
    background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2);
    border-radius: 24px; display: grid; place-items: center;
    backdrop-filter: blur(10px);
  }
  .hero-visual-title { color: #fff; font-size: 1.45rem; font-weight: 800; line-height: 1.15; margin-bottom: 6px; }
  .hero-visual p { color: rgba(255,255,255,.85); font-size: 0.95rem; margin-bottom: 0; }

  .hero-coupon {
    position: absolute; right: -12px; bottom: -18px; z-index: 2;
    background: #fff; border-radius: 16px; padding: 14px 18px 14px 56px;
    box-shadow: var(--shadow-lg); border: 1.5px solid var(--line);
    display: inline-block; min-width: 220px;
  }
  .hero-coupon::before {
    content: "$49"; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    font-weight: 800; color: var(--orange); font-size: 1.5rem; line-height: 1;
  }
  .hero-coupon-title { font-weight: 800; color: var(--navy); font-size: 0.95rem; }
  .hero-coupon-sub { font-size: 12px; color: var(--muted); }
  @media (max-width: 560px) { .hero-coupon { display: none; } }

  /* JMS-style service-pick tiles right after hero */
  .service-pick {
    background: #fff; padding: 0 0 clamp(20px, 3vw, 36px);
    margin-top: -40px; position: relative; z-index: 2;
  }
  .service-pick-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  }
  @media (max-width: 800px) {
    .service-pick-grid { grid-template-columns: 1fr; }
    .service-pick { margin-top: 8px; }
  }
  .service-pick-tile {
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 22px 22px; display: flex; align-items: center; gap: 16px;
    transition: transform .15s, box-shadow .15s, border-color .15s;
    box-shadow: var(--shadow-md);
    text-decoration: none; color: inherit;
  }
  .service-pick-tile:hover {
    transform: translateY(-3px); border-color: var(--orange);
    box-shadow: var(--shadow-lg);
  }
  .service-pick-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
    color: #fff; display: grid; place-items: center; flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(209,42,48,.25);
  }
  .service-pick-icon svg { width: 28px; height: 28px; }
  .service-pick-tile h3 { color: var(--navy); font-size: 1.1rem; margin: 0 0 2px; }
  .service-pick-tile p { color: var(--muted); font-size: 0.88rem; margin: 0; }
  .service-pick-tile .arrow {
    margin-left: auto; color: var(--orange); font-weight: 800; font-size: 1.4rem;
    flex-shrink: 0;
  }

  /* Trust badge strip */
  .trust-strip {
    background: var(--navy); color: #fff;
    padding: 18px 0; border-top: 4px solid var(--orange);
  }
  .trust-strip-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  }
  @media (max-width: 900px) {
    .trust-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 14px 8px; }
  }
  @media (max-width: 480px) {
    .trust-strip-grid { grid-template-columns: 1fr; }
  }
  .trust-badge {
    text-align: center; padding: 4px 12px;
    border-right: 1px solid rgba(255,255,255,.12);
  }
  .trust-badge:last-child { border-right: none; }
  @media (max-width: 900px) {
    .trust-badge { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 12px; }
  }
  .trust-badge strong {
    display: block; font-size: 0.92rem; color: #fff;
    margin-bottom: 2px; letter-spacing: .01em;
  }
  .trust-badge span {
    font-size: 11px; color: rgba(255,255,255,.7);
    text-transform: uppercase; letter-spacing: .06em; font-weight: 600;
  }

  /* =====================================================================
     Services
     ===================================================================== */
  .services {
    background: var(--bg-soft);
  }
  .section-head { text-align: center; margin: 0 auto 44px; max-width: 720px; }
  .section-head .lede { margin: 12px auto 0; }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  }
  @media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }
  .service-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 24px; box-shadow: var(--shadow-sm);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s;
  }
  .service-card:hover {
    transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d2dbe7;
  }
  .service-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
    color: #fff; display: grid; place-items: center; margin-bottom: 14px;
    box-shadow: 0 6px 14px rgba(209,42,48,.25);
    flex-shrink: 0;
  }
  /* Service card photo banner */
  .service-card-photo {
    width: calc(100% + 48px); height: 140px; margin: -26px -24px 16px;
    object-fit: cover; display: block;
  }
  .service-card-header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
  }
  .service-card-header .service-icon { margin-bottom: 0; width: 38px; height: 38px; }
  .service-card-header .service-icon svg { width: 19px; height: 19px; }
  .service-card-header h3 { margin: 0; }
  .service-icon svg { width: 24px; height: 24px; }
  .service-card h3 { color: var(--navy); margin-bottom: 8px; }
  .service-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 14px; }
  .service-list {
    display: flex; flex-wrap: wrap; gap: 7px; margin: 0;
  }
  .service-list li {
    font-size: 12px; font-weight: 600; color: var(--navy);
    background: var(--bg-tint); padding: 4px 10px; border-radius: 6px;
    cursor: default; user-select: text;
  }

  /* =====================================================================
     Promise / Why us
     ===================================================================== */
  .promise-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  }
  @media (max-width: 900px) { .promise-grid { grid-template-columns: repeat(2, 1fr); } }
  .promise-card {
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 24px 22px; background: #fff;
  }
  .promise-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--bg-tint); color: var(--navy);
    display: grid; place-items: center; margin-bottom: 12px;
  }
  .promise-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
  .promise-card p { color: var(--muted); font-size: 0.93rem; margin: 0; }

  .stats-band {
    display: grid; grid-template-columns: repeat(4, 1fr);
    margin-top: 36px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    background: #fff;
  }
  @media (max-width: 700px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }
  .stat {
    padding: 22px; text-align: center; border-right: 1px solid var(--line);
  }
  .stat:last-child { border-right: none; }
  @media (max-width: 700px) {
    .stat { border-bottom: 1px solid var(--line); }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-last-child(-n+2) { border-bottom: none; }
  }
  .stat-num { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 6px; }
  .stat-lbl { color: var(--muted); font-size: 0.88rem; font-weight: 500; }

  /* =====================================================================
     Process
     ===================================================================== */
  .process { background: var(--bg-soft); }
  .process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    counter-reset: step;
  }
  @media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }
  .process-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 22px 22px; position: relative; counter-increment: step;
  }
  .process-card::before {
    content: counter(step, decimal-leading-zero);
    position: absolute; top: 18px; right: 22px;
    font-weight: 800; color: var(--bg-tint); font-size: 1.6rem; line-height: 1;
  }
  .process-card h3 { font-size: 1.05rem; margin-bottom: 8px; padding-right: 40px; }
  .process-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

  .process-callout {
    margin-top: 32px; padding: 26px 28px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff; border-radius: var(--radius);
    display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  }
  .process-callout-price {
    font-size: 2.3rem; font-weight: 800; color: var(--orange);
    line-height: 1; flex-shrink: 0;
  }
  .process-callout-text { flex: 1; min-width: 240px; }
  .process-callout-text strong { color: #fff; font-size: 1.05rem; }
  .process-callout-text p { margin: 4px 0 0; color: rgba(255,255,255,.8); font-size: 0.93rem; }

  /* =====================================================================
     Coupons
     ===================================================================== */
  .coupons-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  @media (max-width: 900px) { .coupons-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .coupons-grid { grid-template-columns: 1fr; } }
  .coupon {
    border: 2px dashed var(--orange); border-radius: var(--radius);
    padding: 22px 20px; text-align: center; background: #fff;
    position: relative; overflow: hidden;
  }
  /* Featured specials section — JMS prominence treatment */
  .specials-featured {
    background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
  }
  .specials-featured .coupon {
    padding: 28px 22px; box-shadow: var(--shadow-md);
  }
  .specials-featured .coupon-discount {
    font-size: 2.1rem; margin-bottom: 8px;
  }
  .specials-featured .coupon-name {
    font-size: 1.05rem;
  }
  .coupon::before, .coupon::after {
    content: ""; position: absolute; width: 18px; height: 18px;
    background: var(--bg-soft); border-radius: 50%;
    top: 50%; transform: translateY(-50%);
  }
  .coupon::before { left: -10px; }
  .coupon::after { right: -10px; }
  .coupon-discount { font-size: 1.7rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 6px; }
  .coupon-name { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .coupon-fine { font-size: 11px; color: var(--muted); }

  /* About / Owner Story section */
  .about-section {
    background: #fff;
  }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px);
    align-items: center;
  }
  @media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }
  .about-photo-wrap {
    aspect-ratio: 4/3; border-radius: 16px; overflow: hidden;
    background: var(--bg-tint); box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
  }
  .about-photo-wrap img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .about-stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px;
  }
  .about-stat {
    background: var(--bg-soft); border: 1px solid var(--line);
    border-radius: 10px; padding: 14px 16px;
  }
  .about-stat-num {
    font-size: 1.6rem; font-weight: 800; color: var(--orange); line-height: 1;
    margin-bottom: 4px;
  }
  .about-stat-lbl { font-size: 0.85rem; color: var(--muted); font-weight: 500; }

  /* =====================================================================
     Reviews
     ===================================================================== */
  .reviews { background: var(--bg-soft); }
  .reviews-summary {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    flex-wrap: wrap; margin-bottom: 18px;
  }
  .reviews-rating {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; border: 1px solid var(--line); border-radius: 999px;
    padding: 8px 16px; box-shadow: var(--shadow-sm);
  }
  .reviews-rating-num { font-weight: 800; color: var(--navy); font-size: 1.2rem; }
  .reviews-rating .stars { color: var(--gold); letter-spacing: 2px; }
  .reviews-link {
    color: var(--orange); font-weight: 600; font-size: 0.95rem;
  }
  .reviews-link:hover { text-decoration: underline; }

  .reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    margin-top: 38px;
  }
  @media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }
  .review {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 22px; box-shadow: var(--shadow-sm);
  }
  .review-stars { color: var(--gold); letter-spacing: 1px; font-size: 0.95rem; margin-bottom: 10px; }
  .review-text { color: var(--ink); font-size: 0.95rem; margin-bottom: 14px; }
  .review-author {
    display: flex; align-items: center; gap: 10px; padding-top: 14px;
    border-top: 1px solid var(--line);
  }
  .review-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, #4a76b8, #2f5a96);
    display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 0.85rem;
    flex-shrink: 0;
  }
  .review-meta { line-height: 1.3; }
  .review-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
  .review-date { color: var(--muted); font-size: 12px; }
  .review-google {
    margin-left: auto; background: #fff; border: 1px solid var(--line);
    width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
    font-weight: 700; color: #4285F4; font-size: 12px;
  }

  /* =====================================================================
     Service area
     ===================================================================== */
  .area-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px);
    align-items: start;
  }
  @media (max-width: 900px) { .area-grid { grid-template-columns: 1fr; } }
  .area-list {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px;
    margin-top: 22px;
  }
  .area-list li {
    display: flex; align-items: center; gap: 8px;
    font-weight: 600; color: var(--navy); font-size: 0.95rem;
    padding: 10px 14px; background: var(--bg-soft); border-radius: var(--radius-sm);
    border: 1px solid var(--line);
  }
  .area-list li svg { color: var(--orange); flex-shrink: 0; }
  .area-cta {
    margin-top: 22px; padding: 18px 22px; background: var(--bg-tint);
    border-radius: var(--radius); border: 1px solid var(--line);
    font-size: 0.93rem; color: var(--ink);
  }
  .area-map {
    aspect-ratio: 1.05; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-md);
    background: var(--bg-tint);
  }
  .area-map iframe { width: 100%; height: 100%; border: 0; display: block; }

  /* =====================================================================
     Form / contact
     ===================================================================== */
  .contact { background: var(--navy); color: #fff; }
  .contact h2 { color: #fff; }
  .contact .lede { color: rgba(255,255,255,.78); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 48px);
    align-items: start;
  }
  @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-info p { color: rgba(255,255,255,.85); }
  .contact-block {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .contact-block:last-child { border-bottom: none; }
  .contact-block-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(209,42,48,.15); color: var(--orange);
    display: grid; place-items: center; flex-shrink: 0;
  }
  .contact-block strong { color: #fff; font-weight: 700; display: block; margin-bottom: 2px; }
  .contact-block a, .contact-block span { color: rgba(255,255,255,.85); font-size: 0.95rem; }
  .contact-block a:hover { color: var(--orange); }

  .contact-form {
    background: #fff; color: var(--ink); padding: 28px;
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
  }
  .contact-form h3 { color: var(--navy); margin-bottom: 6px; }
  .contact-form p { color: var(--muted); font-size: 0.93rem; margin-bottom: 18px; }
  .field { margin-bottom: 14px; }
  .field label {
    display: block; font-weight: 600; font-size: 0.88rem;
    color: var(--ink); margin-bottom: 6px;
  }
  .field input, .field select, .field textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--line);
    border-radius: 10px; font-size: 0.97rem; font-family: inherit; color: var(--ink);
    background: var(--bg-soft); transition: border-color .15s, background .15s;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--orange); background: #fff;
    box-shadow: 0 0 0 3px rgba(209,42,48,.12);
  }
  .field textarea { resize: vertical; min-height: 90px; }
  .form-or {
    text-align: center; color: var(--muted); font-size: 0.85rem;
    margin: 14px 0; position: relative;
  }
  .form-or::before, .form-or::after {
    content: ""; position: absolute; top: 50%; width: 30%; height: 1px;
    background: var(--line);
  }
  .form-or::before { left: 0; }
  .form-or::after { right: 0; }
  .form-call-line {
    text-align: center; padding: 12px;
    background: var(--bg-soft); border-radius: 10px;
    font-weight: 700; color: var(--navy);
  }
  .form-call-line a { color: var(--orange); }

  /* Financing callout — JMS-style payment options promo */
  .financing-block {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff; position: relative; overflow: hidden;
  }
  .financing-block::before {
    content: ""; position: absolute; top: -40%; right: -10%;
    width: 60%; height: 180%; background: rgba(209,42,48,.08);
    border-radius: 50%; pointer-events: none;
  }
  .financing-grid {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px, 4vw, 48px);
    align-items: center; position: relative; z-index: 1;
  }
  @media (max-width: 800px) { .financing-grid { grid-template-columns: 1fr; } }
  .financing-block h2 { color: #fff; margin-bottom: 10px; }
  .financing-block p { color: rgba(255,255,255,.85); margin-bottom: 0; max-width: 50ch; }
  .financing-block .eyebrow {
    color: var(--orange); background: rgba(209,42,48,.15);
  }
  .financing-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px;
  }
  .financing-feature {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px; padding: 12px 14px;
    display: flex; align-items: center; gap: 8px;
  }
  .financing-feature::before {
    content: "✓"; color: var(--orange); font-weight: 800; font-size: 1.1rem;
  }
  .financing-feature span {
    color: #fff; font-size: 0.9rem; font-weight: 600;
  }
  .financing-cta-card {
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px; padding: 24px 22px; text-align: center;
    backdrop-filter: blur(8px);
  }
  .financing-cta-card-amount {
    font-size: 2.2rem; font-weight: 800; color: var(--orange); line-height: 1;
    margin-bottom: 4px;
  }
  .financing-cta-card-label {
    font-size: 0.85rem; color: rgba(255,255,255,.75);
    text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
    margin-bottom: 16px;
  }
  .financing-cta-card .btn { width: 100%; }

  /* =====================================================================
     FAQ — native accordion (no JS)
     ===================================================================== */
  .faq-grid { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
  .faq-item {
    border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
    transition: box-shadow .15s, border-color .15s;
  }
  .faq-item[open] {
    box-shadow: var(--shadow-md); border-color: #d2dbe7;
  }
  .faq-item summary {
    list-style: none; cursor: pointer;
    padding: 18px 22px; font-weight: 700; color: var(--navy);
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-size: 1.02rem;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: "+"; flex-shrink: 0; font-size: 1.4rem; font-weight: 400;
    color: var(--orange); transition: transform .2s;
    line-height: 1; width: 24px; height: 24px; display: grid; place-items: center;
  }
  .faq-item[open] summary::after { content: "−"; }
  .faq-body {
    padding: 0 22px 20px;
    color: var(--muted); font-size: 0.97rem;
  }

  /* =====================================================================
     Final CTA strip
     ===================================================================== */
  .cta-strip {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
    color: #fff; text-align: center;
    padding: clamp(48px, 7vw, 80px) 0;
  }
  .cta-strip h2 { color: #fff; margin-bottom: 12px; }
  .cta-strip p { color: rgba(255,255,255,.92); max-width: 50ch; margin: 0 auto 26px; }
  .cta-strip .btn-primary {
    background: #fff; color: var(--orange-dk);
  }
  .cta-strip .btn-primary:hover { background: #fff8f3; }
  .cta-strip .btn-ghost {
    color: #fff; border-color: rgba(255,255,255,.5);
  }
  .cta-strip .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
  .cta-strip-actions {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  }

  /* =====================================================================
     Footer
     ===================================================================== */
  .footer {
    background: var(--navy); color: rgba(255,255,255,.78);
    padding: 64px 0 24px;
  }
  .footer h3, .footer h4 { color: #fff; font-size: 0.95rem; margin: 0 0 16px; font-weight: 700; }
  .footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1);
  }
  @media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
  @media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
  .footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
  .footer-brand .brand-mark {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    box-shadow: none;
  }
  .footer-brand .brand-name { color: #fff; }
  .footer-brand .brand-sub { color: rgba(255,255,255,.6); }
  .footer p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; color: rgba(255,255,255,.72); }
  .footer ul { display: grid; gap: 9px; }
  .footer ul a { color: rgba(255,255,255,.78); font-size: 0.92rem; }
  .footer ul a:hover { color: var(--orange); }
  .footer-social { display: flex; gap: 10px; margin-top: 14px; }
  .footer-social a {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,.08); display: grid; place-items: center;
    transition: background .15s;
  }
  .footer-social a:hover { background: var(--orange); }
  .footer-social svg { width: 16px; height: 16px; color: #fff; }

  .credentials {
    margin-top: 28px; padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 0.85rem; color: rgba(255,255,255,.62); line-height: 1.6;
  }
  .credentials strong { color: #fff; }
  .credentials a { color: rgba(255,255,255,.85); text-decoration: underline; }
  .credentials a:hover { color: var(--orange); }

  .footer-bottom {
    display: flex; justify-content: space-between; flex-wrap: wrap;
    gap: 14px; padding-top: 22px;
    font-size: 0.85rem; color: rgba(255,255,255,.55);
  }
  .footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
  .footer-bottom-links a { color: rgba(255,255,255,.7); }
  .footer-bottom-links a:hover { color: #fff; }

  /* =====================================================================
     Sticky mobile CTA bar
     ===================================================================== */
  .mobile-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
    background: #fff; border-top: 1px solid var(--line);
    padding: 10px 12px; gap: 8px;
    box-shadow: 0 -8px 24px rgba(10,37,64,.12);
  }
  .mobile-cta .btn { flex: 1; }
  @media (max-width: 720px) {
    .mobile-cta { display: flex; }
    body { padding-bottom: 76px; }
  }

  /* Subtle entrance animation: elements fade up when they enter viewport */
  .reveal {
    opacity: 0; transform: translateY(16px);
    transition: opacity .55s ease-out, transform .55s ease-out;
    will-change: opacity, transform;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  }

  /* Stat count-up: shows even before JS runs (no flash of empty content) */
  .stat-num.counting { display: inline-block; min-width: 2ch; }

  /* Real logo image styles */
  .brand-logo-img {
    height: 48px; width: auto; display: block;
    max-width: 240px;
  }
  @media (max-width: 560px) {
    .brand-logo-img { height: 38px; max-width: 180px; }
  }
  .footer-logo-img {
    height: 50px; width: auto; display: block;
    background: rgba(255,255,255,.92);
    padding: 6px 10px; border-radius: 8px;
  }

  /* Hero with real photo (replaces gradient placeholder) */
  .hero-visual-photo {
    background: #fff !important;
    padding: 0 !important;
    overflow: hidden;
  }
  .hero-visual-photo::after { display: none !important; }
  .hero-visual-photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }

  /* skip-to-content for accessibility */
  .skip-link {
    position: absolute; top: -100px; left: 8px; z-index: 100;
    background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px;
    font-weight: 700;
  }
  .skip-link:focus { top: 8px; }

  /* =====================================================================
     Chat widget
     ===================================================================== */
  .chat-launcher {
    position: fixed; right: 20px; bottom: 24px; z-index: 75;
    display: inline-flex; align-items: center; gap: 10px;
    background: #3b9edd; color: #fff;
    padding: 12px 18px 12px 14px; border-radius: 999px;
    border: none; cursor: pointer; font-weight: 700; font-size: 0.95rem;
    box-shadow: 0 10px 28px rgba(59,158,221,.4), 0 4px 10px rgba(10,37,64,.18);
    transition: transform .18s, box-shadow .18s, background .18s;
    font-family: inherit;
  }
  .chat-launcher:hover {
    background: #2980c4; transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(59,158,221,.5), 0 6px 14px rgba(10,37,64,.22);
  }
  .chat-launcher svg { width: 22px; height: 22px; }
  @keyframes chatBounce {
    0%   { transform: scale(1); }
    30%  { transform: scale(0.88); }
    60%  { transform: scale(1.12); }
    80%  { transform: scale(0.96); }
    100% { transform: scale(1); }
  }
  .chat-launcher.chat-bounce { animation: chatBounce .45s cubic-bezier(.36,.07,.19,.97); }
  .chat-launcher .chat-launcher-pulse {
    position: absolute; top: 6px; right: 6px;
    width: 10px; height: 10px; border-radius: 50%;
    background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7);
    animation: chat-pulse 2.4s infinite;
  }
  @keyframes chat-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
    70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  }
  @media (max-width: 720px) {
    .chat-launcher { bottom: 86px; right: 14px; padding: 10px 14px 10px 12px; font-size: 0.88rem; }
    .chat-launcher span.chat-launcher-label { display: none; }
  }

  .chat-panel {
    position: fixed; right: 20px; bottom: 88px; z-index: 76;
    width: 360px; max-width: calc(100vw - 28px);
    max-height: min(560px, calc(100vh - 130px));
    background: #fff; border-radius: 18px;
    box-shadow: 0 24px 48px rgba(10,37,64,.22), 0 8px 20px rgba(10,37,64,.12);
    border: 1px solid var(--line);
    display: flex; flex-direction: column; overflow: hidden;
    visibility: hidden; pointer-events: none;
    transform: translateY(20px) scale(0.94); opacity: 0;
    transform-origin: bottom right;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1),
                opacity .22s ease,
                visibility 0s linear .35s;
  }
  .chat-panel.open {
    visibility: visible; pointer-events: auto;
    transform: translateY(0) scale(1); opacity: 1;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1),
                opacity .22s ease,
                visibility 0s linear 0s;
  }
  @media (max-width: 720px) {
    .chat-panel { right: 14px; bottom: 150px; max-height: calc(100vh - 200px); }
  }

  .chat-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff; padding: 16px 18px;
    display: flex; align-items: center; gap: 12px;
  }
  .chat-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--orange); display: grid; place-items: center;
    font-weight: 800; font-size: 0.95rem; flex-shrink: 0;
  }
  .chat-title { font-weight: 700; font-size: 0.98rem; line-height: 1.2; }
  .chat-status { font-size: 12px; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
  .chat-status::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%; background: #4cd97c;
    box-shadow: 0 0 0 3px rgba(76,217,124,.3);
  }
  .chat-close {
    margin-left: auto; background: rgba(255,255,255,.1); color: #fff;
    border: none; width: 30px; height: 30px; border-radius: 8px; cursor: pointer;
    display: grid; place-items: center; transition: background .15s;
  }
  .chat-close:hover { background: rgba(255,255,255,.2); }
  .chat-close svg { width: 16px; height: 16px; }

  .chat-body {
    flex: 1; overflow-y: auto; padding: 16px 16px 8px;
    background: var(--bg-soft);
  }
  .chat-msg {
    margin-bottom: 10px; max-width: 85%;
    animation: chat-fade .25s ease;
  }
  @keyframes chat-fade {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .chat-msg-bot {
    background: #fff; border: 1px solid var(--line);
    padding: 11px 14px; border-radius: 14px 14px 14px 4px;
    color: var(--ink); font-size: 0.92rem; line-height: 1.5;
  }
  .chat-msg-user {
    background: var(--navy); color: #fff;
    padding: 11px 14px; border-radius: 14px 14px 4px 14px;
    margin-left: auto; font-size: 0.92rem; line-height: 1.5;
  }
  .chat-options {
    display: flex; flex-direction: column; gap: 7px;
    padding: 4px 0 12px;
  }
  .chat-option {
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    padding: 11px 14px; cursor: pointer; font-size: 0.9rem; font-weight: 600;
    color: var(--navy); text-align: left; font-family: inherit;
    transition: border-color .15s, background .15s, transform .1s;
  }
  .chat-option:hover {
    border-color: var(--orange); background: rgba(209,42,48,.04);
  }
  .chat-option:active { transform: scale(0.99); }

  .chat-footer {
    padding: 12px 14px; background: #fff; border-top: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 8px;
  }
  .chat-cta-row { display: flex; gap: 8px; }
  .chat-cta-row .btn {
    flex: 1; padding: 11px 14px; min-height: 42px; font-size: 0.88rem;
  }
  .chat-disclosure {
    text-align: center; font-size: 11px; color: var(--muted);
    padding-top: 4px;
  }
/* =====================================================================
   ANIMATION SYSTEM — applied site-wide via shared scripts.js
   ===================================================================== */

/* Reveal variants (all start hidden, become visible on .visible) */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity .65s cubic-bezier(.22,.61,.36,1),
              transform .65s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal { transform: translateY(22px); }
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal-scale { transform: scale(.94); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translate(0,0) scale(1);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =====================================================================
   HOVER & MICRO-INTERACTIONS
   ===================================================================== */

/* Service cards: lift + image zoom on hover */
.service-card {
  overflow: hidden;
  transition: transform .25s cubic-bezier(.22,.61,.36,1),
              box-shadow .25s cubic-bezier(.22,.61,.36,1),
              border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.service-card-photo {
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
}
.service-card:hover .service-card-photo {
  transform: scale(1.06);
}

/* Service-pick tiles: stronger lift on hover */
.service-pick-tile {
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.service-pick-tile:hover {
  transform: translateY(-4px) scale(1.01);
}
.service-pick-tile .arrow {
  transition: transform .25s ease;
}
.service-pick-tile:hover .arrow {
  transform: translateX(4px);
}

/* Promise cards: subtle lift */
.promise-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.promise-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #d2dbe7;
}

/* Coupon cards: float on hover */
.coupon {
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
}
.coupon:hover {
  transform: translateY(-4px) rotate(-.4deg);
  box-shadow: 0 16px 32px rgba(209,42,48,.15);
}

/* Review cards: lift */
.review {
  transition: transform .25s ease, box-shadow .25s ease;
}
.review:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Process cards: subtle entry hover */
.process-card {
  transition: transform .25s ease, border-color .25s ease;
}
.process-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
}

/* Buttons: improved hover with subtle scale */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn-primary:hover { transform: translateY(-1px) scale(1.02); }
.btn-ghost:hover { transform: translateY(-1px); }
.btn-dark:hover { transform: translateY(-1px); }

/* Button ripple effect (added by JS on click) */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transform: scale(0);
  animation: ripple-grow .6s ease-out;
  pointer-events: none;
}
@keyframes ripple-grow {
  to { transform: scale(2.8); opacity: 0; }
}

/* Header phone link: subtle pulse */
.header-phone svg { animation: phone-wiggle 4s ease-in-out infinite; transform-origin: center; }
@keyframes phone-wiggle {
  0%, 90%, 100% { transform: rotate(0); }
  92% { transform: rotate(-12deg); }
  94% { transform: rotate(10deg); }
  96% { transform: rotate(-6deg); }
  98% { transform: rotate(4deg); }
}

/* Hero rating badge: gentle bounce on load */
.hero-rating-badge {
  animation: badge-pop .8s cubic-bezier(.22,.9,.36,1.4) .4s both;
}
@keyframes badge-pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Stars in hero rating: shimmer */
.hero-rating .stars {
  background: linear-gradient(90deg, var(--gold) 0%, #7ec8f0 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  to { background-position: -200% center; }
}

/* Trust strip: dot pulse on "Open now" */
.utility-pill .dot {
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31,157,85,.6); }
  50% { box-shadow: 0 0 0 6px rgba(31,157,85,0); }
}

/* CTA strip arrow on hover */
.cta-strip .btn-ghost:hover { background: rgba(255,255,255,.15); }

/* FAQ items: smoother accordion */
.faq-item {
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq-item summary::after {
  transition: transform .25s ease, content .25s ease;
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
}

/* Service pick icon glow on hover */
.service-pick-tile:hover .service-pick-icon {
  box-shadow: 0 8px 20px rgba(209,42,48,.4);
  transform: scale(1.05);
  transition: all .2s ease;
}
.service-pick-icon {
  transition: transform .2s ease, box-shadow .2s ease;
}

/* Stat number: subtle pulse when counting */
.stat-num.counting,
.about-stat-num.counting {
  animation: stat-glow .9s ease-out;
}
@keyframes stat-glow {
  0% { color: var(--navy); }
  60% { color: var(--orange); transform: scale(1.05); }
  100% { color: var(--orange); transform: scale(1); }
}

/* Hero coupon badge: float gently */
.hero-coupon {
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Smooth focus states */
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(209,42,48,.3);
  outline-offset: 2px;
}

/* Smooth page-load fade */
body {
  animation: page-fade .35s ease-out;
}
@keyframes page-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Image lazy-load fade-in */
img[loading="lazy"] {
  transition: opacity .4s ease;
}

/* Chat launcher: bigger pulse + bounce on idle */
.chat-launcher {
  animation: chat-bounce 2.5s ease-in-out infinite;
}
@keyframes chat-bounce {
  0%, 90%, 100% { transform: translateY(0); }
  92% { transform: translateY(-3px); }
  94% { transform: translateY(0); }
  96% { transform: translateY(-2px); }
}
.chat-launcher:hover {
  animation: none;
}

/* Eyebrow tags: subtle fade-in */
.eyebrow {
  animation: eyebrow-in .4s ease-out;
}
@keyframes eyebrow-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Trust badge dot indicator */
.trust-badge strong::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  animation: dot-pulse-orange 2.5s ease-in-out infinite;
}
@keyframes dot-pulse-orange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(209,42,48,.5); }
  50% { box-shadow: 0 0 0 5px rgba(209,42,48,0); }
}

/* =====================================================================
   LINK underline animation (footer + nav)
   ===================================================================== */
.footer ul a, .footer-bottom-links a {
  position: relative;
  transition: color .2s ease;
}
.footer ul a::after, .footer-bottom-links a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.footer ul a:hover::after, .footer-bottom-links a:hover::after {
  transform: scaleX(1);
}

/* Current nav link indicator */
.nav a.current {
  color: var(--orange);
}
.nav a.current::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* =====================================================================
   PAGE TRANSITION — fade out before leaving
   ===================================================================== */
body.page-leaving {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .24s ease, transform .24s ease;
}
@media (prefers-reduced-motion: reduce) {
  body.page-leaving { opacity: 1; transform: none; transition: none; }
}

/* Subtle top loading bar during page transitions */
#page-loading-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, #ff5a5a 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
  z-index: 999; pointer-events: none;
}

/* =====================================================================
   LOGO POLISH — make brand mark prominent + slight detail
   ===================================================================== */
.brand {
  position: relative;
  padding: 4px 0;
}
.brand-logo-img {
  height: 54px;
  width: auto;
  display: block;
  max-width: 280px;
  filter: drop-shadow(0 2px 4px rgba(35,49,96,.08));
  transition: transform .2s ease, filter .2s ease;
}
.brand:hover .brand-logo-img {
  transform: scale(1.02);
  filter: drop-shadow(0 4px 8px rgba(35,49,96,.15));
}
@media (max-width: 768px) {
  .brand-logo-img { height: 44px; max-width: 220px; }
}
@media (max-width: 480px) {
  .brand-logo-img { height: 38px; max-width: 180px; }
}

/* Footer logo: small badge feel */
.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  background: rgba(255,255,255,.95);
  padding: 8px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}

/* =====================================================================
   VISUAL DETAIL — section dividers, patterns, layered backgrounds
   ===================================================================== */

/* Subtle dot-pattern background (used selectively) */
.bg-dots {
  background-image: radial-gradient(circle at 1px 1px, rgba(35,49,96,.08) 1px, transparent 0);
  background-size: 22px 22px;
}

/* Subtle diagonal stripes */
.bg-stripes {
  background-image: repeating-linear-gradient(135deg, transparent 0 18px, rgba(35,49,96,.025) 18px 19px);
}

/* Wavy section divider (decorative SVG between sections) */
.section-divider-wave {
  position: relative; height: 50px; margin-bottom: -1px;
  background: var(--bg-soft);
}
.section-divider-wave::before {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 50px;
  background: #fff;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 50' preserveAspectRatio='none'><path d='M0,50 C300,0 900,0 1200,50 L1200,50 L0,50 Z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 50' preserveAspectRatio='none'><path d='M0,50 C300,0 900,0 1200,50 L1200,50 L0,50 Z'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* Hero gets a more layered feel: subtle background pattern + gradient overlay */
.hero {
  background:
    radial-gradient(circle at 90% 0%, rgba(209,42,48,.06), transparent 55%),
    radial-gradient(circle at 10% 100%, rgba(35,49,96,.04), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--bg-tint) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(35,49,96,.045) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

/* Service cards: more layered design with corner accent */
.service-card {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
  border-top: 3px solid transparent;
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dk) 100%);
  border-radius: 14px 14px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card-photo {
  position: relative;
  filter: brightness(0.97) contrast(1.02);
}

/* Service-pick tiles: subtle gradient + corner accent */
.service-pick-tile {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
  border-left: 4px solid transparent;
  transition: transform .25s, border-left-color .25s, box-shadow .25s;
}
.service-pick-tile:hover {
  border-left-color: var(--orange);
}

/* Promise cards: more visual texture */
.promise-card {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fcfdfe 100%);
  overflow: hidden;
}
.promise-card::after {
  content: "";
  position: absolute; bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(209,42,48,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Process cards: numbered with more visual weight */
.process-card {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
}
.process-card::before {
  content: "";
  position: absolute; top: 0; left: 22px; right: 22px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.process-card:hover::before {
  transform: scaleX(1);
}

/* Coupon cards: paper-like detail */
.coupon {
  background:
    linear-gradient(135deg, #fff 0%, #fff8f3 100%);
  position: relative;
}
.coupon::before, .coupon::after {
  /* Already defined for the cutout effect */
  background: var(--bg-soft);
}
.coupon::after {
  /* Right cutout */
  background: var(--bg-soft);
}

/* Reviews: quote mark detail */
.review {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
}
.review::before {
  content: """;
  position: absolute; top: 8px; left: 14px;
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: rgba(209,42,48,.08);
  line-height: 1;
  pointer-events: none;
}

/* FAQ items: more polished accordion */
.faq-item {
  background: linear-gradient(180deg, #fff 0%, #fcfdfe 100%);
  position: relative;
  overflow: hidden;
}
.faq-item::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s ease;
}
.faq-item[open]::before {
  transform: scaleY(1);
}
.faq-item summary {
  position: relative;
}

/* Trust strip: more depth */
.trust-strip {
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.trust-strip::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
}

/* CTA strip: layered red gradient with pattern */
.cta-strip {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 24px, rgba(255,255,255,.04) 24px 25px);
  pointer-events: none;
}
.cta-strip .container { position: relative; z-index: 1; }

/* Section eyebrow tags: more visual interest */
.eyebrow {
  position: relative;
  padding: 6px 14px 6px 24px;
  background: linear-gradient(90deg, rgba(209,42,48,.12), rgba(209,42,48,.04));
  border-radius: 999px;
}
.eyebrow::before {
  content: "";
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(209,42,48,.6);
  animation: eyebrow-dot-pulse 2.5s ease-in-out infinite;
}
@keyframes eyebrow-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(209,42,48,.6); }
  50% { box-shadow: 0 0 0 4px rgba(209,42,48,0); }
}

/* H2 with decorative underline accent */
.section-head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.section-head h2::after {
  content: "";
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dk) 100%);
  border-radius: 2px;
}

/* Hero h1 also gets subtle accent */
.hero-h1::after {
  content: "";
  display: block; margin-top: 14px;
  width: 64px; height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dk) 100%);
  border-radius: 2px;
}

/* Stats band: cleaner numbered cards with detail */
.stats-band {
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
  position: relative;
  overflow: hidden;
}
.stat {
  position: relative;
}
.stat::before {
  content: "";
  position: absolute; top: 12px; right: 12px;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .3s ease;
}
.stats-band:hover .stat::before {
  opacity: 0.4;
}

/* Footer: more layered with subtle pattern */
.footer {
  background:
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.footer .container { position: relative; z-index: 1; }

/* About section: more depth */
.about-section {
  background: linear-gradient(180deg, #fff 0%, #fcfdfe 100%);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: "";
  position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(209,42,48,.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Service area list: more polished tiles */
.area-list li {
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
  border-left: 3px solid transparent;
  transition: border-left-color .2s ease, transform .2s ease;
}
.area-list li:hover {
  border-left-color: var(--orange);
  transform: translateX(2px);
}

/* Card shadow layering — more depth */
:root {
    --navy:        #233160;   /* logo navy */
    --navy-2:      #1a2548;   /* darker navy variant */
    --orange:      #d12a30;   /* logo red (kept variable name for compatibility) */
    --orange-dk:   #b01e25;   /* darker red for hover */
    --ink:         #1a2332;
    --muted:       #5a6c7d;
    --line:        #e3e8ef;
    --bg:          #FDFBF7;
    --bg-soft:     #F4F1EC;
    --bg-tint:     #EDE9E2;
    --gold:        #3b9edd;
    --green:       #1f9d55;
    --shadow-sm:   0 1px 2px rgba(35,49,96,.05), 0 1px 1px rgba(35,49,96,.04);
    --shadow-md:   0 6px 14px rgba(35,49,96,.07), 0 2px 4px rgba(35,49,96,.04);
    --shadow-lg:   0 20px 44px rgba(35,49,96,.13), 0 6px 14px rgba(35,49,96,.07);
    --radius:      14px;
    --radius-sm:   10px;
    --maxw:        1180px;
    --gap:         clamp(20px, 3vw, 40px);
  }

/* Buttons: more layered look */
.btn-primary {
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dk) 100%);
  position: relative;
}
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.18) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .2s ease;
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-dark {
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
}

/* Header: subtle bottom border accent */
.header {
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(140%) blur(10px);
}
.header::after {
  content: "";
  position: absolute; bottom: -1px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dk) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
body:not(:hover) .header::after { transform: scaleX(0); }
.header:hover::after { transform: scaleX(1); }

/* Hero coupon badge: more polished sticker */
.hero-coupon {
  background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
  border: 1.5px solid #ffd0b8;
  box-shadow:
    0 4px 12px rgba(35,49,96,.10),
    0 12px 24px rgba(35,49,96,.10),
    inset 0 0 0 1px rgba(255,255,255,.7);
}

/* =====================================================================
   ADVANCED CHATBOT — additional styles
   ===================================================================== */

/* Typing indicator (3 dots) */
.chat-typing {
  display: inline-flex !important;
  gap: 4px; align-items: center;
  padding: 14px 16px !important;
}
.chat-typing-dot {
  width: 7px; height: 7px;
  background: var(--muted);
  border-radius: 50%;
  animation: typing-bounce 1.2s infinite ease-in-out;
}
.chat-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.chat-typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* Free-text input field */
.chat-input-row {
  display: flex; gap: 8px; padding: 12px 14px 0;
  background: #fff; border-top: 1px solid var(--line);
}
.chat-input-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-family: inherit;
  background: var(--bg-soft);
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.chat-input-row input:focus {
  border-color: var(--orange);
  background: #fff;
}
.chat-input-row input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.chat-input-row button {
  background: var(--orange);
  color: #fff;
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .15s ease, transform .12s ease;
}
.chat-input-row button:hover { background: var(--orange-dk); transform: scale(1.05); }
.chat-input-row button:active { transform: scale(0.95); }
.chat-input-row button svg { width: 16px; height: 16px; color: #fff; }

/* Message slide-in animation */
.chat-msg {
  animation: chat-msg-in .3s ease-out;
}
@keyframes chat-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Chat options: now wrap in 2 columns when there are many */
.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 0 12px;
}
.chat-option {
  flex: 1 1 calc(50% - 3px);
  min-width: 0;
  white-space: normal;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px 12px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  font-family: inherit;
  transition: border-color .15s, background .15s, transform .1s;
}
.chat-option:hover {
  border-color: var(--orange);
  background: rgba(209,42,48,.04);
}

/* Bigger panel to fit input + more options */
.chat-panel {
  width: 380px;
  max-height: min(620px, calc(100vh - 130px));
}
@media (max-width: 720px) {
  .chat-panel {
    bottom: 165px;
    max-height: calc(100vh - 220px);
  }
}

/* Chat avatar gets a pulse on the avatar */
.chat-avatar {
  position: relative;
}
.chat-avatar::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 10px; height: 10px;
  background: #4cd97c;
  border: 2px solid var(--navy);
  border-radius: 50%;
}

/* =====================================================================
   ACCESSIBILITY — visually hidden but available to screen readers
   ===================================================================== */
.visually-hidden {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =====================================================================
   INTRICATE ANIMATIONS V2 — CSS support
   ===================================================================== */

/* Scroll progress bar (top of page) */
#scroll-progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, #ff5a5a 100%);
  width: 0%;
  z-index: 999;
  pointer-events: none;
  transition: width .1s ease-out;
  box-shadow: 0 0 10px rgba(209,42,48,.4);
}

/* Hero H1 letter-by-letter reveal */
.hero-h1 .h1-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  animation: letter-rise .55s cubic-bezier(.22,.61,.36,1) forwards;
}
@keyframes letter-rise {
  to { opacity: 1; transform: translateY(0); }
}

/* Service icon SVG: prepare for path-drawing */
.service-icon svg path,
.service-icon svg line,
.service-icon svg polyline,
.service-icon svg circle,
.service-icon svg rect,
.service-pick-icon svg path,
.service-pick-icon svg line,
.service-pick-icon svg polyline,
.service-pick-icon svg circle,
.service-pick-icon svg rect,
.promise-icon svg path,
.promise-icon svg line,
.promise-icon svg polyline,
.promise-icon svg circle,
.promise-icon svg rect {
  fill: none !important;
  stroke: currentColor;
  stroke-width: 2;
}

/* 3D tilt: ensure smooth transform */
.service-card, .promise-card, .service-pick-tile {
  transition: transform .15s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease, border-color .25s ease;
}

/* Hero photo: ensure transform origin centered for parallax */
.hero-visual-photo img {
  transform-origin: center center;
  transition: transform .1s ease-out;
}

/* Reduced motion override */
@media (prefers-reduced-motion: reduce) {
  #scroll-progress-bar,
  .hero-h1 .h1-letter,
  .hero-visual-photo img,
  .service-card,
  .promise-card,
  .service-pick-tile {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* =====================================================================
   HERO REDESIGN — bold dark navy with white text (high contrast)
   ===================================================================== */
.hero {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(209,42,48,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(255,255,255,.04) 0%, transparent 50%),
    linear-gradient(135deg, #0f1d3d 0%, #1a2b5e 45%, #233160 100%) !important;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.07) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.2) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.2) 100%);
}

/* Decorative angled accent line */
.hero::after {
  content: "";
  position: absolute; top: 0; right: 0; width: 200px; height: 200px;
  background: linear-gradient(135deg, transparent 50%, rgba(209,42,48,.15) 50%);
  pointer-events: none;
  z-index: 0;
}

/* All hero text now white */
.hero h1, .hero .hero-h1 { color: #fff !important; }
.hero .hero-h1 .highlight { 
  color: var(--orange) !important;
  position: relative;
  display: inline-block;
}
.hero .hero-h1 .highlight::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px; height: 6px;
  background: rgba(209,42,48,.3);
  z-index: -1;
  border-radius: 3px;
}
.hero .hero-sub { color: rgba(255,255,255,.85) !important; }

/* Hero rating badge — adapt to dark bg */
.hero-rating {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.18) !important;
  color: #fff !important;
  backdrop-filter: blur(8px);
}
.hero-rating span {
  color: rgba(255,255,255,.92) !important;
}

/* Hero trust trio — translucent on dark */
.hero-trust-item {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.15) !important;
  backdrop-filter: blur(8px);
}
.hero-trust-num { color: #fff !important; }
.hero-trust-lbl { color: rgba(255,255,255,.7) !important; }

/* Hero accent line under H1 */
.hero-h1::after {
  background: linear-gradient(90deg, var(--orange) 0%, #ff5a5a 100%) !important;
  width: 80px !important;
  height: 4px !important;
  box-shadow: 0 4px 12px rgba(209,42,48,.4);
}

/* Ghost button on dark hero needs to be visible */
.hero .btn-ghost {
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.3) !important;
  backdrop-filter: blur(8px);
}
.hero .btn-ghost:hover {
  background: rgba(255,255,255,.2) !important;
  border-color: rgba(255,255,255,.5) !important;
}

/* Bigger hero typography */
.hero-h1 {
  font-size: clamp(2.4rem, 6vw, 4rem) !important;
  font-weight: 900 !important;
  letter-spacing: -.025em !important;
}
.hero-sub {
  font-size: 1.18rem !important;
  line-height: 1.6;
}

/* Hero photo: strong shadow + slight rotation for depth */
.hero-visual-photo {
  border-radius: 20px;
  box-shadow:
    0 30px 60px rgba(0,0,0,.4),
    0 12px 24px rgba(0,0,0,.25),
    inset 0 0 0 1px rgba(255,255,255,.1) !important;
  transform: perspective(1200px) rotateY(-3deg);
  transition: transform .4s ease;
}
.hero-visual-photo:hover {
  transform: perspective(1200px) rotateY(0deg);
}

/* Hero coupon: more pop on dark */
.hero-coupon {
  box-shadow:
    0 16px 36px rgba(0,0,0,.4),
    0 6px 12px rgba(0,0,0,.2),
    inset 0 0 0 1.5px rgba(255,255,255,.5) !important;
  border: none !important;
  z-index: 3;
}

/* Trust strip — make it pop more */
.trust-strip {
  background:
    linear-gradient(135deg, #0a1530 0%, #1a2548 100%) !important;
  border-top: 4px solid var(--orange);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 2;
}

/* Body text on hero stays white but eyebrows get tweaked */
.hero .eyebrow {
  background: rgba(209,42,48,.2) !important;
  color: #ff8a8a !important;
  border: 1px solid rgba(209,42,48,.3);
}
.hero .eyebrow::before {
  background: var(--orange);
}

/* Hero CTAs row gets more breathing room */
.hero-ctas {
  margin-top: 28px !important;
  margin-bottom: 32px !important;
}

/* Service-pick tiles section on white bg, but make them more striking */
.service-pick {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  margin-top: -50px !important;
  padding-top: 30px !important;
  position: relative;
  z-index: 3;
}

/* Stronger mobile rendering */
@media (max-width: 720px) {
  .hero { padding: clamp(40px, 8vw, 70px) 0 80px !important; }
  .hero-h1 { font-size: clamp(2rem, 7vw, 2.8rem) !important; }
  .hero-visual-photo { transform: none; }
  .hero::after { display: none; }
}


/* =====================================================================
   HERO V3 — modern SaaS-style with floating glass cards
   ===================================================================== */

/* Override the hero with cleaner, more modern treatment */
.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(209,42,48,.15) 0%, transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(76,150,255,.08) 0%, transparent 45%),
    linear-gradient(135deg, #0a1228 0%, #131e3f 50%, #1a2548 100%) !important;
}

/* Subtle grid pattern overlay */
.hero::before {
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px) !important;
  background-size: 60px 60px !important;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,.8), transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,.8), transparent 75%);
}

/* Remove the diagonal corner accent (was tacky) */
.hero::after { display: none !important; }

/* Hero h1: tighter, more modern letter-spacing */
.hero-h1 {
  font-weight: 800 !important;
  letter-spacing: -.035em !important;
  line-height: 1.05 !important;
}
.hero-h1::after {
  display: none !important;  /* remove the underline accent (cluttered) */
}

/* Highlight word: cleaner red glow */
.hero-h1 .highlight::after {
  background: rgba(209,42,48,.25) !important;
  height: 10px !important;
  bottom: 4px !important;
  filter: blur(6px);
}

/* Hero rating: more refined, less pill-shaped */
.hero-rating {
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 12px !important;
  padding: 8px 14px 8px 8px !important;
  backdrop-filter: blur(12px);
  font-size: 13px !important;
}

/* Hero visual: cleaner photo treatment, no tilt, with stats overlay */
.hero-visual-photo {
  position: relative !important;
  aspect-ratio: 4/3 !important;
  border-radius: 24px !important;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2548 0%, #0a1228 100%) !important;
  box-shadow:
    0 30px 60px rgba(0,0,0,.45),
    0 12px 24px rgba(0,0,0,.3),
    inset 0 0 0 1px rgba(255,255,255,.08) !important;
  transform: none !important;
}
.hero-visual-photo img {
  width: 100% !important; height: 100% !important;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: luminosity;
  opacity: 0.65;
  filter: contrast(1.1) brightness(0.95);
  transform: scale(1.05);
}
.hero-visual-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(209,42,48,.25) 0%, transparent 50%),
    linear-gradient(0deg, rgba(10,18,40,.7) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Floating stat cards overlay (replaces the kid-sticker coupon) */
.hero-coupon {
  background: rgba(255,255,255,.08) !important;
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,.16) !important;
  padding: 16px 18px 16px 60px !important;
  border-radius: 14px !important;
  right: 20px !important;
  bottom: 20px !important;
  box-shadow:
    0 16px 36px rgba(0,0,0,.4),
    0 4px 8px rgba(0,0,0,.2),
    inset 0 0 0 1px rgba(255,255,255,.15) !important;
  z-index: 3;
}
.hero-coupon::before {
  color: #ff5a5a !important;
  font-weight: 800 !important;
  text-shadow: 0 2px 8px rgba(209,42,48,.5);
}
.hero-coupon-title {
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
}
.hero-coupon-sub {
  color: rgba(255,255,255,.65) !important;
  font-size: 11.5px !important;
  letter-spacing: .01em;
}

/* Top-left "live" status card on hero photo */
.hero-visual-photo::before {
  content: "● LIVE · Dispatching now";
  position: absolute; top: 16px; left: 16px;
  background: rgba(31,157,85,.18);
  color: #4cd97c;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(76,217,124,.3);
  backdrop-filter: blur(10px);
  z-index: 2;
  font-feature-settings: "tnum";
}

/* Hero trust trio: cleaner, more refined */
.hero-trust-item {
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  backdrop-filter: blur(10px);
}
.hero-trust-num {
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  color: #fff !important;
  letter-spacing: -.01em;
}
.hero-trust-lbl {
  font-size: 11.5px !important;
  color: rgba(255,255,255,.6) !important;
  font-weight: 500 !important;
  letter-spacing: .02em;
  margin-top: 2px;
}

/* Primary CTA: cleaner shadow + glow */
.hero .btn-primary {
  box-shadow:
    0 4px 16px rgba(209,42,48,.4),
    0 8px 32px rgba(209,42,48,.15),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}

/* Ghost CTA: cleaner glass */
.hero .btn-ghost {
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 999px !important;
  backdrop-filter: blur(10px);
}

/* Hero eyebrow on dark: more refined */
.hero .eyebrow {
  background: rgba(209,42,48,.12) !important;
  color: #ff8a8a !important;
  border: 1px solid rgba(209,42,48,.22) !important;
  padding: 4px 14px 4px 22px !important;
  font-size: 11px !important;
}

/* Tighter spacing throughout hero */
.hero-sub {
  font-size: 1.1rem !important;
  line-height: 1.55 !important;
  color: rgba(255,255,255,.75) !important;
  max-width: 50ch !important;
}

/* Letter-by-letter reveal: tighter timing for the new font */
.hero-h1 .h1-letter {
  display: inline-block;
}

/* Mobile: stack cleanly */
@media (max-width: 900px) {
  .hero-visual-photo { aspect-ratio: 16/10 !important; }
  .hero-coupon { right: 16px !important; bottom: 16px !important; }
}
@media (max-width: 720px) {
  .hero-visual-photo { aspect-ratio: 5/3 !important; }
}


/* Header CTA: compact button that fits in the header strip */
.header-cta-btn {
  padding: 10px 18px !important;
  font-size: 0.9rem !important;
  min-height: 40px !important;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .header-cta-btn { padding: 9px 14px !important; font-size: 0.85rem !important; }
}

/* =====================================================================
   PLUMBER-FRIENDLY MAKEOVER — warm, welcoming, neighborly
   ===================================================================== */

/* Hero: light + warm instead of dark corporate */
.hero {
  background:
    radial-gradient(circle at 85% 10%, rgba(59,158,221,.18) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(74,118,184,.12) 0%, transparent 55%),
    linear-gradient(180deg, #fff9f0 0%, #fffdf7 40%, #f0f6fc 100%) !important;
  color: #1a2332 !important;
  position: relative;
  overflow: hidden;
}
.hero::before {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(35,49,96,.06) 1px, transparent 0) !important;
  background-size: 28px 28px !important;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,.5), transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,.5), transparent 80%);
}
.hero::after { display: none !important; }

/* Hero text: warm dark navy on light bg */
.hero h1, .hero .hero-h1 {
  color: #0a2540 !important;
}
.hero .hero-h1 .highlight {
  color: #d12a30 !important;
  position: relative;
}
.hero .hero-h1 .highlight::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  bottom: 4px; height: 12px;
  background: rgba(59,158,221,.4);  /* yellow underline highlight = friendly */
  z-index: -1;
  border-radius: 4px;
  transform: skewY(-1deg);
}

.hero .hero-sub {
  color: #4a5670 !important;
  font-size: 1.1rem !important;
}

/* Hero rating: warm yellow star treatment */
.hero-rating {
  background: #fff !important;
  border: 2px solid #fef3c7 !important;
  color: #1a2332 !important;
  box-shadow: 0 4px 12px rgba(59,158,221,.15);
  padding: 8px 16px 8px 6px !important;
}
.hero-rating-badge {
  background: linear-gradient(135deg, #3b9edd 0%, #2980c4 100%) !important;
  color: #fff !important;
  font-size: 13px !important;
  padding: 4px 12px !important;
}
.hero-rating .stars {
  filter: drop-shadow(0 1px 2px rgba(59,158,221,.4));
}

/* Hero trust trio: warm cream cards */
.hero-trust-item {
  background: #fff !important;
  border: 1.5px solid #fef3c7 !important;
  box-shadow: 0 4px 12px rgba(35,49,96,.06) !important;
  backdrop-filter: none !important;
  transition: all .25s cubic-bezier(.34,1.56,.64,1) !important;
}
.hero-trust-item:hover {
  transform: translateY(-4px) rotate(-1deg);
  border-color: #3b9edd !important;
  box-shadow: 0 12px 24px rgba(59,158,221,.2) !important;
}
.hero-trust-num {
  color: #0a2540 !important;
  font-size: 1.1rem !important;
}
.hero-trust-lbl {
  color: #5a6c7d !important;
}

/* Hero CTAs: bigger, friendlier */
.hero .btn-primary {
  padding: 16px 28px !important;
  font-size: 1.05rem !important;
  border-radius: 999px !important;
  box-shadow:
    0 6px 16px rgba(209,42,48,.35),
    0 12px 28px rgba(209,42,48,.15) !important;
  transition: all .25s cubic-bezier(.34,1.56,.64,1) !important;
}
.hero .btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 10px 24px rgba(209,42,48,.4),
    0 16px 36px rgba(209,42,48,.2) !important;
}
.hero .btn-ghost {
  background: #fff !important;
  color: #0a2540 !important;
  border: 1.5px solid #e3e8ef !important;
  backdrop-filter: none !important;
  padding: 16px 24px !important;
  font-size: 1rem !important;
  border-radius: 999px !important;
}
.hero .btn-ghost:hover {
  background: #f7f9fc !important;
  border-color: #3b9edd !important;
  transform: translateY(-2px);
}

/* Hero eyebrow: warmer */
.hero .eyebrow {
  background: rgba(59,158,221,.15) !important;
  color: #b8860b !important;
  border: 1px solid rgba(59,158,221,.3) !important;
}
.hero .eyebrow::before {
  background: #3b9edd !important;
}

/* Hero truck photo: full color, no luminosity blend */
.hero-visual-photo {
  background: linear-gradient(135deg, #f0f6fc 0%, #fff9f0 100%) !important;
  box-shadow:
    0 20px 50px rgba(35,49,96,.18),
    0 8px 16px rgba(35,49,96,.08) !important;
  border: none !important;
  transform: rotate(-1deg);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.hero-visual-photo:hover {
  transform: rotate(0deg) scale(1.02);
}
.hero-visual-photo img {
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  filter: none !important;
  transform: scale(1) !important;
}
.hero-visual-photo::after {
  display: none !important;
}
.hero-visual-photo::before {
  /* "LIVE · Dispatching now" — make it friendlier */
  content: "✓ Available now — call us!" !important;
  background: linear-gradient(135deg, #1f9d55 0%, #168042 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(31,157,85,.3);
}

/* Hero coupon: bigger, friendlier sticker */
.hero-coupon {
  background: #fff !important;
  border: 2px solid #3b9edd !important;
  box-shadow:
    0 16px 36px rgba(59,158,221,.25),
    0 4px 8px rgba(0,0,0,.08) !important;
  padding: 18px 22px 18px 78px !important;
  border-radius: 16px !important;
  backdrop-filter: none !important;
}
.hero-coupon::before {
  left: 12px !important;
  color: #d12a30 !important;
  font-size: 1.9rem !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}
.hero-coupon-title {
  color: #0a2540 !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
}
.hero-coupon-sub {
  color: #5a6c7d !important;
  font-size: 12px !important;
}

/* Service-pick tiles: more inviting */
.service-pick {
  margin-top: -40px !important;
  padding-top: 30px !important;
  background: linear-gradient(180deg, transparent 0%, #fff 30%) !important;
}
.service-pick-tile {
  border-radius: 16px !important;
  border: 1.5px solid #e3e8ef !important;
  box-shadow: 0 4px 12px rgba(35,49,96,.06) !important;
  transition: all .3s cubic-bezier(.34,1.56,.64,1) !important;
}
.service-pick-tile:hover {
  transform: translateY(-6px) rotate(-.5deg);
  border-color: #3b9edd !important;
  box-shadow: 0 16px 36px rgba(59,158,221,.18) !important;
}
.service-pick-icon {
  border-radius: 16px !important;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1) !important;
}
.service-pick-tile:hover .service-pick-icon {
  transform: rotate(-8deg) scale(1.1);
}

/* Trust strip: lighter, warmer */
.trust-strip {
  background:
    linear-gradient(135deg, #fff9f0 0%, #fffdf7 50%, #f0f6fc 100%) !important;
  color: #0a2540 !important;
  border-top: 4px solid #3b9edd !important;
  border-bottom: 1px solid #e3e8ef !important;
}
.trust-strip::before {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(35,49,96,.05) 1px, transparent 0) !important;
}
.trust-badge strong {
  color: #0a2540 !important;
}
.trust-badge strong::before {
  background: #3b9edd !important;
}
.trust-badge span {
  color: #5a6c7d !important;
}
.trust-badge {
  border-right-color: rgba(35,49,96,.08) !important;
}

/* Section eyebrows: friendlier yellow tint */
.eyebrow {
  background: linear-gradient(90deg, rgba(59,158,221,.18), rgba(59,158,221,.06)) !important;
  color: #b8860b !important;
}
.eyebrow::before {
  background: #3b9edd !important;
}

/* Service cards: friendlier hover (bounce + tilt) */
.service-card {
  transition: all .35s cubic-bezier(.34,1.56,.64,1) !important;
  border-radius: 16px !important;
}
.service-card:hover {
  transform: translateY(-8px) rotate(-.5deg) !important;
  border-color: #3b9edd !important;
  box-shadow: 0 20px 40px rgba(59,158,221,.15) !important;
}

/* Promise cards: warmer accent */
.promise-card {
  border-radius: 16px !important;
  transition: all .3s cubic-bezier(.34,1.56,.64,1) !important;
}
.promise-card:hover {
  transform: translateY(-6px);
  border-color: #3b9edd !important;
}
.promise-card::after {
  background: radial-gradient(circle, rgba(59,158,221,.1) 0%, transparent 70%) !important;
}
.promise-icon {
  background: linear-gradient(135deg, #fff9f0 0%, #fef3c7 100%) !important;
  color: #b8860b !important;
}

/* Coupon cards: paper texture warmer */
.coupon {
  border-color: #3b9edd !important;
  background: linear-gradient(135deg, #fff 0%, #fff9f0 100%) !important;
  border-radius: 14px !important;
  transition: all .35s cubic-bezier(.34,1.56,.64,1) !important;
}
.coupon:hover {
  transform: translateY(-6px) rotate(-1deg) !important;
  box-shadow: 0 20px 40px rgba(59,158,221,.25) !important;
}
.coupon-discount {
  color: #d12a30 !important;
}

/* Reviews: warm yellow quote, friendlier cards */
.review {
  border-radius: 16px !important;
  transition: all .3s cubic-bezier(.34,1.56,.64,1) !important;
}
.review:hover {
  transform: translateY(-4px);
  border-color: #3b9edd !important;
}
.review::before {
  color: rgba(59,158,221,.25) !important;
}
.reviews-rating .stars {
  filter: drop-shadow(0 2px 4px rgba(59,158,221,.3));
}

/* Process cards: warm */
.process-card {
  border-radius: 14px !important;
  transition: all .3s cubic-bezier(.34,1.56,.64,1) !important;
}
.process-card:hover {
  transform: translateY(-4px);
  border-color: #3b9edd !important;
}
.process-card::before {
  background: linear-gradient(90deg, #3b9edd 0%, #d12a30 100%) !important;
}

/* FAQ: warmer */
.faq-item {
  border-radius: 14px !important;
}
.faq-item::before {
  background: linear-gradient(180deg, #3b9edd 0%, #d12a30 100%) !important;
}
.faq-item summary::after {
  background: rgba(59,158,221,.15);
  color: #b8860b !important;
  border-radius: 8px;
}

/* CTA strip: warmer red with yellow accent */
.cta-strip {
  background:
    radial-gradient(circle at 80% 20%, rgba(59,158,221,.25) 0%, transparent 50%),
    linear-gradient(135deg, #d12a30 0%, #b01e25 100%) !important;
}
.cta-strip h2 {
  text-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.cta-strip .btn-primary {
  background: #fff !important;
  color: #d12a30 !important;
  font-weight: 800;
}
.cta-strip .btn-ghost {
  border-color: rgba(255,255,255,.5) !important;
}

/* H2 accent: warm gradient under heading */
.section-head h2::after {
  background: linear-gradient(90deg, #3b9edd 0%, #d12a30 100%) !important;
  height: 4px !important;
  width: 60px !important;
  border-radius: 4px;
}
.hero-h1::after {
  display: none !important;
}

/* Button base: friendlier rounded + spring */
.btn {
  border-radius: 999px !important;
  transition: all .25s cubic-bezier(.34,1.56,.64,1) !important;
}
.btn-primary {
  background: linear-gradient(135deg, #d12a30 0%, #b01e25 100%) !important;
}

/* About stats: warm cards */
.about-stat {
  border-radius: 14px !important;
  transition: all .3s cubic-bezier(.34,1.56,.64,1) !important;
}
.about-stat:hover {
  transform: translateY(-4px) rotate(-.5deg);
  border-color: #3b9edd !important;
}
.about-stat-num {
  color: #d12a30 !important;
}

/* Header phone number: friendlier */
.header-phone {
  color: #0a2540 !important;
}
.header-phone svg {
  color: #d12a30 !important;
}

/* Hero h1 letter reveal: bouncier */
.hero-h1 .h1-letter {
  animation: letter-bounce-in .7s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes letter-bounce-in {
  0% { opacity: 0; transform: translateY(.6em) scale(.9); }
  60% { transform: translateY(-.05em) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Service tag chips: warmer */
.service-list li {
  background: linear-gradient(135deg, #fff9f0 0%, #fef3c7 100%) !important;
  border: 1px solid rgba(59,158,221,.25);
  color: #b8860b !important;
}

/* Chat launcher: warmer */
.chat-launcher {
  background: linear-gradient(135deg, #3b9edd 0%, #2980c4 100%) !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 28px rgba(59,158,221,.4) !important;
}
.chat-launcher:hover {
  background: linear-gradient(135deg, #2980c4 0%, #1a6fa8 100%) !important;
  box-shadow: 0 14px 32px rgba(59,158,221,.5) !important;
}
.chat-launcher-pulse {
  background: #fff !important;
}

/* Mobile sticky CTA: warmer */
.mobile-cta {
  border-top: 3px solid #3b9edd !important;
  background: #fff !important;
}

/* Stats band stat numbers in orange = brand red */
.stat-num {
  color: #d12a30 !important;
}


/* =====================================================================
   MOBILE FIXES — animations              

/* =====================================================================
   PAGE-SPECIFIC HERO VARIANTS — each sub-page has its own identity
   ===================================================================== */

/* Plumbing — dark navy, water-blue accents */
.hero--navy {
  background: linear-gradient(135deg, #0f1e3c 0%, #1a3260 100%);
}
.hero--navy .eyebrow { color: #7ec8f0; background: rgba(59,158,221,.15); border-color: rgba(59,158,221,.3); }
.hero--navy .hero-h1 { color: #fff; }
.hero--navy .highlight { color: #7ec8f0; -webkit-text-fill-color: #7ec8f0; }
.hero--navy .hero-sub { color: rgba(255,255,255,.8); }
.hero--navy .btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.hero--navy .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.hero--navy .hero-trust-num { color: #7ec8f0; }
.hero--navy .hero-trust-lbl { color: rgba(255,255,255,.6); }
.hero--navy .hero-trust-item { border-color: rgba(255,255,255,.12); }

/* HVAC — cool blue gradient, air/temp feel */
.hero--cool {
  background: linear-gradient(135deg, #064e8c 0%, #0e72c8 60%, #2980c4 100%);
}
.hero--cool .eyebrow { color: #a8daff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }
.hero--cool .hero-h1 { color: #fff; }
.hero--cool .highlight { color: #a8daff; -webkit-text-fill-color: #a8daff; }
.hero--cool .hero-sub { color: rgba(255,255,255,.85); }
.hero--cool .btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.hero--cool .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.hero--cool .hero-trust-num { color: #a8daff; }
.hero--cool .hero-trust-lbl { color: rgba(255,255,255,.65); }
.hero--cool .hero-trust-item { border-color: rgba(255,255,255,.15); }

/* Commercial — dark charcoal/industrial */
.hero--industrial {
  background: linear-gradient(135deg, #141414 0%, #1e2a3a 60%, #243447 100%);
}
.hero--industrial .eyebrow { color: #f9a825; background: rgba(249,168,37,.12); border-color: rgba(249,168,37,.3); }
.hero--industrial .hero-h1 { color: #fff; }
.hero--industrial .highlight { color: #f9a825; -webkit-text-fill-color: #f9a825; }
.hero--industrial .hero-sub { color: rgba(255,255,255,.78); }
.hero--industrial .btn-ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.hero--industrial .btn-ghost:hover { background: rgba(255,255,255,.08); }
.hero--industrial .hero-trust-num { color: #f9a825; }
.hero--industrial .hero-trust-lbl { color: rgba(255,255,255,.6); }
.hero--industrial .hero-trust-item { border-color: rgba(255,255,255,.1); }

/* About — warm light, story-focused, centered */
.hero--story {
  background: linear-gradient(160deg, #f4f8ff 0%, #e8f2fc 100%);
  border-bottom: 3px solid var(--gold);
}
.hero--story .hero-grid { grid-template-columns: 1fr !important; max-width: 700px; margin: 0 auto; text-align: center; }
.hero--story .hero-ctas { justify-content: center; }
.hero--story .hero-trust { justify-content: center; }
.hero--story .hero-visual { display: none; }

/* Specials — bold red-orange promo energy */
.hero--promo {
  background: linear-gradient(135deg, #b71c1c 0%, #c62828 55%, #d32f2f 100%);
}
.hero--promo .eyebrow { color: #ffcdd2; background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); }
.hero--promo .hero-h1 { color: #fff; }
.hero--promo .hero-sub { color: rgba(255,255,255,.9); }
.hero--promo .btn-primary { background: #fff !important; color: var(--orange) !important; border-color: #fff !important; }
.hero--promo .btn-primary:hover { background: #f5f5f5 !important; }
.hero--promo .btn-ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.hero--promo .btn-ghost:hover { background: rgba(255,255,255,.12); }

/* Financing — deep green, money/savings feel */
.hero--finance {
  background: linear-gradient(135deg, #1b3a2f 0%, #1e4d38 60%, #265c44 100%);
}
.hero--finance .eyebrow { color: #6ee7b7; background: rgba(110,231,183,.12); border-color: rgba(110,231,183,.25); }
.hero--finance .hero-h1 { color: #fff; }
.hero--finance .hero-sub { color: rgba(255,255,255,.85); max-width: 680px; margin: 0 auto 28px; }
.hero--finance .btn-primary { background: #10b981 !important; border-color: #10b981 !important; }
.hero--finance .btn-primary:hover { background: #059669 !important; border-color: #059669 !important; }

/* Service Areas — light map-toned, geographic */
.hero--map {
  background: linear-gradient(160deg, #eef4fb 0%, #d8eaf8 100%);
  border-bottom: 3px solid var(--gold);
}
.hero--map .eyebrow { color: var(--navy); }

/* FAQ — clean white editorial */
.hero--faq {
  background: #fff;
  border-bottom: 2px solid var(--line);
}
.hero--faq .hero-h1 { font-size: clamp(2.4rem, 5vw, 3.6rem) !important; }

/* Contact — soft blue-white split */
.hero--contact {
  background: linear-gradient(160deg, #f0f7ff 0%, #e4f0fc 100%);
  border-bottom: 3px solid var(--gold);
}

/* Dark hero shared image treatment */
.hero--navy .hero-visual-photo img,
.hero--cool .hero-visual-photo img,
.hero--industrial .hero-visual-photo img {
  opacity: 0.85;
  mix-blend-mode: luminosity;
}
.hero--navy .hero-visual-photo,
.hero--cool .hero-visual-photo,
.hero--industrial .hero-visual-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

/* =====================================================================
   DE-AI UPGRADES — custom interactions & typography personality
   ===================================================================== */

/* Nav underline draws left-to-right */
.nav a::after {
  transform-origin: left center !important;
  transition: transform .22s cubic-bezier(.4,0,.2,1) !important;
}
.nav a:hover::after, .nav a.current::after {
  transform-origin: left center !important;
}

/* Button slide-fill hover */
.btn-primary {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange-dk);
  transform: translateX(-101%);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  z-index: -1;
  border-radius: inherit;
}
.btn-primary:hover::before { transform: translateX(0); }

/* Promise cards — number labels instead of icons */
.promise-icon {
  display: none !important;
}
.promise-card {
  counter-increment: promise-counter;
  position: relative;
}
.promise-grid { counter-reset: promise-counter; }
.promise-card::before {
  content: "0" counter(promise-counter);
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -.03em;
}

/* Section eyebrow more breathing room */
.section-head .eyebrow {
  margin-bottom: 14px !important;
  display: inline-block;
}

/* Grain texture on dark hero sections */
.hero--navy::after,
.hero--cool::after,
.hero--industrial::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  z-index: 1;
}
.hero--navy .container,
.hero--cool .container,
.hero--industrial .container {
  position: relative;
  z-index: 2;
}

/* h2 section heads — more space above */
.section-head h2 {
  margin-top: 6px !important;
}
