 :root {
      /* brand */
      --navy:        #0E2233;
      --navy-deep:   #0E2233;
      --navy-soft:   #123A5E;
      --teal:        #1B9AAA;
      --teal-dark:   #157F8C;
      --accent:      #1B9AAA;
      --gold:        #F2B705;
      --gold-dark:   #D9A400;

      /* neutrals */
      --ink:         #16283B;
      --body:        #4A5C6B;
      --muted:       #6B7C8B;
      --line:        #E2E8ED;
      --line-soft:   #ECF1F4;
      --surface:     #F4F7F9;
      --surface-alt: #F9FBFC;
      --white:       #FFFFFF;

      /* state */
      --ok:          #1E9E63;
      --error:       #D64545;

      /* type */
      --font-display: "Nunito", "Segoe UI", Arial, sans-serif;
      --font-body:    "Nunito", "Segoe UI", Arial, sans-serif;

      --fs-hero:  clamp(2rem, 1.35rem + 2.6vw, 3.25rem);
      --fs-h1:    clamp(1.85rem, 1.35rem + 1.9vw, 2.75rem);
      --fs-h2:    clamp(1.4rem, 1.12rem + 1.15vw, 2rem);
      --fs-h3:    clamp(1.06rem, 0.98rem + 0.35vw, 1.25rem);
      --fs-body:  clamp(0.9375rem, 0.91rem + 0.12vw, 1rem);
      --fs-sm:    0.875rem;
      --fs-xs:    0.78rem;

      /* space */
      --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
      --sp-5: 24px; --sp-6: 32px; --sp-7: 40px; --sp-8: 56px;
      --sp-9: 72px; --sp-10: 96px;

      --section-y: clamp(48px, 3.2vw + 32px, 88px);
      --gap-card:  clamp(16px, 1.4vw, 28px);

      /* shell */
      --container: 1200px;
      --container-narrow: 940px;
      --gutter: clamp(16px, 3.2vw, 32px);

      --radius-sm: 6px;
      --radius:    10px;
      --radius-lg: 16px;
      --radius-pill: 999px;

      --shadow-sm: 0 1px 2px rgba(10, 37, 64, .06), 0 2px 8px rgba(10, 37, 64, .05);
      --shadow:    0 4px 14px rgba(10, 37, 64, .08);
      --shadow-lg: 0 14px 40px rgba(10, 37, 64, .12);

      --ease: cubic-bezier(.4, 0, .2, 1);
      --header-h: 74px;
    }

    /* 2. RESET / BASE ========================================================== */
    *, *::before, *::after { box-sizing: border-box; }

    html {
      -webkit-text-size-adjust: 100%;
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--header-h) + 16px);
    }
.info-band h3{
  font-weight: 800;
}
    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: var(--fs-body);
      line-height: 1.65;
      color: var(--body);
      background: var(--white);
      overflow-x: hidden;         /* guards against accidental h-scroll */
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5 {
      margin: 0 0 var(--sp-3);
      font-family: var(--font-display);
      color: var(--ink);
      line-height: 1.22;
      font-weight: 600;
      letter-spacing: -0.01em;
    }
    h1 { font-size: var(--fs-h1); }
    h2 { font-size: var(--fs-h2); }
    h3 { font-size: var(--fs-h3); }
    h4 { font-size: 1rem; }

    p  { margin: 0 0 var(--sp-4); }
    p:last-child { margin-bottom: 0; }

    a { color: var(--teal-dark); text-decoration: none; transition: color .2s var(--ease); }
    a:hover { color: var(--navy); }

    img, svg, video { max-width: 100%; height: auto; display: block; }

    ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.15rem; }
    li + li { margin-top: var(--sp-2); }

    button, input, select, textarea { font: inherit; color: inherit; }
    button { cursor: pointer; }

    hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-6) 0; }

    :focus-visible {
      outline: 3px solid var(--gold);
      outline-offset: 2px;
      border-radius: var(--radius-sm);
    }

    ::selection { background: var(--gold); color: var(--navy); }

    .skip-link {
      position: absolute; left: 12px; top: -60px; z-index: 200;
      background: var(--navy); color: #fff; padding: 10px 18px;
      border-radius: 0 0 var(--radius) var(--radius); font-weight: 600;
      transition: top .2s var(--ease);
    }
    .skip-link:focus { top: 0; color: #fff; }

    /* 3. UTILITIES ============================================================= */
    .container {
      width: 100%;
      max-width: var(--container);
      margin-inline: auto;
      padding-inline: var(--gutter);
    }
    .container--narrow { max-width: var(--container-narrow); }

    .section { padding-block: var(--section-y); }
    .section--surface { background: var(--surface); }
    .section--dark { background: var(--navy); color: #C7D5E1; }
    .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
    .section--tight { padding-block: clamp(32px, 2.4vw + 20px, 56px); }

    .section-head { max-width: 720px; margin: 0 auto clamp(28px, 3vw, 48px); text-align: center; }
    .section-head p { color: var(--muted); }
    .section-head--left { margin-inline: 0; text-align: left; }

    .eyebrow {
      display: inline-block;
      font-family: var(--font-display);
      font-size: var(--fs-xs);
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--teal-dark);
      margin-bottom: var(--sp-2);
    }
    .section--dark .eyebrow { color: var(--gold); }

    .title-caps {
      color:#fff;
      font-size: var(--fs-h2);
      text-transform: uppercase;
      letter-spacing: .01em;
      font-weight: 700;
    }

    .lead { font-size: 1.0625rem; color: var(--body); }
    .text-center { text-align: center; }
    .sr-only {
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
    }
    .grid { display: grid; gap: var(--gap-card); }
    .cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

    /* 4. COMPONENTS ============================================================ */
    .btn {
      --btn-bg: var(--navy);
      --btn-fg: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--sp-2);
      min-height: 48px;
      padding: 12px 26px;
      background: var(--btn-bg);
      color: var(--btn-fg);
      font-family: var(--font-display);
      font-size: var(--fs-sm);
      font-weight: 600;
      letter-spacing: .01em;
      border: 2px solid transparent;
      border-radius: var(--radius-sm);
      text-align: center;
      transition: transform .18s var(--ease), background .2s var(--ease),
                  box-shadow .2s var(--ease), color .2s var(--ease);
    }
    .btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: var(--shadow); }
    .btn:active { transform: translateY(0); }

    .btn--gold    { --btn-bg: var(--gold); --btn-fg: var(--navy); }
    .btn--gold:hover { --btn-bg: var(--gold-dark); }
    .btn--teal    { --btn-bg: var(--teal); }
    .btn--teal:hover { --btn-bg: var(--teal-dark); }
    .btn--ghost   { --btn-bg: #fff; --btn-fg: var(--navy); border-color: var(--line); }
    .btn--ghost:hover { --btn-bg: var(--surface); border-color: var(--navy); }
    .btn--light   { --btn-bg: #fff; --btn-fg: var(--navy); }
    .btn--outline-light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.45); }
    .btn--outline-light:hover { --btn-bg: rgba(255,255,255,.12); }
    .btn--sm { min-height: 40px; padding: 8px 18px; font-size: var(--fs-xs);font-weight:700; }
    .btn--block { width: 100%; }
    .btn__arrow { transition: transform .2s var(--ease); }
    .btn:hover .btn__arrow { transform: translateX(3px); }

    /* Enquire-style CTA arrow badge */
    .btn--arrow-badge { padding-right: 8px; gap: 10px; }
    .btn__arrow-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: none;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--navy);
      transition: transform .2s var(--ease);
    }
    .btn:hover .btn__arrow-badge { transform: translate(2px, -2px); }

    .card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: clamp(18px, 1.6vw, 26px);
      transition: transform .22s var(--ease), box-shadow .22s var(--ease),
                  border-color .22s var(--ease);
    }
    .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #CFDBE5; }

    .pill {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 5px 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius-pill);
      background: var(--white);
      font-size: var(--fs-sm);
      color: var(--accent);
    }
    .pill--static { cursor: default; }

    .badge-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
    .badge {
      display: flex; align-items: center; gap: var(--sp-2);
      padding: 10px 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: #fff;
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.3;
    }
    .badge svg { flex: none; color: var(--teal); }

    .icon-circle {
      display: grid; place-items: center;
      width: 62px; height: 62px;
      border: 1.5px solid rgba(245, 176, 27, .55);
      border-radius: 50%;
      color: var(--gold);
      transition: background .25s var(--ease), transform .25s var(--ease);
    }
    .icon-circle svg { width: 26px; height: 26px; }

    /* forms */
    .field { margin-bottom: var(--sp-3); }
    .field label {
      display: block;
      font-family: var(--font-display);
      font-size: var(--fs-xs);
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--ink);
    }
    .input, .select, .textarea {
      width: 100%;
      min-height: 48px;
      padding: 12px 14px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      color: var(--ink);
      transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
    }
    .textarea { min-height: 130px; resize: vertical; }
    .input::placeholder, .textarea::placeholder { color: #94A5B3; }
    .input:focus, .select:focus, .textarea:focus {
      outline: none;
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(20, 163, 168, .18);
    }
    .select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2316283B' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 40px;
    }
    .field-error {
      display: none;
      /* margin-top: 5px; */
      font-size: 11px;
      color: var(--error);
      font-weight: 500;
    }
    .field.is-invalid .input,
    .field.is-invalid .select,
    .field.is-invalid .textarea { border-color: var(--error); background: #FFF7F7; }
    .field.is-invalid .field-error { display: block; }

    .form-note { font-size: var(--fs-xs); color: var(--muted); }
    .form-status {
      display: none;
      margin-top: var(--sp-3);
      padding: 12px 14px;
      border-radius: var(--radius-sm);
      font-size: var(--fs-sm);
      font-weight: 500;
    }
    .form-status.is-visible { display: block; }
    .form-status--ok { background: #E9F7F0; color: #12704A; border: 1px solid #B9E2CE; }

    /* 5. HEADER ================================================================ */
    .site-header {
      position: sticky; top: 0; z-index: 60;
      background: rgba(255, 255, 255, .97);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--line);
      transition: box-shadow .25s var(--ease);
    }
    .site-header.is-stuck { box-shadow: var(--shadow); }
    .site-header__inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: var(--sp-5); min-height: var(--header-h);
    }
    .brand { display: inline-flex; align-items: center; flex: none; }
    .brand img { width: clamp(132px, 12vw, 168px); }

    .nav { display: flex; align-items: center; gap: clamp(20%, 2vw, 30px); }
    .nav__phone {
      display: inline-flex; align-items: center; gap: 7px;
      font-family: var(--font-display);
      font-size: var(--fs-sm);
      font-weight: 600;
      color: var(--ink);
      white-space: nowrap;
    }
    .nav__phone svg { color: var(--teal); }
    .nav__list {
      display: flex; align-items: center; gap: clamp(14px, 1.5vw, 26px);
      list-style: none; margin: 0; padding: 0;
    }
    .nav__list li { margin: 0; }
    .nav__link {
      position: relative;
      display: inline-flex; align-items: center; gap: 6px;
      padding: 8px 2px;
      font-family: var(--font-display);
      font-size: var(--fs-sm);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .04em;
      color: var(--ink);
      background: none; border: 0;
    }
    .nav__link::after {
      content: ""; position: absolute; left: 0; right: 0; bottom: 0;
      height: 2px; background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform .22s var(--ease);
    }
    .nav__link:hover::after, .nav__item.is-open > .nav__link::after { transform: scaleX(1); }
    .nav__link[aria-current="page"] { color: var(--teal-dark); font-weight: 600; }
    .nav__link[aria-current="page"]::after { transform: scaleX(1); background: var(--teal); }

    .nav__cta { display: flex; align-items: center; gap: var(--sp-3); }

    .home-page .site-header__inner {
      flex-wrap: wrap;
      row-gap: 12px;
      min-height: unset;
      padding-block: 9px 3px;
    }
    .home-page .hamburger { order: 2; }
    .home-page .site-header__top-right {
      order: 3;
      display: flex;
      align-items: center;
      gap: clamp(14px, 2vw, 28px);
      margin-left: auto;
    }
    .home-page .nav {
      order: 4;
      flex: 1 0 100%;
    }
    .home-page .nav__list { justify-content: flex-start; }

    .topbar {
      background: var(--white);
      border-bottom: 1px solid var(--line-soft);
      font-size: var(--fs-sm);
    }
    .topbar__inner {
      display: flex; align-items: center; justify-content: flex-end;
      gap: var(--sp-5); min-height: 46px;
    }
    .topbar__link {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--ink); font-weight: 600; font-family: var(--font-display);
    }
    .topbar__link svg { color: var(--teal); }

    .nav__link svg { transition: transform .22s var(--ease); }
    .nav__item.is-open > .nav__link svg { transform: rotate(180deg); }

    .nav__item { position: relative; }
    .dropdown {
      position: absolute; top: calc(100% + 10px); left: -14px;
      min-width: 260px; padding: 10px;
      list-style: none; margin: 0;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      opacity: 0; visibility: hidden; transform: translateY(-6px);
      transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
    }
    .nav__item.is-open > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
    .dropdown li { margin: 0; }
    .dropdown a {
      display: block; padding: 9px 12px;
      border-radius: var(--radius-sm);
      color: var(--ink); font-size: var(--fs-sm);
    }
    .dropdown a:hover { background: var(--surface); color: var(--teal-dark); }

    .hamburger {
      display: none;
      width: 46px; height: 46px;
      padding: 0;
      background: var(--navy);
      border: 0; border-radius: var(--radius-sm);
    }
    .hamburger span {
      display: block; width: 20px; height: 2px; margin: 4px auto;
      background: #fff; border-radius: 2px;
      transition: transform .25s var(--ease), opacity .2s var(--ease);
    }
    .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .nav-overlay {
      position: fixed; inset: 0; z-index: 55;
      background: rgba(7, 27, 46, .5);
      opacity: 0; visibility: hidden;
      transition: opacity .25s var(--ease), visibility .25s;
    }
    .nav-overlay.is-visible { opacity: 1; visibility: visible; }
    body.nav-open { overflow: hidden; }

    /* 6. HERO ================================================================== */
    .hero { background-image:url(assets/img/hero-bg.webp); background-size: cover; background-position: center; position: relative; background: var(--surface); overflow: hidden; }
    .hero__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
      align-items: center;
      gap: clamp(24px, 3vw, 56px);
      padding-block: clamp(40px, 4vw, 72px) clamp(72px, 6vw, 104px);
    }
    .hero__title { font-size: var(--fs-hero); font-weight: 700; margin-bottom: var(--sp-4); }
    .hero__title em { display: block; font-style: normal; color: var(--accent); }
    .hero__text { max-width: 46ch; color: var(--body); margin-bottom: var(--sp-6); }
    .hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
    .hero__media { position: relative; }
    .hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

    .hero__strip {
      position: relative;
      margin-top: calc(-1 * clamp(40px, 3.4vw, 56px));
      z-index: 2;
    }
    .hero__strip-inner {
      display: flex; flex-wrap: wrap;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      padding:14px;
    }
    .hero__strip-item {
      display: flex; align-items: center; gap: var(--sp-3);
      flex: 1 1 220px;
      padding: 18px clamp(16px, 2vw, 28px);
      border-right: 1px solid var(--navy);
      font-family: var(--font-display);
      font-size: var(--fs-sm);
      font-weight: 500;
      color: var(--ink);
      line-height: 1.35;
    }
    .hero__strip-item:last-child { border-right: 0; }
    .hero__strip-item svg { flex: none; color: var(--teal); }

    /* 7. SECTIONS ============================================================== */
    /* products */
    .product-grid { display: grid; gap: clamp(18px, 2vw, 30px); grid-template-columns: repeat(5, minmax(0, 1fr)); }
    
    /* Center the 4 products on the second row */
    .product-grid--row2 { 
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: clamp(18px, 2vw, 30px);
      margin-top: clamp(18px, 2vw, 30px); 
    }
    /* Ensure the cards in the flex row match the width of the top grid */
    .product-grid--row2 .product-card {
      width: calc(20% - (clamp(18px, 2vw, 30px) * 4 / 5));
    }

    .product-card {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; padding: var(--sp-4) var(--sp-3);
      border-radius: var(--radius);
      border: 1px solid transparent;
      transition: border-color .22s var(--ease), box-shadow .22s var(--ease),
                  transform .22s var(--ease), background .22s var(--ease);
    }
    .product-card:hover { border-color: var(--line); background: #fff; box-shadow: var(--shadow); transform: translateY(-4px); }
    .product-card__media {
      display: grid; place-items: center;
      width: 100%; aspect-ratio: 4 / 3; margin-bottom: var(--sp-3);
    }
    .product-card__media img { max-height: 100%; width: auto; }
    .product-card__title {
          font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #0B3C5D;
    margin-bottom: 6px;
    }
    .product-card:hover .product-card__title { color: var(--teal-dark); }
    .product-card p { font-size: 14px; color: var(--navy); line-height: 1.5; margin: 0; }

    .product-grid .product-card { position: relative; }
    .product-grid .product-card + .product-card::before {
      content: ""; position: absolute; left: calc(-1 * clamp(9px, 1vw, 15px)); top: 12%;
      width: 1px; height: 76%; background: var(--line-soft);
    }

    /* why choose us */
    .why { background: var(--navy); }
    .why__grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: clamp(14px, 1.6vw, 26px); }
    .why__item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); }
    .why__item:hover .icon-circle { background: rgba(245, 176, 27, .14); transform: translateY(-4px); }
    .why__item h3 { font-size: 0.9375rem; margin: 0; color: #fff; }
    .why__item p { font-size: var(--fs-xs); color: #A9BBCA; line-height: 1.55; margin: 0; margin-top:10px; }

    /* quote band */
    .quote-band { background: var(--surface-alt); }
    .quote-band__grid {
      display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
      gap: clamp(20px, 2.4vw, 36px); align-items: start;
    }
    .quote-form-card {
      background: var(--teal);
      color: #fff;
      border-radius: var(--radius-lg);
      padding: clamp(22px, 2.4vw, 38px);
    }
    .quote-form-card h2 { color: #fff; text-transform: uppercase; font-size: var(--fs-h3); letter-spacing: .02em; }
    .quote-form-card > p { color: rgba(255, 255, 255, .88); font-size: var(--fs-sm); margin-bottom: var(--sp-5); }
    .quote-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-3); }
    .quote-form .field { margin: 0; }
    .quote-form .field--full { grid-column: 1 / -1; }
    .quote-form .input, .quote-form .select { border-color: transparent; }
    .quote-form .field-error { color: #FFF0C2; }
    .quote-form .form-status { grid-column: 1 / -1; }
    .quote-form .form-status--ok { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.4); }
    .quote-form button[type="submit"] { text-transform: uppercase; letter-spacing: .04em; }
    .input-with-icon { position: relative; }
    .input-with-icon .input { padding-right: 42px; }
    .input-with-icon svg {
      position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
      color: var(--teal-dark); pointer-events: none;
    }

    .review-stack { display: grid; gap: var(--sp-4); }
    .review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--sp-5); }
    .review-card__top { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
    .review-card__score { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--navy); line-height: 1; }
    .google-word { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; letter-spacing: -.02em; }
    .google-word span:nth-child(1) { color: #4285F4; }
    .google-word span:nth-child(2) { color: #EA4335; }
    .google-word span:nth-child(3) { color: #FBBC05; }
    .google-word span:nth-child(4) { color: #4285F4; }
    .google-word span:nth-child(5) { color: #34A853; }
    .google-word span:nth-child(6) { color: #EA4335; }
    .stars { display: inline-flex; gap: 2px; color: var(--gold); }
    .stars svg { width: 15px; height: 15px; }
    .stars--block { display: flex; margin-top: var(--sp-2); }
    .review-card__meta { font-size: var(--fs-sm); color: var(--muted); margin-top: var(--sp-2); }

    .testimonial { position: relative; }
    .testimonial__mark {
      font-size: 5.4rem; line-height: 1;
      color: var(--teal); opacity: .5; margin-bottom: -6px;
    }
    .testimonial blockquote { margin: 0; }
    .testimonial p { font-size: var(--fs-sm); color: var(--ink); }
    .testimonial footer { margin-top: var(--sp-3); display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
    .testimonial cite { font-style: normal; font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size:22px; }

    .info-band__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
    .info-band__col { padding: 0 clamp(18px, 2.4vw, 40px); border-right: 1px solid var(--ink); }
    .info-band__col:first-child { padding-left: 0; }
    .info-band__col:last-child { border-right: 0; padding-right: 0; }
    .info-band h3 {
      font-size: 0.9375rem; text-transform: uppercase; letter-spacing: .05em;
      margin-bottom: var(--sp-4);
    }
    
    /* Update the brand grid to handle an odd number (7) gracefully */
    .brand-grid { 
      display: flex; 
      flex-wrap: wrap; 
      gap: var(--sp-3); 
      justify-content: flex-start;
    }
    .brand-grid img { 
      flex: 1 1 calc(50% - var(--sp-3));
      max-width: 200px;
      filter: grayscale(1); 
      opacity: .8; 
      transition: filter .25s var(--ease), opacity .25s var(--ease); 
    }
    .brand-grid a:hover img, .brand-grid img:hover { filter: none; opacity: 1; }
    
    .area-pills { display: flex; flex-wrap: wrap; gap: var(--sp-2); list-style: none; padding: 0; margin: 0; }
    .area-note { margin-top: var(--sp-3); font-size: var(--fs-sm); color: var(--muted); }
    .check-list { list-style: none; padding: 0; margin: 0 0 var(--sp-5); }
    .check-list li { display: flex; gap: var(--sp-2); font-size: var(--fs-sm); color: var(--body); }
    .check-list svg { flex: none; margin-top: 4px; color: var(--teal); }
    
    /* process */
    .process { position: relative; }
    .process__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--sp-4); position: relative; }
    .process__step { text-align: center; position: relative; }
    .process__icon {
      position: relative; z-index: 2;
      display: grid; place-items: center;
      width: 66px; height: 66px; margin: 0 auto var(--sp-3);
      background: #fff; border: 1px solid var(--line); border-radius: 50%;
      color: var(--navy);
      transition: border-color .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
    }
    .process__step:hover .process__icon { border-color: var(--gold); color: var(--teal-dark); transform: translateY(-4px); }
    .process__num {
      position: absolute; right: -4px; bottom: -4px;
      display: grid; place-items: center;
      width: 24px; height: 24px;
      background: var(--navy); color: #fff;
      border-radius: 50%; font-family: var(--font-display);
      font-size: 0.72rem; font-weight: 600;
    }
    .process__step h3 { font-size: 0.9375rem; margin-bottom: 4px; }
    .process__step p { font-size: var(--fs-xs); color: var(--muted); margin: 0; line-height: 1.55; }
    .process__grid::before {
      content: ""; position: absolute; top: 33px; left: 10%; right: 10%;
      height: 1px; background: repeating-linear-gradient(to right, var(--line) 0 8px, transparent 8px 16px);
      z-index: 1;
    }

    /* 9. FOOTER ================================================================ */
    .site-footer { background: var(--navy-deep); color: #9FB3C4; padding-top: clamp(40px, 3.4vw, 64px); font-size: var(--fs-sm); }
    .site-footer__grid {
      display: grid;
      grid-template-columns: 1.35fr 1fr 0.8fr 1fr;
      gap: clamp(24px, 2.6vw, 44px);
      padding-bottom: clamp(28px, 2.6vw, 44px);
    }
    .site-footer h4 {
      color: #fff; font-size: var(--fs-xs); letter-spacing: .14em;
      text-transform: uppercase; margin-bottom: var(--sp-4);
    }
    .site-footer__brand img { width: 150px; margin-bottom: var(--sp-4); }
    .site-footer__brand p { font-size: var(--fs-sm); line-height: 1.7; }
    .footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
    .footer-list li { margin: 0; }
    .footer-list a { color: #9FB3C4; }
    .footer-list a:hover { color: var(--gold); }
    .footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); }
    .footer-contact li { display: flex; gap: 10px; margin: 0; }
    .footer-contact svg { flex: none; margin-top: 3px;  }
    .footer-contact a { color: #C7D5E1; }
    .footer-contact a:hover { color: var(--gold); }
    .social-row { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
    .social-row a {
      display: grid; place-items: center; width: 38px; height: 38px;
      border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #C7D5E1;
      transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
    }
    .social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
    .site-footer__bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding-block: var(--sp-4);
      display: flex; flex-wrap: wrap; gap: var(--sp-3);
      align-items: center; justify-content: space-between;
      font-size: var(--fs-xs);
    }
    .site-footer__bottom a { color: #9FB3C4; }
    .site-footer__bottom a:hover { color: var(--gold); }

    .to-top {
      position: fixed; right: 18px; bottom: 18px; z-index: 70;
      width: 46px; height: 46px;
      display: grid; place-items: center;
      background: var(--navy); color: #fff;
      border: 0; border-radius: 50%;
      box-shadow: var(--shadow-lg);
      opacity: 0; visibility: hidden; transform: translateY(10px);
      transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s, background .2s;
    }
    .to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
    .to-top:hover { background: var(--teal-dark); }

    /* 10. MOTION / A11Y ======================================================== */
    .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
    .reveal.is-in { opacity: 1; transform: none; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
      }
      .reveal { opacity: 1; transform: none; }
    }

    @media print {
      .site-header, .topbar, .to-top, .site-footer, .hamburger { display: none !important; }
      body { color: #000; }
    }


    /* ==========================================================================\n       PIXEL-ALIGNMENT OVERRIDES — matched to the supplied MacBook Air reference\n       ========================================================================== */
    :root {
      --container: 1340px;
      --gutter: clamp(24px, 4vw, 58px);
      --header-h: 154px;
      --section-y: clamp(54px, 5vw, 78px);
    }

    body { line-height: 1.45; color: #263746; }
    .container { max-width: var(--container); }
    .title-caps { color: var(--navy); font-size: clamp(1.45rem, 1.8vw, 2rem); font-weight: 800; }
    .why .title-caps { color: #fff; }
    .section-head { margin-bottom: 34px; }

    /* Header: tall logo area with phone/CTA above and menu below */
    .site-header { position: relative; border-bottom: 0; box-shadow: none; }
    .home-page .site-header__inner {
      position: relative;
      min-height: 154px;
      display: grid;
      grid-template-columns: 250px 1fr auto;
      grid-template-rows: 65px 55px;
      column-gap: 30px;
      row-gap: 0;
      padding-block: 16px 12px;
    }
    .home-page .site-header__top-right {
      grid-column: 3;
      grid-row: 1;
      align-self: start;
      justify-self: end;
      margin: 0;
      gap: 24px;
    }
    .home-page .nav {
      display: contents;
    }
    .home-page .nav .brand {
      grid-column: 1;
      grid-row: 1 / 3;
      align-self: center;
      justify-self: start;
    }
    /* .home-page .nav .brand img { width: 205px; height: auto; } */
    .home-page .nav__list {
      grid-column: 2 / 4;
      grid-row: 2;
      align-self: center;
      justify-self: center;
      display: flex;
      justify-content: flex-end;
      gap: clamp(22px, 2.2vw, 42px);
    }
    .nav__link { font-size: 14px; font-weight: 700; letter-spacing: 0; padding: 8px 0; }
    .nav__phone { font-size: 17px; font-weight: 800; color: #17293b; }
    .home-page .site-header__top-right .btn { min-width: 126px; border-radius: 4px; }

    /* Hero */
    .hero {
      min-height: 665px;
      background-color: #eef4f6;
      background-size: cover !important;
      background-position: center center !important;
      overflow: visible;
    }
    .hero__inner {
      min-height: 590px;
      display: block;
      padding-top: 105px;
      padding-bottom: 100px;
    }
    .hero__copy { width: min(47%, 590px); }
    .hero__title {
      max-width: 590px;
      font-size:44px;
      line-height: 1.04;
      letter-spacing: -0.035em;
      font-weight: 700;
      margin-bottom: 25px;
    }
    .hero__title em { color: #20a0ad; }
    .hero__text { max-width: 565px; font-size: 15px; line-height: 1.45; color: #263746; margin-bottom: 34px; }
    .hero__actions { gap: 20px; }
    .hero__actions .btn { min-width: 242px; min-height: 54px; border-radius: 7px; font-size: 14px; }
    .hero__strip { width: auto; margin-top: -98px; padding-bottom: 0; }
    .hero__strip-inner {
      width: 555px;
      border: 0;
      border-radius: 9px;
      box-shadow: 0 8px 28px rgba(14,34,51,.10);
    }
    .hero__strip-item { min-width: 0; flex: 1; padding: 9px 18px; font-size: 12px; line-height: 1.2; }

    /* Products */
    #products { padding-top: 83px; padding-bottom: 70px; }
    .product-grid { gap: 0; }
    .product-grid--row2 { gap: 0; margin-top: 12px; }
    .product-grid--row2 .product-card { width: 20%; }
    .product-card { min-height: 235px; padding: 12px 20px 18px; border-radius: 0; }
    .product-card__media { height: 112px; aspect-ratio: auto; margin-bottom: 4px; }
    .product-card__media img { max-height: 104px; }
    .product-card__title { font-size: 16px; line-height: 1.15; margin-bottom: 4px; }
    .product-card p { font-size: 14px; line-height: 1.25; max-width: 175px; }
    .product-grid .product-card + .product-card::before { left: 0; top: 8%; height: 84%; }
    .product-grid--row2 .product-card { position: relative; }
    .product-grid--row2 .product-card + .product-card::before {
      content: ""; position: absolute; left: 0; top: 8%; width: 1px; height: 84%; background: var(--line-soft);
    }

    /* Why section */
    .why { padding-block: 48px 58px; }
    .why__grid { gap: 34px; }
    .icon-circle { width: 90px; height: 90px; }
    .icon-circle svg { width: 42px; height: 42px; }
    .why__item { gap: 13px; }
    .why__item h3 { font-size: 15px; line-height: 1.15; }
    .why__item p { font-size: 12px; line-height: 1.35; max-width: 150px; }

    /* Quote + reviews */
    .quote-band { padding-block: 38px 44px; background: #fff; }
    .quote-band__grid { grid-template-columns: 2fr 1fr; gap: 28px; }
    .quote-form-card {
      display: grid;
      grid-template-columns: 0.9fr 1.45fr;
      grid-template-rows: auto 1fr;
      column-gap: 42px;
      align-items: start;
      min-height: 420px;
      border-radius: 7px;
      padding: 38px 34px;
    }
    .quote-form-card h2 { grid-column: 1; grid-row: 1; font-size: 21px; line-height: 1.15; max-width: 235px; }
    .quote-form-card > p { grid-column: 1; grid-row: 2; font-size: 14px; }
    .quote-form { grid-column: 2; grid-row: 1 / 3; align-self: center; gap: 15px 14px; }
    .quote-form .input, .quote-form .select { min-height: 54px; border-radius: 3px; }
    .quote-form .btn { min-height: 55px; border-radius: 2px; }
    .review-stack { gap: 18px; }
    .review-card { border-color: #7b8791; border-radius: 6px; padding: 24px; }
    .review-card__top { justify-content: space-between; }
    .review-card__score { font-size: 2rem; }
    .review-card__meta { text-align: center; color: #17293b; font-weight: 700; }
    .testimonial p { font-size: 15px; }
    .badge-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .badge { justify-content: center; min-height: 62px; padding: 8px; font-size: 14px; text-align: center; background: #f4f7f9; border-color: #9ca8b2; }

    /* Brand/support band */
    .info-band { padding-block: 38px 48px; background: #f0f3f7; }
    .info-band__col { min-height: 330px; }
    .info-band h3 { font-size: 18px; line-height: 1.2; }
    .brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .brand-grid img { width: 100%; max-width: none; height: 74px; object-fit: contain; filter: none; opacity: 1; }
    .area-pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px 14px; }
    .pill { justify-content: center; min-height: 37px; padding: 5px 10px; font-size: 14px; border: 0;font-weight:600; }
    .area-note { margin-top: 32px; text-align: center; color: #182b3c; font-size: 12px; }
    .check-list li { font-size: 16px; line-height: 1.35; }
    .info-band__col:last-child .btn { display: flex; width: 130px; margin: 38px auto 0; }

    /* Process */
    .process { padding-block: 62px 74px; }
    .process .section-head .eyebrow, .process .section-head p { display: none; }
    .process__grid { gap: 20px; }
    .process__icon { width: 92px; height: 92px; box-shadow: 0 6px 11px rgba(14,34,51,.14); }
    .process__icon svg { width: 43px; height: 43px; }
    .process__num { right: 50%; transform: translateX(50%); bottom: -34px; width: 23px; height: 23px; background: #e7edf2; color: var(--navy); }
    .process__step h3 { margin-top: 37px; font-size: 15px; }
    .process__step p { font-size: 12px; line-height: 1.35; max-width: 180px; margin-inline: auto; }
    .process__grid::before { top: 46px; left: 8%; right: 8%; background: repeating-linear-gradient(to right, #596976 0 3px, transparent 3px 8px); }

    /* Footer */
    .site-footer { padding-top: 50px; }
    .site-footer__grid { grid-template-columns: 1.15fr 1.5fr .65fr 1fr; padding-bottom: 44px; }
    .site-footer__brand img { width: 180px; }
    .site-footer__brand p, .footer-list, .footer-contact { font-size: 14px; }
    .site-footer h4 { font-size: 13px; letter-spacing: .04em; }
    .site-footer__bottom { justify-content: center; }

    @media (max-width: 1100px) {
      :root { --header-h: 78px; }
      .home-page .site-header__inner { display: flex; min-height: 78px; padding-block: 8px; }
      .home-page .nav { display: flex; }
      .home-page .nav .brand { display: inline-flex; }
      .home-page .nav .brand img { width: 145px; }
      .home-page .site-header__top-right { margin-left: auto; }
      .home-page .nav__list { justify-self: auto; }
      .hamburger { display: block; }
      .hero { min-height: 570px; background-position: 60% center !important; }
      .hero__inner { min-height: 510px; padding-top: 75px; }
      .hero__copy { width: 55%; }
      .quote-form-card { grid-template-columns: 1fr; min-height: 0; }
      .quote-form-card h2, .quote-form-card > p, .quote-form { grid-column: 1; grid-row: auto; }
    }

    @media (max-width: 767px) {
      .site-header__top-right .nav__phone { display: none; }
      .site-header__top-right .btn { display: none; }
      .hero { min-height: 620px; background-position: 68% center !important; }
      .hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(245,249,250,.96) 0%, rgba(245,249,250,.86) 58%, rgba(245,249,250,.18) 100%); }
      .hero__inner, .hero__strip { position: relative; z-index: 1; }
      .hero__copy { width: 100%; max-width: 520px; }
      .hero__title { font-size: 2.45rem; }
      .hero__actions .btn { min-width: 0; flex: 1 1 180px; }
      .hero__strip-inner { width: 100%; }
      .product-grid, .product-grid--row2 { display: grid; grid-template-columns: repeat(2, 1fr); }
      .product-grid--row2 .product-card { width: auto; }
      .why__grid { grid-template-columns: repeat(2, 1fr); }
      .quote-band__grid { grid-template-columns: 1fr; }
      .info-band__grid { grid-template-columns: 1fr; }
      .info-band__col { min-height: 0; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
      .process__grid { grid-template-columns: 1fr; gap: 35px; }
      .process__grid::before { display: none; }
      .site-footer__grid { grid-template-columns: 1fr 1fr; }
    }

  

    /* ================================================================
       TARGETED FIX: QUOTE + REVIEWS ALIGNMENT AND STICKY HEADER ONLY
       ================================================================ */

    /* Keep the complete header fixed at the top without changing its layout. */
    .site-header {
      position: sticky !important;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, .98);
      box-shadow: 0 1px 0 rgba(14, 34, 51, .08);
    }

    /* Desktop layout matched to the supplied reference. */
    @media (min-width: 1101px) {
      .quote-band {
        padding-block: 36px 50px;
      }

      .quote-band__grid {
        grid-template-columns: minmax(0, 2fr) minmax(360px, 1fr);
        gap: 28px;
        align-items: stretch;
      }

      .quote-form-card {
        position: relative;
        display: grid;
        grid-template-columns: minmax(285px, .95fr) minmax(320px, 1.05fr);
        grid-template-rows: auto 1fr;
        column-gap: 34px;
        min-height: 475px;
        padding: 34px 29px;
        overflow: hidden;
      }

      .quote-form-card h2 {
        grid-column: 1;
        grid-row: 1;
        max-width: 290px;
        margin: 0;
        padding-top: 2px;
        font-size: 24px;
        line-height: 1.35;
        font-weight: 800;
        z-index: 2;
      }

      .quote-form-card > p {
        grid-column: 1;
        grid-row: 2;
        align-self: start;
        margin: 4px 0 0;
        font-size: 16px;
        line-height: 1.35;
        font-weight: 700;
        z-index: 2;
      }

      .quote-form {
        grid-column: 1 / -1;
        grid-row: 1 / 3;
        display: grid;
        grid-template-columns: minmax(285px, .95fr) minmax(320px, 1.05fr);
        grid-template-rows: repeat(5, 56px);
        column-gap: 34px;
        row-gap: 15px;
        align-self: center;
        width: 100%;
      }

      .quote-form > .field { min-width: 0; }
      .quote-form > .field:nth-child(1) { grid-column: 2; grid-row: 1; }
      .quote-form > .field:nth-child(2) { grid-column: 2; grid-row: 2; }
      .quote-form > .field:nth-child(3) { grid-column: 2; grid-row: 3; }
      .quote-form > .field:nth-child(4) { grid-column: 1; grid-row: 4; }
      .quote-form > .field:nth-child(5) { grid-column: 2; grid-row: 4; }
      .quote-form > .field:nth-child(6) { grid-column: 2; grid-row: 5; }
      .quote-form > .form-status { grid-column: 1 / -1; grid-row: 6; }

      .quote-form .input,
      .quote-form .select,
      .quote-form .btn {
        height: 56px;
        min-height: 56px;
      }

      .quote-form .input,
      .quote-form .select {
        padding-inline: 36px;
        font-size: 14px;
        border-radius: 4px;
      }

      .quote-form .select {
        background-position: right 20px center;
      }

      .input-with-icon svg {
        right: 17px;
        width: 27px;
        height: 27px;
        color: #777;
      }

      .quote-form .btn {
        font-size: 16px;
        font-weight: 800;
        border-radius: 3px;
      }

      .review-stack {
        display: grid;
        grid-template-rows: 143px 172px 73px;
        gap: 33px;
        min-width: 0;
      }

      .review-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 22px 27px;
      }

      .review-card__top {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 14px;
      }

      .google-word img {
        width: 139px;
        max-height: 52px;
        object-fit: contain;
      }

      .review-card__top .stars {
        flex: 1 1 auto;
        justify-content: center;
        margin: 0;
        gap: 3px;
        white-space: nowrap;
      }

      .review-card__top .stars svg {
        width: 20px;
        height: 20px;
      }

      .review-card__score {
        margin-left: auto;
        font-size: 35px;
        white-space: nowrap;
      }

      .review-card__meta {
        margin-top: 12px;
        font-size: 20px;
        line-height: 1.2;
      }

      .testimonial {
        display: grid;
        grid-template-columns: 44px 1fr;
        align-items: start;
      }

      .testimonial__mark {
        grid-column: 1;
        grid-row: 1 / 3;
        margin: -3px 0 0;
        font-size: 70px;
        line-height: .8;
        color: #123A5E;
        opacity: 1;
      }

      .testimonial blockquote {
        grid-column: 2;
        grid-row: 1;
      }

      .testimonial p {
        margin: 0;
        font-size: 17px;
        line-height: 1.45;
        color: #111;
      }

      .testimonial footer {
        grid-column: 2;
        grid-row: 2;
        justify-content: center;
        margin-top: 8px;
        gap: 15px;
      }

      .testimonial cite { font-size: 20px; }
      .testimonial footer .stars svg { width: 19px; height: 19px; }

      .badge-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
      }

      .badge {
        min-width: 0;
        min-height: 73px;
        justify-content: flex-start;
        gap: 8px;
        padding: 8px 10px;
        font-size: 14px;
        line-height: 1.25;
        font-weight: 700;
      }

      .badge img {
        width: 31px;
        height: 31px;
        flex: none;
        object-fit: contain;
      }
    }

    /* Preserve clean stacking on tablet and mobile. */
    @media (max-width: 1100px) {
      .site-header { position: sticky !important; top: 0; }
      .quote-form-card { padding: 28px 24px; }
      .quote-form { margin-top: 8px; }
    }

    @media (max-width: 767px) {
      .quote-form { grid-template-columns: 1fr; }
      .quote-form .field--full { grid-column: auto; }
      .review-stack { gap: 16px; }
      .badge-row { grid-template-columns: 1fr; }
    }


    /* ================================================================
       TARGETED FIX: HOW IT WORKS SECTION ONLY
       ================================================================ */
    .process {
      padding-block: 50px 66px;
      background: #fff;
    }

    .process .section-head {
      margin-bottom: 56px;
    }

    .process .section-head .eyebrow,
    .process .section-head p {
      display: none;
    }

    .process .section-head .title-caps {
      margin: 0;
      font-size: 34px;
      line-height: 1.1;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #10283b;
    }

    .process__grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 28px;
      position: relative;
      align-items: start;
    }

    .process__grid::before {
      content: "";
      position: absolute;
      top: 49px;
      left: 8.5%;
      right: 8.5%;
      height: 1px;
      background: repeating-linear-gradient(
        to right,
        #6d7d88 0 3px,
        transparent 3px 7px
      );
      z-index: 0;
    }

    .process__step {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .process__icon {
      position: relative;
      z-index: 2;
      display: grid;
      place-items: center;
      width: 100px;
      height: 100px;
      margin: 0 auto 0;
      background: #fff;
      border: 1px solid #b8d4e5;
      border-radius: 50%;
      color: #102d42;
      box-shadow: 0 6px 8px rgba(15, 40, 59, .22);
      transition: transform .22s var(--ease), border-color .22s var(--ease);
    }

    .process__step:hover .process__icon {
      transform: translateY(-4px);
      border-color: var(--teal);
      color: #102d42;
    }

    .process__icon svg {
      width: 46px;
      height: 46px;
      stroke-width: 1.9;
    }

    .process__num {
      position: absolute;
      left: 50%;
      right: auto;
      bottom: -49px;
      transform: translateX(-50%);
      display: grid;
      place-items: center;
      width: 31px;
      height: 40px;
      background: #e7edf1;
      color: #163044;
      border-radius: 999px;
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
    }

    .process__step > div {
      padding-top: 66px;
    }

    .process__step h3 {
      margin: 0 0 10px;
      font-size: 20px;
      line-height: 1.25;
      font-weight: 700;
      color: #10283b;
    }

    .process__step p {
      max-width: 205px;
      margin: 0 auto;
      font-size: 17px;
      line-height: 1.18;
      color: #111;
    }

    @media (max-width: 1100px) {
      .process__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 54px 28px;
      }
      .process__grid::before { display: none; }
    }

    @media (max-width: 767px) {
      .process { padding-block: 44px 54px; }
      .process .section-head { margin-bottom: 40px; }
      .process .section-head .title-caps { font-size: 27px; }
      .process__grid { grid-template-columns: 1fr; gap: 42px; }
      .process__icon { width: 92px; height: 92px; }
      .process__num { bottom: -44px; }
      .process__step > div { padding-top: 60px; }
      .process__step h3 { font-size: 19px; }
      .process__step p { font-size: 16px; max-width: 260px; }
    }



    /* ================================================================
       FINAL TARGETED RESPONSIVE FIXES
       Hero, mobile/tablet navigation, process arrows and testimonial quote
       ================================================================ */

    /* Separate desktop and mobile hero artwork. */
    .home-page .hero {
      background-image: url("../../../../../assets/img/hero-banner.png")!important;
      background-size: cover !important;
      background-repeat: no-repeat !important;
      background-position: center center !important;
    }

    /* Use individual dashed arrows instead of one uninterrupted dotted line. */
    .home-page .process__grid::before { display: none !important; }

    .home-page .process__step:not(:last-child)::after {
      content: "";
      position: absolute;
      z-index: 0;
      top: 49px;
      left: calc(50% + 62px);
      width: calc(100% - 96px);
      height: 8px;
      background:
        repeating-linear-gradient(to right, #6d7d88 0 3px, transparent 3px 7px)
        left center / calc(100% - 10px) 1px no-repeat;
      pointer-events: none;
    }

    .home-page .process__step:not(:last-child)::before {
      content: "";
      position: absolute;
      z-index: 1;
      top: 46px;
      right: -15px;
      width: 7px;
      height: 7px;
      border-top: 1.5px solid #596976;
      border-right: 1.5px solid #596976;
      transform: rotate(45deg);
      pointer-events: none;
    }

    /* Keep only one clean decorative opening quote. */
    .home-page .testimonial__mark {
     font-size: 58px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #1f2052;
        margin-top: -16px;
    }

    /* Tablet navigation and layout. */
    @media (max-width: 1100px) {
      .home-page .site-header__inner {
        flex-wrap: nowrap;
        gap: 14px;
      }

      .home-page .nav {
        position: fixed;
        top: var(--header-h);
        right: 0;
        bottom: 0;
        z-index: 1001;
        width: min(360px, 86vw);
        display: block;
        padding: 24px;
        background: #fff;
        box-shadow: -12px 0 32px rgba(14, 34, 51, .15);
        overflow-y: auto;
        transform: translateX(105%);
        visibility: hidden;
        transition: transform .28s var(--ease), visibility .28s;
      }

      .home-page .nav.is-open {
        transform: translateX(0);
        visibility: visible;
      }

      .home-page .nav .brand { display: none; }
      .home-page .site-header__inner > .hamburger { margin-left: auto; }
      .home-page .site-header__top-right { margin-left: 0; }
      .home-page .nav__list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
        align-items: stretch;
      }
      .home-page .nav__link {
        display: flex;
        width: 100%;
        padding: 13px 4px;
        border-bottom: 1px solid var(--line-soft);
      }

      .home-page .process__step:not(:last-child)::after,
      .home-page .process__step:not(:last-child)::before { display: block; }

      /* No arrow after the last item of the first tablet row. */
      .home-page .process__step:nth-child(3)::after,
      .home-page .process__step:nth-child(3)::before { display: none; }
    }

    @media (max-width: 767px) {
      :root { --header-h: 70px; }

      .home-page .site-header__inner {
        min-height: 70px;
        padding: 8px 16px;
      }

      .home-page .site-header__inner::before {
        content: "";
        display: block;
        width: 142px;
        height: 50px;
        flex: none;
        background: url('../../../../../assets/img/logo.webp') left center / contain no-repeat;
      }

      .home-page .hamburger {
        width: 42px;
        height: 42px;
      }

      .home-page .hero {
        min-height: 0;
        background-image: var(--hero-mobile), var(--hero-desktop) !important;
        background-position: center top !important;
      }

      /* .home-page .hero::before {
        background: linear-gradient(180deg, rgba(245,249,250,.28) 0%, rgba(245,249,250,.93) 48%, #f5f9fa 100%);
      } */

      .home-page .hero__inner {
        min-height: 650px;
        display: flex;
        align-items: flex-end;
        /* padding-top: 250px; */
        padding-bottom: 104px;
      }

      .home-page .hero__copy {
        width: 100%;
        max-width: none;
      }

      .home-page .hero__title {
        max-width: 100%;
        font-size: 28px;
        line-height: 1.08;
      }

      .home-page .hero__text {
        font-size: 14px;
        line-height: 1.5;
      }

      .home-page .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .home-page .hero__actions .btn {
        width: 100%;
        min-width: 0;
      }

      .home-page .hero__strip {
        margin-top: -75px;
      }

      .home-page .hero__strip-inner {
        display: grid;
        grid-template-columns: 1fr;
        padding: 8px 14px;
      }

      .home-page .hero__strip-item {
        width: 100%;
        padding: 12px 4px;
        border-right: 0;
        border-bottom: 1px solid var(--line-soft);
      }
      .home-page .hero__strip-item:last-child { border-bottom: 0; }

      /* Vertical arrows between mobile process steps. */
      .home-page .process__step:not(:last-child)::after {
        top: auto;
        left: 50%;
        bottom: -31px;
        width: 1px;
        height: 24px;
        background: repeating-linear-gradient(to bottom, #6d7d88 0 3px, transparent 3px 7px);
        transform: translateX(-50%);
      }

      .home-page .process__step:not(:last-child)::before {
        top: auto;
        right: auto;
        left: 50%;
        bottom: -33px;
        transform: translateX(-50%) rotate(135deg);
      }

      .home-page .process__step:nth-child(3)::after,
      .home-page .process__step:nth-child(3)::before { display: block; }

      .home-page .review-card__top {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 10px 14px;
      }
      .home-page .review-card__top .google-word { grid-column: 1; }
      .home-page .review-card__top .review-card__score { grid-column: 2; }
      .home-page .review-card__top .stars {
        grid-column: 1 / -1;
        justify-content: flex-start;
      }
      .home-page .testimonial {
        grid-template-columns: 34px 1fr;
      }
      .home-page .testimonial__mark { font-size: 58px; }
      .home-page .testimonial footer { justify-content: flex-start; }

      .home-page .site-footer__grid { grid-template-columns: 1fr 1fr; }
    }



    /* ================================================================
       FINAL CORRECTION: PROCESS CONNECTORS
       Arrowhead sits at the END of each dashed connector, not midway.
       ================================================================ */
    @media (min-width: 1101px) {
      .home-page .process__grid {
        --process-gap: 28px;
      }

      .home-page .process__step:not(:last-child)::after {
        display: block;
        top: 49px;
        left: calc(50% + 58px);
        width: calc(100% + var(--process-gap) - 116px);
        height: 1px;
        background: repeating-linear-gradient(
          to right,
          #6d7d88 0 3px,
          transparent 3px 8px
        );
      }

      .home-page .process__step:not(:last-child)::before {
        display: block;
        top: 45.5px;
        left: auto;
        right: calc(-47% - var(--process-gap) + 54px);
        width: 8px;
        height: 8px;
        border-top: 1.5px solid #596976;
        border-right: 1.5px solid #596976;
        transform: rotate(45deg);
      }
    }

    @media (min-width: 768px) and (max-width: 1100px) {
      .home-page .process__grid {
        --process-gap: 28px;
      }

      .home-page .process__step:not(:last-child)::after {
        top: 49px;
        left: calc(50% + 54px);
        width: calc(100% + var(--process-gap) - 108px);
        height: 1px;
        background: repeating-linear-gradient(
          to right,
          #6d7d88 0 3px,
          transparent 3px 8px
        );
      }

      .home-page .process__step:not(:last-child)::before {
        top: 45.5px;
        left: auto;
        right: calc(-50% - var(--process-gap) + 50px);
        width: 8px;
        height: 8px;
        transform: rotate(45deg);
      }

      .home-page .process__step:nth-child(3)::after,
      .home-page .process__step:nth-child(3)::before {
        display: none;
      }
    }



    /* ================================================================
       MOBILE-ONLY UI FIXES — desktop/tablet styles remain unchanged
       ================================================================ */
    @media (max-width: 767px) {
      /* Shared mobile spacing */
      #products,
      .why,
      .quote-band,
      .process {
        overflow: hidden;
      }

      #products .container,
      .why .container,
      .quote-band .container,
      .process .container {
        padding-inline: 18px;
      }

      #products .section-head,
      .why .section-head,
      .process .section-head {
        margin-bottom: 28px;
      }

      #products .title-caps,
      .why .title-caps,
      .process .section-head .title-caps {
        font-size: 19px;
        line-height: 1.16;
        text-align: center;
      }

      /* Our Products Range: one clean swipe carousel for all cards */
      #products {
        padding-block: 48px 54px;
      }

      #products .product-carousel-track {
        display: flex;
        gap: 16px;
        width: auto;
        margin-inline: -18px;
        padding: 2px 18px 18px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 18px;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      #products .product-carousel-track::-webkit-scrollbar {
        display: none;
      }

      #products .product-grid,
      #products .product-grid--row2 {
        display: contents;
      }

      #products .product-card,
      #products .product-grid--row2 .product-card {
        flex: 0 0 min(78vw, 300px);
        width: min(78vw, 300px);
        min-height: 330px;
        padding: 22px 18px 24px;
        border: 1px solid var(--line-soft);
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 8px 24px rgba(14, 34, 51, .08);
        scroll-snap-align: start;
        scroll-snap-stop: always;
      }

      #products .product-card::before {
        display: none !important;
      }

      #products .product-card__media {
        height: 150px;
        margin-bottom: 16px;
      }

      #products .product-card__media img {
        max-height: 145px;
      }

      #products .product-card__title {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 8px;
      }

      #products .product-card p {
        max-width: 240px;
        font-size: 17px;
        line-height: 1.38;
      }

      /* Why Contractors Choose: swipe carousel */
      .why {
        padding-block: 46px 52px;
      }

      .why__grid {
        display: flex;
        gap: 16px;
        margin-inline: -18px;
        padding: 2px 18px 18px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 18px;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .why__grid::-webkit-scrollbar {
        display: none;
      }

      .why__item {
        flex: 0 0 min(76vw, 290px);
        min-height: 285px;
        justify-content: center;
        padding: 28px 22px;
        border: 1px solid rgba(242, 183, 5, .45);
        border-radius: 16px;
        background: rgba(255,255,255,.035);
        scroll-snap-align: start;
        scroll-snap-stop: always;
      }

      .why .icon-circle {
        width: 112px;
        height: 112px;
      }

      .why .icon-circle img {
        width: 78px;
        height: 78px;
        object-fit: contain;
      }

      .why__item h3 {
        font-size: 20px;
        line-height: 1.25;
      }

      .why__item p {
        max-width: 235px;
        margin-top: 8px;
        font-size: 15px;
        line-height: 1.45;
      }

      /* Reviews: balanced cards, correct Google row and testimonial */
      .quote-band {
        padding-block: 32px 48px;
      }

      .quote-band__grid {
        gap: 24px;
      }

      .review-stack {
        gap: 16px;
      }

      .review-card {
        padding: 24px 20px;
        border-color: #9aa7b2;
        border-radius: 12px;
      }

      .review-card__top {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
          "google score"
          "stars score";
        gap: 10px 14px;
        align-items: center;
      }

      .review-card__top .google-word {
        grid-area: google;
      }

      .review-card__top .google-word img {
        width: 132px;
        height: auto;
      }

      .review-card__top .stars {
        grid-area: stars;
        justify-content: flex-start;
        margin: 0;
      }

      .review-card__top .stars svg {
        width: 20px;
        height: 20px;
      }

      .review-card__score {
        grid-area: score;
        align-self: center;
        font-size: 40px;
      }

      .review-card__meta {
        margin-top: 20px;
        font-size: 17px;
        line-height: 1.3;
        text-align: center;
      }

      .testimonial {
        display: grid;
        grid-template-columns: 36px minmax(0, 1fr);
        column-gap: 8px;
      }

      .testimonial__mark {
        grid-column: 1;
        grid-row: 1 / 3;
        margin: -4px 0 0;
        font-size: 66px;
        line-height: .9;
        color: #8694a1;
        opacity: 1;
      }

      .testimonial blockquote {
        grid-column: 2;
      }

      .testimonial p {
        font-size: 17px;
        line-height: 1.5;
      }

      .testimonial footer {
        grid-column: 2;
        justify-content: flex-start;
        margin-top: 18px;
        gap: 10px;
      }

      .testimonial cite {
        font-size: 22px;
      }

      .testimonial footer .stars {
        flex-wrap: nowrap;
      }

      .testimonial footer .stars svg {
        width: 17px;
        height: 17px;
      }

      .badge-row {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .badge {
        min-height: 64px;
        justify-content: flex-start;
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 15px;
      }

      /* How it works: centered vertical connector with downward arrows */
      .process {
        padding-block: 46px 58px;
      }

      .process__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
      }

      .home-page .process__step {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        column-gap: 22px;
        align-items: center;
        min-height: 190px;
        padding-bottom: 42px;
        text-align: left;
      }

      .home-page .process__step:last-child {
        padding-bottom: 0;
      }

      .home-page .process__icon {
        width: 112px;
        height: 112px;
        margin: 0;
      }

      .home-page .process__icon svg {
        width: 48px;
        height: 48px;
      }

      .home-page .process__num {
        left: 50%;
        right: auto;
        bottom: -46px;
        width: 43px;
        height: 43px;
        transform: translateX(-50%);
        border-radius: 50%;
        font-size: 18px;
      }

      .home-page .process__step > div {
        padding-top: 0;
      }

      .home-page .process__step h3 {
        margin: 0 0 10px;
        font-size: 22px;
        line-height: 1.25;
        text-align: left;
      }

      .home-page .process__step p {
        max-width: none;
        margin: 0;
        font-size: 17px;
        line-height: 1.4;
        text-align: left;
      }

      .home-page .process__step:not(:last-child)::after {
        content: "";
        position: absolute;
        z-index: 0;
        top: 118px;
        left: 55px;
        width: 1px;
        height: 64px;
        background: repeating-linear-gradient(
          to bottom,
          #71818d 0 4px,
          transparent 4px 9px
        );
        pointer-events: none;
      }

      .home-page .process__step:not(:last-child)::before {
        content: "";
        position: absolute;
        z-index: 1;
        top: 173px;
        left: 51px;
        right: auto;
        width: 9px;
        height: 9px;
        border: 0;
        border-right: 1.5px solid #596976;
        border-bottom: 1.5px solid #596976;
        transform: rotate(45deg);
        pointer-events: none;
      }
    }


    /* ================================================================
       MOBILE-ONLY REFINEMENT: HERO STRIP + HOW IT WORKS
       Desktop and tablet rules remain untouched.
       ================================================================ */
    @media (max-width: 767px) {
      /* Hero trust strip: three equal columns on mobile */
      .home-page .hero__strip-inner {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        width: 100% !important;
        padding: 10px 8px !important;
        gap: 0 !important;
        border-radius: 14px !important;
      }

      .home-page .hero__strip-item {
        min-width: 0 !important;
        width: 100% !important;
        padding: 14px 7px !important;
        gap: 7px !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center !important;
        font-size: 11px !important;
        line-height: 1.25 !important;
        border-right: 1px solid var(--line) !important;
      }

      .home-page .hero__strip-item:last-child {
        border-right: 0 !important;
      }

      .home-page .hero__strip-item svg,
      .home-page .hero__strip-item img {
        width: 27px !important;
        height: 27px !important;
        flex: none !important;
        object-fit: contain !important;
      }

      /* How it works: reduce visual size and restore connector visibility */
      .home-page .process__grid {
        overflow: visible !important;
      }

      .home-page .process__step {
        grid-template-columns: 84px minmax(0, 1fr) !important;
        column-gap: 18px !important;
        min-height: 154px !important;
        padding-bottom: 34px !important;
        overflow: visible !important;
      }

      .home-page .process__icon {
        width: 82px !important;
        height: 82px !important;
        box-shadow: 0 5px 12px rgba(15, 40, 59, .14) !important;
      }

      .home-page .process__icon svg {
        width: 34px !important;
        height: 34px !important;
      }

      .home-page .process__num {
        bottom: -34px !important;
        width: 34px !important;
        height: 34px !important;
        font-size: 15px !important;
        z-index: 3 !important;
      }

      .home-page .process__step h3 {
        font-size: 19px !important;
        line-height: 1.22 !important;
        margin-bottom: 7px !important;
      }

      .home-page .process__step p {
        font-size: 15px !important;
        line-height: 1.38 !important;
      }

      .home-page .process__step:not(:last-child)::after {
        display: block !important;
        top: 83px !important;
        left: 40px !important;
        width: 2px !important;
        height: 69px !important;
        background: repeating-linear-gradient(
          to bottom,
          #6f808d 0 5px,
          transparent 5px 10px
        ) !important;
        opacity: 1 !important;
        z-index: 1 !important;
      }

      .home-page .process__step:not(:last-child)::before {
        display: block !important;
        top: 143px !important;
        left: 35px !important;
        width: 11px !important;
        height: 11px !important;
        border-right: 2px solid #596976 !important;
        border-bottom: 2px solid #596976 !important;
        transform: rotate(45deg) !important;
        opacity: 1 !important;
        z-index: 2 !important;
      }
    }


    /* FINAL MOBILE FIX: HERO ALIGNMENT + CAROUSEL ARROWS ONLY */
    .mobile-carousel-controls { display: none; }
    @media (max-width: 767px) {
      .home-page .hero { background-position: center top !important; }
      .home-page .hero__inner { min-height: 640px !important; align-items: flex-end !important; padding: 61px 39px 238px !important; }
      .home-page .hero__copy { width: 100% !important; max-width: 100% !important; margin: 0 !important; text-align: left !important; }
      .home-page .hero__title { max-width: 330px !important; margin: 0 0 14px !important; font-size: clamp(28px, 8.2vw, 36px) !important; line-height: 1.08 !important; }
      .home-page .hero__text { max-width: 340px !important; margin: 0 0 20px !important; font-size: 14px !important; line-height: 1.45 !important; }
      .home-page .hero__actions { width: 100% !important; gap: 10px !important; }
      .home-page .hero__strip { width: 100% !important; margin-top: -82px !important; padding-inline: 18px !important; }
      .home-page .hero__strip-inner { display: grid !important; grid-template-columns: repeat(3,minmax(0,1fr)) !important; width: 100% !important; padding: 8px 5px !important; overflow: hidden !important; }
      .home-page .hero__strip-item { min-width: 0 !important; min-height: 88px !important; padding: 10px 5px !important; flex-direction: column !important; justify-content: center !important; gap: 6px !important; border-right: 1px solid var(--line-soft) !important; border-bottom: 0 !important; text-align: center !important; font-size: 10px !important; line-height: 1.2 !important; }
      .home-page .hero__strip-item:last-child { border-right: 0 !important; }
      .home-page .hero__strip-item img, .home-page .hero__strip-item svg { width: 25px !important; height: 25px !important; object-fit: contain !important; }
      #products .container, .why .container { position: relative; }
      .mobile-carousel-controls { display: flex; justify-content: flex-end; gap: 10px; margin: -12px 0 16px; }
      .mobile-carousel-btn { display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--navy); box-shadow: 0 5px 15px rgba(14,34,51,.12); }
      .why .mobile-carousel-btn { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.35); color: #fff; }
      .mobile-carousel-btn:disabled { opacity: .38; cursor: default; }
      .mobile-carousel-btn svg { width: 18px; height: 18px; }
    }



    /* ================================================================
       FINAL MOBILE-ONLY PATCH — reference hero, feature strip and
       two-product carousel view. Desktop/tablet remain unchanged.
       ================================================================ */
    @media (max-width: 767px) {
      /* Hero composition based on the supplied mobile reference */
      .home-page .hero {
        min-height: 690px !important;
        background-image: url('../../../../../assets/img/mobile_banner.png') !important;
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
      }

      .home-page .hero::before {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        display: block !important;
        background: linear-gradient(
          180deg,
          rgba(247,250,251,.95) 0%,
          rgba(247,250,251,.72) 28%,
          rgba(247,250,251,0) 54%,
          rgba(14,34,51,.05) 100%
        ) !important;
        pointer-events: none !important;
      }

      .home-page .hero__inner {
        min-height: 690px !important;
        display: flex !important;
        align-items: stretch !important;
        padding: 34px 18px 34px !important;
      }

      .home-page .hero__copy {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        min-height: 622px !important;
        margin: 0 !important;
        text-align: left !important;
      }

      .home-page .hero__title {
        max-width: 285px !important;
        margin: 0 0 10px !important;
        font-size: clamp(26px, 7.2vw, 32px) !important;
        line-height: 1.04 !important;
        letter-spacing: -.025em !important;
      }

      .home-page .hero__text {
        max-width: 285px !important;
        margin: 0 !important;
        font-size: 12.5px !important;
        line-height: 1.28 !important;
        color: #223646 !important;
      }

      .home-page .hero__actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        width: 100% !important;
        margin-top: auto !important;
      }

      .home-page .hero__actions .btn {
        width: 100% !important;
        min-height: 52px !important;
        padding: 12px 18px !important;
        border-radius: 9px !important;
        font-size: 15px !important;
        font-weight: 800 !important;
      }

      /* Feature strip: slim three-column band like the supplied reference */
      .home-page .hero__strip {
        width: 100% !important;
        margin-top: 0 !important;
        padding: 0 !important;
        background: #f3f6f8 !important;
      }

      .home-page .hero__strip .container,
      .home-page .hero__strip-inner {
        width: 100% !important;
      }

      .home-page .hero__strip-inner {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 0 !important;
        padding: 13px 10px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: #f3f6f8 !important;
        box-shadow: none !important;
      }

      .home-page .hero__strip-item {
        min-width: 0 !important;
        min-height: 55px !important;
        display: grid !important;
        grid-template-columns: 24px minmax(0, 1fr) !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 7px !important;
        padding: 6px 8px !important;
        border: 0 !important;
        text-align: left !important;
        font-size: 0 !important;
        color: #14283a !important;
      }

      .home-page .hero__strip-item::after {
        content: attr(data-mobile-label);
        font-family: var(--font-display);
        font-size: 10px;
        line-height: 1.15;
        font-weight: 800;
      }

      .home-page .hero__strip-item img,
      .home-page .hero__strip-item svg {
        width: 24px !important;
        height: 24px !important;
        object-fit: contain !important;
      }

      /* Product carousel: exactly two cards visible per mobile viewport */
      #products .product-carousel-track {
        gap: 12px !important;
        margin-inline: -18px !important;
        padding: 2px 18px 18px !important;
        scroll-padding-inline: 18px !important;
      }

      #products .product-card,
      #products .product-grid--row2 .product-card {
        flex: 0 0 calc((100vw - 48px) / 2) !important;
        width: calc((100vw - 48px) / 2) !important;
        min-width: calc((100vw - 48px) / 2) !important;
        min-height: 245px !important;
        padding: 15px 10px 17px !important;
        border-radius: 12px !important;
      }

      #products .product-card__media {
        height: 105px !important;
        margin-bottom: 10px !important;
      }

      #products .product-card__media img {
        max-height: 100px !important;
      }

      #products .product-card__title {
        font-size: 15px !important;
        line-height: 1.18 !important;
        margin-bottom: 6px !important;
      }

      #products .product-card p {
        max-width: 100% !important;
        font-size: 12px !important;
        line-height: 1.3 !important;
      }

      /* Move arrows closer to the product heading on small screens */
      #products .mobile-carousel-controls {
        margin: -8px 0 14px !important;
      }

      #products .mobile-carousel-btn {
        width: 38px !important;
        height: 38px !important;
      }
    }



    /* ================================================================
       FINAL MOBILE-ONLY FIX: HERO FEATURE STRIP
       ================================================================ */
    @media (max-width: 767px) {
      .home-page .hero__strip {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #f1f5f7 !important;
      }

      .home-page .hero__strip > .container {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 14px !important;
      }

      .home-page .hero__strip-inner {
        width: 100% !important;
        min-height: 102px !important;
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 14px 20px !important;
        overflow: visible !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
      }

      .home-page .hero__strip-item {
        min-width: 0 !important;
        min-height: 58px !important;
        display: grid !important;
        grid-template-columns: 26px minmax(0, 1fr) !important;
        align-items: center !important;
        justify-content: start !important;
        column-gap: 7px !important;
        padding: 0 !important;
        border: 0 !important;
        text-align: left !important;
        color: #10283b !important;
        font-size: 0 !important;
        line-height: 1 !important;
      }

      .home-page .hero__strip-item::after {
        content: attr(data-mobile-label) !important;
        display: block !important;
        min-width: 0 !important;
        font-family: var(--font-display) !important;
        font-size: 10px !important;
        line-height: 1.08 !important;
        font-weight: 800 !important;
        letter-spacing: -0.01em !important;
        color: #10283b !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
      }

      .home-page .hero__strip-item > span {
        display: none !important;
      }

      .home-page .hero__strip-item img,
      .home-page .hero__strip-item svg {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        object-fit: contain !important;
        flex: none !important;
      }
    }


/* ================================================================
   MOBILE NAVIGATION FUNCTIONAL FIX
   Keeps desktop navigation unchanged.
   ================================================================ */
@media (max-width: 1100px) {
  .home-page .hamburger {
    position: relative;
    z-index: 1002;
    flex: 0 0 auto;
  }

  .home-page .nav {
    z-index: 1001;
  }

  .nav-overlay {
    z-index: 999;
  }

  .nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 767px) {
  .home-page .nav {
    top: 70px;
    height: calc(100dvh - 70px);
  }
}

/* ================================================================
   ABOUT PAGE — DESIGN REFRESH
   ================================================================ */
/* ================================================================
   ABOUT PAGE
   ================================================================ */
/* ======================================================================
   PREMIUM ABOUT PAGE REDESIGN
   Scoped to .about-page so the homepage and other pages stay unchanged.
   ====================================================================== */

.about-page {
  --about-cream: #f7f5ef;
  --about-soft: #eef5f5;
  --about-teal: #1697a5;
  --about-navy: #0e2233;
}

.about-page .about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--about-teal);
}

.about-page .about-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.about-page .about-kicker--light { color: var(--gold); }

/* Hero */
.about-page .about-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(54px, 6vw, 92px) 0 0;
  background:
    linear-gradient(115deg, #f8faf8 0%, #eef5f5 58%, #e8f0f2 100%);
}

.about-page .about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .35;
  background-image:
    linear-gradient(rgba(14,34,51,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,34,51,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.about-page .about-hero__glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.about-page .about-hero__glow--one {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -150px;
  background: rgba(27,154,170,.15);
}

.about-page .about-hero__glow--two {
  width: 260px;
  height: 260px;
  left: 38%;
  bottom: 20px;
  background: rgba(242,183,5,.1);
}

.about-page .about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
}

.about-page .about-hero__content {
  padding-bottom: clamp(74px, 8vw, 122px);
}

.about-page .about-hero__breadcrumb {
  margin: 0 0 38px;
}

.about-page .about-hero h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: .99;
  font-weight: 800;
  letter-spacing: -.045em;
  color: var(--about-navy);
}

.about-page .about-hero h1 em {
  display: block;
  font-style: normal;
  color: var(--about-teal);
}

.about-page .about-hero__lead {
  max-width: 610px;
  margin-bottom: 30px;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
  color: #425564;
}

.about-page .about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.about-page .about-hero__actions .btn {
  min-height: 54px;
  padding-inline: 26px;
}

.about-page .about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  color: var(--about-navy);
}

.about-page .about-text-link span {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(14,34,51,.18);
  border-radius: 50%;
  transition: transform .2s var(--ease), background .2s var(--ease);
}

.about-page .about-text-link:hover span {
  transform: translate(2px,-2px);
  background: #fff;
}

.about-page .about-hero__proof {
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 470px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(14,34,51,.12);
}

.about-page .about-hero__proof-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 43px;
  height: 43px;
  color: var(--about-teal);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(14,34,51,.09);
}

.about-page .about-hero__proof-icon svg { width: 21px; }
.about-page .about-hero__proof div { display: grid; gap: 2px; }
.about-page .about-hero__proof strong { color: var(--about-navy); font-size: 14px; }
.about-page .about-hero__proof span { color: #6a7b87; font-size: 12px; }

.about-page .about-hero__visual {
  position: relative;
  align-self: end;
  min-height: 570px;
}

.about-page .about-hero__image {
  position: absolute;
  inset: 0 0 0 50px;
  overflow: hidden;
  border-radius: 140px 20px 0 0;
  background: #dae7e9;
  box-shadow: 0 28px 70px rgba(14,34,51,.17);
}

.about-page .about-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,34,51,.19), transparent 42%);
  pointer-events: none;
}

.about-page .about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page .about-hero__experience {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 72px;
  display: grid;
  width: 150px;
  min-height: 150px;
  place-content: center;
  padding: 20px;
  color: #fff;
  background: var(--about-navy);
  border-radius: 18px;
  box-shadow: 0 22px 45px rgba(14,34,51,.22);
}

.about-page .about-hero__experience strong {
  font-size: 45px;
  line-height: 1;
  color: var(--gold);
}

.about-page .about-hero__experience span {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.about-page .about-hero__mini-card {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 15px 17px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(14,34,51,.16);
  backdrop-filter: blur(10px);
}

.about-page .about-hero__mini-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  color: var(--about-teal);
  background: #e7f4f5;
  border-radius: 10px;
}

.about-page .about-hero__mini-icon svg { width: 22px; }
.about-page .about-hero__mini-card div { display: grid; gap: 2px; }
.about-page .about-hero__mini-card strong { color: var(--about-navy); font-size: 13px; }
.about-page .about-hero__mini-card span { color: #70808c; font-size: 11px; }

.about-page .about-metrics-wrap {
  position: relative;
  z-index: 4;
  margin-bottom: -58px;
}

.about-page .about-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 22px 55px rgba(14,34,51,.13);
}

.about-page .about-metrics li {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 25px 30px;
}

.about-page .about-metrics li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 24%;
  width: 1px;
  height: 52%;
  background: var(--line);
}

.about-page .about-metrics strong {
  font-size: 28px;
  line-height: 1;
  color: var(--about-navy);
}

.about-page .about-metrics span {
  font-size: 12px;
  font-weight: 700;
  color: #778590;
}

/* Story */
.about-page .about-story {
  /* padding-top: clamp(120px, 11vw, 170px); */
  background: #fff;
}

.about-page .about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(46px, 7vw, 105px);
  align-items: start;
  margin-bottom: clamp(44px, 6vw, 82px);
}

.about-page .about-story__intro h2 {
  max-width: 610px;
  font-size: clamp(34px, 3.8vw, 55px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -.035em;
}

.about-page .about-story__copy {
  padding-top: 28px;
  /* border-top: 1px solid var(--line); */
}

.about-page .about-story__copy p {
  font-size: 16px;
  line-height: 1.75;
}

.about-page .about-story__copy .about-story__lead {
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.5;
  font-weight: 700;
  color: var(--about-navy);
}

.about-page .about-story__feature {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.about-page .about-story__image-wrap {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--about-soft);
}

.about-page .about-story__image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.about-page .about-story__image-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 3px;
  min-width: 245px;
  padding: 17px 20px;
  background: rgba(14,34,51,.92);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  color: #fff;
  backdrop-filter: blur(8px);
}

.about-page .about-story__image-label span {
  font-size: 11px;
  color: #bed0dc;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.about-page .about-story__image-label strong { font-size: 16px; }

.about-page .about-story__details {
  display: grid;
}

.about-page .about-story__details article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.about-page .about-story__details article:first-child { border-top: 1px solid var(--line); }

.about-page .about-story__details article > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--about-teal);
  background: #e9f5f5;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.about-page .about-story__details h3 {
  margin-bottom: 7px;
  font-size: 20px;
  font-weight: 800;
}

.about-page .about-story__details p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Difference */
.about-page .about-difference {
  background: var(--about-navy);
}

.about-page .about-section-head {
  max-width: 750px;
}

.about-page .about-section-head h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(34px, 3.7vw, 52px);
  font-weight: 800;
  letter-spacing: -.03em;
  text-transform: none;
}

.about-page .about-section-head p { color: #aabcc9; }
.about-page .about-section-head .eyebrow { color: var(--gold); }

.about-page .about-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  grid-auto-rows: minmax(255px, auto);
  gap: 18px;
}

.about-page .about-bento__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  padding: 27px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 15px;
  color: #aebfca;
  background: rgba(255,255,255,.045);
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.about-page .about-bento__card:hover {
  transform: translateY(-5px);
  border-color: rgba(242,183,5,.45);
  background: rgba(255,255,255,.075);
}

.about-page .about-bento__card--featured {
  grid-column: span 2;
  grid-row: span 2;
  justify-content: flex-end;
  min-height: 528px;
  background:
    radial-gradient(circle at 80% 15%, rgba(27,154,170,.35), transparent 34%),
    linear-gradient(145deg, #123a4c, #0c2638);
}

.about-page .about-bento__card--wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.about-page .about-bento__card--wide > div { max-width: 330px; }
.about-page .about-bento__card--wide > p { max-width: 430px; }

.about-page .about-bento__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(255,255,255,.23);
  font-size: 12px;
  font-weight: 800;
}

.about-page .about-bento__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: auto;
  color: var(--gold);
  background: rgba(255,255,255,.08);
  border-radius: 12px;
}

.about-page .about-bento__icon svg { width: 25px; }

.about-page .about-bento__card h3 {
  margin-top: 45px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
}

.about-page .about-bento__card--featured h3 {
  max-width: 470px;
  margin-top: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.about-page .about-bento__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.about-page .about-bento__tag {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 22px;
  padding: 8px 12px;
  color: var(--about-navy);
  background: var(--gold);
  border-radius: 999px;
  font-size: 11px;
}

/* Brands */
/* .about-page .about-brands {
  background: var(--about-cream);
} */

.about-page .about-brands__head {
  display: grid;
  grid-template-columns: 1fr minmax(320px, .72fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 42px;
}

.about-page .about-brands__head h2 {
  margin: 0;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
}

.about-page .about-brands__head > p {
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(14,34,51,.15);
  font-size: 15px;
  line-height: 1.65;
}

.about-page .about-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}

.about-page .about-logo-grid > div {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(14,34,51,.08);
  border-radius: 12px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}

.about-page .about-logo-grid > div:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 14px 34px rgba(14,34,51,.09);
}

.about-page .about-logo-grid img {
  width: 100%;
  height: 68px;
  object-fit: contain;
}

/* CTA */
.about-page .about-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(60px, 6vw, 86px);
  background: linear-gradient(120deg, #1596a4, #0f7787);
}

.about-page .about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

.about-page .about-cta__shape {
  position: absolute;
  z-index: -1;
  right: -110px;
  top: -180px;
  width: 460px;
  height: 460px;
  border: 80px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.about-page .about-cta__inner {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 50px;
  align-items: center;
}

.about-page .about-cta h2 {
  max-width: 780px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.03em;
}

.about-page .about-cta p {
  max-width: 700px;
  color: rgba(255,255,255,.82);
  font-size: 16px;
}

.about-page .about-cta__actions {
  display: grid;
  gap: 12px;
  min-width: 235px;
}

.about-page .about-cta__actions .btn { width: 100%; }

/* Tablet */
@media (max-width: 1100px) {
  .about-page .about-hero__grid {
    grid-template-columns: minmax(0,1fr) minmax(360px,.88fr);
    gap: 34px;
  }

  .about-page .about-hero__visual { min-height: 500px; }
  .about-page .about-hero__image { left: 28px; border-radius: 100px 18px 0 0; }
  .about-page .about-hero__experience { width: 125px; min-height: 125px; }
  .about-page .about-hero__mini-card { right: 0; }
  .about-page .about-story__feature { grid-template-columns: 1fr 1fr; }
  .about-page .about-bento { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .about-page .about-bento__card--featured { grid-column: span 2; min-height: 430px; }
  .about-page .about-logo-grid { grid-template-columns: repeat(3,1fr); }
}

/* Mobile */
@media (max-width: 767px) {
  .about-page .about-hero {
    padding-top: 38px;
  }

  .about-page .about-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-page .about-hero__content {
    padding-bottom: 0;
  }

  .about-page .about-hero__breadcrumb {
    margin-bottom: 26px;
  }

  .about-page .about-hero h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .about-page .about-hero__lead {
    font-size: 16px;
  }

  .about-page .about-hero__actions {
    align-items: stretch;
    gap: 14px;
  }

  .about-page .about-hero__actions .btn {
    width: 100%;
  }

  .about-page .about-text-link {
    justify-content: center;
    min-height: 46px;
  }

  .about-page .about-hero__proof {
    margin-top: 26px;
  }

  .about-page .about-hero__visual {
    min-height: 420px;
  }

  .about-page .about-hero__image {
    inset: 0 0 0 18px;
    border-radius: 76px 16px 0 0;
  }

  .about-page .about-hero__experience {
    left: 0;
    top: 28px;
    width: 105px;
    min-height: 105px;
    padding: 14px;
  }

  .about-page .about-hero__experience strong { font-size: 34px; }
  .about-page .about-hero__experience span { font-size: 10px; }

  .about-page .about-hero__mini-card {
    right: 8px;
    bottom: 18px;
    min-width: 200px;
    padding: 12px;
  }

  .about-page .about-metrics-wrap {
    margin-top: 0;
    margin-bottom: -46px;
    padding-inline: 14px;
  }

  .about-page .about-metrics {
    grid-template-columns: repeat(2,1fr);
  }

  .about-page .about-metrics li {
    padding: 20px 17px;
  }

  .about-page .about-metrics li:nth-child(2)::after { display: none; }
  .about-page .about-metrics li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-page .about-metrics strong { font-size: 24px; }

  .about-page .about-story {
    padding-top: 102px;
  }

  .about-page .about-story__grid,
  .about-page .about-story__feature,
  .about-page .about-brands__head,
  .about-page .about-cta__inner {
    grid-template-columns: 1fr;
  }

  .about-page .about-story__grid {
    gap: 24px;
    margin-bottom: 38px;
  }

  .about-page .about-story__copy {
    padding-top: 22px;
  }

  .about-page .about-story__image-wrap,
  .about-page .about-story__image-wrap img {
    min-height: 330px;
  }

  .about-page .about-story__image-label {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-width: 0;
  }

  .about-page .about-story__details article {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding-block: 22px;
  }

  .about-page .about-bento {
    grid-template-columns: 1fr;
  }

  .about-page .about-bento__card,
  .about-page .about-bento__card--featured,
  .about-page .about-bento__card--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .about-page .about-bento__card--featured {
    min-height: 390px;
  }

  .about-page .about-bento__card--wide {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .about-page .about-bento__card--wide > p {
    max-width: none;
  }

  .about-page .about-brands__head {
    gap: 20px;
    margin-bottom: 30px;
  }

  .about-page .about-brands__head > p {
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(14,34,51,.15);
  }

  .about-page .about-logo-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .about-page .about-logo-grid > div {
    min-height: 88px;
    padding: 12px;
  }

  .about-page .about-logo-grid img {
    height: 54px;
  }

  .about-page .about-cta__inner {
    gap: 28px;
  }

  .about-page .about-cta__actions {
    min-width: 0;
  }
}









/* ================================================================
   NAV — PRODUCTS DROPDOWN (hover on desktop, inline on mobile)
   Added site-wide for pages using the "home-page" header pattern.
   ================================================================ */
.dropdown--products {
  min-width: 560px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 18px;
  left: 0;
}
.dropdown--products li { margin: 0; }
.dropdown--products a { display: flex; align-items: center; padding: 11px 12px; font-weight: 600; }
.dropdown--products .dropdown__viewall {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}
.dropdown--products .dropdown__viewall a {
  color: var(--teal-dark);
  font-weight: 700;
  justify-content: space-between;
}

@media (min-width: 1101px) {
  .nav__item.is-open > .dropdown,
  .nav__item:hover > .dropdown,
  .nav__item:focus-within > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav__item.is-open > .nav__link svg,
  .nav__item:hover > .nav__link svg,
  .nav__item:focus-within > .nav__link svg {
    transform: rotate(180deg);
  }
}

/* On mobile the off-canvas nav has no hover — show the submenu inline */
@media (max-width: 1100px) {
  .dropdown--products {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    display: block;
    min-width: 0;
    padding: 2px 0 8px 14px;
  }
  .dropdown--products .dropdown__viewall { display: none; }
  .home-page .nav__item--has-dropdown > .nav__link svg { display: none; }
}




