    /* =====================================================
       FONTS (self-hosted Inter variable font, latin subset)
    ===================================================== */
    /* font-display: optional stops the late font swap from re-rendering the
       hero text and pushing LCP out; the preload means Inter is nearly always
       ready at first paint anyway. */
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 400 800;
      font-display: optional;
      src: url('../fonts/inter-latin.woff2') format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }
    @font-face {
      font-family: 'Inter';
      font-style: italic;
      font-weight: 400;
      font-display: optional;
      src: url('../fonts/inter-latin-italic.woff2') format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }
    /* Metric-matched fallback: if Inter misses the first paint, Arial renders
       at the same size so nothing shifts or produces a larger LCP candidate. */
    @font-face {
      font-family: 'Inter-fallback';
      src: local('Arial');
      size-adjust: 107.64%;
      ascent-override: 90.44%;
      descent-override: 22.52%;
      line-gap-override: 0%;
    }

    /* =====================================================
       RESET & CUSTOM PROPERTIES
    ===================================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue:        #1B75BB;
      --blue-dark:   #145F9A;
      --blue-deep:   #0D4E82;
      --blue-light:  #E8F3FB;
      --blue-mid:    #C5DDF3;
      --navy:        #0A1628;
      --navy-mid:    #132244;
      --navy-light:  #1D3461;
      --zoll:        #8DC63F;   /* ZOLL device green - product accent */
      --zoll-dark:   #6FA82B;
      --zoll-light:  #F1F8E4;
      --text:        #1E293B;
      --text-muted:  #64748B;
      --bg:          #F8FAFC;
      --white:       #FFFFFF;
      --border:      #E2E8F0;
      --border-dark: #CBD5E1;
      --green:       #16A34A;
      --amber:       #F59E0B;
      --red:         #DC2626;

      --font:        'Inter', 'Inter-fallback', system-ui, -apple-system, sans-serif;
      --max-w:       1200px;
      --radius:      10px;
      --radius-lg:   18px;
      --radius-xl:   24px;
      --shadow-sm:   0 2px 8px rgba(15,40,70,0.06);
      --shadow:      0 6px 28px rgba(15,40,70,0.10);
      --shadow-lg:   0 18px 56px rgba(15,40,70,0.16);
    }

    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font); color: var(--text); line-height: 1.65; background: var(--white); -webkit-font-smoothing: antialiased; }
    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--blue); text-decoration: none; }
    a:hover { color: var(--blue-dark); }
    address { font-style: normal; }

    /* =====================================================
       LAYOUT UTILITIES
    ===================================================== */
    .container   { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
    .section     { padding: 96px 0; }
    .section-sm  { padding: 56px 0; }
    .text-center { text-align: center; }

    /* =====================================================
       TYPOGRAPHY
    ===================================================== */
    h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; }
    h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.015em; }
    h3 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 700; line-height: 1.3; }
    h4 { font-size: 0.95rem; font-weight: 600; }
    p  { max-width: 66ch; }

    .lead        { font-size: 1.1rem; color: var(--text-muted); line-height: 1.75; }
    .lead-lg     { font-size: 1.2rem; }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--blue-light);
      color: var(--blue);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 18px;
    }
    .section-label::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: currentColor;
    }

    /* Inline SVG icon sizing */
    .ic { width: 1em; height: 1em; flex-shrink: 0; }

    /* =====================================================
       BUTTONS
    ===================================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 14px 28px;
      border-radius: var(--radius);
      font-family: var(--font);
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.18s ease;
      text-decoration: none;
      border: 2px solid transparent;
      white-space: nowrap;
      line-height: 1;
    }
    .btn-lg   { padding: 17px 34px; font-size: 1.02rem; }
    .btn-sm   { padding: 10px 20px; font-size: 0.875rem; }
    .btn svg  { width: 17px; height: 17px; }

    .btn-primary {
      background: var(--blue); color: var(--white); border-color: var(--blue);
      box-shadow: 0 2px 10px rgba(27,117,187,0.25);
    }
    .btn-primary:hover {
      background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,117,187,0.38);
    }
    .btn-dark {
      background: var(--navy); color: var(--white); border-color: var(--navy);
    }
    .btn-dark:hover {
      background: var(--navy-mid); border-color: var(--navy-mid); color: var(--white); transform: translateY(-2px);
    }
    .btn-outline {
      background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55);
    }
    .btn-outline:hover {
      background: var(--white); color: var(--blue); border-color: var(--white);
    }
    .btn-outline-blue {
      background: transparent; color: var(--blue); border-color: var(--blue-mid);
    }
    .btn-outline-blue:hover {
      background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-2px);
    }
    .btn-ghost {
      background: var(--blue-light); color: var(--blue); border-color: transparent;
    }
    .btn-ghost:hover { background: var(--blue-mid); color: var(--blue-deep); }

    /* =====================================================
       TOP BAR
    ===================================================== */
    .topbar {
      background: var(--navy);
      color: #8BA4BF;
      font-size: 0.83rem;
      padding: 9px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .topbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }
    .topbar-right { display: flex; align-items: center; gap: 20px; }
    .topbar a { color: #A8BFD4; transition: color 0.15s; }
    .topbar a:hover { color: var(--white); }
    .topbar-phone {
      font-weight: 700;
      color: var(--white) !important;
      font-size: 0.92rem;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .topbar-phone svg { width: 14px; height: 14px; color: var(--zoll); }

    /* =====================================================
       HEADER & NAV
    ===================================================== */
    .header {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 200;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }
    .header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      padding-bottom: 14px;
      gap: 24px;
    }

    .logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
    .logo-img { height: 54px; width: auto; }
    .logo-fallback {
      display: none;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--blue);
      letter-spacing: -0.5px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 2px;
    }
    .nav-item { position: relative; }
    .nav-link {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 8px 12px;
      color: var(--text);
      font-weight: 500;
      font-size: 1rem;
      border-radius: 6px;
      transition: all 0.15s;
      cursor: pointer;
    }
    .nav-link:hover, .nav-link.active { color: var(--blue); background: var(--blue-light); }
    .nav-chevron { font-size: 0.6rem; opacity: 0.5; transition: transform 0.15s; }
    .nav-item:hover .nav-chevron { transform: rotate(180deg); }

    .dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      min-width: 240px;
      padding: 8px;
      z-index: 300;
    }
    /* Invisible bridge over the 6px gap so hover survives the mouse travel from link to menu */
    .dropdown::before {
      content: '';
      position: absolute;
      top: -10px;
      left: 0;
      right: 0;
      height: 10px;
    }
    .nav-item:hover .dropdown,
    .nav-item:focus-within .dropdown { display: block; }
    .dropdown a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 9px 14px;
      color: var(--text);
      font-size: 0.875rem;
      border-radius: 6px;
      transition: background 0.12s;
    }
    .dropdown a:hover { background: var(--blue-light); color: var(--blue); }
    .dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }
    .dropdown a.ext-link::after { content: '↗'; font-size: 0.75rem; opacity: 0.5; margin-left: auto; }

    .nav-cta {
      background: var(--blue) !important;
      color: var(--white) !important;
      border-radius: var(--radius) !important;
      padding: 9px 18px !important;
      font-weight: 600 !important;
      margin-left: 8px;
      transition: background 0.15s, transform 0.15s !important;
    }
    .nav-cta:hover {
      background: var(--blue-dark) !important;
      color: var(--white) !important;
      transform: translateY(-1px);
    }

    .nav-toggle {
      display: none;
      background: none;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 8px 10px;
      cursor: pointer;
      color: var(--text);
    }
    .nav-toggle svg { width: 20px; height: 20px; display: block; }

    /* =====================================================
       HERO - light, product-led
    ===================================================== */
    .hero {
      background:
        radial-gradient(1100px 560px at 82% 30%, rgba(141,198,63,0.13), transparent 60%),
        radial-gradient(900px 620px at 12% 85%, rgba(27,117,187,0.10), transparent 65%),
        linear-gradient(180deg, #F4F9FD 0%, #EDF5FC 70%, var(--white) 100%);
      padding: 84px 0 72px;
      position: relative;
      overflow: hidden;
    }

    /* Faint ECG trace across the hero */
    .hero-ecg-wrap {
      position: absolute;
      bottom: 26px;
      left: 0;
      right: 0;
      pointer-events: none;
      opacity: 0.55;
    }
    .hero-ecg-wrap svg { display: block; width: 100%; }

    .hero .container {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 56px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 1px solid var(--blue-mid);
      border-radius: 100px;
      padding: 7px 16px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--blue-deep);
      margin-bottom: 24px;
      box-shadow: var(--shadow-sm);
    }
    .hero-badge-dot {
      width: 8px;
      height: 8px;
      background: var(--zoll);
      border-radius: 50%;
      animation: blink 2.4s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

    .hero h1 { color: var(--navy); margin-bottom: 22px; }
    .hero h1 em { font-style: normal; color: var(--blue); }

    .hero-sub {
      font-size: 1.12rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 34px;
      max-width: 52ch;
    }
    .hero-sub strong { color: var(--text); font-weight: 600; }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 22px;
    }
    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 0.84rem;
      color: var(--text-muted);
      font-weight: 500;
    }
    .hero-trust-item svg { width: 15px; height: 15px; color: var(--zoll-dark); flex-shrink: 0; }

    /* Hero right - product stage */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 460px;
    }
    .hero-stage {
      position: relative;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
      padding: 44px 40px 96px;
      width: 100%;
      max-width: 440px;
    }
    .hero-stage-img {
      width: 100%;
      max-width: 330px;
      margin: 0 auto;
      animation: heroFloat 6s ease-in-out infinite;
    }
    @keyframes heroFloat {
      0%,100% { transform: translateY(0); }
      50%     { transform: translateY(-9px); }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-stage-img { animation: none; }
      .hero-badge-dot { animation: none; }
    }

    .hero-stage-caption {
      position: absolute;
      left: 40px;
      right: 40px;
      bottom: 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-top: 1px solid var(--border);
      padding-top: 16px;
    }
    .hero-stage-name { font-weight: 800; font-size: 1.05rem; color: var(--navy); line-height: 1.2; }
    .hero-stage-tag  { font-size: 0.76rem; color: var(--text-muted); margin-top: 2px; }
    .hero-stage-caption .btn { padding: 10px 16px; font-size: 0.82rem; }

    /* Floating chips around the stage */
    .hero-float {
      position: absolute;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      box-shadow: var(--shadow);
      padding: 11px 15px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text);
      z-index: 2;
      white-space: nowrap;
    }
    .hero-float small { display: block; font-weight: 500; color: var(--text-muted); font-size: 0.7rem; margin-top: 1px; }
    .hero-float-icon {
      width: 32px; height: 32px;
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .hero-float-icon svg { width: 17px; height: 17px; }
    .hf-cpr    { top: 34px; left: -46px; }
    .hf-cpr    .hero-float-icon { background: #FDECEC; color: var(--red); }
    .hf-rating { top: 130px; right: -38px; }
    .hf-rating .hero-float-icon { background: #FEF6E5; color: var(--amber); }
    .hf-ready  { bottom: 118px; left: -34px; }
    .hf-ready  .hero-float-icon { background: var(--zoll-light); color: var(--zoll-dark); }

    /* =====================================================
       TRUST BAR
    ===================================================== */
    .trust-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 22px 0;
    }
    .trust-bar .container {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .trust-google {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .trust-g-logo {
      font-size: 1.6rem;
      font-weight: 800;
      background: linear-gradient(135deg, #4285F4 25%, #EA4335 50%, #FBBC05 75%, #34A853 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }
    .trust-stars { color: var(--amber); font-size: 1rem; letter-spacing: 1px; }
    .trust-score { font-size: 1.15rem; font-weight: 800; color: var(--text); }
    .trust-count { font-size: 0.78rem; color: var(--text-muted); margin-top: 1px; }

    .trust-sep { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

    .trust-clients-label { font-size: 0.95rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
    .trust-logos {
      display: flex;
      align-items: center;
      gap: 26px;
      flex-wrap: wrap;
    }
    .trust-client-logo {
      height: 66px;
      width: auto;
      max-width: 210px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.55;
      transition: all 0.25s;
    }
    .trust-client-logo:hover {
      filter: none;
      opacity: 1;
    }
    .trust-logos-lg .trust-client-logo { height: 120px; max-width: 300px; }
    .trust-logos-lg .trust-client-logo { filter: none; opacity: 1; }
    .trust-logos-md .trust-client-logo { width: 100px; height: auto; max-width: none; }

    /* =====================================================
       STATS STRIP
    ===================================================== */
    .stats-strip {
      background: var(--navy);
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }
    .stats-strip::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(700px 300px at 50% 0%, rgba(27,117,187,0.18), transparent 70%);
      pointer-events: none;
    }
    .stats-strip .container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      position: relative;
    }
    .stat-item {
      text-align: center;
      padding: 8px 40px;
      border-right: 1px solid rgba(255,255,255,0.1);
    }
    .stat-item:last-child { border-right: none; }
    .stat-number {
      font-size: clamp(2.6rem, 5vw, 3.8rem);
      font-weight: 800;
      color: #7DC4F5;
      line-height: 1;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }
    .stat-label {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 6px;
      line-height: 1.4;
    }
    .stat-source {
      font-size: 0.73rem;
      color: #4A6A84;
    }

    /* =====================================================
       SECTION HEADERS
    ===================================================== */
    .section-hdr {
      text-align: center;
      margin-bottom: 56px;
    }
    .section-hdr h2 { margin-bottom: 14px; }
    .section-hdr .lead { margin: 0 auto; }

    /* =====================================================
       PRODUCTS - flagship showcase
    ===================================================== */
    .products-section { background: var(--bg); }

    .flagship {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      overflow: hidden;
      margin-bottom: 28px;
    }
    .flagship-media {
      background: linear-gradient(160deg, #FBFDF6 0%, #EFF7E0 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px;
      position: relative;
      min-height: 420px;
    }
    .flagship-media img {
      width: 100%;
      max-width: 460px;
      object-fit: contain;
    }
    .flagship-ribbon {
      position: absolute;
      top: 22px;
      left: 22px;
      background: var(--zoll-dark);
      color: var(--white);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      box-shadow: 0 3px 10px rgba(111,168,43,0.4);
    }
    .flagship-brandline {
      position: absolute;
      bottom: 20px;
      left: 24px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #93A98A;
    }

    .flagship-body { padding: 52px 56px; display: flex; flex-direction: column; }
    .flagship-body h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.01em; }
    .flagship-tagline { color: var(--blue); font-weight: 600; font-size: 0.95rem; margin-bottom: 18px; }
    .flagship-body > p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; max-width: none; }

    .flagship-feats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px 20px;
      margin-bottom: 30px;
    }
    .flagship-feat { display: flex; gap: 12px; align-items: flex-start; }
    .flagship-feat-icon {
      width: 38px; height: 38px;
      background: var(--blue-light);
      color: var(--blue);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .flagship-feat-icon svg { width: 19px; height: 19px; }
    .flagship-feat strong { display: block; font-size: 0.86rem; font-weight: 700; color: var(--text); line-height: 1.35; }
    .flagship-feat span   { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; display: block; margin-top: 2px; }

    .flagship-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }

    /* Product range grid */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      margin-bottom: 28px;
    }

    .product-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
    }
    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: var(--blue-mid);
    }

    .product-img-wrap {
      background: linear-gradient(150deg, #F7FAFD 0%, #E9F2FA 100%);
      aspect-ratio: 16/9;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 28px;
    }
    .product-img-wrap img {
      width: auto;
      height: 100%;
      max-width: 100%;
      object-fit: contain;
      transition: transform 0.35s ease;
    }
    .product-card:hover .product-img-wrap img { transform: scale(1.05); }
    .product-img-placeholder {
      font-size: 4rem;
      opacity: 0.5;
    }
    .product-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--blue);
      color: var(--white);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 5px 12px;
      border-radius: 100px;
    }
    .product-badge-dark  { background: var(--navy); }
    .product-badge-green { background: var(--zoll-dark); }

    .product-body {
      padding: 30px 32px 32px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .product-body h3 { margin-bottom: 4px; color: var(--navy); }
    .product-tagline {
      color: var(--blue);
      font-size: 0.84rem;
      font-weight: 600;
      margin-bottom: 14px;
    }
    .product-body > p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.65;
      margin-bottom: 20px;
      max-width: none;
    }

    .product-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 26px;
    }
    .product-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.86rem;
      color: var(--text);
    }
    .feat-tick { color: var(--zoll-dark); flex-shrink: 0; margin-top: 2px; width: 15px; height: 15px; }

    .product-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }

    /* Accessories tiles */
    .acc-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      margin: 56px 0 26px;
    }
    .acc-hdr h3 { font-size: 1.35rem; font-weight: 800; color: var(--navy); }
    .acc-hdr p  { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; }
    .acc-hdr a  { font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
    .acc-hdr a svg { width: 14px; height: 14px; }

    .acc-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .acc-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
      color: var(--text);
    }
    .acc-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: var(--blue-mid);
      color: var(--text);
    }
    .acc-img {
      background: #F4F8FB;
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 22px;
    }
    .acc-img img { width: auto; height: 100%; max-width: 100%; object-fit: contain; }
    .acc-img-icon { color: var(--blue); }
    .acc-img-icon svg { width: 52px; height: 52px; }
    .acc-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
    .acc-body:has(.acc-buy) > span { flex: 1 0 auto; }
    .acc-buy { margin-top: 14px; align-self: flex-start; }
    .acc-body strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
    .acc-body span { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; display: block; }
    .acc-link {
      margin-top: 10px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--blue);
    }
    .acc-link svg { width: 13px; height: 13px; transition: transform 0.15s; }
    .acc-card:hover .acc-link svg { transform: translateX(3px); }

    /* Helper bar under products */
    .product-help {
      margin-top: 56px;
      background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 100%);
      border-radius: var(--radius-lg);
      padding: 34px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      color: var(--white);
    }
    .product-help-text h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
    .product-help-text p { color: #9BB4CC; font-size: 0.9rem; max-width: none; }
    .product-help-actions { display: flex; gap: 12px; flex-wrap: wrap; }

    /* =====================================================
       WHY AED NZ
    ===================================================== */
    .why-section { background: var(--white); }
    .why-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .why-content h2 { margin-bottom: 14px; }
    .why-content .lead { margin-bottom: 36px; }

    .why-list { display: flex; flex-direction: column; gap: 28px; }
    .why-item { display: flex; gap: 18px; align-items: flex-start; }
    .why-icon {
      width: 46px;
      height: 46px;
      background: var(--blue-light);
      color: var(--blue);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .why-icon svg { width: 22px; height: 22px; }
    .why-text h3 { font-size: 0.98rem; margin-bottom: 4px; }
    .why-text p { font-size: 0.875rem; color: var(--text-muted); max-width: none; line-height: 1.6; }

    /* Right side - certifications card */
    .why-visual { position: relative; }
    .why-bg-card {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      border-radius: var(--radius-xl);
      padding: 48px 40px;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .why-bg-card::before {
      content: '';
      position: absolute;
      right: -40px;
      top: -40px;
      width: 200px;
      height: 200px;
      border: 40px solid rgba(27,117,187,0.15);
      border-radius: 50%;
    }
    .why-bg-card::after {
      content: '';
      position: absolute;
      right: 20px;
      bottom: -60px;
      width: 140px;
      height: 140px;
      border: 30px solid rgba(141,198,63,0.12);
      border-radius: 50%;
    }
    .why-card-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #7DC4F5;
      margin-bottom: 24px;
    }
    .why-card-stat {
      margin-bottom: 32px;
    }
    .why-card-stat-num {
      font-size: 3.5rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      margin-bottom: 4px;
      letter-spacing: -0.02em;
    }
    .why-card-stat-label {
      font-size: 0.9rem;
      color: #8BA4BF;
      line-height: 1.4;
    }
    .why-card-divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 28px; }

    .why-cert-list { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
    .why-cert {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.88rem;
      color: #C8D8E8;
    }
    .why-cert-tick {
      width: 22px;
      height: 22px;
      background: rgba(141,198,63,0.18);
      border: 1px solid rgba(141,198,63,0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #B4E06A;
      flex-shrink: 0;
    }
    .why-cert-tick svg { width: 11px; height: 11px; }

    /* =====================================================
       FOUNDER STORY
    ===================================================== */
    .founder-section {
      background: var(--navy);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .founder-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(800px 400px at 85% 15%, rgba(27,117,187,0.15), transparent 70%);
      pointer-events: none;
    }
    .founder-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
    }

    .founder-content .section-label {
      background: rgba(27,117,187,0.3);
      color: #7DC4F5;
    }
    .founder-content h2 { color: var(--white); margin-bottom: 20px; }
    .founder-content p {
      color: #9BB4CC;
      line-height: 1.8;
      margin-bottom: 16px;
      max-width: none;
    }
    .founder-content p strong { color: var(--white); }

    .founder-quote-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-xl);
      padding: 40px;
      position: relative;
    }
    .founder-quote-mark {
      font-size: 4.5rem;
      color: var(--blue);
      font-family: Georgia, serif;
      line-height: 0.8;
      opacity: 0.7;
      margin-bottom: 16px;
      display: block;
    }
    .founder-quote-text {
      font-size: 1.05rem;
      color: #C8D8E8;
      line-height: 1.8;
      font-style: italic;
      margin-bottom: 28px;
      max-width: none;
    }
    .founder-attr {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .founder-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1rem;
      color: var(--white);
      flex-shrink: 0;
      letter-spacing: 0;
    }
    .founder-name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
    .founder-title { font-size: 0.78rem; color: #6B8FA8; margin-top: 2px; line-height: 1.4; }

    /* =====================================================
       WHO WE SERVE
    ===================================================== */
    .serve-section { background: var(--bg); }
    .serve-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .serve-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 3/4;
      cursor: default;
      box-shadow: var(--shadow);
    }
    .serve-card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .serve-card:hover .serve-card-img { transform: scale(1.06); }
    .serve-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(4,10,22,0.04) 0%,
        rgba(4,10,22,0.28) 45%,
        rgba(4,10,22,0.82) 100%
      );
    }
    .serve-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px 22px;
    }
    .serve-card-content h3 {
      color: var(--white);
      font-size: 1.05rem;
      margin-bottom: 7px;
      text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    }
    .serve-card-content p {
      color: rgba(255,255,255,0.82);
      font-size: 0.82rem;
      line-height: 1.55;
      max-width: none;
      text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }

    /* =====================================================
       VIDEO SECTION
    ===================================================== */
    .video-section { background: var(--white); }
    .video-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .video-content h2 { margin-bottom: 14px; }
    .video-content .lead { margin-bottom: 28px; }

    .video-features { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
    .video-feat {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .video-feat-icon {
      width: 38px;
      height: 38px;
      background: var(--blue-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
      flex-shrink: 0;
    }
    .video-feat-icon svg { width: 18px; height: 18px; }
    .video-feat-text strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
    .video-feat-text span { font-size: 0.82rem; color: var(--text-muted); }

    .video-wrap {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 16/9;
      box-shadow: var(--shadow-lg);
      background: var(--navy);
      cursor: pointer;
    }
    .video-wrap iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
    .video-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      background: var(--navy);
      color: var(--white);
      cursor: pointer;
    }
    .video-poster {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.55;
      transition: opacity 0.3s;
    }
    .video-placeholder:hover .video-poster { opacity: 0.40; }
    .video-play {
      position: relative;
      z-index: 1;
      width: 68px;
      height: 68px;
      background: var(--blue);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s, background 0.2s;
      box-shadow: 0 8px 32px rgba(27,117,187,0.4);
    }
    .video-play:hover { transform: scale(1.1); background: var(--blue-dark); }
    .video-play svg { width: 28px; height: 28px; fill: white; margin-left: 4px; }
    .video-caption { position: relative; z-index: 1; font-size: 0.875rem; color: #C4D4E4; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }

    /* =====================================================
       TESTIMONIALS
    ===================================================== */
    .reviews-section { background: var(--bg); }
    .reviews-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 40px;
      flex-wrap: wrap;
      gap: 20px;
    }
    .reviews-header h2 { margin-bottom: 6px; }

    .g-rating-block { display: flex; align-items: center; gap: 14px; }
    .g-g { font-size: 1.5rem; font-weight: 900; line-height: 1; }
    .g-g span:nth-child(1) { color: #4285F4; }
    .g-g span:nth-child(2) { color: #EA4335; }
    .g-g span:nth-child(3) { color: #FBBC05; }
    .g-g span:nth-child(4) { color: #4285F4; }
    .g-g span:nth-child(5) { color: #34A853; }
    .g-g span:nth-child(6) { color: #EA4335; }
    .g-score { font-size: 2.2rem; font-weight: 800; color: var(--text); line-height: 1; }
    .g-stars-row { display: flex; align-items: center; gap: 8px; }
    .g-stars { color: var(--amber); font-size: 1rem; }
    .g-count { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

    .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .review-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 28px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
    }
    .review-stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 1px; }
    .review-text {
      font-size: 0.9rem;
      color: var(--text);
      line-height: 1.7;
      font-style: italic;
      flex: 1;
      margin-bottom: 20px;
      max-width: none;
    }
    .review-footer { display: flex; align-items: center; gap: 10px; }
    .review-initials {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--blue-light);
      color: var(--blue);
      font-weight: 700;
      font-size: 0.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .review-author-name { font-weight: 600; font-size: 0.85rem; }
    .review-author-role { font-size: 0.75rem; color: var(--text-muted); }

    /* =====================================================
       FAQ SECTION (visible + JSON-LD)
    ===================================================== */
    .faq-section { background: var(--white); }
    .faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 20px 24px;
      font-family: var(--font);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: background 0.15s;
    }
    .faq-q:hover { background: var(--bg); }
    .faq-q[aria-expanded="true"] { background: var(--blue-light); color: var(--blue); }
    .faq-chevron {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      transition: transform 0.2s;
    }
    .faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
    .faq-a {
      display: none;
      padding: 0 24px 20px;
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.75;
      max-width: none;
    }
    .faq-a.open { display: block; }

    /* =====================================================
       CTA SECTION
    ===================================================== */
    .cta-section {
      background: linear-gradient(140deg, var(--blue) 0%, var(--blue-deep) 100%);
      padding: 92px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    .cta-section .container { position: relative; z-index: 1; }
    .cta-section h2 { color: var(--white); margin-bottom: 16px; }
    .cta-section .lead { color: rgba(255,255,255,0.8); margin: 0 auto 36px; }
    .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .cta-note { margin: 20px auto 0; font-size: 0.82rem; color: rgba(255,255,255,0.55); }

    /* =====================================================
       FOOTER
    ===================================================== */
    .footer { background: var(--navy); color: #7A98B3; }
    .footer-body { padding: 64px 0 48px; }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.4fr;
      gap: 48px;
    }

    .footer-brand-logo-wrap {
      display: inline-block;
      background: var(--white);
      border-radius: var(--radius);
      padding: 8px 14px;
      margin-bottom: 18px;
    }
    .footer-brand-logo { height: 38px; width: auto; }
    .footer-brand p {
      font-size: 0.85rem;
      line-height: 1.75;
      color: #6A8A9F;
      margin-bottom: 20px;
      max-width: none;
    }
    .footer-address {
      font-size: 0.8rem;
      color: #4A6070;
      line-height: 1.7;
    }
    .footer-address a { color: #7DC4F5; }
    .footer-address a:hover { color: var(--white); }

    .footer-col h4 {
      color: var(--white);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-links a {
      color: #6A8A9F;
      font-size: 0.855rem;
      transition: color 0.15s;
    }
    .footer-links a:hover { color: var(--white); }
    .footer-links .ext-link::after { content: ' ↗'; font-size: 0.75rem; opacity: 0.5; }

    .footer-phone-big {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #7DC4F5 !important;
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .footer-phone-big:hover { color: var(--white) !important; }
    .footer-phone-big svg { width: 16px; height: 16px; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 22px 0;
    }
    .footer-bottom .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.78rem;
      color: #3D5870;
    }
    .footer-bottom a { color: #4A6880; }
    .footer-bottom a:hover { color: #7A98B3; }
    .footer-bottom-right { display: flex; gap: 16px; }

    /* =====================================================
       RESPONSIVE - Tablet (≤ 1024px)
    ===================================================== */
    @media (max-width: 1024px) {
      .hero .container       { grid-template-columns: 1fr; }
      /* keep the product visual on mobile as a visual cue; drop the
         absolutely-positioned float chips that overflow narrow screens */
      .hero-visual           { min-height: 0; margin-top: 30px; }
      .hero-stage            { max-width: 400px; margin: 0 auto; padding: 32px 28px 88px; }
      .hero-float            { display: none; }
      .flagship              { grid-template-columns: 1fr; }
      .flagship-media        { min-height: 320px; }
      .flagship-body         { padding: 40px 36px; }
      .products-grid         { grid-template-columns: 1fr; }
      .acc-grid              { grid-template-columns: repeat(2, 1fr); }
      .why-inner             { grid-template-columns: 1fr; }
      .why-visual            { display: none; }
      .founder-inner         { grid-template-columns: 1fr; }
      .video-inner           { grid-template-columns: 1fr; }
      .video-wrap            { max-width: 600px; }
      .serve-grid            { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .footer-grid           { grid-template-columns: 1fr 1fr; gap: 36px; }
    }

    /* =====================================================
       RESPONSIVE - Mobile (≤ 768px)
    ===================================================== */
    @media (max-width: 768px) {
      .section { padding: 64px 0; }
      .section-sm { padding: 40px 0; }

      .topbar .container { justify-content: center; }
      .topbar-left { display: none; }

      .nav { display: none; flex-direction: column; width: 100%; }
      .nav.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: 12px 16px;
        box-shadow: var(--shadow-lg);
        z-index: 500;
      }
      .nav-item { width: 100%; }
      .nav-link { width: 100%; padding: 12px 16px; }
      .dropdown { position: static; box-shadow: none; border: none; background: var(--bg); border-radius: var(--radius); margin-top: 4px; }
      .nav-toggle { display: flex; }
      .nav-cta { margin-left: 0; margin-top: 8px; justify-content: center; }

      .hero { padding: 56px 0 60px; }
      .hero h1 { font-size: clamp(1.85rem, 7vw, 2.4rem); }

      .stats-strip .container {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 28px 20px;
      }
      .stat-item:last-child { border-bottom: none; }

      .flagship-body     { padding: 32px 26px; }
      .flagship-feats    { grid-template-columns: 1fr; }
      .flagship-actions .btn { flex: 1; }
      .product-help      { padding: 28px 26px; }
      .reviews-grid      { grid-template-columns: 1fr; }
      .reviews-header    { flex-direction: column; }
      .footer-grid       { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom .container { flex-direction: column; text-align: center; }
      .hero-actions      { flex-direction: column; }
      .hero-actions .btn { width: 100%; }
    }

    @media (max-width: 480px) {
      .trust-bar .container { flex-direction: column; align-items: flex-start; gap: 16px; }
      .trust-sep { display: none; }
      .trust-logos-lg .trust-client-logo { height: 72px; max-width: 180px; }
      .trust-logos { gap: 18px; }
      .cta-actions { flex-direction: column; align-items: center; }
      .cta-actions .btn { width: 100%; max-width: 340px; justify-content: center; }
      .serve-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .acc-grid   { grid-template-columns: 1fr; }
    }

    /* Featured AED cards on the products hub: bigger and more prominent */
    .featured-aeds { gap: 28px; }
    .featured-aeds .product-img-wrap { aspect-ratio: 4/3; padding: 34px; }
    .featured-aeds .product-body { padding: 30px 30px 34px; }
    .featured-aeds .product-body h3 { font-size: 1.55rem; }
    .featured-aeds .product-tagline { font-size: 1rem; margin-bottom: 12px; }
    .featured-aeds .product-body > p { font-size: 1.02rem; line-height: 1.75; }
    .featured-aeds .product-actions .btn { padding: 15px 30px; font-size: 1.02rem; width: 100%; justify-content: center; }
    .featured-aeds .product-badge { font-size: 0.8rem; padding: 7px 14px; }

    /* Desktop-only grid column utilities: below 1024px the responsive
       .acc-grid / .products-grid / .posts-grid rules take over.
       Doubled class selectors so they outrank the base grid rules
       regardless of where those appear in this stylesheet. */
    @media (min-width: 1025px) {
      .cols-3.cols-3 { grid-template-columns: repeat(3, 1fr); }
      .cols-2.cols-2 { grid-template-columns: repeat(2, 1fr); }
    }

    /* =====================================================
       ACCESSIBILITY
    ===================================================== */
    .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; }
    :focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 3px; }

    /* =====================================================
       INNER PAGES - PAGE HERO & BREADCRUMB
    ===================================================== */
    .page-hero {
      background:
        radial-gradient(900px 420px at 85% 20%, rgba(141,198,63,0.10), transparent 60%),
        linear-gradient(180deg, #F4F9FD 0%, #EDF5FC 75%, #FFFFFF 100%);
      padding: 56px 0 48px;
      border-bottom: 1px solid var(--border);
    }
    .page-hero h1 { color: var(--navy); margin-bottom: 14px; max-width: 22ch; }
    .page-hero .lead { max-width: 62ch; }
    .page-hero-center { text-align: center; }
    .page-hero-center h1, .page-hero-center .lead { margin-left: auto; margin-right: auto; }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      list-style: none;
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 18px;
      padding: 0;
    }
    .breadcrumb li { display: flex; align-items: center; gap: 6px; }
    .breadcrumb li + li::before { content: '/'; color: var(--border-dark); }
    .breadcrumb a { color: var(--text-muted); }
    .breadcrumb a:hover { color: var(--blue); }
    .breadcrumb [aria-current] { color: var(--text); font-weight: 600; }

    /* =====================================================
       INNER PAGES - PROSE (long-form articles)
    ===================================================== */
    .prose { max-width: 760px; margin: 0 auto; }
    .prose > * + * { margin-top: 18px; }
    .prose h2 { margin-top: 44px; font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
    .prose h3 { margin-top: 32px; font-size: 1.15rem; }
    .prose p, .prose li { color: #334155; line-height: 1.8; max-width: none; }
    .prose ul, .prose ol { padding-left: 24px; }
    .prose li + li { margin-top: 8px; }
    .prose a { font-weight: 600; text-decoration: underline; text-decoration-color: var(--blue-mid); text-underline-offset: 3px; }
    .prose a:hover { text-decoration-color: var(--blue); }
    .prose img { border-radius: var(--radius-lg); box-shadow: var(--shadow); margin: 8px auto; }
    .prose figure figcaption { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 10px; }
    .prose sup { font-size: 0.68em; line-height: 0; color: var(--text-muted); }
    .prose blockquote {
      border-left: 4px solid var(--blue);
      background: var(--blue-light);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 18px 24px;
      font-style: italic;
      color: var(--blue-deep);
    }
    .prose table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
    .prose th, .prose td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; vertical-align: top; }
    .prose th { background: var(--blue-light); color: var(--blue-deep); font-weight: 700; }
    .prose tr:nth-child(even) td { background: var(--bg); }
    .table-scroll { overflow-x: auto; }

    .callout {
      background: var(--zoll-light);
      border: 1px solid #DBEDBE;
      border-radius: var(--radius-lg);
      padding: 22px 26px;
    }
    .callout strong { color: var(--zoll-dark); }
    .callout-blue { background: var(--blue-light); border-color: var(--blue-mid); }
    .callout-blue strong { color: var(--blue-deep); }
    .callout-red { background: #FDF2F2; border-color: #F5CBCB; }
    .callout-red strong { color: var(--red); }

    /* =====================================================
       INNER PAGES - BYLINE & AUTHOR BOX (E-E-A-T)
    ===================================================== */
    .byline {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.83rem;
      color: var(--text-muted);
      margin-top: 22px;
    }
    .byline-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
      color: var(--white);
      font-weight: 800;
      font-size: 0.85rem;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .byline strong { display: block; color: var(--text); font-size: 0.88rem; }

    .author-box {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 26px 28px;
      margin-top: 56px;
    }
    .author-box .byline-avatar { width: 56px; height: 56px; font-size: 1rem; }
    .author-box h3 { font-size: 1rem; margin-bottom: 6px; }
    .author-box p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; max-width: none; }

    /* =====================================================
       INNER PAGES - FEATURE PILLS
    ===================================================== */
    .pills { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; }
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--blue-light);
      color: var(--blue);
      border-radius: 100px;
      padding: 8px 16px;
      font-size: 0.85rem;
      font-weight: 600;
      line-height: 1;
    }
    .pill svg { width: 13px; height: 13px; }
    .pill-green { background: var(--zoll-light); color: var(--zoll-dark); }

    /* =====================================================
       PRODUCT PAGES - HERO GALLERY & SPECS
    ===================================================== */
    .prod-hero { padding: 56px 0 72px; }
    .prod-hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }
    .prod-gallery-main {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px;
      overflow: hidden;
    }
    .prod-gallery-main img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; }
    .prod-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
    .prod-thumb {
      width: 76px; height: 64px;
      background: var(--white);
      border: 2px solid var(--border);
      border-radius: var(--radius);
      padding: 6px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.15s;
    }
    .prod-thumb img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; }
    .prod-thumb.active, .prod-thumb:hover { border-color: var(--blue); }

    .prod-info h1 { margin-bottom: 12px; }
    .prod-info .prod-sub { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 22px; }
    .prod-info .pills { margin-bottom: 26px; }
    .prod-cta-panel {
      background: var(--blue-light);
      border: 1px solid var(--blue-mid);
      border-radius: var(--radius-lg);
      padding: 22px 26px;
      margin-top: 28px;
    }
    .prod-cta-panel strong { color: var(--blue-deep); }
    .prod-cta-panel .btn { margin-top: 14px; }
    .prod-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }

    .spec-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
    .spec-table th, .spec-table td { border: 1px solid var(--border); padding: 11px 16px; text-align: left; }
    .spec-table th { background: var(--bg); width: 38%; font-weight: 600; color: var(--text); }

    /* =====================================================
       COMPARE TABLE (ZOLL vs others)
    ===================================================== */
    .compare-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
    }
    .compare-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 10px;
    }
    .compare-cell {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 0.92rem;
      line-height: 1.45;
      padding: 12px 16px;
      border-radius: var(--radius);
    }
    .compare-pro { background: #ECFDF5; border: 1px solid #D1FAE5; color: #065F46; }
    .compare-con { background: #FEF2F2; border: 1px solid #FEE2E2; color: #7F1D1D; }
    .compare-mark {
      width: 18px; height: 18px;
      border-radius: 50%;
      color: #fff;
      font-size: 0.65rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .compare-pro .compare-mark { background: #065F46; }
    .compare-con .compare-mark { background: #7F1D1D; }

    /* =====================================================
       QUOTE / CONTACT FORM
    ===================================================== */
    .form-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: 40px;
      max-width: 720px;
      margin: 0 auto;
    }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .field { display: flex; flex-direction: column; gap: 6px; }
    .field-full { grid-column: 1 / -1; }
    .field label { font-size: 0.83rem; font-weight: 600; color: var(--text); }
    .field label span { color: var(--red); }
    .field input, .field textarea, .field select {
      font-family: var(--font);
      font-size: 0.92rem;
      color: var(--text);
      background: var(--bg);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius);
      padding: 12px 14px;
      width: 100%;
    }
    .field input:focus, .field textarea:focus, .field select:focus {
      outline: 2px solid var(--blue);
      outline-offset: 0;
      border-color: var(--blue);
      background: var(--white);
    }
    .field textarea { min-height: 130px; resize: vertical; }
    .form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 14px; }
    .recaptcha-holder { margin-bottom: 16px; }
    .recaptcha-msg { color: var(--red); font-size: 0.85rem; margin: -8px 0 12px; }
    /* v3 badge hidden; the required disclosure is shown in .recaptcha-note instead */
    .grecaptcha-badge { visibility: hidden; }
    .recaptcha-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 12px; }
    .recaptcha-note a { color: inherit; text-decoration: underline; }
    .form-card .btn { width: 100%; margin-top: 20px; }

    /* =====================================================
       REVIEW STRIP (verified names)
    ===================================================== */
    .review-strip { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
    .review-mini {
      width: 148px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--white);
      padding: 14px;
      text-align: center;
    }
    .review-mini .stars { color: var(--amber); font-size: 0.85rem; letter-spacing: 1px; }
    .review-mini .name { font-weight: 700; font-size: 0.9rem; margin-top: 6px; }
    .review-mini .chip {
      display: inline-block;
      margin-top: 8px;
      padding: 4px 10px;
      border-radius: 100px;
      background: var(--blue-light);
      color: var(--blue);
      font-size: 0.7rem;
      font-weight: 700;
    }

    /* =====================================================
       BLOG - POST CARDS & META
    ===================================================== */
    /* Featured / in-article images */
    .featured-img { max-width: 860px; margin: 30px auto 0; }
    .featured-img img { width: 100%; height: auto; max-height: 480px; object-fit: cover; border-radius: var(--radius-lg); display: block; box-shadow: var(--shadow); }
    .prose .inline-img, .inline-img { margin: 28px auto; max-width: 520px; }
    .inline-img img { width: 100%; height: auto; border-radius: var(--radius-lg); display: block; border: 1px solid var(--border); }
    .inline-img figcaption { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 8px; }
    .img-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 760px; margin: 28px auto; }
    .img-duo .inline-img { margin: 0; }

    .posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .post-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
      color: var(--text);
    }
    .post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-mid); color: var(--text); }
    .post-card-img { aspect-ratio: 1/1; background: linear-gradient(150deg, #F7FAFD 0%, #E9F2FA 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .post-card-img img { width: 100%; height: 100%; object-fit: cover; }
    .post-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
    .post-card-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
    .post-card-body h3 { font-size: 1.02rem; line-height: 1.4; margin-bottom: 8px; }
    .post-card-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1; max-width: none; }
    .post-card-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 18px;
      font-size: 0.8rem;
      color: var(--text-muted);
      align-items: center;
    }
    .article-meta strong { color: var(--text); }

    /* =====================================================
       INNER PAGES RESPONSIVE
    ===================================================== */
    @media (max-width: 1024px) {
      .prod-hero-grid { grid-template-columns: 1fr; gap: 36px; }
      .posts-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .form-grid { grid-template-columns: 1fr; }
      .posts-grid { grid-template-columns: 1fr; }
      .compare-head { display: none; }
      .compare-row { grid-template-columns: 1fr; gap: 8px; }
      /* with the two-column header hidden, label every stacked cell so
         green = ZOLL and red = cheap AEDs stays obvious */
      .compare-cell { flex-wrap: wrap; }
      .compare-cell::before { display: block; width: 100%; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
      .compare-pro::before { content: "ZOLL AED Plus"; color: #065F46; }
      .compare-con::before { content: "Cheaper No-Name AEDs"; color: #7F1D1D; }
      /* homepage "ZOLL is Used By" strip: two tidy rows of 4 */
      .trust-logos:not(.trust-logos-lg):not(.trust-logos-md) { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: center; justify-items: center; }
      .trust-logos:not(.trust-logos-lg):not(.trust-logos-md) .trust-client-logo { width: 100%; max-width: 84px; height: auto; max-height: 44px; object-fit: contain; }
      .form-card { padding: 26px 20px; }
      .author-box { flex-direction: column; }
      .page-hero h1 { max-width: none; }
      .page-hero { padding: 40px 0 36px; }
      .featured-img { margin-top: 22px; }
      .featured-img img { max-height: 300px; }
      .prod-cta-actions { flex-direction: column; }
      .prod-cta-actions .btn { width: 100%; justify-content: center; }
      .prod-thumbs { flex-wrap: wrap; }
      .acc-hdr { flex-direction: column; align-items: flex-start; gap: 10px; }
    }
    @media (max-width: 560px) {
      .img-duo { grid-template-columns: 1fr; gap: 18px; }
    }
