@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('/webfonts/poppins-v23-latin-regular.woff2') format('woff2');
    font-display: swap;
  }
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('/webfonts/poppins-v23-latin-600.woff2') format('woff2');
    font-display: swap;
  }
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('/webfonts/poppins-v23-latin-700.woff2') format('woff2');
    font-display: swap;
  }

  /* === Base === */
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
  }
  body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fb;
    color: #444;
  }

  /* === Skip link === */
  .skip-link { position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
  .skip-link:focus { position: fixed; left: 16px; top: 16px; width: auto; height: auto; padding: 8px 12px; background: #000; color: #fff; border-radius: 6px; z-index: 9999; }

  /* === Nav === */
  nav {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0,0,0,.6);
    z-index: 1000;
    padding: 0 20px;
    transition: background-color .3s ease;
  }
  nav.scrolled {
    background-color: rgba(0,0,0,.9);
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
  }
  .navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    gap: 8px;
    padding: 0;
    height: 80px;
    width: 80px;
    flex-shrink: 0;
  }
  .navbar-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
  }
  nav a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color .3s ease, color .3s ease, text-decoration .3s ease;
  }
  nav a:hover, nav a.active {
    background-color: rgba(255,255,255,.2);
    color: #F7D138;
    text-decoration: underline;
  }
  .hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: none;
    border: none;
  }
  .hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: .4s;
  }
  .hamburger-menu[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(11px) rotate(45deg); }
  .hamburger-menu[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
  .hamburger-menu[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }
  .nav-call { display: none; }
  /* Links (871) + logo (80) + call (192+14) + padding (40) = ~1197px, so the
     Call button only appears once the row genuinely fits — below this it pushed
     the nav past the viewport (iPad landscape = 1024 was the worst case). */
  @media (min-width: 1220px) {
    .nav-call {
      display: inline-flex;
      align-items: center;
      background: #F7D138;
      color: #17324f;
      font-weight: 700;
      text-decoration: none;
      padding: 8px 16px;
      border-radius: 999px;
      font-size: .9rem;
      white-space: nowrap;
      margin-left: 14px;
      flex-shrink: 0;
    }
    .nav-call:hover, .nav-call:focus-visible { background: #e6c02f; color: #17324f; }
  }
  .nav-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-grow: 1;
    position: static;
    background-color: transparent;
    box-shadow: none;
    padding-top: 0;
  }

  /* === Header === */
  header {
    background: url(/images/2-large.webp) center center/cover no-repeat;
    height: 80vh;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,.7);
    position: relative;
    text-align: center;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,.3);
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform;
  }
  @media (max-width: 1400px) {
    header { background: url(/images/2-medium.webp) center center/cover no-repeat; }
  }
  @media (max-width: 1024px) {
    header { height: auto; min-height: 56vh; padding: 40px 20px 48px; }
    h1 { font-size: 2.9em; }
  }
  @media (max-width: 768px) {
    header { background: url(/images/2-small.webp) center center/cover no-repeat; min-height: 60vh; height: auto; padding-bottom: 28px; }
  }
  header::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,.4);
    z-index: 1;
  }
  header h1, header p, .header-cta-btn { position: relative; z-index: 2; }

  h1 { font-size: 3.8em; margin: 0; letter-spacing: 1px; font-weight: 700; }
  header p { font-size: 1.6em; font-weight: 600; margin: 0; }
  h2 { text-align: center; color: #0056b3; font-weight: 700; letter-spacing: .5px; font-size: 32px; margin-top: 10px; margin-bottom: 20px; }

  /* === Sections === */
  .section {
    padding: 20px 20px 30px;
    max-width: 1080px;
    margin: 10px auto;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    border-radius: 10px;
    background-color: #f8f9fb;
    border-bottom: 1px solid #e8ecf0;
  }
  .section.gray { background-color: #eef2f7; }

  /* === Services === */
  .services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding-top: 20px;
  }
  .service-card {
    flex: 0 1 calc((100% - 50px) / 3);
    box-sizing: border-box;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #eee;
  }
  .service-card:hover { transform: translateY(-8px); box-shadow: 0 8px 25px rgba(0,0,0,.15); }
  .service-card i { font-size: 3.5em; color: #F7D138; margin-bottom: 15px; transition: color .3s ease; }
  .service-card:hover i { color: #0056b3; }
  .service-card h3 { font-size: 1.5em; color: #333; margin-bottom: 10px; font-weight: 600; }
  .service-card p { font-size: 1em; line-height: 1.6; color: #555; }
  .service-cta {
    margin-top: auto;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background-color: #0056b3;
    color: #fff;
    font-weight: 600;
    font-size: 0.95em;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  .service-cta:hover { background-color: #0056b3; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.25); }

  /* === How It Works === */
  .how-it-works-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding-top: 20px;
  }
  .how-it-works-item {
    flex: 0 1 calc((100% - 60px) / 3);
    box-sizing: border-box;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform .3s ease;
  }
  .how-it-works-item:hover { transform: translateY(-5px); }
  .step-icon {
    width: 70px; height: 70px;
    background-color: #0056b3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
    flex-shrink: 0;
  }
  .step-icon i { font-size: 2.2em; color: #fff; }
  .how-it-works-item h3 { font-size: 1.4em; color: #333; margin-bottom: 8px; }
  .how-it-works-item p { font-size: .95em; line-height: 1.5; color: #666; }

  /* === About === */
  .about-section-with-image {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    background-color: inherit;
  }
  .about-image-wrapper { width: 100%; max-width: 100%; overflow: hidden; display: block; }
  .about-image-wrapper img {
    width: 100%; height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
  }
  .about-text-content {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }
  .about-text-content h2, .about h2 { text-align: center; margin-top: 0; margin-bottom: 20px; width: 100%; }
  .about-text-content p { text-align: left; margin-bottom: 15px; line-height: 1.7; font-size: 1.1em; }

  /* === Accordion / FAQ === */
  .accordion { max-width: 820px; margin: 0 auto; }
  .accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-margin-top: 80px;
  }
  .accordion-item:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
  .accordion-header {
    width: 100%;
    padding: 15px 20px;
    background-color: #ffffff;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0056b3;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  }
  .accordion-header i { transition: transform .3s ease; }
  a:focus-visible, button:focus-visible, [tabindex]:focus-visible { outline: 3px solid #0056b3; outline-offset: 2px; }
  .accordion-header:focus-visible { outline: 3px solid rgba(0,123,255,.5); outline-offset: 2px; }

  .accordion-header:hover { background-color: #f7faff; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
  .accordion-header.active {
    border-left: 4px solid #007BFF;
    background-color: #fff8e1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #333;
  }
  .accordion-header.active i { transform: rotate(180deg); }
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
  }
  .accordion-content.active {
    max-height: 800px;
    opacity: 1;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .accordion-content p { margin: 0 0 10px; text-align: left; line-height: 1.6; color: #555; }

  /* === Why / trust list === */
  .trust-list { list-style: none; max-width: 820px; margin: 10px auto 0; padding: 0; text-align: left; }
  .trust-list li { position: relative; padding: 0 0 16px 32px; line-height: 1.6; color: #444; }
  .trust-list li:last-child { padding-bottom: 0; }
  .trust-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: #1e7e34; font-weight: 700; font-size: 1.1em; }
  .trust-list strong { color: #333; }

  /* === Car keys by make === */
  .makes-intro { text-align: center; max-width: 640px; margin: 0 auto 16px; color: #555; }

  /* === Contact Form === */
  .contact { text-align: center; }
  form { display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 760px; margin: 20px auto 0; }
  form label { align-self: flex-start; margin-left: 10%; font-weight: 600; color: #444; font-size: .95em; }
  input, textarea, select {
    width: 80%;
    box-sizing: border-box;
    padding: 12px 15px;
    border: 1px solid #767676;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: border-color .3s ease, box-shadow .3s ease;
  }
  input:focus, textarea:focus, select:focus { border-color: #0056b3; box-shadow: 0 0 0 3px rgba(0,123,255,.25); outline: none; }

  /* Enlarged custom dropdown arrow for the service select (owner request) */
  select {
    appearance: none; -webkit-appearance: none; -moz-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230056b3' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 26px 26px;
    padding-right: 52px;
    cursor: pointer;
  }
  input:invalid:not(:focus):not(:placeholder-shown),
  textarea:invalid:not(:focus):not(:placeholder-shown) { border-color: #dc3545; }
  .ssl-note { margin-top: 10px; font-size: 0.9em; color: #1e7e34; display: flex; align-items: center; gap: 5px; }
  a.privacy-link { color: #F7D138 !important; text-decoration: underline; }
  a.privacy-link:hover { color: #fff !important; }

  /* === Form messages === */
  .form-message {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    font-weight: 600;
    text-align: center;
    display: none;
    width: 90%;
    max-width: 400px;
  }
  .form-success { color: #155724; background-color: #d4edda; border: 1px solid #c3e6cb; }
  .form-error { color: #721c24; background-color: #f8d7da; border: 1px solid #f5c6cb; }
  /* === Buttons === */
  .header-cta-btn {
    background-color: #F7D138;
    color: #333;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    cursor: pointer;
    transition: transform .3s ease, background-color .3s ease, box-shadow .3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .header-cta-btn:hover { background-color: #e0bb2a; transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.3); }
  .header-cta-btn i { margin-right: 10px; }
  .hero-cta-wa { background-color: #0E7C43; color: #fff; }
  .hero-cta-wa:hover { background-color: #0b6838; }

  /* === FAB stack === */
  .fab-stack {
    position: fixed; right: 18px; bottom: 18px;
    display: flex; flex-direction: column; gap: 10px;
    z-index: 99999;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    will-change: opacity, transform;
  }
  .fab-stack.show { opacity: 1; visibility: visible; transform: translateY(0); }
  .fab-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 56px; height: 44px; min-height: 44px; padding: 0 14px;
    border-radius: 9999px; text-decoration: none;
    color: #fff; font-weight: 600; line-height: 1;
    box-shadow: 0 6px 16px rgba(0,0,0,.15);
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .fab-btn:focus-visible { outline: 3px solid rgba(13,110,253,.5); outline-offset: 2px; }
  .fab-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(0,0,0,.18); }
  .fab-top { background: #6c757d; font-size: 20px; line-height: 1; }
  .fab-wa { background: #0E7C43; }
  .fab-msg { background: #7C3AED; }
  .fab-call { background: #0b5ed7; }
  .fab-sms { background: #117A8B; }
  /* === Cookie consent === */
  .gk-cookie { position: fixed; left: 12px; right: 12px; bottom: 12px; max-width: 560px; margin: 0 auto; background: #fff; color: #333; border: 1px solid #dde3ea; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.18); padding: 14px 16px; z-index: 100000; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; font-size: .9rem; }
  .gk-cookie[hidden] { display: none; }
  .gk-cookie p { margin: 0; flex: 1 1 240px; line-height: 1.45; color: #444; }
  .gk-cookie a { color: #0056b3; }
  .gk-cookie-btns { display: flex; gap: 8px; margin-left: auto; }
  .gk-cookie button { border: none; border-radius: 999px; padding: 12px 22px; min-height: 44px; font-weight: 700; font-family: 'Poppins', sans-serif; font-size: .9rem; cursor: pointer; }
  .gk-cookie .gk-accept { background: #0056b3; color: #fff; }
  .gk-cookie .gk-decline { background: #eef2f7; color: #333; }
  .gk-cookie button:focus-visible { outline: 3px solid rgba(0,123,255,.5); outline-offset: 2px; }
  .fab-ico { margin-right: 8px; display: inline-block; }
  .fab-top .fab-ico { margin-right: 0; }
  a[href*="wa.me"] i, a[href*="whatsapp"] i { transition: all 0.3s ease; }
  a[href*="wa.me"]:hover i, a[href*="whatsapp"]:hover i { transform: scale(1.1) rotate(-5deg); color: #0E7C43; }

  /* === Reduced motion === */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  }

  /* === Reviews === */
  .gk-reviews { max-width: 1040px; margin: 0 auto; text-align: left; }
  .gk-reviews.masonry { display: flex; gap: 18px; align-items: flex-start; }
  .gk-rev-col { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 18px; }
  .gk-reviews.masonry .gk-rev { margin: 0; }
  .gk-rev { background: #fff; border: 1px solid #e8ecf0; border-radius: 12px; padding: 18px 20px; box-shadow: 0 2px 10px rgba(0,0,0,.05); break-inside: avoid; -webkit-column-break-inside: avoid; margin: 0 0 18px; }
  .gk-rev-top { display: flex; align-items: center; gap: 12px; }
  .gk-rev-ava { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
  .gk-rev-ltr { display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; font-size: 1.2rem; }
  .gk-rev-meta { display: flex; flex-direction: column; line-height: 1.2; flex-grow: 1; min-width: 0; }
  .gk-rev-name { font-weight: 600; color: #222; }
  .gk-rev-when { font-size: .82rem; color: #666; }
  .gk-rev-g { width: 20px; height: 20px; flex-shrink: 0; }
  .gk-rev-stars { color: #fbbc04; letter-spacing: 2px; font-size: 1.05rem; margin: 10px 0 6px; }
  .gk-rev-text { margin: 0; color: #444; line-height: 1.55; font-size: .96rem; white-space: pre-line; }
  .gk-rev-photo { max-width: 100%; max-height: 220px; width: auto; height: auto; border-radius: 8px; margin-top: 12px; display: block; }

  /* === Footer === */
  footer {
    background-color: #333; color: #fff;
    padding: 15px 20px; margin-top: 40px;
    border-top: 5px solid #0056b3;
    font-size: .9em; display: flex;
    align-items: center; flex-wrap: wrap; min-height: 76px;
  }
  .footer-logo {
    margin-right: 20px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; height: 80px; width: 80px;
  }
  .footer-logo img { width: 100%; height: 100%; object-fit: contain; }
  .footer-center-content { flex-grow: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; margin: 0; }
  .footer-contact a {
    color: #F7D138; text-decoration: none;
    transition: color .3s ease, transform .2s ease;
    display: inline-flex; align-items: center;
    margin: 0 10px; white-space: nowrap;
  }
  .footer-contact a i { margin-right: 8px; }
  .footer-contact a:hover { color: #fff; text-decoration: underline; transform: translateY(-2px); }
  .footer-bottom-line { margin: 0; font-size: .95em; }

  /* === Responsive === */
  /* Nav needs ~871px for the links + 80px logo + 40px padding = ~991px.
     Below that the desktop row overflowed (horizontal scroll) and crushed the logo,
     so the hamburger covers everything up to 1023px. */
  @media (max-width: 1023px) {
    .nav-links {
      display: none; flex-direction: column;
      width: 100%; position: absolute; top: 100%; left: 0;
      background-color: rgba(0,0,0,.95);
      box-shadow: 0 2px 10px rgba(0,0,0,.3);
      padding: 15px 0; z-index: 999;
    }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 12px 20px; text-align: center; font-size: 1.1em; }
    .hamburger-menu { display: flex; }
  }
  @media (max-width: 768px) {
    h1 { font-size: 2.5em; }
    header p { font-size: 1.2em; }
    .navbar-logo { height: 60px; width: 60px; }
    .service-card { flex-basis: 100%; }
    .service-card { padding: 20px; }
    .service-card i { font-size: 3em; }
    .how-it-works-item { flex-basis: 100%; }
    .how-it-works-item { padding: 20px; }
    .about-section-with-image { flex-direction: column; }
    .about-image-wrapper { max-width: 100%; min-height: 200px; }
    .about-text-content { padding: 20px; }
    .about-text-content h2 { text-align: center; }
    .about-text-content p { text-align: center; }
    form label { margin-left: 5%; }
    input, textarea, select { width: 90%; }
    .form-message { width: 90%; padding: 15px 20px; }
    footer { flex-direction: column; align-items: center; text-align: center; min-height: auto; padding: 15px 10px; }
    .footer-logo { margin-right: 0; margin-bottom: 15px; height: 60px; width: 60px; }
    .footer-logo img { height: 100%; width: 100%; }
    .footer-center-content { width: 100%; margin-top: 10px; gap: 5px; }
    .footer-contact { margin-top: 5px; }
    .footer-contact a { margin: 0 8px; padding: 12px 4px; font-size: .9em; }
    .footer-bottom-line { font-size: .85em; }
    .footer-bottom-line a { display: inline-block; padding: 12px 6px; }
  .footer-services a { display: inline-block; padding: 13px 6px; }
  }
  @media (max-width: 480px) {
    .footer-logo { height: 50px; width: 50px; }
    nav { padding: 5px 15px; }
    h1 { font-size: 2em; }
    header p { font-size: 1em; }
    .header-cta-btn { font-size: 1em; padding: 12px 25px; }
    }

  /* === CTA icon === */
  .cta-icon { width: 18px; height: 18px; margin-right: 10px; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  /* === Contact phone link === */
  .contact-phone-link { color: #444; text-decoration: none; }
  .contact-phone-link:hover { color: #0056b3; text-decoration: underline; }

  /* === Field help === */
  .field-help { display: none; font-size: 0.85em; color: #c82333; margin-top: -6px; align-self: flex-start; margin-left: 10%; }
  .req { color: #c82333; font-weight: 700; }

  /* === Submit button === */
  .submit-btn {
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(0,123,255,.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 14px 35px;
    background-color: #0056b3;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.05em;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: .3px;
  }
  .submit-btn i { margin-right: 8px; }
  .submit-btn:hover { background-color: #0056b3; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,123,255,.4); }
  .submit-btn:active { transform: scale(.97); }
  .submit-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }
  /* === Honeypot === */
  .honeypot { display: none !important; }
  /* === Service price === */
  .service-price {
    font-size: 1.1em;
    color: #0056b3;
    margin: 8px 0 12px;
    font-weight: 600;
  }
  .service-price strong {
    font-size: 1.3em;
    color: #0056b3;
  }

  /* === Service Area === */
  .area-intro {
    font-size: 1.05em;
    color: #555;
    margin-bottom: 20px;
  }
  .area-note {
    margin-top: 20px;
    font-size: 0.95em;
    color: #555;
  }
  .area-note a {
    color: #0056b3;
    text-decoration: underline;
  }
  .area-note i {
    margin-right: 6px;
    color: #0056b3;
  }

  /* === Print === */
  @media print {
    .fab-stack, .gk-bar, nav, .ssl-note { display: none !important; }
    body { color: #000; background: #fff; }
    .section { box-shadow: none; border: 1px solid #ddd; }
    a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
  }

  /* === Hero trust strip === */
  .hero-trust{position:relative;z-index:2;display:flex;flex-wrap:wrap;gap:8px;justify-content:center;max-width:500px;margin:0 auto;padding:0 10px;}
  .hero-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(0,0,0,.55);color:#fff;border-radius:999px;padding:7px 14px;font-size:.9rem;font-weight:600;line-height:1.1;text-shadow:0 1px 3px rgba(0,0,0,.6);}
  .hero-badge svg{width:14px;height:14px;flex-shrink:0;}
  .hero-badge .star{color:#F7D138;font-size:1rem;line-height:1;}
  @media (max-width:480px){.hero-badge{font-size:.8rem;padding:6px 11px;}}

  /* ===== rx-01..rx-06 homepage upgrades (2026-07-18) ===== */
  /* rx-05: hero "5.0 on Google" badge is a link now */
  a.hero-badge{color:#fff;text-decoration:none;}
  a.hero-badge:hover{background:rgba(0,0,0,.72);text-decoration:underline;text-underline-offset:3px;}
  /* rx-01: live open/closed pill (PHP renders initial state, JS refreshes) */
  .gk-open{display:inline-flex;align-items:center;gap:8px;font-size:.95rem;font-weight:700;border-radius:999px;padding:8px 18px;line-height:1.4;border:1px solid transparent;}
  .gk-open .gk-dot{width:9px;height:9px;border-radius:50%;flex-shrink:0;}
  .gk-open[data-open="1"]{background:#e7f4ec;border-color:#bfe3cd;color:#0b5e33;}
  .gk-open[data-open="1"] .gk-dot{background:#0E7C43;animation:gkPulse 2s infinite;}
  .gk-open[data-open="0"]{background:#eef1f4;border-color:#d5dbe2;color:#3f4954;}
  .gk-open[data-open="0"] .gk-dot{background:#9aa4af;}
  @keyframes gkPulse{0%,100%{box-shadow:0 0 0 0 rgba(14,124,67,.35);}50%{box-shadow:0 0 0 5px rgba(14,124,67,0);}}
  @media (prefers-reduced-motion:reduce){.gk-open[data-open="1"] .gk-dot{animation:none;}}
  /* rx-02: price strip between hero and Services */
  .gk-pricestrip{max-width:820px;margin:16px auto 4px;padding:0 16px;text-align:center;}
  .gk-pricechips{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;}
  .gk-pchip{display:flex;flex-direction:column;gap:2px;background:#fff;border:1px solid #dbe4ee;border-radius:12px;padding:9px 16px;text-decoration:none;box-sizing:border-box;min-width:128px;}
  .gk-pchip span{font-size:.8rem;font-weight:600;color:#5f6a75;line-height:1.2;}
  .gk-pchip b{font-size:1.02rem;font-weight:800;color:#0056b3;line-height:1.2;}
  .gk-pchip:hover{border-color:#0056b3;}
  .gk-pricenote{margin:10px 0 0;font-size:.92rem;color:#444;font-weight:600;}
  /* rx-04: copy phone number button (desktop only; JS un-hides when clipboard API exists) */
  .gk-copy{display:none;}
  @media (min-width:768px){
    .gk-copy{display:inline-block;margin-left:10px;background:rgba(0,0,0,.45);border:1px solid rgba(255,255,255,.45);color:#fff;border-radius:8px;padding:3px 10px;font-size:.72rem;font-weight:700;cursor:pointer;vertical-align:middle;line-height:1.4;}
    .gk-copy:hover{background:rgba(0,0,0,.65);}
  }
  .gk-copy[hidden]{display:none!important;}
  /* rx-03: always-visible mobile bottom bar (replaces scroll-FAB on phones) */
  .gk-bar{display:none;}
  @media (max-width:767px){
    .gk-bar{position:fixed;left:0;right:0;bottom:0;z-index:1200;display:flex;background:#fff;border-top:1px solid #d9e1ea;box-shadow:0 -2px 12px rgba(0,0,0,.12);padding-bottom:env(safe-area-inset-bottom);transform:translateY(0);transition:transform .25s ease;}
    .gk-bar.gk-hide{transform:translateY(110%);}
    .gk-bar a{flex:1 1 50%;display:flex;align-items:center;justify-content:center;gap:8px;padding:15px 8px;font-weight:800;font-size:1rem;text-decoration:none;color:#fff;}
    .gk-bar .gk-bar-wa{background:#0E7C43;}
    .gk-bar .gk-bar-call{background:#0b5ed7;}
    .gk-bar svg{flex-shrink:0;}
    body{padding-bottom:calc(58px + env(safe-area-inset-bottom));}
    .fab-stack{display:none!important;}
  }
  /* rx-16: skip rendering below-fold sections until scrolled near (reviews/masonry deliberately excluded) */
  .section.cv{content-visibility:auto;contain-intrinsic-size:auto 700px;}
  /* rx-06: scam box two-column checklist */
  .gk-scam-cols{display:flex;flex-wrap:wrap;gap:18px;margin-top:10px;}
  .gk-scam-cols>div{flex:1 1 260px;min-width:240px;}
  .gk-scam-h{margin:0 0 8px;font-weight:800;font-size:.95rem;}
  .gk-scam-cols ul{list-style:none;padding:0;margin:0;}
  .gk-scam-cols li{position:relative;padding:0 0 8px 26px;color:#444;line-height:1.5;}
  .gk-scam-cols li:last-child{padding-bottom:0;}
  .gk-scam-cols .gk-x{position:absolute;left:0;color:#c82333;font-weight:700;}
  .gk-scam-cols .gk-v{position:absolute;left:0;color:#1e7e34;font-weight:700;}
