  /* ─── Tokens (matched to pcdots.com brand) ─── */
  :root {
    /* pcdots.com authentic brand */
    --blue:        #2347C5;   /* core brand royal blue */
    --blue-bright: #2D5BE3;   /* hero / link / CTA */
    --blue-dark:   #16348C;   /* hover / heading dark */
    --blue-deep:   #0E1F5C;   /* heading depth */
    --blue-50:     #EEF2FE;   /* lightest tint */
    --blue-100:    #C5D0F7;
    --blue-150:    #95A8EE;

    --orange:      #FF6B35;
    --orange-dark: #E8551E;
    --orange-50:   #FFF1EA;

    --bg:          #FFFFFF;
    --bg-soft:     #F5F7FA;
    --bg-blue:     #F4F8FF;
    --line:        #E4E8EE;
    --line-strong: #D1D7E0;

    --text:        #0E1F5C;   /* headings now richer brand-tied */
    --text-body:   #495365;
    --text-muted:  #6B7689;
    --text-faint:  #98A0AE;

    --display: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --body: 'Open Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;

    --r-sm: 4px;
    --r:    8px;
    --r-lg: 14px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text-body);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button { font: inherit; cursor: pointer; border: 0; background: none; }

  /* Accessibility utility */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

  h1, h2, h3, h4, h5 {
    font-family: var(--display);
    color: var(--text);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0;
  }
  h1 { font-size: clamp(34px, 4.6vw, 52px); font-weight: 800; line-height: 1.15; }
  h2 { font-size: clamp(28px, 3.2vw, 40px); }
  h3 { font-size: 22px; }
  h4 { font-size: 18px; font-weight: 600; }
  p  { margin: 0 0 1em; font-size: 16px; }

  .eyebrow {
    display: inline-block;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-bright);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 34px;
    border-radius: var(--r);
    font-family: var(--display);
    font-size: 19px;
    font-weight: 600;
    transition: all .2s ease;
    border: 2px solid transparent;
  }
  .btn-primary { background: var(--blue-bright); color: #fff; }
  .btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -8px rgba(30, 91, 214, 0.4);
  }
  .btn-download {
    background: #2DBA52;
    color: #fff;
  }
  .btn-download:hover {
    background: #1F9E3F;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -8px rgba(45, 186, 82, 0.4);
  }
  .btn-buy {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
  }
  .btn-buy:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -8px rgba(255, 107, 53, 0.4);
  }
  .btn-orange { background: #C24817; color: #fff; }
  .btn-orange:hover {
    background: #9D3A12;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -6px rgba(194, 72, 23, 0.4);
  }
  .btn-outline {
    background: transparent;
    color: var(--blue-bright);
    border-color: var(--blue-bright);
  }
  .btn-outline:hover { background: var(--blue-bright); color: #fff; }
  .btn .arrow { width: 20px; height: 20px; transition: transform .2s ease; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ─── Header ─── */
  .header {
    position: sticky; top: 0; z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .header::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    height: 24px;
    background-image: url('https://fixdsoftware.com/img/header_shadow-black.png');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: center top;
    pointer-events: none;
    opacity: 0.75;
  }
  .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
  }
  .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity .2s ease;
  }
  .logo:hover { opacity: 0.85; }
  .logo-circle {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
    aspect-ratio: 1;
  }
  .logo-text {
    height: 48px;
    width: auto;
    aspect-ratio: 115 / 48;
    object-fit: contain;
    display: block;
  }
  /* Header logo is white-on-transparent, so invert it for the white nav */
  .header .logo-circle,
  .header .logo-text {
    filter: brightness(0) saturate(100%) invert(20%) sepia(74%) saturate(2849%) hue-rotate(213deg) brightness(95%) contrast(95%);
  }
  .nav { display: flex; gap: 36px; }
  .nav a {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
  }
  .nav a:hover, .nav a.active { color: var(--blue-bright); }
  .header-right { display: flex; gap: 12px; align-items: center; }
  .btn-live {
    background: #2DBA52;
    color: #fff;
    padding: 11px 22px;
    font-size: 15px;
    gap: 8px;
  }
  .btn-live:hover {
    background: #1F9E3F;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -8px rgba(45, 186, 82, 0.4);
  }
  .live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
  }

  /* ─── Hero ─── */
  .hero {
    background:
      linear-gradient(135deg, #EBF0FF 0%, #FFFFFF 55%, #FFF5EE 100%);
    padding: 56px 0 72px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -120px; right: -80px;
    width: 540px; height: 540px;
    background: radial-gradient(circle, rgba(45, 91, 227, 0.13), transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: "";
    position: absolute;
    bottom: -180px; left: -120px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.09), transparent 70%);
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
  }
  .hero-visual {
    position: relative;
    order: 2;
    isolation: isolate;
    padding: 24px 0 12px;
    max-width: 100%;
    overflow: visible;
  }

  /* Subtle brand floor glow that sits below the screen like a reflection */
  .hero-visual::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 8%;
    right: 8%;
    height: 30px;
    background: radial-gradient(ellipse at center,
      rgba(45, 91, 227, 0.25) 0%,
      rgba(45, 91, 227, 0.08) 40%,
      transparent 75%);
    filter: blur(16px);
    z-index: -1;
    pointer-events: none;
  }

  /* Screen frame with ring + shine */
  .hero-screen-wrap {
    position: relative;
    border-radius: 18px;
    padding: 8px;
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg,
      rgba(45, 91, 227, 0.22) 0%,
      rgba(255, 255, 255, 0.7) 50%,
      rgba(255, 107, 53, 0.18) 100%);
    box-shadow:
      0 36px 64px -22px rgba(14, 31, 92, 0.32),
      0 14px 28px -10px rgba(14, 31, 92, 0.14),
      0 4px 8px -2px rgba(14, 31, 92, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: floatScreen 7s ease-in-out infinite;
  }
  .hero-screen-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1.5px;
    background: linear-gradient(135deg,
      rgba(45, 91, 227, 0.65) 0%,
      rgba(149, 168, 238, 0.4) 35%,
      rgba(255, 255, 255, 0.3) 60%,
      rgba(255, 107, 53, 0.4) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
  }
  .hero-screen {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    background: #fff;
    aspect-ratio: 692 / 472;
  }
  .live-tag {
    position: absolute;
    top: -16px;
    right: 24%;
    background: #fff;
    border: 1px solid rgba(45, 186, 82, 0.25);
    box-shadow:
      0 8px 20px -6px rgba(14, 31, 92, 0.18),
      0 2px 6px -1px rgba(14, 31, 92, 0.08);
    padding: 7px 14px 7px 12px;
    border-radius: 999px;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 600;
    color: #1F9E3F;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 4;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .live-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #2DBA52;
    box-shadow: 0 0 0 0 rgba(45, 186, 82, 0.6);
    animation: livePulse 2s infinite;
  }
  @keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(45, 186, 82, 0.6); }
    70%  { box-shadow: 0 0 0 7px rgba(45, 186, 82, 0); }
    100% { box-shadow: 0 0 0 0 rgba(45, 186, 82, 0); }
  }
  @keyframes floatScreen {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(95deg, #FFFFFF 0%, #EEF2FE 100%);
    border: 1px solid #C5D0F7;
    padding: 8px 16px 8px 8px;
    border-radius: 999px;
    margin-bottom: 22px;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    color: #16348C;
    box-shadow:
      0 4px 16px -6px rgba(35, 71, 197, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 1);
  }
  .hero-badge .pill {
    background: linear-gradient(135deg, #2D5BE3, #16348C);
    color: #fff;
    padding: 4px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: 0 2px 8px -2px rgba(35, 71, 197, 0.55);
  }
  .hero h1 {
    color: #0E1F5C;
    margin-bottom: 20px;
    font-size: clamp(26px, 5.4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.022em;
  }
  .hero h1 .line1,
  .hero h1 .highlight {
    white-space: nowrap;
  }
  .hero h1 .highlight {
    background: linear-gradient(95deg, #2347C5 0%, #2D5BE3 45%, #4F73E8 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
    position: relative;
    display: inline-block;
    margin-top: 4px;
  }
  .hero h1 .highlight::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, rgba(255, 107, 53, 0.4) 60%, rgba(255, 107, 53, 0) 100%);
    border-radius: 4px;
    opacity: 0.7;
  }
  .hero-lede {
    font-size: 16px;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 24px;
    max-width: 540px;
  }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
  .hero-meta {
    display: flex; gap: 22px;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    color: #2D3A4F;
    flex-wrap: wrap;
  }
  .hero-meta .item { display: inline-flex; align-items: center; gap: 8px; }
  .hero-meta .check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2DBA52, #1F9E3F);
    color: #fff;
    display: grid; place-items: center;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 10px -2px rgba(45, 186, 82, 0.4);
  }

  /* App preview */
  .app-preview {
    background: #fff;
    border-radius: var(--r-lg);
    box-shadow:
      0 30px 60px -20px rgba(15, 27, 45, 0.18),
      0 12px 24px -8px rgba(15, 27, 45, 0.08);
    overflow: hidden;
    border: 1px solid var(--line);
    position: relative;
  }
  .app-bar {
    background: var(--bg-soft);
    padding: 12px 16px;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid var(--line);
  }
  .app-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
  .app-bar .dot.r { background: #FF5F57; }
  .app-bar .dot.y { background: #FEBC2E; }
  .app-bar .dot.g { background: #28C840; }
  .app-bar .url {
    flex: 1; margin-left: 12px;
    background: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-family: 'SF Mono', Consolas, monospace;
    font-size: 11px;
    color: var(--text-muted);
    border: 1px solid var(--line);
  }
  .app-body { padding: 22px; }
  .app-row {
    display: flex; align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    gap: 14px;
  }
  .app-row:last-child { border-bottom: 0; }
  .app-row .icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--blue-50);
    color: var(--blue-bright);
    display: grid; place-items: center;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
  }
  .app-row .name {
    flex: 1;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
  }
  .app-row .meta { font-size: 12px; color: var(--text-muted); font-family: 'SF Mono', monospace; }
  .app-row .pill {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--display);
  }
  .app-row .pill.ok { background: #E6F7EC; color: #1B7A3F; }
  .app-row .pill.run { background: var(--orange-50); color: var(--orange-dark); }
  .app-row .pill.queue { background: var(--bg-soft); color: var(--text-muted); }

  .progress {
    margin-top: 18px;
    height: 8px;
    background: var(--bg-soft);
    border-radius: 999px;
    overflow: hidden;
  }
  .progress-bar {
    height: 100%; width: 68%;
    background: linear-gradient(90deg, var(--blue-bright), var(--orange));
    border-radius: 999px;
    animation: grow 2.4s ease-out;
  }
  @keyframes grow { from { width: 0; } }
  .progress-meta {
    display: flex; justify-content: space-between;
    margin-top: 10px;
    font-family: var(--display);
    font-size: 12px; font-weight: 500;
    color: var(--text-muted);
  }

  .float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--r-lg);
    padding: 14px 16px;
    box-shadow:
      0 18px 36px -12px rgba(14, 31, 92, 0.22),
      0 6px 12px -4px rgba(14, 31, 92, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 1px solid rgba(197, 208, 247, 0.5);
    font-family: var(--display);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 140px;
  }
  .float-card .ico {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .float-card.float-1 .ico {
    background: linear-gradient(135deg, #EEF2FE, #DCE4FB);
    color: #2D5BE3;
  }
  .float-card.float-2 .ico {
    background: linear-gradient(135deg, #FFF1EA, #FFD9C5);
    color: #FF6B35;
  }
  .float-card .text { display: flex; flex-direction: column; line-height: 1.1; }
  .float-card .num {
    font-size: 21px;
    font-weight: 800;
    color: #0E1F5C;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .float-card.float-2 .num { color: #C24817; }
  .float-card .label {
    font-size: 12px;
    color: #6B7689;
    font-weight: 500;
  }
  .float-1 {
    position: absolute;
    top: 22%;
    right: 8%;
    animation: float 5s ease-in-out infinite;
    z-index: 3;
  }
  .float-2 {
    position: absolute;
    bottom: 14%;
    right: 8%;
    animation: float 5s ease-in-out infinite reverse;
    z-index: 3;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
  }

  /* ─── Stat Band ─── */
  .stat-band {
    background:
      linear-gradient(135deg, #16348C 0%, #2347C5 50%, #2D5BE3 100%);
    padding: 72px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .stat-band::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 8% 30%, rgba(255,255,255,0.12), transparent 45%),
      radial-gradient(circle at 92% 70%, rgba(255, 107, 53, 0.22), transparent 50%),
      radial-gradient(circle at 50% 100%, rgba(45, 91, 227, 0.4), transparent 60%);
    pointer-events: none;
  }
  .stat-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1.2px);
    background-size: 32px 32px;
    opacity: 0.5;
    pointer-events: none;
  }
  .stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
  }
  .stat {
    text-align: center;
    padding: 0 12px;
    position: relative;
  }
  .stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -12px; top: 30%; bottom: 30%;
    width: 1px;
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(255,255,255,0.25) 50%,
      transparent 100%);
  }
  .stat .v {
    font-family: var(--display);
    font-size: clamp(40px, 4.4vw, 60px);
    font-weight: 800;
    line-height: 1;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 16px rgba(14, 31, 92, 0.3);
  }
  .stat .v .accent {
    color: #FFB58D;
    font-weight: 800;
  }
  .stat .k {
    font-family: var(--display);
    font-size: 14px;
    color: rgba(255,255,255,0.92);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  /* ─── Trust logos ─── */
  .trust {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFE 100%);
    padding: 64px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .trust-label {
    text-align: center;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    color: #4A5568;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .trust-label::before,
  .trust-label::after {
    content: "";
    height: 1px;
    flex: 0 0 60px;
    background: linear-gradient(90deg, transparent, #C5D0F7);
  }
  .trust-label::after {
    background: linear-gradient(90deg, #C5D0F7, transparent);
  }
  .marquee {
    overflow: hidden;
    height: 36px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }
  .marquee-track {
    display: flex; gap: 80px;
    animation: scroll 40s linear infinite;
    width: max-content;
    align-items: center;
    animation-play-state: paused;
  }
  .trust:hover .marquee-track,
  .marquee-track:hover {
    animation-play-state: paused;
  }
  /* Resume marquee only when trust section is in viewport */
  .trust.in-view .marquee-track {
    animation-play-state: running;
  }
  .marquee-track img {
    height: 36px; width: auto;
    opacity: 0.55;
    filter: grayscale(1);
    transition: all .25s ease;
  }
  .marquee-track img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.1);
  }
  .trust-attr {
    text-align: center;
    margin: 24px 0 0;
    font-family: var(--display);
    font-size: 11px;
    color: #B5BCC9;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .trust-attr a {
    color: inherit;
    transition: color .2s ease;
  }
  .trust-attr a:hover {
    color: #6B7689;
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ─── Section base ─── */
  section { scroll-margin-top: 80px; }
  .section { padding: 100px 0; }
  .section-soft { background: var(--bg-soft); }

  /* CWV: skip rendering only the truly far-offscreen footer.
     Removing content-visibility from in-page sections prevents CLS. */
  footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
  }

  .section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
  .section-head .eyebrow { margin-bottom: 14px; }
  .section-head h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 3.4vw, 42px);
    color: #0E1F5C;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.18;
  }
  .section-head h2.oneline {
    white-space: nowrap;
    max-width: none;
    font-size: clamp(26px, 3.4vw, 42px);
  }
  .section-head p {
    font-size: 18px;
    color: #4A5568;
    margin: 0;
    line-height: 1.65;
  }

  /* ─── Categories ─── */
  .categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .cat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 36px 30px 30px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
  }
  .cat::before {
    content: "";
    position: absolute; left: 0; top: 0;
    height: 4px; width: 0;
    background: linear-gradient(90deg, var(--blue-bright), #4F73E8);
    transition: width .35s ease;
    border-radius: 4px 4px 0 0;
  }
  .cat::after {
    content: "";
    position: absolute;
    bottom: -60px; right: -60px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(45, 91, 227, 0.04), transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity .35s ease;
  }
  .cat:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow:
      0 28px 56px -20px rgba(14, 31, 92, 0.18),
      0 8px 16px -8px rgba(14, 31, 92, 0.08);
  }
  .cat:hover::before { width: 100%; }
  .cat:hover::after { opacity: 1; }
  .cat-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, #EEF2FE, #DCE4FB);
    color: #2D5BE3;
    display: grid; place-items: center;
    margin-bottom: 24px;
    transition: all .3s ease;
    box-shadow:
      0 6px 14px -4px rgba(45, 91, 227, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }
  .cat:hover .cat-icon {
    background: linear-gradient(135deg, #2D5BE3, #16348C);
    color: #fff;
    transform: rotate(-6deg) scale(1.05);
    box-shadow: 0 12px 24px -6px rgba(45, 91, 227, 0.45);
  }
  .cat:nth-child(2) .cat-icon {
    background: linear-gradient(135deg, #FFF1EA, #FFD9C5);
    color: #E8551E;
    box-shadow: 0 6px 14px -4px rgba(255, 107, 53, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }
  .cat:nth-child(2):hover .cat-icon {
    background: linear-gradient(135deg, #FF6B35, #C24817);
    color: #fff;
    box-shadow: 0 12px 24px -6px rgba(255, 107, 53, 0.45);
  }
  .cat:nth-child(2)::before { background: linear-gradient(90deg, #FF6B35, #FFA274); }

  .cat:nth-child(4) .cat-icon {
    background: linear-gradient(135deg, #E6F7EC, #C5EBD3);
    color: #1F9E3F;
    box-shadow: 0 6px 14px -4px rgba(45, 186, 82, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }
  .cat:nth-child(4):hover .cat-icon {
    background: linear-gradient(135deg, #2DBA52, #1F9E3F);
    color: #fff;
    box-shadow: 0 12px 24px -6px rgba(45, 186, 82, 0.45);
  }
  .cat:nth-child(4)::before { background: linear-gradient(90deg, #2DBA52, #6FD58A); }

  .cat:nth-child(5) .cat-icon {
    background: linear-gradient(135deg, #FFF8E1, #FFEFB8);
    color: #B97A1A;
    box-shadow: 0 6px 14px -4px rgba(249, 168, 37, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }
  .cat:nth-child(5):hover .cat-icon {
    background: linear-gradient(135deg, #F59E0B, #B97A1A);
    color: #fff;
    box-shadow: 0 12px 24px -6px rgba(249, 168, 37, 0.45);
  }
  .cat:nth-child(5)::before { background: linear-gradient(90deg, #F59E0B, #FBC773); }

  .cat:nth-child(6) .cat-icon {
    background: linear-gradient(135deg, #F3E5F5, #E1C5E5);
    color: #8E24AA;
    box-shadow: 0 6px 14px -4px rgba(142, 36, 170, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }
  .cat:nth-child(6):hover .cat-icon {
    background: linear-gradient(135deg, #AB47BC, #6A1B9A);
    color: #fff;
    box-shadow: 0 12px 24px -6px rgba(142, 36, 170, 0.45);
  }
  .cat:nth-child(6)::before { background: linear-gradient(90deg, #AB47BC, #CE93D8); }

  .cat h3 {
    font-size: 22px;
    color: #0E1F5C;
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .cat h3 a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease;
  }
  .cat:hover h3 a { color: #2D5BE3; }
  .cat:nth-child(2):hover h3 a { color: #E8551E; }
  .cat:nth-child(4):hover h3 a { color: #1F9E3F; }
  .cat:nth-child(5):hover h3 a { color: #B97A1A; }
  .cat:nth-child(6):hover h3 a { color: #8E24AA; }
  .cat p {
    color: #4A5568;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .cat p a {
    color: #2D5BE3;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(45, 91, 227, 0.25);
    transition: border-color .2s ease;
  }
  .cat p a:hover {
    border-bottom-color: #2D5BE3;
  }
  .cat:nth-child(2) .cat p a, .cat:nth-child(2) p a { color: #E8551E; border-bottom-color: rgba(232, 85, 30, 0.25); }
  .cat:nth-child(2) p a:hover { border-bottom-color: #E8551E; }
  .cat:nth-child(4) p a { color: #1F9E3F; border-bottom-color: rgba(31, 158, 63, 0.25); }
  .cat:nth-child(4) p a:hover { border-bottom-color: #1F9E3F; }
  .cat:nth-child(5) p a { color: #B97A1A; border-bottom-color: rgba(185, 122, 26, 0.25); }
  .cat:nth-child(5) p a:hover { border-bottom-color: #B97A1A; }
  .cat:nth-child(6) p a { color: #8E24AA; border-bottom-color: rgba(142, 36, 170, 0.25); }
  .cat:nth-child(6) p a:hover { border-bottom-color: #8E24AA; }
  .cat-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: #E8551E;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    transition: all .25s ease;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    text-decoration: none;
    margin-top: auto;
  }
  .cat-link::after {
    content: "→";
    transition: transform .25s ease;
    font-size: 16px;
  }
  .cat:nth-child(2) .cat-link { color: #2D5BE3; }
  .cat:nth-child(4) .cat-link { color: #1F9E3F; }
  .cat:nth-child(5) .cat-link { color: #B97A1A; }
  .cat:nth-child(6) .cat-link { color: #8E24AA; }
  .cat-link:hover { border-bottom-color: currentColor; }
  .cat-link:hover::after { transform: translateX(4px); }

  .cta-row { text-align: center; margin-top: 56px; }

  /* ─── Providers ─── */
  .providers-tabs {
    display: flex; flex-wrap: wrap;
    gap: 10px; justify-content: center;
    margin-bottom: 44px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 16px -8px rgba(14, 31, 92, 0.08);
  }
  .prov-tab {
    padding: 11px 22px;
    border: 0;
    background: transparent;
    border-radius: 999px;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    color: #4A5568;
    transition: all .2s ease;
    cursor: pointer;
  }
  .prov-tab:hover {
    color: #2D5BE3;
    background: #EEF2FE;
  }
  .prov-tab.active {
    background: linear-gradient(135deg, #2D5BE3, #16348C);
    color: #fff;
    box-shadow: 0 4px 12px -2px rgba(45, 91, 227, 0.4);
  }
  .prov-tab.active:hover {
    background: linear-gradient(135deg, #2D5BE3, #16348C);
    color: #fff;
  }

  .providers-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
  }
  .prov {
    aspect-ratio: 1;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    display: grid; place-items: center;
    padding: 18px;
    transition: all .25s ease;
    position: relative;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  }
  .prov:hover {
    border-color: transparent;
    box-shadow:
      0 14px 28px -10px rgba(45, 91, 227, 0.28),
      0 0 0 2px rgba(45, 91, 227, 0.15);
    transform: translateY(-4px);
    z-index: 2;
  }
  .prov img {
    width: 100%; max-height: 44px;
    object-fit: contain;
    transition: transform .25s ease;
  }
  .prov:hover img { transform: scale(1.06); }
  .prov.is-hidden { display: none; }
  .prov-format .format-badge {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 800;
    color: #2D5BE3;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #EEF2FE, #DCE4FB);
    padding: 12px 16px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    transition: all .25s ease;
  }
  .prov-format:hover .format-badge {
    background: linear-gradient(135deg, #2D5BE3, #16348C);
    color: #fff;
    transform: scale(1.04);
  }
  .prov-more {
    background: linear-gradient(135deg, #2D5BE3 0%, #16348C 100%);
    border-color: transparent;
    color: #fff;
    text-align: center;
    flex-direction: column;
    font-family: var(--display);
    box-shadow:
      0 8px 20px -6px rgba(45, 91, 227, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
    position: relative;
    overflow: hidden;
  }
  .prov-more::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.18), transparent 60%);
    pointer-events: none;
  }
  .prov-more:hover {
    box-shadow:
      0 16px 32px -10px rgba(45, 91, 227, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
  }
  .prov-more .big {
    display: block;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.015em;
    position: relative;
    z-index: 1;
  }
  .prov-more span:last-child {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.92;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
  }
  .prov-note {
    text-align: center;
    margin-top: 36px;
    font-size: 15px;
    color: #4A5568;
    font-family: var(--display);
    font-weight: 500;
  }
  .prov-note a {
    color: #2D5BE3;
    font-weight: 700;
    border-bottom: 1px solid rgba(45, 91, 227, 0.4);
    transition: border-color .2s ease;
  }
  .prov-note a:hover { border-bottom-color: #2D5BE3; }

  /* ─── Feature deep-dive ─── */
  .feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 110px;
  }
  .feature:last-child { margin-bottom: 0; }
  .feature.flip .feature-text { order: 2; }

  .step-num {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #EEF2FE, #DCE4FB);
    color: #2D5BE3;
    padding: 7px 16px 7px 10px;
    border-radius: 999px;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  .step-num::before {
    content: "";
    display: inline-block;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2D5BE3, #16348C);
    box-shadow: 0 2px 6px -1px rgba(45, 91, 227, 0.45);
  }

  .feature-text h3 {
    font-size: clamp(26px, 2.8vw, 34px);
    margin-bottom: 18px;
    color: #0E1F5C;
    font-weight: 700;
    letter-spacing: -0.015em;
  }
  .feature-text p {
    font-size: 16px;
    line-height: 1.75;
    color: #4A5568;
    margin-bottom: 26px;
  }
  .feature-list {
    list-style: none; padding: 0; margin: 0 0 28px;
    display: grid; gap: 14px;
  }
  .feature-list li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 15px;
    color: #2D3A4F;
    font-family: var(--display);
    font-weight: 500;
    line-height: 1.55;
  }
  .feature-list .check {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2DBA52, #1F9E3F);
    color: #fff;
    display: grid; place-items: center;
    flex-shrink: 0; margin-top: 1px;
    font-size: 13px;
    font-weight: 800;
    box-shadow:
      0 4px 10px -2px rgba(45, 186, 82, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  .feature-chips { display: flex; gap: 8px; flex-wrap: wrap; }
  .chip {
    background: #fff;
    border: 1px solid var(--line);
    padding: 7px 14px;
    border-radius: var(--r-sm);
    font-family: var(--display);
    font-size: 12px;
    font-weight: 600;
    color: #2D5BE3;
    transition: all .2s ease;
    text-decoration: none;
    display: inline-block;
  }
  .chip:hover {
    background: #EEF2FE;
    border-color: #C5D0F7;
    transform: translateY(-1px);
    color: #16348C;
  }

  .feature-visual {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow:
      0 28px 56px -22px rgba(14, 31, 92, 0.22),
      0 12px 24px -8px rgba(14, 31, 92, 0.08);
    transition: transform .35s ease, box-shadow .35s ease;
  }
  .feature-visual:hover {
    transform: translateY(-4px);
    box-shadow:
      0 36px 64px -22px rgba(14, 31, 92, 0.3),
      0 14px 28px -8px rgba(14, 31, 92, 0.1);
  }
  .vis-header {
    background: linear-gradient(180deg, #F8FAFE 0%, #F1F4FB 100%);
    padding: 13px 18px;
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center; gap: 8px;
  }
  .vis-header .title {
    margin-left: 14px;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 600;
    color: #6B7689;
  }
  .vis-body { padding: 24px; }
  .vis-list { display: grid; gap: 10px; }
  .vis-item {
    display: flex; align-items: center; gap: 14px;
    padding: 13px 14px;
    background: #F8FAFE;
    border-radius: var(--r-sm);
    font-size: 13px;
    border: 1px solid rgba(228, 232, 238, 0.7);
    transition: all .2s ease;
  }
  .vis-item:hover {
    background: #EEF2FE;
    border-color: #C5D0F7;
  }
  .vis-item .lf {
    width: 32px; height: 32px; border-radius: 7px;
    background: linear-gradient(135deg, #2D5BE3, #16348C);
    color: #fff;
    display: grid; place-items: center;
    font-family: var(--display); font-size: 10px; font-weight: 700;
    box-shadow: 0 2px 6px -1px rgba(45, 91, 227, 0.4);
    letter-spacing: 0.02em;
  }
  .vis-item .nm {
    flex: 1;
    font-family: var(--display);
    font-weight: 600;
    color: #0E1F5C;
  }
  .vis-item .sz {
    font-family: 'SF Mono', monospace;
    font-size: 11px;
    color: #6B7689;
    font-weight: 600;
  }
  .vis-formats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 10px; margin-top: 16px;
  }
  .vis-format {
    background: #F8FAFE;
    padding: 13px 8px;
    border-radius: var(--r-sm);
    text-align: center;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    color: #4A5568;
    border: 1px solid var(--line);
    letter-spacing: 0.02em;
  }
  .vis-format.on {
    background: linear-gradient(135deg, #FFF1EA, #FFD9C5);
    color: #C24817;
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 4px 10px -2px rgba(255, 107, 53, 0.18);
  }
  .vis-tabs {
    display: flex; gap: 4px;
    border-bottom: 1px solid var(--line);
    margin: -24px -24px 18px;
    padding: 0 24px;
  }
  .vis-tab {
    padding: 14px 18px;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    color: #6B7689;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color .2s ease;
  }
  .vis-tab:hover { color: #2D5BE3; }
  .vis-tab.active {
    color: #2D5BE3;
    border-bottom-color: #2D5BE3;
  }
  .form-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; margin-bottom: 14px;
  }
  .form-row label {
    display: block;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    color: #6B7689;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .form-row .input {
    background: #F8FAFE;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 11px 14px;
    font-family: var(--display);
    font-size: 13px;
    color: #0E1F5C;
    font-weight: 600;
  }
  .form-status {
    margin-top: 16px;
    padding: 13px 16px;
    background: linear-gradient(135deg, #E6F7EC, #D0EFD9);
    border-radius: var(--r);
    border: 1px solid rgba(45, 186, 82, 0.3);
    display: flex; align-items: center; gap: 10px;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    color: #1B7A3F;
  }
  .form-status .pulse-dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: #2DBA52;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(45, 186, 82, 0.5);
  }
  .hex {
    background: #0E1F5C;
    padding: 16px;
    border-radius: var(--r-sm);
    font-family: 'SF Mono', monospace;
    font-size: 11px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.75);
  }
  .hex .addr { color: rgba(255, 255, 255, 0.4); margin-right: 12px; }
  .hex .hi {
    color: #fff;
    background: rgba(255, 107, 53, 0.4);
    padding: 1px 4px;
    border-radius: 2px;
    font-weight: 700;
  }
  .search-bar {
    background: #F8FAFE;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 11px 14px;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
    font-family: 'SF Mono', monospace;
    font-size: 12px;
    color: #4A5568;
    font-weight: 500;
  }
  .search-bar svg { color: #2D5BE3; }

  /* ─── Why us ─── */
  .why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
  }
  .why-text h2 .highlight { color: var(--blue-bright); }
  .why-list { margin: 32px 0 36px; padding: 0; list-style: none; }
  .why-list li {
    display: grid; grid-template-columns: 64px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    align-items: flex-start;
  }
  .why-list li:last-child { border-bottom: 1px solid var(--line); }
  .why-list .ico-box {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: grid; place-items: center;
    flex-shrink: 0;
    box-shadow:
      0 4px 12px -4px rgba(14, 31, 92, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  .why-list li:nth-child(1) .ico-box {
    background: linear-gradient(135deg, #EEF2FE, #DCE4FB);
    color: #2D5BE3;
  }
  .why-list li:nth-child(2) .ico-box {
    background: linear-gradient(135deg, #FFF1EA, #FFD9C5);
    color: #E8551E;
  }
  .why-list li:nth-child(3) .ico-box {
    background: linear-gradient(135deg, #E6F7EC, #C5EBD3);
    color: #1F9E3F;
  }
  .why-list h3.why-h {
    font-size: 19px;
    font-weight: 700;
    color: #0E1F5C;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .why-list p {
    color: #4A5568;
    font-size: 15px;
    margin: 0;
    line-height: 1.7;
  }

  .quote-card {
    background:
      linear-gradient(135deg, #16348C 0%, #2347C5 60%, #2D5BE3 100%);
    border-radius: var(--r-lg);
    padding: 52px 44px 44px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(14, 31, 92, 0.4);
  }
  .quote-card::before {
    content: "\201C";
    position: absolute;
    top: 24px; left: 32px;
    font-family: var(--display);
    font-size: 200px;
    line-height: 0.7;
    color: rgba(255,255,255,0.12);
    font-weight: 800;
  }
  .quote-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.18), transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05), transparent 50%);
    pointer-events: none;
  }
  .quote-card blockquote {
    margin: 0;
    position: relative;
    z-index: 1;
    font-family: var(--display);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.55;
    color: #fff;
    letter-spacing: -0.005em;
  }
  .quote-meta {
    display: flex; align-items: center; gap: 16px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.18);
    position: relative;
    z-index: 1;
  }
  .quote-meta .av {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35, #E8551E);
    color: #fff;
    display: grid; place-items: center;
    font-family: var(--display);
    font-weight: 800;
    font-size: 16px;
    box-shadow:
      0 8px 16px -4px rgba(255, 107, 53, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  .quote-meta strong {
    display: block;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
  }
  .quote-meta span {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-family: var(--display);
    font-weight: 500;
  }

  /* ─── Testimonials ─── */
  .testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .test-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 36px 30px 30px;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
  }
  .test-card::before {
    content: "\201C";
    position: absolute;
    top: 12px;
    right: 24px;
    font-family: var(--display);
    font-size: 110px;
    line-height: 0.6;
    color: rgba(45, 91, 227, 0.08);
    font-weight: 800;
    pointer-events: none;
  }
  .test-card::after {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-bright), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
  }
  .test-card:hover {
    border-color: var(--blue-100);
    transform: translateY(-6px);
    box-shadow: 0 28px 56px -22px rgba(14, 31, 92, 0.22);
  }
  .test-card:hover::after { transform: scaleX(1); }
  .test-stars {
    color: #F59E0B;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 1px 0 rgba(245, 158, 11, 0.2);
  }
  .test-card blockquote {
    margin: 0 0 28px;
    font-family: var(--display);
    font-size: 16px;
    line-height: 1.65;
    color: #2D3A4F;
    font-weight: 500;
    position: relative;
    z-index: 1;
  }
  .test-meta {
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex; align-items: center; gap: 14px;
  }
  .test-meta .av {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2D5BE3, #16348C);
    color: #fff;
    display: grid; place-items: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: 15px;
    box-shadow:
      0 6px 14px -4px rgba(45, 91, 227, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  .test-card:nth-child(2) .test-meta .av {
    background: linear-gradient(135deg, #FF6B35, #E8551E);
    box-shadow:
      0 6px 14px -4px rgba(255, 107, 53, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  .test-card:nth-child(3) .test-meta .av {
    background: linear-gradient(135deg, #2DBA52, #1F9E3F);
    box-shadow:
      0 6px 14px -4px rgba(45, 186, 82, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  .test-meta .name {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    color: #0E1F5C;
    margin-bottom: 2px;
  }
  .test-meta .loc {
    font-size: 12px;
    color: #6B7689;
    font-weight: 500;
    font-family: var(--display);
  }

  /* ─── Blog ─── */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .post {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: all .3s ease;
    position: relative;
  }
  .post::before {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-bright), var(--orange));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s ease;
    z-index: 2;
  }
  .post:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px -22px rgba(14, 31, 92, 0.22);
    border-color: transparent;
  }
  .post:hover::before { transform: scaleX(1); transform-origin: left; }

  .post-thumb {
    aspect-ratio: 16/10;
    position: relative;
    display: grid; place-items: center;
    color: #fff;
    overflow: hidden;
  }
  .post-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(0,0,0,0.15), transparent 50%);
    pointer-events: none;
  }
  .post-1 .post-thumb { background: linear-gradient(135deg, #2D5BE3 0%, #16348C 100%); }
  .post-2 .post-thumb { background: linear-gradient(135deg, #FF6B35 0%, #C73E0E 100%); }
  .post-3 .post-thumb { background: linear-gradient(135deg, #2DBA52 0%, #1F9E3F 100%); }
  .post-thumb svg {
    opacity: 0.9;
    position: relative;
    z-index: 1;
    transition: transform .35s ease;
  }
  .post:hover .post-thumb svg { transform: scale(1.08) rotate(-3deg); }

  .post-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
  .post-meta {
    display: flex; gap: 12px; align-items: center;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 600;
    color: #6B7689;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }
  .post-meta .tag {
    background: linear-gradient(135deg, #EEF2FE, #DCE4FB);
    color: #2D5BE3;
    padding: 5px 11px;
    border-radius: var(--r-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 11px;
    font-weight: 700;
  }
  .post-2 .post-meta .tag { background: linear-gradient(135deg, #FFF1EA, #FFD9C5); color: #C24817; }
  .post-3 .post-meta .tag { background: linear-gradient(135deg, #E6F7EC, #C5EBD3); color: #1F9E3F; }

  .post h3 {
    font-size: 22px;
    color: #0E1F5C;
    margin-bottom: 14px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .post p {
    color: #4A5568;
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.65;
  }
  .post-link {
    margin-top: auto;
    color: #2D5BE3;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex; align-items: center; gap: 8px;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: all .25s ease;
    width: fit-content;
  }
  .post-2 .post-link { color: #C24817; }
  .post-3 .post-link { color: #1F9E3F; }
  .post:hover .post-link {
    border-bottom-color: currentColor;
    gap: 12px;
  }

  /* ─── Final CTA ─── */
  .final-cta {
    background:
      linear-gradient(135deg, #16348C 0%, #2347C5 50%, #2D5BE3 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.22), transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08), transparent 50%),
      radial-gradient(circle at 50% 100%, rgba(45, 91, 227, 0.4), transparent 60%);
    pointer-events: none;
  }
  .final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1.2px);
    background-size: 32px 32px;
    opacity: 0.5;
    pointer-events: none;
  }
  .final-cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
  .final-cta .eyebrow {
    color: #FFB58D;
    font-size: 13px;
    margin-bottom: 14px;
  }
  .final-cta h2 {
    color: #fff;
    font-size: clamp(28px, 3.4vw, 40px);
    margin-bottom: 18px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.018em;
    text-shadow: 0 2px 20px rgba(14, 31, 92, 0.3);
  }
  .final-cta h2 .highlight {
    background: linear-gradient(90deg, #FF6B35, #FFB58D);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
  }
  .final-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.88);
    margin-bottom: 32px;
    line-height: 1.65;
    font-weight: 400;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
  .final-cta .btn-primary {
    background: linear-gradient(135deg, #FFC107, #FFA000);
    color: #0E1F5C;
    box-shadow:
      0 12px 28px -8px rgba(255, 193, 7, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  .final-cta .btn-primary:hover {
    background: #fff;
    color: #2D5BE3;
    box-shadow:
      0 16px 32px -8px rgba(255, 255, 255, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
  .final-cta .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .final-cta .btn-outline:hover {
    background: rgba(255,255,255,0.18);
    border-color: #fff;
    color: #fff;
  }
  .final-meta {
    margin-top: 32px;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  /* ─── Footer ─── */
  footer {
    background:
      linear-gradient(180deg, #0E1F5C 0%, #0A1840 100%);
    color: rgba(255,255,255,0.7);
    padding: 32px 0 28px;
    position: relative;
    overflow: hidden;
  }
  footer::before {
    content: "";
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(45, 91, 227, 0.18), transparent 70%);
    pointer-events: none;
  }
  footer::after {
    content: "";
    position: absolute;
    bottom: -150px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08), transparent 70%);
    pointer-events: none;
  }
  .foot-hero {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .foot-hero-left .logo {
    margin-bottom: 14px;
  }
  .foot-hero-left p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.72);
    max-width: 480px;
    margin: 0;
  }
  .foot-hero-right { padding-left: 8px; }
  .foot-news-title {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: -0.005em;
  }
  .foot-news-sub {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,0.65);
    margin: 0 0 12px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
  }
  .foot-about p {
    margin: 22px 0 28px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    max-width: 360px;
  }
  .foot-newsletter {
    display: flex; gap: 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 5px 5px 5px 6px;
    max-width: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color .2s ease;
  }
  .foot-newsletter:focus-within {
    border-color: rgba(255, 107, 53, 0.5);
  }
  .foot-newsletter input {
    flex: 1;
    border: 0; outline: 0;
    background: transparent;
    font: inherit;
    font-size: 15px;
    color: #fff;
    padding: 12px 16px;
  }
  .foot-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
  .foot-newsletter button {
    background: linear-gradient(135deg, #FF6B35, #E8551E);
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px -2px rgba(255, 107, 53, 0.5);
    transition: transform .15s ease, box-shadow .2s ease;
  }
  .foot-newsletter button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px -4px rgba(255, 107, 53, 0.6);
  }
  .foot-col h4 {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    color: #FFB58D;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 18px;
  }
  .foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
  .foot-col a {
    font-size: 16px;
    color: rgba(255,255,255,0.78);
    transition: all .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
  }
  .foot-col a::before {
    content: "";
    width: 6px; height: 1px;
    background: rgba(255, 107, 53, 0);
    transition: all .2s ease;
  }
  .foot-col a:hover {
    color: #fff;
    padding-left: 4px;
  }
  .foot-col a:hover::before {
    background: #FF6B35;
    width: 12px;
  }
  .foot-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    flex-wrap: wrap; gap: 16px;
    position: relative;
    z-index: 1;
  }
  .foot-bottom .links { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  .foot-bottom .foot-tag {
    color: rgba(255,255,255,0.6);
    font-family: var(--display);
    font-size: 14px;
    font-weight: 500;
  }
  .foot-bottom .foot-divider {
    color: rgba(255,255,255,0.3);
    font-size: 14px;
  }
  .foot-bottom a {
    color: rgba(255,255,255,0.7);
    transition: color .2s ease;
    font-weight: 500;
  }
  .foot-bottom a:hover { color: #FF6B35; }

  /* ─── Reveal ─── */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
  }

  /* ─── Responsive ─── */

  /* Mid-tablet: preserve 2-column grids but tighten typography */
  @media (max-width: 1100px) {
    h1 { font-size: clamp(28px, 4.6vw, 38px); }
    .container { padding: 0 24px; }
    .section { padding: 80px 0; }
    .feature { gap: 56px; }
    .providers-grid { grid-template-columns: repeat(6, 1fr); }
    .foot-grid { gap: 32px; }
  }

  /* Tablet → Mobile transition */
  @media (max-width: 980px) {
    .container { padding: 0 20px; }
    h1 { font-size: clamp(26px, 4.4vw, 34px); }
    h2 { font-size: clamp(24px, 3.6vw, 32px); }
    .hero-grid, .why-grid, .feature, .feature.flip { grid-template-columns: 1fr; gap: 48px; }
    .hero-text { order: 1; }
    .hero-visual { order: 2; }
    .feature.flip .feature-text { order: 0; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .categories, .testimonials, .blog-grid { grid-template-columns: 1fr; }
    .foot-hero { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; margin-bottom: 32px; }
    .foot-hero-right { padding-left: 0; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .providers-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .nav { display: none; }
    .float-1, .float-2 { display: none; }
    .quote-card { padding: 32px 24px; }
    .quote-card blockquote { font-size: 18px; }
    .section { padding: 64px 0; }
    .section-head { margin-bottom: 40px; }
    .section-head p { font-size: 16px; }
    .stat .v { font-size: 40px; }
    .feature-visual { transform: none; }
    .live-tag { right: 8%; }
    .float-1, .float-2 { display: none; }
    /* Tap targets ≥ 44px for accessibility / mobile UX */
    .btn { min-height: 44px; }
    .prov-tab { min-height: 44px; }
    .header { padding: 12px 0; }
    .logo-circle { width: 44px; height: 44px; }
    .logo-text { height: 38px; }
    .header-shadow-strip { display: none; }
    /* Tighten animations on slow devices to reduce TBT */
    .reveal { transform: translateY(12px); transition-duration: .5s; }
  }

  /* Phones */
  @media (max-width: 600px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: clamp(24px, 7vw, 32px); }
    .section-head h2.oneline { white-space: normal; font-size: clamp(22px, 6vw, 28px); }
    .stats { grid-template-columns: 1fr 1fr; gap: 24px; }
    .stat .v { font-size: 36px; }
    .foot-grid { grid-template-columns: 1fr; gap: 28px; }
    .foot-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
    .foot-bottom .links { gap: 8px; }
    .providers-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .header-right .btn-live { padding: 10px 14px; font-size: 13px; }
    .header-right .btn { padding: 10px 14px; font-size: 13px; }
    .logo-circle { width: 40px; height: 40px; }
    .logo-text { height: 32px; }
    .hero-actions .btn { font-size: 16px; padding: 14px 24px; flex: 1; min-width: 0; }
    .hero-meta { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .hero-badge { font-size: 12px; }
    .feature-text h3, .why-text h2, .section-head h2 {
      font-size: clamp(22px, 6vw, 28px);
    }
    .feature-text p, .why-text p, .section-head p, .cat p { font-size: 14px; }
    .step-num { font-size: 11px; }
    .feature-list li { font-size: 14px; }
    .testimonials, .blog-grid { gap: 16px; }
    .test-card, .post-body, .cat { padding: 24px 20px; }
    .vis-body { padding: 16px; }
    .quote-card { padding: 28px 22px; }
    .quote-card blockquote { font-size: 16px; }
    .quote-card::before { font-size: 130px; top: 12px; left: 18px; }
    .final-cta { padding: 64px 0; }
    .final-cta-inner { padding: 0 8px; }
    .final-cta h2 { font-size: clamp(24px, 7vw, 32px); }
    .final-meta { font-size: 12px; padding: 7px 14px; }
    .providers-tabs { padding: 6px; gap: 4px; flex-wrap: wrap; }
    .prov-tab { padding: 9px 14px; font-size: 13px; flex: 1; min-width: max-content; }
    .blog-grid, .testimonials, .categories { grid-template-columns: 1fr; }
    .post-thumb { aspect-ratio: 16/9; }
    .post-thumb svg { width: 56px; height: 56px; }
  }

  /* Very small phones */
  @media (max-width: 380px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .providers-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* Reduced motion preference (users who chose less animation) */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .marquee-track { animation: none; }
    .live-pulse { animation: none; }
    .pulse-dot { animation: none; }
  }

  /* Mobile: drop expensive backdrop-filters to free up the GPU */
  @media (max-width: 980px) {
    .foot-newsletter,
    .final-cta .btn-outline,
    .final-meta {
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
    }
  }
