 :root {
    --black: #1a1c1c;
    --dark-navy: #151b2a;
    --gray-text: #45474c;
    --gray-border: #e2e8f0;
    --orange: #ffb956;
    --orange-light: #ffddb5;
    --bg-light: #f9f9f9;
  }
  /* Dark theme: flips the shared text/border/surface tokens above, plus the handful of
     surfaces that are hardcoded rather than token-based. Sections that are dark by design
     in both themes (hero, stats, results, footer, final CTA) use their own literal colors
     already and are intentionally left untouched here. */
  html[data-theme="dark"] {
    --black: #f2f3f5;
    --gray-text: #a7acba;
    --gray-border: #2a2f3d;
    --bg-light: #10131c;
  }
  html[data-theme="dark"] body { background: #0d0f16; }
  html[data-theme="dark"] nav { background: rgba(21,24,36,0.85); }
  html[data-theme="dark"] .nav-hamburger { background: #151824; }
  html[data-theme="dark"] .mobile-menu-close { border-color: #363c4d; }
  html[data-theme="dark"] .integrations .left li::before { color: var(--black); }
  html[data-theme="dark"] .card.dark { background: #1b2030; }
  html[data-theme="dark"] .card.light-gray { background: #171b27; }
  html[data-theme="dark"] .card.accent { background: linear-gradient(160deg, #171b27, #241c14); border-color: rgba(255,122,26,0.3); }
  html[data-theme="dark"] .compare .old { background: #171b27; }
  html[data-theme="dark"] .compare .new { background: #10131c; }
  html[data-theme="dark"] .hero-card p { color: #45474c; }
  html[data-theme="dark"] .modal-card { background: #151824; }
  html[data-theme="dark"] .modal-close { background: #151824; }
  html[data-theme="dark"] .contact-form input,
  html[data-theme="dark"] .contact-form select,
  html[data-theme="dark"] .contact-form textarea { background: #10131c; color-scheme: dark; }
  html[data-theme="dark"] .blog-grid img { background: #171b27; }
  /* Service-page hero: floating stat card + circular badge icon are inline-styled
     (identical markup repeated across every service page), so override by ID here
     rather than editing each page's inline style. */
  html[data-theme="dark"] #serviceHeroTilt + div { background: rgba(21,24,36,0.75) !important; border-color: rgba(255,255,255,0.12) !important; }
  html[data-theme="dark"] #serviceHeroTilt > div { background: rgba(255,255,255,0.12) !important; }
  html[data-theme="dark"] #serviceHeroTilt > div svg { stroke: #fff; }
  * { box-sizing: border-box; margin: 0; padding: 0; }

  /* Scroll reveal */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.16,.84,.44,1), transform 0.7s cubic-bezier(.16,.84,.44,1); }
  .reveal.in-view { opacity: 1; transform: none; }
  .stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
  .stagger > .reveal:nth-child(2) { transition-delay: 90ms; }
  .stagger > .reveal:nth-child(3) { transition-delay: 180ms; }
  .stagger > .reveal:nth-child(4) { transition-delay: 270ms; }
  .stagger > .reveal:nth-child(5) { transition-delay: 360ms; }
  .stagger > .reveal:nth-child(6) { transition-delay: 450ms; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { transition: none; opacity: 1; transform: none; }
  }
  html { overflow-x: hidden; }
  body {font-family: 'Inter', sans-serif;color: var(--black);background: #fff;line-height: 1.5;overflow-x: hidden;transition: background-color 0.3s ease, color 0.3s ease;}
  h1, h2, h3, h4 {font-family: 'Hanken Grotesk', sans-serif;font-weight: 700;letter-spacing: -0.02em;}
  a { text-decoration: none; color: inherit; }
  .container { max-width: 1440px; margin: 0 auto; padding: 0 30px; width: 100%;}
  .section { padding: 100px 0; }
  .center { text-align: center; }
  .section-title { font-size: 42px; }
  .section-title-sm { font-size: 38px; }
  .eyebrow {font-family: 'Hanken Grotesk', sans-serif;font-size: 12px;font-weight: 600;letter-spacing: 1.2px;text-transform: uppercase;}
  .btn {display: inline-block;background: #000;color: #fff;padding: 14px 32px;border-radius: 999px;font-weight: 600;font-size: 14px;letter-spacing: 0.5px;border: none;cursor: pointer;}
  .btn-outline {display: inline-flex;align-items: center;gap: 8px;padding: 14px 24px;font-weight: 600;font-size: 14px;}
  .btn-outline img { width: 18px; height: 18px; flex: none; }

  /* Navbar */
  nav {position: fixed;left: 50%;transform: translateX(-50%);top: 16px;z-index: 10;width: calc(100% - 60px);max-width: 1440px;backdrop-filter: blur(10px);border: 1px solid var(--gray-border);border-radius: 999px;padding: 12px 30px;display: flex;align-items: center;justify-content: space-between;border-radius: 9999px;background: rgba(255, 255, 255, 0.75);box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);}
  nav .logo { font-family: 'Hanken Grotesk', sans-serif; font-weight: 800; font-size: 20px; }
  nav .links { display: flex; gap: 24px; font-size: 13px; font-weight: 600; color: var(--gray-text); align-items: center; }
  nav .links > ul,
  nav .links > ul li,
  nav .links > ul ul { list-style: none !important; }
  nav .links > ul { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; gap: 24px; align-items: center; width: auto !important; margin: 0 !important; padding: 0 !important; }
  nav .links > ul > li { position: relative; display: block !important; width: auto !important; margin: 0 !important; padding: 0 !important; }
  nav .links > ul > li::before,
  nav .links > ul > li::marker { content: none !important; display: none !important; }
  nav .links .primary-menu > li > a { display: inline-flex; align-items: center; gap: 6px; }
  nav .links > ul > li.menu-item-has-children > a::after,
  nav .links > ul > li:has(> ul.sub-menu) > a::after {
    content: "" !important;
    display: inline-flex !important;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-left: 3px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    transform: translateY(-1px);
    background: linear-gradient(45deg, transparent 48%, currentColor 49%, currentColor 57%, transparent 58%) 4px 5px / 7px 7px no-repeat,
      linear-gradient(-45deg, transparent 48%, currentColor 49%, currentColor 57%, transparent 58%) 7px 5px / 7px 7px no-repeat;
  }
  .augrev-site-nav .links > ul.primary-menu > li.menu-item-has-children:hover > a::after,
  .augrev-site-nav .links > ul.primary-menu > li.menu-item-has-children:focus-within > a::after,
  .augrev-site-nav .links > ul.primary-menu > li:has(> ul.sub-menu):hover > a::after,
  .augrev-site-nav .links > ul.primary-menu > li:has(> ul.sub-menu):focus-within > a::after {
    transform: none !important;
  }
  /* Some menu integrations append a real toggle button beside parent links.
     The desktop dropdown is hover/focus driven, so that control is unnecessary. */
  .augrev-site-nav .links > ul.primary-menu .dropdown-menu-toggle,
  .augrev-site-nav .links > ul.primary-menu .sub-menu-toggle,
  .augrev-site-nav .links > ul.primary-menu > li.menu-item-has-children > button,
  .augrev-site-nav .links > ul.primary-menu > li.menu-item-has-children > input {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
  }
  nav .links > ul > li > ul.sub-menu { display: block !important; flex-direction: column !important; position: absolute; top: 100%; left: 0; margin-top: 16px; min-width: 240px; padding: 12px; list-style: none !important; background: #fff; border: 1px solid var(--gray-border); border-radius: 16px; box-shadow: 0 20px 40px rgba(11,18,32,0.12); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease; }
  nav .links .primary-menu > li:hover > .sub-menu,
  nav .links .primary-menu > li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  nav .links .primary-menu .sub-menu a { display: block; padding: 8px 16px; border-radius: 8px; white-space: nowrap; }
  nav .links .primary-menu .sub-menu a:hover { background: var(--bg-light); color: var(--black); }
  html[data-theme="dark"] nav .links .primary-menu .sub-menu { background: #151824; }
  nav a{font-size: 13px;color: var(--gray-text);font-weight: 600;}
  html[data-theme="dark"] nav a{color: #FFF;}
  .nav-item { position: relative; }
  .nav-item-link { display: inline-flex; align-items: center; gap: 6px; }
  .nav-chevron { width: 9px; height: 9px; flex: none; transition: transform 0.2s ease; }
  .nav-item:hover .nav-chevron, .nav-item:focus-within .nav-chevron { transform: rotate(180deg); }
  .nav-dropdown {
    position: absolute; top: 100%; left: 0; margin-top: 16px; min-width: 220px;
    background: #fff; border: 1px solid var(--gray-border); border-radius: 16px;
    padding: 12px; box-shadow: 0 20px 40px rgba(11,18,32,0.12);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .nav-dropdown a{display:block;padding:8px 16px;font-size:13px;color:var(--gray-text);border-radius:8px;transition:background}
  .nav-dropdown a:hover{background:var(--bg-light);color:var(--black)}
  .nav-dropdown-label {
    padding: 10px 16px 4px; font-size: 10px; font-weight: 700; letter-spacing: 0.6px;
    text-transform: uppercase; color: var(--gray-text); opacity: 0.65;
  }
  .nav-dropdown-label:first-child { padding-top: 2px; }
  .nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  html[data-theme="dark"] .nav-dropdown { background: #151824; }
  nav .right { display: flex; align-items: center; gap: 16px; }
  nav .btn { padding: 8px 20px; }
  .nav-hamburger {
    display: none; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--gray-border);
    background: #fff; cursor: pointer; color: var(--black); flex: none; padding: 0;
  }
  .nav-hamburger svg { width: 18px; height: 18px; }
  .theme-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; background: none; border: none; padding: 0;
    cursor: pointer; color: var(--black); flex: none;
  }
  .theme-toggle svg { width: 22px; height: 22px; display: block; }
  .theme-toggle .icon-moon { display: none; }
  html[data-theme="dark"] .theme-toggle .icon-sun { display: none; }

  /* PriceLabs partner badge: fixed to the viewport corner on every page. */
  .pricelabs-badge {position: fixed; left: 20px; bottom: 20px; z-index: 999;display: block; width: 250px; line-height: 0; transition: transform 0.2s ease, box-shadow 0.2s ease;}
  .pricelabs-badge:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,0.24); }
  .pricelabs-badge img { width: 100%; height: auto; display: block;}
  @media (max-width: 560px) {
    .pricelabs-badge { left: 12px; bottom: 12px; width: 64px; }
  }
  html[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

  /* Hero */
  
  .pricelabs-page .hero-section,
  .airbnb-host-page .hero-section,
  .vrbo-host-page .hero-section
  {background-color: #f9f9f9;}
  html[data-theme="dark"] .pricelabs-page .hero-section,
  html[data-theme="dark"] .airbnb-host-page .hero-section,
  html[data-theme="dark"] .vrbo-host-page .hero-section
  {background-color: #151824;}

  .hero{background:#000;padding:110px 0 0;min-height:100vh;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
  .hero::after{content:"";position:absolute;inset:0;background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.80) 60%, rgba(255, 255, 255, 0.00) 100%);top:0;left:0;right:0;bottom:0}
  .hero .container{position:relative;z-index:1; display:flex;align-items:center;justify-content:space-between;gap:48px;flex-wrap:wrap;padding-top:18px;padding-bottom:40px}
  .hero .container .left { flex: 1; min-width: 320px; }
  .hero-card{position:relative;border:1px solid #ffffff80;max-width:560px;min-height:457px;padding:48px;border-radius: 40px;background: rgba(255, 255, 255, 0.2);box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);display:flex;flex-direction:column;justify-content:center;box-sizing:border-box;overflow:hidden}
  .page-hero-media { position: relative; flex: 1; min-width: 320px; }
  .page-hero-image { display: block; width: 100%; height: auto; aspect-ratio: 1.59; object-fit: cover; border-radius: 26px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.18); border: 1px solid rgba(226,232,240,0.8); }
  .hero-card .tag{display:inline-block;background:#000;color:#fff;font-size:10px;letter-spacing:1px;padding:4px 14px;border-radius:999px;margin-bottom:24px}
  .hero-card h1 { font-size: 62px; line-height: 1.1; margin-bottom: 24px; background: linear-gradient(116deg, #0B1220 0%, #38485D 100%);background-clip: text;-webkit-background-clip: text;-webkit-text-fill-color: transparent;font-weight: 800; line-height: 1.1;letter-spacing: -2.28px; }
  .hero-card p { color: var(--gray-text); font-size: 17px; margin-bottom: 28px; }
  .hero-card .actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
  .hero .logo-strip{max-width:1200px;margin:0 auto;text-align: center;}
  .hero .logo-strip p{margin-bottom: 24px;}
  .hero .logo-strip-inner{display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap}
  .hero .logo-strip-inner img{max-width:120px;}

  /* Hero slider (animated via Motion in js/script.js) */
  .hero-slider{position:absolute;inset:0;width:100%;height:100%}
  .hero-slide{position:absolute;inset:0;width:100%;height:100%;background-size:cover;background-position:center;opacity:0;transform:scale(1.08);will-change:opacity,transform}
  .hero-slide.active{opacity:1;transform:scale(1)}
  .hero-dots{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);z-index:2;display:flex;gap:10px}
  .hero-dots .dot{width:9px;height:9px;border-radius:50%;background:rgba(11,18,32,0.3);cursor:pointer;transition:all .3s ease}
  .hero-dots .dot.active{background:#0B1220;width:26px;border-radius:5px}
  .logo {max-width:98px;max-height: 38px;display: block;}
  .logo img { width: 100%; height: auto; }
  .logo .logo-dark { display: none; }
  html[data-theme="dark"] .logo .logo-light { display: none; }
  html[data-theme="dark"] .logo .logo-dark { display: block; }


  /* Integrations */
  .integrations { display: flex; gap: 64px; align-items: center; flex-wrap: wrap; }
  .integrations .left { flex: 1; min-width: 320px; }
  .integrations .left ul { list-style: none; margin: 20px 0; }
  .integrations .left li { display: flex; gap: 10px; margin-bottom: 14px; color: var(--gray-text); font-size: 15px; }
  .integrations .left li::before { content: "✓"; color: #000; font-weight: 700; }
  .logo-rings {
    position: relative; flex: 1; min-width: 380px; width: 620px; max-width: 100%; aspect-ratio: 1; margin: 0 auto;
    opacity: 0; transform: scale(0.82); transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .logo-rings.in-view { opacity: 1; transform: scale(1); }
  /* pointer-events: none here so the ring wrapper's empty space doesn't sit on top of and
     swallow hover events meant for the other ring's badges; re-enabled on .ring-item below. */
  .logo-rings .ring { position: absolute; inset: 0; pointer-events: none; }
  .logo-rings .ring::before {
    content: ""; position: absolute; border: 1px dashed var(--gray-border); border-radius: 50%;
  }
  .ring-inner { animation: ringSpinCCW 46s linear infinite; }
  .ring-inner::before { inset: 15%; }
  .ring-inner:has(.ring-item:hover) { z-index: 10; }
  .ring-inner:has(.ring-item:hover), .ring-inner:has(.ring-item:hover) .badge { animation-play-state: paused; }
  .ring-item {
    position: absolute; top: 46%; left: 44%; width: 78px; height: 78px;
    display: flex; align-items: center; justify-content: center; pointer-events: auto;
  }
  .ring-item:hover { z-index: 20; }
  .ring-item .badge {
    position: relative; background: #fff; border-radius: 50%; box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: flex; align-items: center; justify-content: center; animation-timing-function: linear; animation-iteration-count: infinite;
  }
  .ring-inner .badge { width: 86px; height: 80px; animation-name: ringSpinCW; animation-duration: 46s; }
  .ring-inner .badge img { max-width: 70px; max-height: 70px; }
  .ring-center {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
    width: 104px; height: 104px; border-radius: 50%; background: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12); display: flex; align-items: center; justify-content: center;
  }
  .ring-center img { width: 90%; height: auto; }
  .badge-tooltip {
    position: absolute; bottom: 100%; left: 50%; transform: translate(-50%, -8px) scale(0.92);
    min-width: 160px; max-width: 220px; background: #0B1220; color: #fff; padding: 10px 14px;
    border-radius: 10px; box-shadow: 0 12px 28px rgba(0,0,0,0.2); font-size: 12px; line-height: 1.45;
    text-align: center; opacity: 0; visibility: hidden; pointer-events: none; z-index: 30;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .badge-tooltip::after {
    content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    border: 6px solid transparent; border-top-color: #0B1220;
  }
  .badge-tooltip strong { display: block; font-size: 13px; margin-bottom: 3px; }
  .badge-tooltip span { display: block; color: rgba(255,255,255,0.75); }
  .badge:hover .badge-tooltip {
    opacity: 1; visibility: visible; transform: translate(-50%, -14px) scale(1); pointer-events: auto;
  }
  @keyframes ringSpinCW { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  @keyframes ringSpinCCW { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
  @media (prefers-reduced-motion: reduce) {
    .ring-inner, .ring-item .badge { animation: none; }
    .logo-rings { transition: none; opacity: 1; transform: none; }
  }
  @media (max-width: 560px) {
    .logo-rings { min-width: 0; width: 320px; }
    .ring-inner .badge { width: 34px; height: 34px; }
    .ring-inner .badge img { max-width: 16px; max-height: 16px; }
    .ring-center { width: 64px; height: 64px; }
    .badge-tooltip { min-width: 130px; max-width: 170px; font-size: 11px; padding: 8px 10px; }
  }

  /* Stats */
  .stats { background: var(--dark-navy); color: #fff; padding: 72px 0; position: relative; overflow: hidden; }
  .stats::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(480px 240px at 50% 0%, rgba(255,122,26,0.14), transparent 70%);
  }
  .stats .grid {
    position: relative; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; text-align: center;
  }
  .stats .grid > .reveal {
    flex: 1; min-width: 160px; padding: 8px 20px; position: relative;
    transition: transform 0.3s ease;
  }
  .stats .grid > .reveal:hover { transform: translateY(-6px); }
  .stats .grid > .reveal + .reveal::before {
    content: ""; position: absolute; left: -16px; top: 10%; bottom: 10%; width: 1px;
    background: rgba(255,255,255,0.14);
  }
  .stat-icon {
    width: 30px; height: 30px; color: var(--orange); margin: 0 auto 14px;
    display: block; opacity: 0.9;
  }
  .stats .num { color: var(--orange); font-size: 40px; font-weight: 700; line-height: 1.1; }
  .stats .num.num-word { font-size: 22px; letter-spacing: 0.2px; }
  .stats .label { font-size: 12px; letter-spacing: 0.5px; opacity: 0.7; margin-top: 8px; line-height: 1.5; }
  @media (max-width: 720px) {
    .stats .grid > .reveal + .reveal::before { display: none; }
  }

  /* Solutions grid */
  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px;
  }
  .card {
    border: 1px solid var(--gray-border);
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(11,18,32,0.08); }
  .card.dark { background: #000; color: #fff; border: none; }
  .card.dark:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.35); }
  .card.light-gray { background: #f3f3f3; }
  .card.accent { background: linear-gradient(160deg, #fff, #fff5eb); border-color: rgba(255,122,26,0.25); }
  .card .icon {
    width: 48px; height: 48px; border-radius: 12px; background: var(--dark-navy);
    display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; margin-bottom: 16px;
  }
  .card .icon svg { width: 24px; height: 24px; }
  .card h3 { font-size: 24px; margin-bottom: 8px; }
  .card p { color: var(--gray-text); font-size: 15px; }
  .card.dark p { color: rgba(255,255,255,0.7); }

  /* How it works */
  .services-list { display: flex; flex-direction: column; gap: 20px; }
  .service-item { display: flex; gap: 20px; padding: 24px; border-radius: 24px; }
  .service-item .icon {
    width: 48px; height: 48px; min-width: 48px; border-radius: 12px; background: var(--dark-navy);
    display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700;
  }
  .service-item .icon svg { width: 22px; height: 22px; }
  .service-item h4 { font-size: 20px; margin-bottom: 6px; }
  .service-item p { color: var(--gray-text); font-size: 15px; }
  .how-it-works .two-col { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
  .how-it-works .two-col > div { flex: 1; min-width: 300px; }

  /* Behind the numbers */
  .behind-numbers { background: var(--bg-light); }
  html[data-theme="dark"] .behind-numbers { background: #10131c; }
  .bn-intro { max-width: 620px; margin: 0 auto 72px; }
  .bn-intro p { color: var(--gray-text); font-size: 17px; margin-top: 14px; }
  .bn-intro em { font-style: normal; color: var(--gray-text); }
  .bn-row { display: flex; gap: 64px; align-items: center; flex-wrap: wrap; margin-bottom: 88px; }
  .bn-row:last-child { margin-bottom: 0; }
  .bn-row.reverse { flex-direction: row-reverse; }
  .bn-row > .bn-text, .bn-row > .bn-visual { flex: 1; min-width: 320px; }
  .bn-tag { color: var(--gray-text); margin-bottom: 12px; }
  .bn-row h3 { font-size: 28px; margin: 0 0 14px; }
  .bn-row .bn-copy { color: var(--gray-text); font-size: 16px; margin-bottom: 22px; }
  .bn-list { list-style: none; margin-bottom: 26px; }
  .bn-list li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14px; color: var(--gray-text); }
  .bn-list li::before { content: "✓"; color: var(--gray-text); font-weight: 700; flex: none; }
  .bn-cta {
    display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px;
    color: var(--black); border: none; border-bottom: 1px solid var(--black); padding: 0 0 3px;
    background: none; cursor: pointer; font-family: inherit;
  }
  .bn-cta svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
  .bn-cta:hover svg { transform: translateX(3px); }

  .bn-panel {
    background: #fff; border: 1px solid var(--gray-border); border-radius: 24px;
    padding: 28px; box-shadow: 0 20px 40px rgba(11,18,32,0.06);
  }
  html[data-theme="dark"] .bn-panel { background: #151824; border-color: #2a2f3d; }
  .bn-panel-label { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: var(--gray-text); text-transform: uppercase; margin-bottom: 18px; }

  .bn-rank-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
  .bn-rank-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 12px; background: var(--bg-light); font-size: 14px; }
  html[data-theme="dark"] .bn-rank-item { background: #10131c; }
  .bn-rank-item .bn-rank-num {
    width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 1px solid var(--gray-border);
    display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex: none;
  }
  html[data-theme="dark"] .bn-rank-item .bn-rank-num { background: #151824; border-color: #2a2f3d; }
  .bn-rank-item .bn-rank-name { flex: 1; color: var(--gray-text); }
  .bn-rank-item .bn-rank-price { font-weight: 700; }
  .bn-rank-item.bn-rank-you { background: var(--dark-navy); }
  .bn-rank-item.bn-rank-you .bn-rank-num { background: var(--gray-text); border-color: var(--gray-text); color: #FFF; }
  .bn-rank-item.bn-rank-you .bn-rank-name,
  .bn-rank-item.bn-rank-you .bn-rank-price { color: #fff; }
  .bn-rank-item.bn-rank-you .bn-rank-name { font-weight: 600; }

  .bn-stat-row { display: flex; gap: 16px; border-top: 1px solid var(--gray-border); padding-top: 18px; }
  html[data-theme="dark"] .bn-stat-row { border-color: #2a2f3d; }
  .bn-stat { flex: 1; }
  .bn-stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-text); margin-bottom: 4px; }
  .bn-stat-value { font-size: 22px; font-weight: 700; }
  .bn-stat-delta { font-size: 12px; font-weight: 600; color: #16a34a; margin-top: 2px; }

  .bn-flow-panel { position: relative; display: flex; flex-direction: column; gap: 0; }
  .bn-flow-chip {
    display: flex; align-items: center; gap: 14px; padding: 16px 18px;
    border: 1px solid var(--gray-border); border-radius: 16px; background: var(--bg-light);
  }
  html[data-theme="dark"] .bn-flow-chip { background: #10131c; border-color: #2a2f3d; }
  .bn-flow-chip .bn-flow-icon {
    width: 40px; height: 40px; border-radius: 10px; background: var(--dark-navy); color: #fff;
    display: flex; align-items: center; justify-content: center; flex: none;
  }
  .bn-flow-chip .bn-flow-icon svg { width: 20px; height: 20px; }
  .bn-flow-chip strong { display: block; font-size: 15px; }
  .bn-flow-chip span { display: block; font-size: 13px; color: var(--gray-text); margin-top: 2px; }
  .bn-flow-chip.bn-flow-augrev { background: #fff; border-color: var(--gray-text); }
  html[data-theme="dark"] .bn-flow-chip.bn-flow-augrev { background: #151824; }
  .bn-flow-chip.bn-flow-augrev .bn-flow-icon { background: transparent; color: #000; }
  .bn-flow-connector { width: 2px; height: 28px; background: var(--gray-border); margin: 0 auto; }

  .bn-flow-chip.bn-flow-calendar { flex-direction: column; align-items: stretch; gap: 10px; }
  .bn-cal-title { font-size: 13px; font-weight: 700; }
  .bn-cal-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px; }
  .bn-cal-dow { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; color: var(--gray-text); text-align: center; padding-bottom: 2px; }
  .bn-cal-cell {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
    background: #fff; border: 1px solid var(--gray-border); border-radius: 8px; padding: 6px 2px;
    font-size: 10px; font-weight: 700;
  }
  html[data-theme="dark"] .bn-cal-cell { background: #151824; border-color: #2a2f3d; }
  .bn-cal-cell em { font-style: normal; font-size: 9px; font-weight: 600; color: var(--gray-text); }

  .bn-float-badge {
    position: absolute; z-index: 3; text-align: center;
    background: #fff; border: 1px solid var(--gray-border); border-radius: 14px;
    padding: 8px 14px; box-shadow: 0 14px 28px rgba(11,18,32,0.14);
    opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.5s ease;
  }
  html[data-theme="dark"] .bn-float-badge { background: #151824; border-color: #2a2f3d; }
  .bn-float-rank { top: -16px; right: -14px; }
  .bn-float-revenue { bottom: -16px; left: -14px; }
  .bn-float-label { display: block; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; color: var(--gray-text); }
  .bn-float-value { display: block; font-size: 17px; font-weight: 700; color: var(--gray-text); margin-top: 2px; }
  .bn-row.in-view .bn-float-badge { opacity: 1; transform: none; }
  .bn-row.in-view .bn-float-rank { transition-delay: 0.55s; animation: bnFloatPulse 2.6s ease-in-out 1.1s infinite; }
  .bn-row.in-view .bn-float-revenue { transition-delay: 0.7s; animation: bnFloatPulse 2.6s ease-in-out 1.4s infinite; }
  @keyframes bnFloatPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }

  .bn-check-list { list-style: none; margin-bottom: 22px; }
  .bn-check-list li { display: flex; gap: 10px; font-size: 14px; color: var(--gray-text); margin-bottom: 10px; }
  .bn-check-list li::before { content: "✓"; color: #16a34a; font-weight: 700; }

  .bn-channel-switches { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-border); }
  html[data-theme="dark"] .bn-channel-switches { border-color: #2a2f3d; }
  .bn-channel-switch { display: flex; align-items: center; gap: 8px; }
  .bn-channel-name { font-size: 13px; font-weight: 600; color: var(--gray-text); transition: color 0.3s ease; }
  .bn-channel-switch.is-on .bn-channel-name { color: var(--black); }
  .bn-switch {
    position: relative; display: block; width: 34px; height: 20px; border-radius: 999px;
    background: var(--gray-border); flex: none; transition: background 0.3s ease;
  }
  html[data-theme="dark"] .bn-switch { background: #2a2f3d; }
  .bn-switch-knob {
    position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%;
    background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.18); transition: transform 0.3s ease;
  }
  .bn-channel-switch.is-on .bn-switch { background: var(--gray-text); }
  .bn-channel-switch.is-on .bn-switch-knob { transform: translateX(14px); }

  .bn-channel-content { position: relative; min-height: 168px; }
  .bn-channel-panel { display: none; }
  .bn-channel-panel.is-active { display: block; animation: bnChannelFade 0.45s ease; }
  .bn-channel-panel .bn-check-list { margin-bottom: 20px; }
  .bn-channel-program { font-size: 12px; font-weight: 700; color: var(--gray-text); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 14px; }
  @keyframes bnChannelFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
  }

  .bn-scale-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; margin-bottom: 22px; }
  .bn-scale-chip {
    aspect-ratio: 1; border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 700; text-transform: uppercase; color: var(--gray-text);
    background: rgba(255,122,26,0.1); border: 1px solid rgba(255,122,26,0.35);
    opacity: 0; transform: scale(0.4);
    transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .bn-scale-chip.is-shown { opacity: 1; transform: scale(1); }

  .bn-scale-subtext {
    display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray-text);
    margin-top: 18px; opacity: 0; transition: opacity 1s ease;
  }
  .bn-scale-subtext.is-shown { opacity: 1; }
  .bn-live-dot {
    width: 7px; height: 7px; min-width: 7px; border-radius: 50%; background: #16a34a;
    box-shadow: 0 0 0 rgba(22,163,74,0.5); animation: bnLiveDotPulse 1.8s ease-out infinite;
  }
  @keyframes bnLiveDotPulse {
    0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
    70% { box-shadow: 0 0 0 6px rgba(22,163,74,0); }
    100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
  }

  .bn-chart { width: 100%; height: auto; display: block; margin-bottom: 14px; }
  .bn-chart-legend { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 12px; color: var(--gray-text); margin-bottom: 14px; }
  .bn-chart-legend .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
  .bn-chart-legend .dot.rank { background: var(--dark-navy); }
  .bn-chart-legend .dot.pace { background: var(--orange); }
  .bn-chart-note { font-size: 13px; color: var(--gray-text); margin-bottom: 18px; }

  /* Behind the numbers: graphic animations, triggered once each .bn-row scrolls into view
     (piggybacks on the generic .reveal → .in-view class already added by the scroll-reveal
     observer, since every .bn-row also carries the .reveal class). */
  .bn-rank-item { opacity: 0; transform: translateX(-14px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .bn-row.in-view .bn-rank-item { opacity: 1; transform: none; }
  .bn-rank-item:nth-child(1) { transition-delay: 0ms; }
  .bn-rank-item:nth-child(2) { transition-delay: 90ms; }
  .bn-rank-item:nth-child(3) { transition-delay: 180ms; }
  .bn-rank-item:nth-child(4) { transition-delay: 270ms; }
  .bn-rank-item:nth-child(5) { transition-delay: 360ms; }

  .bn-stat-row { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease 0.45s, transform 0.5s ease 0.45s; }
  .bn-row.in-view .bn-stat-row { opacity: 1; transform: none; }

  .bn-flow-chip { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .bn-row.in-view .bn-flow-chip { opacity: 1; transform: none; }
  .bn-flow-chip.bn-flow-augrev { transition-delay: 0.45s; }
  .bn-flow-connector { transform: scaleY(0); transform-origin: top; transition: transform 0.35s ease 0.25s; }
  .bn-row.in-view .bn-flow-connector { transform: scaleY(1); }

  .bn-channel-switch { opacity: 0; transform: scale(0.85); transition: opacity 0.4s ease, transform 0.4s ease; }
  .bn-row.in-view .bn-channel-switch { opacity: 1; transform: scale(1); }
  .bn-channel-switch:nth-child(1) { transition-delay: 0ms; }
  .bn-channel-switch:nth-child(2) { transition-delay: 80ms; }
  .bn-channel-switch:nth-child(3) { transition-delay: 160ms; }
  .bn-channel-switch:nth-child(4) { transition-delay: 240ms; }
  .bn-check-list li { opacity: 0; transform: translateX(-10px); transition: opacity 0.4s ease, transform 0.4s ease; }
  .bn-row.in-view .bn-check-list li { opacity: 1; transform: none; }
  .bn-check-list li:nth-child(1) { transition-delay: 340ms; }
  .bn-check-list li:nth-child(2) { transition-delay: 420ms; }
  .bn-check-list li:nth-child(3) { transition-delay: 500ms; }

  .bn-chart polyline { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.1s ease; }
  .bn-row.in-view .bn-chart polyline { stroke-dashoffset: 0; }
  .bn-chart .bn-line-pace { transition-delay: 0.25s; }
  .bn-chart .bn-alert-line { transform: scaleY(0); transform-origin: top; transition: transform 0.4s ease 1.2s; }
  .bn-row.in-view .bn-chart .bn-alert-line { transform: scaleY(1); }
  .bn-chart .bn-alert-dot { opacity: 0; transition: opacity 0.3s ease 1.3s; }
  .bn-row.in-view .bn-chart .bn-alert-dot { opacity: 1; }
  .bn-chart .bn-ping { opacity: 0; transform-origin: 120px 50px; }
  .bn-row.in-view .bn-chart .bn-ping { animation: bnPing 2.2s ease-out 1.4s infinite; }
  @keyframes bnPing {
    0% { r: 4.5; opacity: 0.6; }
    100% { r: 15; opacity: 0; }
  }

  @media (prefers-reduced-motion: reduce) {
    .bn-rank-item, .bn-stat-row, .bn-flow-chip, .bn-flow-connector,
    .bn-channel-switch, .bn-check-list li, .bn-scale-chip, .bn-scale-subtext,
    .bn-chart polyline, .bn-chart .bn-alert-line, .bn-chart .bn-alert-dot, .bn-chart .bn-ping,
    .bn-float-badge, .bn-channel-panel.is-active {
      transition: none !important; animation: none !important;
      opacity: 1 !important; transform: none !important; stroke-dashoffset: 0 !important;
    }
    .bn-live-dot { animation: none !important; box-shadow: none !important; }
  }

  @media (max-width: 720px) {
    .bn-row, .bn-row.reverse { flex-direction: column; }
    .bn-scale-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  }

  /* Services ring: single orbiting ring with 3 service icons, same visual language as the integrations logo rings */
  .services-ring { position: relative; width: 440px; max-width: 100%; aspect-ratio: 1; margin: 0 auto; }
  .services-ring-track {
    position: absolute; inset: 0; border: 1px dashed var(--gray-border); border-radius: 50%;
    animation: ringSpinCW 40s linear infinite;
  }
  .services-ring-item { position: absolute; top: 50%; left: 50%; width: 84px; height: 84px; display: flex; align-items: center; justify-content: center; }
  .services-ring-spin {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    animation: ringSpinCCW 40s linear infinite;
  }
  .services-ring-item .badge {
    width: 64px; height: 64px; border-radius: 50%; background: #fff; color: var(--dark-navy);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: center;
  }
  .services-ring-item .badge svg { width: 26px; height: 26px; }
  .services-ring-item .caption {
    font-size: 11px; letter-spacing: 0.5px; text-transform: uppercase; color: #fff; white-space: nowrap;
  }
  .services-ring-center {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
    width: 92px; height: 92px; border-radius: 50%; background: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12); display: flex; align-items: center; justify-content: center;
  }
  .services-ring-center img { width: 68%; height: auto; }
  .homepage-hero-media { width: min(440px, 100%); margin: 0 auto; border-radius: 32px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); }
  .homepage-hero-media .page-hero-image { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
  @media (prefers-reduced-motion: reduce) {
    .services-ring-track, .services-ring-spin { animation: none; }
  }
  @media (max-width: 560px) {
    .services-ring { width: 260px; }
    .services-ring-item .badge { width: 48px; height: 48px; }
    .services-ring-item .badge svg { width: 20px; height: 20px; }
    .services-ring-item .caption { font-size: 10px; }
    .services-ring-center { width: 68px; height: 68px; }
  }

  /* Results */
  .results { background: var(--dark-navy); color: #fff; position: relative; overflow: hidden; }
  .results::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(600px 320px at 50% 0%, rgba(255,185,86,0.10), transparent 70%);
  }
  .results .container { position: relative; }
  .results .num { color: var(--orange); font-size: 40px; font-weight: 700; margin-bottom: 8px; }
  .results .desc { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 20px; }
  .results .person { font-weight: 600; font-size: 14px; }
  .results .role { color: rgba(255,255,255,0.5); font-size: 12px; }

  /* Testimonial slider (crossfade driven by Motion's animate() in js/script.js) */
  .testimonial-slider { max-width: 720px; margin: 44px auto 0; }
  .testimonial-viewport {
    position: relative; min-height: 260px; overflow: hidden;
    background: linear-gradient(165deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,185,86,0.22); border-radius: 28px;
    padding: 56px 64px; box-sizing: border-box;
    box-shadow: 0 24px 60px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.06);
  }
  .testimonial-watermark {
    position: absolute; top: -18px; left: 32px; font-family: 'Playfair Display', Georgia, serif;
    font-size: 140px; line-height: 1; color: var(--orange); opacity: 0.14; pointer-events: none; user-select: none;
  }
  .testimonial-track { position: relative; height: 100%; }
  .testimonial-slide {
    position: absolute; inset: 0; opacity: 0; box-sizing: border-box; text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
  }
  .testimonial-slide.active { position: relative; opacity: 1; }
  .testimonial-slide .quote {
    font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-weight: 500;
    font-size: 24px; line-height: 1.55; color: #f6f3ed; max-width: 560px; letter-spacing: 0.1px;
  }
  .testimonial-slide .divider { width: 40px; height: 1px; margin-top: 26px; background: linear-gradient(90deg, transparent, var(--orange), transparent); }
  .testimonial-slide .attribution { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
  .testimonial-slide .avatar {
    width: 52px; height: 52px; border-radius: 50%; background: #fff; overflow: hidden;
    display: flex; align-items: center; justify-content: center; flex: none;
    border: 2px solid rgba(255,185,86,0.55); box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  }
  .testimonial-slide .avatar img { width: 100%; height: 100%; object-fit: contain; padding: 5px; box-sizing: border-box; }
  .testimonial-slide .attribution-text { text-align: left; }
  .testimonial-slide .person {
    font-family: 'Hanken Grotesk', sans-serif; font-weight: 700; font-size: 13px;
    letter-spacing: 0.6px; text-transform: uppercase; color: #fff;
  }
  .testimonial-slide .role { color: var(--orange); font-size: 12px; margin-top: 2px; opacity: 0.85; }
  .testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 36px; }
  .slider-arrow {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,185,86,0.3); background: transparent;
    color: rgba(255,255,255,0.85); cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }
  .slider-arrow svg { width: 17px; height: 17px; }
  .slider-arrow:hover { background: rgba(255,185,86,0.12); border-color: var(--orange); color: var(--orange); transform: translateY(-1px); }
  .slider-dots { display: flex; gap: 9px; }
  .slider-dots .dot {
    width: 6px; height: 6px; border-radius: 50%; background: transparent; border: 1px solid rgba(255,185,86,0.4); padding: 0;
    cursor: pointer; transition: background 0.25s ease, width 0.25s ease, border-color 0.25s ease;
  }
  .slider-dots .dot.active { background: var(--orange); border-color: var(--orange); width: 20px; border-radius: 5px; }
  @media (max-width: 560px) {
    .testimonial-viewport { min-height: 320px; padding: 40px 24px; }
    .testimonial-watermark { font-size: 100px; left: 16px; }
    .testimonial-slide .quote { font-size: 18px; }
  }

  /* Comparison */
  .tag-pill { display: block; width: fit-content; margin: 0 auto; background: #000; color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; padding: 6px 16px; border-radius: 999px; }
  .compare { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--gray-border); border-radius: 24px; overflow: hidden; margin-top: 48px; }
  .compare > div { padding: 40px; }
  .compare .old { background: #f3f3f3; }
  .compare .new { background: #fff; }
  .compare h3 { font-size: 26px; margin-bottom: 24px; }
  .compare p { font-size: 15px; line-height: 1.7; color: var(--gray-text); }
  .compare ul { list-style: none; }
  .compare li { margin-bottom: 14px; font-size: 15px; }
  .compare .old li { color: var(--gray-text); opacity: 0.7; }
  .compare .old li::before { content: "✕ "; }
  .compare .new li::before { content: "✓ "; font-weight: 700; }

  /* Blog */
  .blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 32px; }
  .blog-grid img { width: 100%; height: 140px; object-fit: cover; border-radius: 16px; margin-bottom: 16px; background: #eee; }
  .blog-grid h4 { font-weight: 400; font-size: 16px; }
  .blog-header { display: flex; justify-content: space-between; align-items: flex-end; }

  /* FAQ */
  .faq { max-width: 720px; margin: 0 auto; }
  .faq-item {
    border: 1px solid var(--gray-border); border-radius: 16px; padding: 20px 24px;
    margin-bottom: 16px;
  }
  .faq-question {
    font-weight: 600; font-size: 17px; display: flex; align-items: center;
    justify-content: space-between; gap: 20px; cursor: pointer;
  }
  .faq-icon { flex: none; font-weight: 400; transition: transform 0.25s ease; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-answer {
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
  }
  .faq-answer p { color: var(--gray-text); font-size: 15px; line-height: 1.65; padding-top: 16px; }
  .faq-item.open .faq-answer { max-height: 320px; opacity: 1; }

  /* Final CTA */
  .final-cta {
    background: var(--orange-light);
    border-radius: 40px;
    margin: 0 32px 119px;
    padding: 80px 32px;
    text-align: center;
  }
  .final-cta h2 { color: #2a1800; font-size: 42px; margin-bottom: 24px; }
  .final-cta p { color: #2a1800; opacity: 0.7; font-size: 13px; margin-top: 20px; }

  /* Footer */
  footer { position: relative; background: var(--dark-navy); color: #fff; border-radius: 32px 32px 0 0; padding: 72px 0 32px; overflow: hidden; }
  footer::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(480px 240px at 12% 0%, rgba(255,122,26,0.12), transparent 70%);
  }
  footer .container { position: relative; }

  .footer-top { display: flex; gap: 64px; flex-wrap: wrap; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 32px; }
  .footer-brand { flex: 1.4; min-width: 240px; }
  .footer-logo { margin-bottom: 18px; }
  .footer-logo img { height: 26px; width: auto; display: block; }
  .footer-logo .footer-logo-light { display: none; }
  html[data-theme="dark"] .footer-logo .footer-logo-dark { display: none; }
  html[data-theme="dark"] .footer-logo .footer-logo-light { display: block; }
  .footer-brand p { color: #7d8496; font-size: 15px; max-width: 320px; margin-bottom: 24px; }
  .footer-social { display: flex; flex-wrap: wrap; gap: 10px; }
  .footer-social a {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center;
    color: #fff; transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  .footer-social a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
  .footer-social a svg { width: 15px; height: 15px; }
  .footer-social a img { width: 16px; height: 16px; filter: brightness(0) invert(1); }
  .footer-social a:hover img { filter: none; }

  .footer-links { flex: 2; display: flex; gap: 32px; flex-wrap: wrap; }
  .footer-col { flex: 1; min-width: 140px; }
  .footer-col h4 { font-size: 12px; letter-spacing: 0.8px; text-transform: uppercase; color: #fff; margin-bottom: 20px; font-weight: 700; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col a { color: #7d8496; font-size: 14px; transition: color 0.2s ease; }
  .footer-col a:hover { color: #fff; }

  .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; color: #7d8496; font-size: 13px; }
  .footer-bottom-links { display: flex; gap: 24px; }
  .footer-bottom-links a { color: #7d8496; transition: color 0.2s ease; }
  .footer-bottom-links a:hover { color: #fff; }

  /* Dark theme: footer flips to a white surface with the blue logo (via .footer-logo-light
     above), rather than staying a dark navy card — so text/border colors below are hardcoded
     literals, not the --black/--gray-text tokens (which resolve to light colors in dark theme,
     the wrong direction for a white footer). */
  html[data-theme="dark"] footer { background: #fff; color: #1a1c1c; }
  html[data-theme="dark"] .footer-top { border-bottom-color: rgba(0,0,0,0.1); }
  html[data-theme="dark"] .footer-brand p { color: #5b6172; }
  html[data-theme="dark"] .footer-social a { color: #1a1c1c; background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.12); }
  html[data-theme="dark"] .footer-social a img { filter: none; }
  html[data-theme="dark"] .footer-col h4 { color: #1a1c1c; }
  html[data-theme="dark"] .footer-col a { color: #5b6172; }
  html[data-theme="dark"] .footer-col a:hover { color: #1a1c1c; }
  html[data-theme="dark"] .footer-bottom { color: #5b6172; }
  html[data-theme="dark"] .footer-bottom-links a { color: #5b6172; }
  html[data-theme="dark"] .footer-bottom-links a:hover { color: #1a1c1c; }

  @media (max-width: 640px) {
    .footer-top { gap: 32px; }
    .footer-links { gap: 24px; }
  }

  /* Contact Modal */
  body.modal-open { overflow: hidden; }
  .modal-overlay {
    position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center;
    padding: 24px; background: rgba(10,12,20,0.6); backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .modal-overlay.open { opacity: 1; visibility: visible; }
  .modal-card {
    position: relative; background: #fff; width: 100%; max-width: 640px; max-height: 90vh; overflow-y: auto;
    border-radius: 28px; padding: 48px; box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    transform: translateY(24px) scale(0.98); transition: transform 0.3s ease;
  }
  .modal-overlay.open .modal-card { transform: translateY(0) scale(1); }
  .modal-close {
    position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--gray-border); background: #fff; font-size: 20px; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center; color: var(--black);
  }
  .modal-close:hover { background: var(--bg-light); }
  .modal-header h3 { font-size: 28px; margin-bottom: 8px; padding-right: 32px; }
  .modal-header p { color: var(--gray-text); font-size: 14px; margin-bottom: 28px; }
  .contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .form-field label { font-size: 13px; font-weight: 600; }
  .form-field .req { color: var(--orange); }
  .contact-form input, .contact-form select, .contact-form textarea {
    border: 1px solid var(--gray-border); border-radius: 12px; padding: 12px 16px;
    font-family: inherit; font-size: 14px; color: var(--black); background: #fff; width: 100%;
  }
  .contact-form textarea { resize: vertical; min-height: 100px; }
  .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,185,86,0.25);
  }
  .contact-submit-btn { width: 100%; margin-top: 8px; padding: 16px; font-size: 15px; }
  .form-status { margin-top: 14px; font-size: 13px; text-align: center; min-height: 18px; }
  .form-status.success { color: #1a7a3c; }
  .form-status.error { color: #c0392b; }

  /* Mobile Menu (matches Figma node 24:1536 "Mobile Menu Overlay") */
  .mobile-menu-overlay {
    position: fixed; inset: 0; z-index: 999;
    opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .mobile-menu-overlay.open { opacity: 1; visibility: visible; }
  .mobile-menu-panel {
    position: absolute; top: 0; right: 0; height: 100%; width: 100%;
    background: var(--bg-light); padding: 32px; box-sizing: border-box; overflow-y: auto;
    display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform 0.3s ease;
  }
  .mobile-menu-overlay.open .mobile-menu-panel { transform: translateX(0); }
  .mobile-menu-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 47px; }
  .mobile-menu-top .logo { max-width: 84px; }
  .mobile-menu-close {
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid #c6c6cc;
    background: transparent; cursor: pointer; padding: 0;
    display: flex; align-items: center; justify-content: center; color: var(--black); flex: none;
  }
  .mobile-menu-close svg { width: 14px; height: 14px; }
  .mobile-menu-close:hover { background: rgba(0,0,0,0.04); }
  .mobile-menu-links { display: flex; flex-direction: column; gap: 31px; }
  .mobile-menu-links a {
    font-family: 'Hanken Grotesk', sans-serif; font-weight: 600; font-size: 32px;
    line-height: 1.3; letter-spacing: -0.64px; color: var(--black);
  }
  .mobile-menu-cta {
    width: 100%; margin-top: auto; padding: 16px; border-radius: 12px; font-size: 16px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  }
  .mobile-nav-item { display: flex; flex-direction: column; }
  .mobile-nav-toggle {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
    background: none; border: none; padding: 0; cursor: pointer; text-align: left;
    font-family: 'Hanken Grotesk', sans-serif; font-weight: 600; font-size: 32px;
    line-height: 1.3; letter-spacing: -0.64px; color: var(--black);
  }
  .mobile-nav-chevron { width: 16px; height: 16px; flex: none; transition: transform 0.25s ease; }
  .mobile-nav-item.open .mobile-nav-chevron { transform: rotate(180deg); }
  .mobile-nav-submenu {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    display: flex; flex-direction: column; gap: 18px;
  }
  /* 520px comfortably fits the largest submenu (Services: 2 group labels + 7 links); the
     shorter submenus (e.g. Resources) just transition to an end-state under that cap, which
     looks identical since max-height only bounds the box, it doesn't stretch to fill it. */
  .mobile-nav-item.open .mobile-nav-submenu { max-height: 520px; margin-top: 18px; }
  .mobile-nav-submenu a {
    font-family: 'Inter', sans-serif; font-weight: 500; font-size: 17px;
    letter-spacing: normal; color: var(--gray-text);
  }
  .mobile-nav-group-label {
    font-family: 'Hanken Grotesk', sans-serif; font-size: 13px; font-weight: 700;
    letter-spacing: 0.6px; text-transform: uppercase; color: var(--gray-text); opacity: 0.65;
  }
  @media (max-width: 400px) {
    .mobile-menu-links a, .mobile-nav-toggle { font-size: 26px; }
  }

@media (max-width: 1280px) {
    .container{ max-width: 1200px; }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 1024px) {
    .solutions-grid, .compare, .blog-grid { grid-template-columns: 1fr; }
    .mobile-menu-links {text-align: left;align-items: flex-start;border-radius: 0;top: 110px;background: none;border: 0;}
    nav .links { display: none !important; }
    nav .nav-cta { display: none !important; }
    nav .nav-hamburger { display: flex !important; }
    .hero { padding-top: 90px; }
    .hero .container { flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 24px; }
    .hero .container .left { width: 100%; min-width: 0; }
    .hero-card { min-height: 380px; width: min(100%, 680px); margin: 0 auto; }
    .hero-card h1 { font-size: 36px; }
    .hero-card .actions { justify-content: center; }
    .hero .logo-strip { width: 100%; }
    .hero .logo-strip-inner { justify-content: center; }
    .services-ring { width: min(80vw, 360px); margin: 0 auto; }
    .homepage-hero-media { width: min(80vw, 360px); }
    .modal-card { padding: 32px 24px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .section { padding: 72px 0; }
    .stats { padding: 56px 0; }
    .stats .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 16px; }
    .compare > div, .card, .service-item { padding: 28px; }
    .blog-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .final-cta { margin: 0 16px 80px; padding: 56px 24px; }
    .final-cta h2 { font-size: 32px; }
  }
  @media (max-width: 767px) {
    nav.augrev-site-nav {
      width: calc(100% - 32px); padding: 10px 16px; top: 10px;
    }
    nav.augrev-site-nav .logo { max-width: 92px; }
    nav.augrev-site-nav .right { gap: 10px; }
    .container { padding: 0 20px; }
    .section-title { font-size: 30px; }
    .section-title-sm { font-size: 26px; }
    .hero { min-height: 620px; padding-top: 90px; }
    .hero .container { flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 18px; }
    .hero-card { margin: 0 auto 32px; padding: 32px; width: min(100%, 680px); }
    .hero-card h1 { font-size: 30px; letter-spacing: -1px; }
    .hero-card p { font-size: 15px; }
    .hero-card .actions { flex-direction: column; align-items: center; justify-content: center; }
    .hero-card .actions .btn,
    .hero-card .actions .btn-outline { width: 100%; justify-content: center; }
    .services-ring { width: min(72vw, 300px); }
    .homepage-hero-media { width: min(72vw, 300px); }
    .faq-item { padding: 16px 18px; }
    .faq-question { font-size: 15px; gap: 12px; }
    .modal-card { padding: 24px 20px; }
    .modal-header h3 { font-size: 22px; }
    /* Flex children below the ~360px viewport width (min-width + container padding) would
       otherwise force horizontal overflow rather than shrink; reset the floor here since this
       block cascades after every other breakpoint that sets these min-widths. */
    .hero .container .left,
    .integrations .left,
    .how-it-works .two-col > div,
    .bn-row > .bn-text,
    .bn-row > .bn-visual {
      min-width: 0;
    }
  }
  @media (max-width: 560px) {
    .hero-card { padding: 24px 18px; }
    .hero-card h1 { font-size: 28px; }
    .hero-card p { font-size: 14px; }
    .hero .container { padding-top: 8px; }
    .logo-strip-inner { gap: 16px; }
  }

  @media (max-width: 400px) {
    /* Below ~376px, the .stats grid's 2-column layout (set at max-width:991px, earlier in this
       file) can't fit two 160px-min-width items per row without overflowing; drop to one column. */
    .stats .grid { grid-template-columns: 1fr; }
  }

  /* Final WordPress menu reset: keep the desktop header horizontal regardless of
    parent-theme or plugin list styles. */
  .augrev-site-nav .links > ul.primary-menu,
  .augrev-site-nav .links > ul.primary-menu > li {
    list-style: none !important;
  }
  .augrev-site-nav .links > ul.primary-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 24px !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .augrev-site-nav .links > ul.primary-menu > li {
    display: block !important;
    position: relative !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .augrev-site-nav .links > ul.primary-menu > li::before,
  .augrev-site-nav .links > ul.primary-menu > li::after,
  .augrev-site-nav .links > ul.primary-menu > li > a::before,
  .augrev-site-nav .links > ul.primary-menu > li > a::after {
    content: none !important;
    display: none !important;
  }
  .augrev-site-nav .links > ul.primary-menu ul.sub-menu {
    list-style: none !important;
    display: block !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: max-content !important;
    min-width: 240px !important;
    margin: 16px 0 0 !important;
    padding: 12px !important;
    opacity: 0;
    visibility: hidden;
  }
  .augrev-site-nav .links > ul.primary-menu > li:hover > ul.sub-menu,
  .augrev-site-nav .links > ul.primary-menu > li:focus-within > ul.sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
  .augrev-site-nav .links > ul.primary-menu > li > a {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
  }
  /* Hero orbit badges stay circular even when global theme styles target
     generic SVG wrappers or image containers. */
  .services-ring .services-ring-item .badge,
  .services-ring .services-ring-center {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    background: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
  }
  .services-ring .services-ring-center {
    width: 92px !important;
    height: 92px !important;
    min-width: 92px !important;
    min-height: 92px !important;
  }
  .services-ring .services-ring-item .badge svg {
    width: 26px !important;
    height: 26px !important;
    max-width: none !important;
  }
  /* Keep the submenu indicator after the menu reset above so it cannot be
     hidden by a later pseudo-element rule. */
  .augrev-site-nav .links > ul.primary-menu > li.menu-item-has-children > a::after,
  .augrev-site-nav .links > ul.primary-menu > li:has(> ul.sub-menu) > a::after {
    content: "" !important;
    display: inline-block !important;
    width: 12px !important;
    height: 8px !important;
    flex: 0 0 12px !important;
    margin: 0 0 0 7px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #000 !important;
    clip-path: polygon(0 0, 50% 70%, 100% 0, 100% 28%, 50% 100%, 0 28%) !important;
    transform: none !important;
  }

  /* The menu reset above intentionally wins on desktop, but the hamburger
     must also win at tablet and mobile widths. */
  @media (max-width: 1024px) {
    .augrev-site-nav .links { display: none !important; }
    .augrev-site-nav .nav-cta { display: none !important; }
    .augrev-site-nav .nav-hamburger { display: flex !important; }
  }