/* Murrieta Marketing — shared page chrome */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    /* Metric-matched fallback so text doesn't resize/reflow when DM Sans loads */
    @font-face {
      font-family: 'DM Sans Fallback';
      src: local('Arial');
      size-adjust: 100.5%;
      ascent-override: 92%;
      descent-override: 24%;
      line-gap-override: 0%;
    }

    :root {
      --black: #000000;
      --bg: #080808;
      --white: #f0ede8;
      --accent: #f0ede8;
      --mid: #888;
      --nav-height: 72px;
      --announcement-height: 34px;
      --site-header-height: calc(var(--nav-height) + var(--announcement-height));

      /* ── Unified dark surface system (near-black, never gray) ── */
      --surface: #0a0a0b;                 /* base card fill */
      --surface-2: #08080a;               /* deeper panels (charts, insets) */
      --surface-grad: linear-gradient(150deg, #16140a 0%, #0c0c0d 42%, #08080a 100%);
      --surface-grad-hover: linear-gradient(150deg, #221f0c 0%, #100f0b 46%, #0a0a0b 100%);
      --border: rgba(255,255,255,0.07);   /* uniform hairline border */
      --border-strong: rgba(255,255,255,0.1);
      --glow: rgba(255,236,0,0.10);       /* uniform yellow ambient glow */
    }

    html, body {
      background: #000;
      color: var(--white);
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
    }
    body { position: relative; }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb {
      background: rgba(255,255,255,0.18);
      border-radius: 999px;
    }
    ::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.32); }
    * { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.18) transparent; }

    /* ── VERTICAL GUIDE LINES ── */
    .vlines {
      position: absolute;
      top: 0; bottom: 0;
      left: 0; right: 0;
      pointer-events: none;
      z-index: 90;
    }
    .vlines span {
      position: absolute;
      top: 0; bottom: 0;
      width: 1px;
      background: var(--border);
    }
    /* 50px outside the 1320px box */
    .vlines .vline-l1 { left: calc(50% - 660px - 50px); }
    .vlines .vline-r1 { right: calc(50% - 660px - 50px); }
    /* 75px outside the 1320px box */
    .vlines .vline-l2 { left: calc(50% - 660px - 75px); }
    .vlines .vline-r2 { right: calc(50% - 660px - 75px); }

    @media (max-width: 1480px) {
      .vlines { display: none; }
    }

    /* ── SECTION DIVIDERS ── */
    .section-divider {
      border: none;
      height: 1px;
      background: rgba(255,255,255,0.06);
      max-width: 1320px;
      margin: 0 auto;
      width: calc(100% - 64px);
    }

    /* ── ANNOUNCEMENT BAR ── */
    .announcement-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 110;
      background: #ffec00;
      color: #0a0a0a;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .announcement-bar-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 7px 24px;
      text-align: center;
    }

    .announcement-bar p {
      margin: 0;
      font-size: 12.5px;
      line-height: 1.45;
      font-weight: 500;
      letter-spacing: 0.01em;
    }

    .announcement-bar a {
      color: #0a0a0a;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
      text-decoration-color: rgba(10, 10, 10, 0.45);
      transition: color 0.12s ease, text-decoration-color 0.12s ease;
    }

    .announcement-bar a:hover {
      color: #000;
      text-decoration-color: rgba(0, 0, 0, 0.75);
    }

    @media (max-width: 640px) {
      :root { --announcement-height: 48px; }
      .announcement-bar-inner { padding: 8px 16px; }
      .announcement-bar p { font-size: 11.5px; line-height: 1.4; }
    }

    /* ── HEADER ── */
    header {
      position: fixed;
      top: var(--announcement-height); left: 0; right: 0;
      height: var(--nav-height);
      background: #000;
      z-index: 100;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 0 24px;
      transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                  background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                  box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                  backdrop-filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Shrinks on scroll (hysteresis-controlled in JS) */
    header.scrolled {
      height: 56px;
      background: rgba(0,0,0,0.6);
      box-shadow: 0 8px 32px rgba(0,0,0,0.35);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      border-bottom-color: rgba(255,255,255,0.1);
    }

    .header-inner {
      max-width: 1320px;
      margin: 0 auto;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo img {
      height: 14.7px;
      width: auto;
      display: block;
      transform: translateY(-1px);
    }

    nav {
      display: flex;
      align-items: center;
      align-self: stretch;
      gap: 32px;
    }

    nav a {
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      transition: color 0.2s;
    }

    nav a:hover,
    nav a.active {
      color: #fff;
    }

    /* ── MEGA MENU ── */
    .nav-mega-wrap {
      position: static;
      display: flex;
      align-items: center;
      align-self: stretch;
      height: 100%;
    }

    .nav-mega-trigger {
      display: inline-flex;
      align-items: center;
      height: 100%;
      gap: 5px;
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      cursor: pointer;
      transition: color 0.2s;
    }

    .nav-chevron {
      width: 12px;
      height: 12px;
      transition: transform 0.3s ease, color 0.2s;
    }

    /* Panel — anchored to the full header width */
    .mega-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
      pointer-events: none;
      z-index: 99;
      padding-top: 5px;
    }

    .nav-mega-wrap.open .mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .nav-mega-wrap.open .nav-mega-trigger,
    .nav-mega-wrap.active .nav-mega-trigger,
    .nav-mega-wrap.active .nav-mega-trigger { color: #fff; }
    .nav-mega-wrap.open .nav-chevron { transform: rotate(180deg); }

    .mega-menu { pointer-events: none; }
    .nav-mega-wrap.open .mega-menu-inner { pointer-events: auto; }

    /* Hover fallback — opens the menu even before JS binds */
    .nav-mega-wrap:hover .mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }
    .nav-mega-wrap:hover .nav-mega-trigger { color: #fff; }
    .nav-mega-wrap:hover .nav-chevron { transform: rotate(180deg); }
    .nav-mega-wrap:hover .mega-menu-inner { pointer-events: auto; }

    .mega-menu-inner {
      position: relative;
      max-width: 1320px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.75fr 1fr;
      gap: 0;
      padding: 0;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      overflow: hidden;
      background:
        linear-gradient(180deg, #0d0d0e, #08080a);
      box-shadow: 0 30px 70px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.04);
    }

    .mega-services {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      padding: 14px;
    }

    .mega-item {
      position: relative;
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 22px 28px;
      text-decoration: none;
    }

    /* divider lines between items */
    .mega-item::after {
      content: '';
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 0;
      height: 1px;
      background: rgba(255,255,255,0.07);
    }
    /* remove bottom rule on last row */
    .mega-item:nth-last-child(-n+2)::after { display: none; }
    /* vertical divider on left column items */
    .mega-item:nth-child(odd)::before {
      content: '';
      position: absolute;
      right: 0;
      top: 14px;
      bottom: 14px;
      width: 1px;
      background: rgba(255,255,255,0.07);
    }

    .mega-icon {
      width: 52px;
      height: 52px;
      flex-shrink: 0;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,236,0,0.06);
      border: 1px solid rgba(255,236,0,0.16);
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .mega-item:hover .mega-icon {
      background: rgba(255,236,0,0.14);
      border-color: rgba(255,236,0,0.4);
    }

    .mega-icon svg {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: #ffec00;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .mega-item-text {
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding-top: 2px;
    }

    .mega-item-text strong {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      letter-spacing: -0.01em;
      text-transform: none;
      transition: color 0.2s ease;
    }

    .mega-item:hover .mega-item-text strong { color: #ffec00; }

    .mega-item-text span {
      font-size: 13.5px;
      line-height: 1.5;
      color: rgba(255,255,255,0.46);
      letter-spacing: 0;
      text-transform: none;
    }

    /* CTA panel */
    .mega-cta {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0;
      padding: 38px 40px;
      text-decoration: none;
      border-left: 1px solid rgba(255,255,255,0.08);
      background:
        radial-gradient(130% 120% at 100% 0%, rgba(255,236,0,0.1), transparent 55%),
        rgba(255,255,255,0.015);
    }

    .mega-cta-glow {
      position: absolute;
      right: -50px;
      bottom: -50px;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(255,236,0,0.16), transparent 65%);
      pointer-events: none;
    }

    .mega-cta-eyebrow {
      position: relative;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #ffec00;
      margin-bottom: 14px;
    }

    .mega-cta-title {
      position: relative;
      font-size: 26px;
      font-weight: 700;
      line-height: 1.18;
      letter-spacing: -0.02em;
      color: #fff;
      margin-bottom: 14px;
    }

    .mega-cta-text {
      position: relative;
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255,255,255,0.5);
      margin-bottom: 24px;
    }

    .mega-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      letter-spacing: 0;
      text-transform: none;
      white-space: nowrap;
      flex-shrink: 0;
      margin-bottom: 18px;
      align-self: flex-start;
    }

    .nav-mega-wrap .mega-cta-btn,
    .nav-mega-wrap .mega-cta-btn:hover { color: #0a0a0a; }

    .mega-cta-btn svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.2s;
    }

    .mega-cta-btn:hover svg { transform: translateX(3px); }

    .mega-cta-link {
      position: relative;
      display: inline-block;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0;
      text-transform: none;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.2s;
    }

    .mega-cta-link:hover {
      color: #ffec00;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .client-portal {
      display: flex;
      align-items: center;
      gap: 7px;
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      font-size: 12.5px;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      transition: color 0.2s;
    }

    .client-portal svg {
      width: 15px;
      height: 15px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    .client-portal:hover { color: #fff; }

    .divider {
      width: 1px;
      height: 22px;
      background: rgba(255,255,255,0.2);
    }

    .phone {
      display: flex;
      align-items: center;
      gap: 7px;
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      font-size: 12.5px;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      transition: color 0.2s;
    }

    .phone:hover { color: #fff; }

    .phone svg {
      width: 15px;
      height: 15px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
.btn { flex: 1; justify-content: center; text-align: center; padding-left: 0; padding-right: 0; }
    }

    .hero-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      max-width: 780px;
      position: relative;
      z-index: 10;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 999px;
      padding: 4px 12px 4px 5px;
      filter: drop-shadow(0 1px 8px rgba(0,0,0,0.3));
    }

    .hero-badge-year {
      position: relative;
      overflow: hidden;
      background: #ffec00;
      color: #111;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.04em;
      border-radius: 999px;
      padding: 2px 8px;
    }

    .hero-badge-year::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, transparent 30%, rgba(255,255,255,0.55) 100%);
      border-radius: 999px;
      pointer-events: none;
    }

    .hero-badge-text {
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      font-size: 12px;
      font-weight: 400;
      color: rgba(255,255,255,0.75);
      letter-spacing: 0.01em;
    }

    .hero-title {
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      font-size: clamp(36px, 5.5vw, 68px);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -0.025em;
      background: linear-gradient(180deg, #ffffff 30%, rgba(255,255,255,0.72) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 1px 8px rgba(0,0,0,0.35));
    }

    .hero-sub {
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      font-size: 16.5px;
      font-weight: 400;
      color: rgba(255,255,255,0.65);
      line-height: 1.75;
      text-shadow: 0 1px 6px rgba(0,0,0,0.4);
    }

    .hero-buttons {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      font-size: 15px;
      font-weight: 500;
      padding: 13px 28px;
      border-radius: 9px;
      cursor: pointer;
      text-decoration: none;
      transition: opacity 0.2s, background 0.2s;
      border: none;
      box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    }

    .btn-primary {
      background: #fff;
      color: #0a0a0a;
    }

    .btn-primary:hover { opacity: 0.88; }

    /* Dark background on secondary so text always reads against bright video */
    .btn-secondary {
      background: rgba(0,0,0,0.55);
      color: rgba(255,255,255,0.9);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,0.2) !important;
    }

    .btn-secondary:hover {
      background:
        radial-gradient(120% 150% at 18% 0%, rgba(255,255,255,0.04), transparent 42%),
        rgba(20,20,23,0.8);
      border-color: rgba(255,255,255,0.25) !important;
    }

    /* ── HAMBURGER BUTTON ── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      padding: 0;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 210;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      margin: 0 auto;
      background: #fff;
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.2s ease;
    }

    /* Animate to an X when open */
    body.menu-open .hamburger span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    body.menu-open .hamburger span:nth-child(2) {
      opacity: 0;
    }
    body.menu-open .hamburger span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
/* ── MOBILE MENU PANEL ── */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      width: min(82vw, 340px);
      background: #0a0a0a;
      border-right: 1px solid rgba(255,255,255,0.08);
      z-index: 200;
      padding: 28px 32px 40px;
      display: flex;
      flex-direction: column;
      transform: translateX(-100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
    }

    .mobile-menu-logo {
      margin-bottom: 36px;
    }

    .mobile-menu-logo img {
      height: 16.8px;
      width: auto;
      display: block;
    }

    body.menu-open .mobile-menu {
      transform: translateX(0);
    }

    .mobile-menu nav {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
    }

    .mobile-menu nav a {
      font-size: 14px;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.7);
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .mobile-menu nav a.active,
    .mobile-menu nav a:hover {
      color: #fff;
    }

    /* Mobile services accordion */
    .m-services { border-bottom: 1px solid rgba(255,255,255,0.06); }

    .m-services-toggle {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: none;
      border: none;
      cursor: pointer;
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      font-size: 14px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      padding: 18px 0;
    }

    .m-services-chevron {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
      color: rgba(255,255,255,0.5);
    }

    .m-services.open .m-services-toggle { color: #fff; }
    .m-services.open .m-services-chevron { transform: rotate(180deg); color: #ffec00; }

    .m-services-panel {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    .m-services.open .m-services-panel { max-height: 520px; }

    .m-services-panel a {
      display: flex !important;
      align-items: center;
      gap: 13px;
      padding: 13px 0 13px 4px !important;
      border-bottom: none !important;
      font-size: 14px !important;
      letter-spacing: 0 !important;
      text-transform: none;
      color: rgba(255,255,255,0.72);
    }

    .m-services-panel a:first-child { padding-top: 4px !important; }
    .m-services-panel a:last-child { padding-bottom: 16px !important; }

    .m-svc-icon {
      width: 34px;
      height: 34px;
      flex-shrink: 0;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,236,0,0.08);
      border: 1px solid rgba(255,236,0,0.18);
    }

    .m-svc-icon svg {
      width: 17px;
      height: 17px;
      fill: none;
      stroke: #ffec00;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .mobile-menu-bottom {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-top: 28px;
    }

    .mobile-contact-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 0;
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      font-size: 15px;
      font-weight: 400;
      letter-spacing: 0.01em;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.2s;
    }

    .mobile-contact-row:last-child { border-bottom: none; }

    .mobile-contact-row svg {
      width: 19px;
      height: 19px;
      flex-shrink: 0;
      color: rgba(255,255,255,0.5);
      transition: color 0.2s;
    }

    .mobile-contact-row:hover { color: #fff; }
    .mobile-contact-row:hover svg { color: #ffec00; }

    .mobile-menu-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 24px;
      width: 100%;
    }

    /* Backdrop behind the panel */
    .menu-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
      opacity: 0;
      visibility: hidden;
      z-index: 150;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    body.menu-open .menu-backdrop {
      opacity: 1;
      visibility: visible;
    }

    /* ── ABOUT SECTION ── */
    .about {
      position: relative;
      background: #000;
      padding: 80px 24px 88px;
      overflow: hidden;
    }

    /* soft yellow glow bleeding in from the left edge, echoing the mockup */
    .about::before {
      content: '';
      position: absolute;
      left: -220px;
      bottom: -180px;
      width: 640px;
      height: 640px;
      background: radial-gradient(circle, rgba(255,236,0,0.14) 0%, rgba(255,236,0,0.04) 42%, rgba(255,236,0,0) 70%);
      pointer-events: none;
      z-index: 0;
    }

    .about-inner {
      position: relative;
      z-index: 1;
      max-width: 1320px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 0.98fr;
      gap: 56px;
      align-items: center;
    }

    /* Eyebrow */
    .about-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
    }

    .about-eyebrow-dot {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: #ffec00;
      flex-shrink: 0;
      box-shadow: 0 0 12px rgba(255,236,0,0.6);
    }

    .about-eyebrow-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #ffec00;
      white-space: nowrap;
    }

    .about-eyebrow-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, rgba(255,255,255,0.25), rgba(255,255,255,0));
    }

    .about-title {
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      font-size: 42px;
      font-weight: 400;
      line-height: 1.12;
      letter-spacing: -0.025em;
      background: linear-gradient(180deg, #ffffff 30%, rgba(255,255,255,0.72) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 1px 8px rgba(0,0,0,0.35));
      margin-bottom: 22px;
    }

    /* keep the accent period its own solid yellow despite the gradient clip */
    .about-title .dot {
      -webkit-text-fill-color: #ffec00;
      color: #ffec00;
    }

    .about-tag {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
    }

    .about-tag::before {
      content: '';
      width: 3px;
      height: 18px;
      background: #ffec00;
      border-radius: 2px;
      flex-shrink: 0;
    }

    .about-tag span {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }

    .about-body {
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      font-size: 17px;
      font-weight: 400;
      line-height: 1.8;
      color: rgba(255,255,255,0.55);
      max-width: 540px;
      margin-bottom: 30px;
    }

    .about-buttons {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* Yellow — inherits all .btn base styles, just swaps the fill colour */
    .btn-primary-yellow {
      background: #ffec00;
      color: #0a0a0a;
      box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    }
    .btn-primary-yellow:hover { opacity: 0.88; }

    /* Stat cards — minimal refined version */
    .about-stats {
      display: flex;
      flex-direction: column;
      gap: 14px;
      max-width: 580px;
      margin-left: auto;
    }

    .stat-card {
      position: relative;
      display: grid;
      grid-template-columns: 72px 1px 1fr;
      align-items: center;
      column-gap: 26px;
      min-height: 106px;
      padding: 22px 28px;
      border-radius: 11px;
      overflow: hidden;
      background: var(--surface-grad);
      border: 1px solid var(--border);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 10px 28px rgba(0,0,0,0.32);
      transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 20px;
      bottom: 20px;
      width: 2px;
      background: #ffec00;
      border-radius: 999px;
      opacity: 0.65;
      box-shadow: 0 0 16px rgba(255,236,0,0.42);
    }

    .stat-card:hover {
      background: var(--surface-grad-hover);
    }

    .stat-icon {
      position: relative;
      width: 72px;
      height: 54px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .stat-icon svg {
      width: 30px;
      height: 30px;
      fill: none;
      stroke: #ffec00;
      stroke-width: 1.35;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 0 8px rgba(255,236,0,0.25));
    }

    .stat-card::after {
      content: '';
      position: relative;
      display: block;
      width: 1px;
      height: 62px;
      background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.24), transparent);
      grid-column: 2;
      grid-row: 1;
    }

    .stat-text {
      position: relative;
      z-index: 1;
      grid-column: 3;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .stat-number {
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      font-size: 31px;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.01em;
      color: #ffec00;
      margin-bottom: 0;
      text-shadow: 0 0 18px rgba(255,236,0,0.18);
    }

    .stat-label {
      font-size: 15px;
      font-weight: 400;
      line-height: 1.45;
      color: rgba(255,255,255,0.56);
    }

    @media (max-width: 980px) {
      .about-inner {
        grid-template-columns: 1fr;
        gap: 56px;
      }
      .about { padding: 64px 24px 72px; }
      .about-title { font-size: 34px; }
      .about-stats {
        max-width: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
      }
    }

    @media (max-width: 520px) {
      .stat-card {
        grid-template-columns: 48px 1px 1fr;
        column-gap: 18px;
        min-height: 94px;
        padding: 18px 20px;
      }
      .stat-icon { width: 48px; height: 46px; }
      .stat-icon svg { width: 24px; height: 24px; }
      .stat-number { font-size: 28px; }
      .stat-label { font-size: 14px; }
      .about-buttons { gap: 10px; }
      .btn-primary-yellow, .btn-secondary { padding: 12px 22px; font-size: 14px; }
    }

    .about--intro .about-eyebrow--intro {
      margin-bottom: 18px;
    }

    .about--intro .about-eyebrow--intro .about-eyebrow-label {
      letter-spacing: 0.02em;
      text-transform: none;
      color: #fff;
      font-size: 15px;
      font-weight: 500;
    }

    .about-title--solid {
      background: none;
      -webkit-text-fill-color: #fff;
      color: #fff;
      filter: none;
      font-weight: 600;
      font-size: 40px;
      max-width: none;
    }

    .about-body--last {
      margin-bottom: 0;
    }

    .about-media {
      width: 100%;
    }

    .about-image-placeholder {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.1);
      background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 50%, rgba(255,236,0,0.03) 100%);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 20px 50px rgba(0,0,0,0.35);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: rgba(255,255,255,0.35);
    }

    .about-image-placeholder svg {
      width: 40px;
      height: 40px;
      stroke: rgba(255,255,255,0.25);
      fill: none;
      stroke-width: 1.25;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .about-image-placeholder span {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    @media (max-width: 980px) {
      .about-title--solid { font-size: 34px; }
    }



    /* ── SERVICES SECTION ── */
    .services {
      position: relative;
      background: #000;
      padding: 80px 24px 88px;
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.055);
    }

    .services::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(circle at 22% 30%, #000 0%, transparent 58%);
      -webkit-mask-image: radial-gradient(circle at 22% 30%, #000 0%, transparent 58%);
      opacity: 0.7;
      pointer-events: none;
    }

    .services::after {
      content: '';
      position: absolute;
      right: -260px;
      top: 60px;
      width: 680px;
      height: 680px;
      background: radial-gradient(circle, rgba(255,236,0,0.12) 0%, rgba(255,236,0,0.035) 44%, rgba(255,236,0,0) 70%);
      pointer-events: none;
    }

    .services-inner {
      position: relative;
      z-index: 1;
      max-width: 1320px;
      margin: 0 auto;
    }

    .services-header {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
      gap: 40px;
      align-items: end;
      margin-bottom: 40px;
    }

    .services-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }

    .services-eyebrow-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ffec00;
      box-shadow: 0 0 14px rgba(255,236,0,0.7);
    }

    .services-eyebrow span:last-child {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #ffec00;
    }

    .services-title {
      max-width: 680px;
      font-size: 42px;
      font-weight: 400;
      line-height: 1.08;
      letter-spacing: -0.03em;
      background: linear-gradient(180deg, #ffffff 28%, rgba(255,255,255,0.66) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 1px 8px rgba(0,0,0,0.35));
    }

    .services-intro {
      max-width: 520px;
      font-size: 17px;
      font-weight: 400;
      line-height: 1.75;
      color: rgba(255,255,255,0.48);
      margin-bottom: 6px;
    }

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

    .service-card {
      position: relative;
      min-height: 252px;
      padding: 26px 26px 24px;
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      background: var(--surface-grad);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 18px 38px rgba(0,0,0,0.35);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }

    .service-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 12% 14%, rgba(255,236,0,0.07), transparent 36%);
      opacity: 0;
      transition: opacity 0.25s ease;
      pointer-events: none;
    }

    .service-card:hover {
      background: var(--surface-grad-hover);
    }

    .service-card:hover::after { opacity: 1; }

    .service-icon {
      position: relative;
      z-index: 1;
      width: 58px;
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      border: 1px solid rgba(255,255,255,0.11);
      border-radius: 10px;
      background: rgba(0,0,0,0.22);
    }

    .service-icon svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: #ffec00;
      stroke-width: 1.55;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 0 8px rgba(255,236,0,0.3));
    }

    .service-card h3 {
      font-size: 21px;
      font-weight: 600;
      line-height: 1.25;
      letter-spacing: -0.015em;
      color: rgba(255,255,255,0.92);
      margin-bottom: 10px;
    }

    .service-card p {
      position: relative;
      z-index: 1;
      max-width: 330px;
      font-size: 15.5px;
      line-height: 1.65;
      color: rgba(255,255,255,0.48);
      margin-bottom: 18px;
    }

    /* The heading link — inline text, inherits the h3 styling.
       Its ::after stretches over the whole card so the entire card is the
       click target, while the descriptive title stays as anchor text for SEO. */
    .service-link {
      color: inherit;
      text-decoration: none;
    }

    .service-link:focus-visible::after {
      outline: 2px solid #ffec00;
      outline-offset: -3px;
      border-radius: 14px;
    }

    .service-link::after {
      content: '';
      position: absolute;
      /* huge box anchored to the card (nearest positioned ancestor);
         card's overflow:hidden trims it to the card bounds */
      top: -1000px;
      left: -1000px;
      right: -1000px;
      bottom: -1000px;
      z-index: 2;
    }

    /* Visual-only arrow button */
    .service-arrow {
      margin-top: auto;
      z-index: 1;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }

    .service-arrow svg {
      width: 15px;
      height: 15px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-card:hover .service-arrow {
      background: #ffec00;
      color: #080808;
      border-color: #ffec00;
    }

    .services-footer {
      margin-top: 48px;
    }

    /* CTA inside the Why grid — spans both columns */
    .why-cta {
      grid-column: 1 / -1;
      margin-top: 64px;
    }

    .services-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      padding: 30px 36px;
      border-radius: 16px;
      border: 1px solid var(--border);
      background:
        radial-gradient(120% 180% at 100% 0%, var(--glow), transparent 60%),
        var(--surface-grad);
    }

    .services-cta-copy {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .services-cta-eyebrow {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #ffec00;
    }

    .services-cta-title {
      font-size: 22px;
      font-weight: 500;
      line-height: 1.3;
      color: var(--white);
      margin: 0;
      max-width: 40ch;
    }

    .services-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .services-cta-btn svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.2s;
    }

    .services-cta-btn:hover svg { transform: translateX(3px); }

    @media (max-width: 1080px) {
      .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .services-header { grid-template-columns: 1fr; gap: 24px; align-items: start; }
      .services-intro { max-width: 650px; }
    }

    @media (max-width: 680px) {
      .services { padding: 64px 20px 72px; }
      .services-header { margin-bottom: 34px; }
      .services-grid { grid-template-columns: 1fr; gap: 14px; }
      .service-card { min-height: 220px; padding: 22px 20px 22px; }
      .service-icon { margin-bottom: 22px; }
      .service-card h3 { font-size: 20px; }
      .service-card p { font-size: 15px; padding-right: 26px; }
      .services-title { font-size: 34px; }
      .services-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        padding: 26px 24px;
      }
      .services-cta-title { font-size: 20px; }
      .services-cta-btn { width: 100%; justify-content: center; }
    }

    /* ── WHY CHOOSE SECTION ── */
    .why {
      position: relative;
      background: #000;
      padding: 80px 24px 88px;
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.055);
    }

    .why::after {
      content: '';
      position: absolute;
      left: -240px;
      bottom: -160px;
      width: 620px;
      height: 620px;
      background: radial-gradient(circle, rgba(255,236,0,0.10) 0%, rgba(255,236,0,0.03) 44%, rgba(255,236,0,0) 70%);
      pointer-events: none;
    }

    .why-inner {
      position: relative;
      z-index: 1;
      max-width: 1320px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 80px;
      align-items: start;
    }

    /* Left column holds all the content */
    .why-left {
      display: flex;
      flex-direction: column;
    }

    /* Right column — sticky dashboard */
    .why-right {
      position: relative;
      align-self: start;
      border-radius: 12px;
      background: var(--surface-grad);
      border: 1px solid var(--border);
      box-shadow: 0 24px 80px rgba(0,0,0,0.68), inset 0 1px 0 rgba(255,255,255,0.03);
      padding: 17px;
      overflow: hidden;
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      color: #f2f2f2;
    }
    .why-right::before {
      content: "";
      position: absolute;
      inset: -1px;
      pointer-events: none;
      background:
        radial-gradient(circle at 86% 40%, rgba(255,236,0,0.08), transparent 22%);
    }
    .why-right-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 0;
      width: 136.054%;
      transform: scale(0.735);
      transform-origin: top left;
      margin-bottom: -32%;
    }

    /* ── DASHBOARD STYLES ── */
    .dash-topbar { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 22px; }
    .dash-title { font-size: 18px; letter-spacing: -0.02em; font-weight: 600; margin-bottom: 4px; color: #f2f2f2; }
    .dash-eyebrow { color: #9a9a9a; font-size: 13px; }
    .dash-select {
      font-size: 13px; color: #cfcfcf;
      border: 1px solid rgba(255,255,255,0.075); border-radius: 7px;
      padding: 9px 12px; background: rgba(0,0,0,0.22);
      min-width: 132px; display: flex; align-items: center;
      justify-content: space-between; gap: 14px; white-space: nowrap; flex-shrink: 0;
    }
    .dash-select svg { width: 13px; height: 13px; opacity: 0.7; stroke: currentColor; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }

    .kpi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 16px; }
    .kpi {
      border: 1px solid rgba(255,255,255,0.075);
      background: linear-gradient(160deg, rgba(255,236,0,0.012), rgba(255,255,255,0.01)), var(--surface-2);
      border-radius: 9px; min-height: 118px; padding: 18px;
      position: relative; overflow: hidden;
    }
    .kpi::after {
      content: ""; position: absolute; right: 17px; top: 26px;
      width: 46px; height: 46px; border-radius: 50%;
      background: rgba(255,236,0,0.1); border: 1px solid rgba(255,236,0,0.18);
      box-shadow: 0 0 28px rgba(255,236,0,0.18);
    }
    .kpi-icon {
      position: absolute; z-index: 2; right: 31px; top: 40px;
      width: 18px; height: 18px; color: #ffec00;
    }
    .kpi-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
    .kpi-label { font-size: 13px; color: #bdbdbd; margin-bottom: 9px; }
    .kpi-value { font-size: 27px; line-height: 1; font-weight: 500; letter-spacing: -0.04em; margin-bottom: 13px; color: #f2f2f2; }
    .kpi-change { color: #ffec00; font-size: 12px; display: flex; align-items: center; gap: 5px; white-space: nowrap; }
    .kpi-change span { color: #909090; }
    .kpi-arrow { width: 12px; height: 12px; flex-shrink: 0; }

    .chart-panel {
      border: 1px solid rgba(255,255,255,0.075);
      background: linear-gradient(160deg, rgba(255,236,0,0.01), transparent 60%), var(--surface-2);
      border-radius: 9px; padding: 18px 18px 14px; margin-bottom: 14px;
    }
    .section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
    .section-title { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; color: #f2f2f2; }
    .legend { display: flex; align-items: center; gap: 7px; color: #d8d8d8; font-size: 12px; }
    .legend-dot { width: 6px; height: 6px; border-radius: 50%; background: #ffec00; box-shadow: 0 0 12px rgba(255,236,0,0.8); flex-shrink: 0; }

    .line-chart { width: 100%; height: 250px; display: block; overflow: visible; }
    .axis-text { fill: #888; font-size: 12px; font-family: 'DM Sans', 'DM Sans Fallback', sans-serif; }
    .grid-line { stroke: rgba(255,255,255,0.09); stroke-dasharray: 4 4; }
    .axis-line { stroke: rgba(255,255,255,0.18); }
    .chart-line { fill: none; stroke: #ffec00; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 8px rgba(255,236,0,0.45)); }
    .chart-area { fill: url(#visitorGradient); }
    .chart-notch-glow { fill: rgba(255,236,0,0.16); filter: drop-shadow(0 0 10px rgba(255,236,0,0.55)); }
    .chart-notch { fill: #0a0a0a; stroke: rgba(255,236,0,0.9); stroke-width: 2; }
    .end-dot { fill: #ffec00; stroke: rgba(255,255,255,0.55); stroke-width: 2; filter: drop-shadow(0 0 10px rgba(255,236,0,0.7)); }

    .bottom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .mini-panel {
      border: 1px solid rgba(255,255,255,0.075);
      background: linear-gradient(160deg, rgba(255,236,0,0.01), transparent 60%), var(--surface-2);
      border-radius: 9px; padding: 18px; min-height: 164px;
    }
    .source-row {
      display: grid; grid-template-columns: 94px 1fr 38px;
      align-items: center; gap: 10px; margin-top: 14px;
      color: #b8b8b8; font-size: 12px;
    }
    .bar-track { display: block; width: 100%; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.055); overflow: hidden; }
    .bar-fill { display: block; height: 100%; width: var(--value); border-radius: 999px; background: linear-gradient(90deg, #ffec00, rgba(255,236,0,0.7)); box-shadow: 0 0 15px rgba(255,236,0,0.22); }
    .pct { color: #9d9d9d; text-align: right; }

    .mini-bars { height: 112px; margin-top: 14px; display: grid; grid-template-columns: 30px 1fr; gap: 11px; }
    .y-axis { display: flex; flex-direction: column; justify-content: space-between; color: #7f7f7f; font-size: 11px; padding-bottom: 18px; }
    .bar-chart {
      position: relative; display: grid; grid-template-columns: repeat(6,1fr);
      align-items: end; gap: 13px; padding: 7px 6px 18px;
      border-left: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.13);
      background: repeating-linear-gradient(to top, transparent 0, transparent 31px, rgba(255,255,255,0.07) 32px);
    }
    .bar-wrap { height: 100%; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 7px; position: relative; }
    .vbar { width: 15px; border-radius: 4px 4px 1px 1px; background: linear-gradient(180deg, #ffec00, #ffec00 45%, rgba(255,236,0,0.26)); box-shadow: 0 0 16px rgba(255,236,0,0.33); }
    .month { position: absolute; bottom: -3px; transform: translateY(100%); color: #838383; font-size: 11px; }

    /* ── DASHBOARD SCROLL ANIMATIONS ── */
    /* Smooth, deliberate easing used throughout */
    /* Cards / KPIs fade-up */
    .why-right .kpi,
    .why-right .chart-panel,
    .why-right .mini-panel {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.9s cubic-bezier(0.22,0.61,0.36,1),
                  transform 0.9s cubic-bezier(0.22,0.61,0.36,1);
    }
    .why-right.in-view .kpi { transition-delay: 0.1s; }
    .why-right.in-view .kpi:nth-child(2) { transition-delay: 0.25s; }
    .why-right.in-view .kpi:nth-child(3) { transition-delay: 0.4s; }
    .why-right.in-view .chart-panel { transition-delay: 0.55s; }
    .why-right.in-view .mini-panel:nth-child(1) { transition-delay: 0.8s; }
    .why-right.in-view .mini-panel:nth-child(2) { transition-delay: 0.95s; }
    .why-right.in-view .kpi,
    .why-right.in-view .chart-panel,
    .why-right.in-view .mini-panel {
      opacity: 1;
      transform: translateY(0);
    }

    /* Line chart draw — slow, even, controlled */
    .chart-line {
      stroke-dasharray: 1000;
      stroke-dashoffset: 1000;
    }
    .why-right.in-view .chart-line {
      transition: stroke-dashoffset 3s cubic-bezier(0.33,0,0.2,1) 0.9s;
      stroke-dashoffset: 0;
    }
    /* Area fade — eases in behind the line as it draws */
    .chart-area { opacity: 0; }
    .why-right.in-view .chart-area {
      transition: opacity 2s ease 1.6s;
      opacity: 1;
    }
    /* Notch dots — gentle fade/scale, no bounce, sequenced along the line */
    .chart-notch, .chart-notch-glow, .end-dot {
      opacity: 0;
      transform: scale(0.6);
      transform-box: fill-box;
      transform-origin: center;
    }
    .why-right.in-view .chart-notch,
    .why-right.in-view .chart-notch-glow,
    .why-right.in-view .end-dot {
      transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,0.61,0.36,1);
      opacity: 1;
      transform: scale(1);
    }
    /* stagger notch dots left-to-right to follow the draw.
       circles are ordered: glow,notch (x6 pairs) then glow,end-dot */
    .why-right.in-view .line-chart circle:nth-of-type(1),
    .why-right.in-view .line-chart circle:nth-of-type(2) { transition-delay: 1.2s; }
    .why-right.in-view .line-chart circle:nth-of-type(3),
    .why-right.in-view .line-chart circle:nth-of-type(4) { transition-delay: 1.55s; }
    .why-right.in-view .line-chart circle:nth-of-type(5),
    .why-right.in-view .line-chart circle:nth-of-type(6) { transition-delay: 1.9s; }
    .why-right.in-view .line-chart circle:nth-of-type(7),
    .why-right.in-view .line-chart circle:nth-of-type(8) { transition-delay: 2.25s; }
    .why-right.in-view .line-chart circle:nth-of-type(9),
    .why-right.in-view .line-chart circle:nth-of-type(10) { transition-delay: 2.6s; }
    .why-right.in-view .line-chart circle:nth-of-type(11),
    .why-right.in-view .line-chart circle:nth-of-type(12) { transition-delay: 2.95s; }
    .why-right.in-view .line-chart circle:nth-of-type(13) { transition-delay: 3.3s; }
    .why-right.in-view .end-dot { transition-delay: 3.5s; }

    /* Horizontal source bars grow — slow and smooth */
    .bar-fill {
      width: 0;
      transition: width 1.5s cubic-bezier(0.33,0,0.2,1);
    }
    .why-right.in-view .bar-fill { width: var(--value); transition-delay: 1s; }
    .why-right.in-view .source-row:nth-child(2) .bar-fill { transition-delay: 1.2s; }
    .why-right.in-view .source-row:nth-child(3) .bar-fill { transition-delay: 1.4s; }
    .why-right.in-view .source-row:nth-child(4) .bar-fill { transition-delay: 1.6s; }
    .why-right.in-view .source-row:nth-child(5) .bar-fill { transition-delay: 1.8s; }

    /* Vertical bars grow — slow and smooth */
    .vbar {
      height: 0 !important;
      transition: height 1.2s cubic-bezier(0.33,0,0.2,1);
    }
    .why-right.in-view .vbar { height: var(--bar-h) !important; transition-delay: 1.15s; }
    .why-right.in-view .bar-wrap:nth-child(2) .vbar { transition-delay: 1.3s; }
    .why-right.in-view .bar-wrap:nth-child(3) .vbar { transition-delay: 1.45s; }
    .why-right.in-view .bar-wrap:nth-child(4) .vbar { transition-delay: 1.6s; }
    .why-right.in-view .bar-wrap:nth-child(5) .vbar { transition-delay: 1.75s; }
    .why-right.in-view .bar-wrap:nth-child(6) .vbar { transition-delay: 1.9s; }

    @media (prefers-reduced-motion: reduce) {
      .why-right .kpi, .why-right .chart-panel, .why-right .mini-panel,
      .chart-line, .chart-area, .chart-notch, .chart-notch-glow, .end-dot,
      .bar-fill, .vbar {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        stroke-dashoffset: 0 !important;
      }
      .bar-fill { width: var(--value) !important; }
      .vbar { height: var(--bar-h) !important; }
    }

    .why-body-intro {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.78;
      color: rgba(255,255,255,0.56);
      margin-bottom: 36px;
    }

    .why-section-title {
      font-size: 42px;
      font-weight: 400;
      line-height: 1.08;
      letter-spacing: -0.03em;
      background: linear-gradient(180deg, #ffffff 28%, rgba(255,255,255,0.66) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 1px 8px rgba(0,0,0,0.35));
      margin-bottom: 32px;
    }

    .why-title {
      font-size: 21px;
      font-weight: 600;
      line-height: 1.25;
      letter-spacing: -0.015em;
      color: rgba(255,255,255,0.92);
      margin-bottom: 10px;
    }

    .why-title-underline {
      position: relative;
      width: 100%;
      height: 1.5px;
      margin-bottom: 28px;
      background: rgba(255,236,0,0.55);
      border-radius: 999px;
      box-shadow: 0 0 10px rgba(255,236,0,0.2);
    }
    .why-title-underline::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 30%;
      height: 2.5px;
      border-radius: 999px;
      background: #ffec00;
      box-shadow: 0 0 12px rgba(255,236,0,0.5);
    }

    .why-sub-intro {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.78;
      color: rgba(255,255,255,0.56);
      margin-bottom: 44px;
    }

    /* Feature rows */
    .why-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: start;
    }

    .why-features-divider {
      width: 1px;
      align-self: stretch;
      background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18), transparent);
      margin: 0 32px;
    }

    .why-feature {
      display: grid;
      grid-template-columns: 52px 1fr;
      column-gap: 16px;
      align-items: start;
      padding: 0;
      border-radius: 0;
      border: none;
      background: none;
    }

    .why-feature + .why-feature {
      border-top: unset;
      margin-top: unset;
      padding-top: 0;
    }

    .why-feature-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: radial-gradient(circle at 50% 40%, rgba(255,236,0,0.18) 0%, rgba(255,236,0,0.04) 70%);
      border: 1px solid rgba(255,236,0,0.3);
      box-shadow: 0 0 24px rgba(255,236,0,0.12);
    }

    .why-feature-icon svg {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: #ffec00;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 0 7px rgba(255,236,0,0.35));
    }

    .why-feature-divider {
      width: 1px;
      align-self: stretch;
      background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18), transparent);
      margin: 0 4px;
    }

    .why-feature-text h3 {
      font-size: 15px;
      font-weight: 600;
      line-height: 1.3;
      color: rgba(255,255,255,0.92);
      margin-bottom: 8px;
    }

    .why-feature-text p {
      font-size: 13px;
      font-weight: 400;
      line-height: 1.65;
      color: rgba(255,255,255,0.46);
    }

    @media (max-width: 980px) {
      .why-inner {
        grid-template-columns: 1fr;
        row-gap: 48px;
      }
      .why-right { min-height: 280px; }
      .why-cta { margin-top: 16px; }
      .why-features {
        grid-template-columns: 1fr;
        row-gap: 28px;
      }
      .why-features-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.18), transparent);
        margin: 0;
      }
    }

    @media (max-width: 680px) {
      .why { padding: 64px 20px 72px; }
      .why-section-title { font-size: 34px; margin-bottom: 36px; }
      .why-feature {
        grid-template-columns: 44px 1fr;
        column-gap: 14px;
      }
      .why-feature-icon { width: 44px; height: 44px; }
      .why-feature-icon svg { width: 18px; height: 18px; }
      .why-features-divider { display: none; }

      /* Dashboard KPI cards: give the circle room so it never overlaps text */
      .kpi-grid { grid-template-columns: 1fr; gap: 10px; }
      .kpi { padding-right: 76px; }
      .kpi::after { right: 18px; top: 50%; transform: translateY(-50%); }
      .kpi-icon { right: 32px; top: 50%; transform: translateY(-50%); }
      .kpi-change { white-space: normal; }

      /* Render dashboard at natural size — the scale trick leaves a gap on mobile */
      .why-right-inner {
        width: 100%;
        transform: none;
        margin-bottom: 0;
      }
      .why-right { min-height: 0; }
    }

    /* ── RESPONSIVE SWITCH ── */
    @media (max-width: 860px) {
      header { padding: 0 20px; }
      header > .header-inner > nav,
      .header-right .client-portal,
      .header-right .divider,
      .header-right > .phone {
        display: none;
      }
      .hamburger { display: flex; }
    }
footer { position: relative; z-index: 3; }
    /* Banner sits above vlines (z-90) so its opaque bg masks the lines inside it */
    .page-banner { position: relative; z-index: 91; }
    .page-banner {
      position: relative;
      padding: calc(var(--site-header-height) + 58px) 24px 50px;
      background:
        linear-gradient(105deg, rgba(255,236,0,0.14) 0%, rgba(255,236,0,0.04) 26%, rgba(0,0,0,0) 56%),
        #000;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .page-banner-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 46px 46px;
      background-position: center top;
      -webkit-mask-image: radial-gradient(120% 130% at 12% 50%, #000 0%, rgba(0,0,0,0.4) 45%, transparent 78%);
      mask-image: radial-gradient(120% 130% at 12% 50%, #000 0%, rgba(0,0,0,0.4) 45%, transparent 78%);
      pointer-events: none;
    }
    .page-banner-glow {
      position: absolute;
      top: -160px;
      left: -120px;
      width: 620px;
      height: 460px;
      background: radial-gradient(ellipse at center, rgba(255,236,0,0.16) 0%, rgba(255,236,0,0.04) 42%, rgba(255,236,0,0) 70%);
      pointer-events: none;
    }
    .page-banner-inner {
      position: relative;
      z-index: 1;
      max-width: 1320px;
      margin: 0 auto;
    }

    /* Banner entrance — one-shot CSS animation so the content fades in
       exactly once on load, independent of the scroll-reveal JS. */
    .page-banner-inner > * {
      opacity: 0;
      animation: bannerFadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    }
    .page-banner-inner > :nth-child(1) { animation-delay: 0.05s; }
    .page-banner-inner > :nth-child(2) { animation-delay: 0.15s; }
    .page-banner-inner > :nth-child(3) { animation-delay: 0.25s; }
    @keyframes bannerFadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .page-banner-inner > * { animation: none; opacity: 1; }
    }
    .breadcrumbs {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 18px;
      font-size: 12.5px;
      font-weight: 500;
      letter-spacing: 0.04em;
    }
    .breadcrumbs a {
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .breadcrumbs a:hover { color: #ffec00; }
    .breadcrumb-sep {
      width: 14px;
      height: 14px;
      fill: none;
      stroke: rgba(255,255,255,0.3);
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .breadcrumb-current {
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 11.5px;
      font-weight: 600;
    }
    .page-banner-title {
      font-size: 48px;
      font-weight: 400;
      line-height: 1.02;
      letter-spacing: -0.035em;
      color: #fff;
      filter: drop-shadow(0 2px 14px rgba(0,0,0,0.5));
    }
    .page-banner-sub {
      max-width: 600px;
      margin-top: 18px;
      font-size: 16.5px;
      line-height: 1.7;
      color: rgba(255,255,255,0.55);
    }
@media (max-width: 980px) {
      .contact-main-inner { grid-template-columns: 1fr; }
      .page-banner-title { font-size: 40px; }
    }
    @media (max-width: 620px) {
      .page-banner { padding-top: calc(var(--site-header-height) + 40px); }
      .page-banner-title { font-size: 30px; }
      .contact-form-wrap { padding: 26px 22px; }
      .field-row { grid-template-columns: 1fr; }
    }
/* ── SERVICES SECTION ── */
    .services {
      position: relative;
      background: var(--bg);
      padding: 80px 24px 88px;
      overflow: hidden;
      border-top: 1px solid var(--border);
    }

    .services::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: none;
      opacity: 0;
      pointer-events: none;
    }

    .services::after {
      content: '';
      position: absolute;
      right: -260px;
      top: 60px;
      width: 680px;
      height: 680px;
      background: none;
      pointer-events: none;
    }

    .services-inner {
      position: relative;
      z-index: 1;
      max-width: 1320px;
      margin: 0 auto;
    }

    .services-header {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
      gap: 40px;
      align-items: end;
      margin-bottom: 40px;
    }

    .services-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }

    .services-eyebrow-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ffd800;
    }

    .services-eyebrow span:last-child {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #ffd800;
    }

    .services-title {
      max-width: 680px;
      font-size: 42px;
      font-weight: 400;
      line-height: 1.08;
      letter-spacing: -0.03em;
      background: linear-gradient(180deg, #ffffff 28%, rgba(255,255,255,0.66) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 1px 8px rgba(0,0,0,0.35));
    }

    .services-intro {
      max-width: 520px;
      font-size: 17px;
      font-weight: 400;
      line-height: 1.75;
      color: rgba(255,255,255,0.48);
      margin-bottom: 6px;
    }

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

    .service-card {
      position: relative;
      min-height: 252px;
      padding: 26px 26px 24px;
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      background: var(--surface-grad);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 18px 38px rgba(0,0,0,0.35);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }

    .service-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: none;
      opacity: 0;
      transition: opacity 0.25s ease;
      pointer-events: none;
    }

    .service-card:hover {
      background: var(--surface-grad-hover);
    }

    .service-card:hover::after { opacity: 1; }

    .service-icon {
      position: relative;
      z-index: 1;
      width: 58px;
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      border: 1px solid rgba(255,255,255,0.11);
      border-radius: 10px;
      background: rgba(0,0,0,0.22);
    }

    .service-icon svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: #ffec00;
      stroke-width: 1.55;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-card h3 {
      font-size: 21px;
      font-weight: 600;
      line-height: 1.25;
      letter-spacing: -0.015em;
      color: rgba(255,255,255,0.92);
      margin-bottom: 10px;
    }

    .service-card p {
      position: relative;
      z-index: 1;
      max-width: 330px;
      font-size: 15.5px;
      line-height: 1.65;
      color: rgba(255,255,255,0.48);
      margin-bottom: 18px;
    }

    /* The heading link — inline text, inherits the h3 styling.
       Its ::after stretches over the whole card so the entire card is the
       click target, while the descriptive title stays as anchor text for SEO. */
    .service-link {
      color: inherit;
      text-decoration: none;
    }

    .service-link:focus-visible::after {
      outline: 2px solid #ffec00;
      outline-offset: -3px;
      border-radius: 14px;
    }

    .service-link::after {
      content: '';
      position: absolute;
      /* huge box anchored to the card (nearest positioned ancestor);
         card's overflow:hidden trims it to the card bounds */
      top: -1000px;
      left: -1000px;
      right: -1000px;
      bottom: -1000px;
      z-index: 2;
    }

    /* Card footer row — Learn More left, arrow right */
    .service-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      margin-top: auto;
      z-index: 1;
    }

    .service-learn {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      padding-bottom: 3px;
      border-bottom: 1px solid rgba(255,255,255,0.3);
      transition: border-color 0.2s, color 0.2s;
      text-decoration: none;
    }

    .service-card:hover .service-learn {
      color: #ffd800;
      border-color: #ffec00;
    }

    /* Visual-only arrow button */
    .service-arrow {
      z-index: 1;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      flex-shrink: 0;
      transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }

    .service-arrow svg {
      width: 15px;
      height: 15px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.25s ease;
    }

    .service-card:hover .service-arrow {
      background: #ffec00;
      color: #080808;
      border-color: #ffec00;
    }
    .service-card:hover .service-arrow svg { transform: rotate(45deg); }

    .services-footer {
      margin-top: 48px;
    }

    .services-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      padding: 30px 36px;
      border-radius: 16px;
      border: 1px solid var(--border);
      background:
        radial-gradient(120% 180% at 100% 0%, var(--glow), transparent 60%),
        var(--surface-grad);
    }

    .services-cta-copy {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .services-cta-eyebrow {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #ffd800;
    }

    .services-cta-title {
      font-size: 22px;
      font-weight: 500;
      line-height: 1.3;
      color: var(--white);
      margin: 0;
      max-width: 40ch;
    }

    .services-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .services-cta-btn svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.2s;
    }

    .services-cta-btn:hover svg { transform: translateX(3px); }

    @media (max-width: 1080px) {
      .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .services-header { grid-template-columns: 1fr; gap: 24px; align-items: start; }
      .services-intro { max-width: 650px; }
    }

    @media (max-width: 680px) {
      .services { padding: 64px 20px 72px; }
      .services-header { margin-bottom: 34px; }
      .services-grid { grid-template-columns: 1fr; gap: 14px; }
      .service-card { min-height: 220px; padding: 22px 20px 22px; }
      .service-icon { margin-bottom: 22px; }
      .service-card h3 { font-size: 20px; }
      .service-card p { font-size: 15px; padding-right: 26px; }
      .services-title { font-size: 34px; }
      .services-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        padding: 26px 24px;
      }
      .services-cta-title { font-size: 20px; }
      .services-cta-btn { width: 100%; justify-content: center; }
    }
/* ── Service detail page ── */
.svc-main, .services-page { background: #000; padding: 56px 24px 110px; position: relative; z-index: 3; }
.svc-main-inner, .services-page-inner { max-width: 1320px; margin: 0 auto; }
.svc-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.85fr); gap: 22px; align-items: start; }
.svc-content { display: flex; flex-direction: column; gap: 22px; }
.svc-panel { border: 1px solid var(--border); border-radius: 14px; background: var(--surface-grad); padding: 28px 30px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 18px 38px rgba(0,0,0,0.35); }
.svc-panel h2 { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; color: #fff; margin-bottom: 12px; }
.svc-panel p { font-size: 15.5px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.svc-panel p:last-child { margin-bottom: 0; }
.svc-list { list-style: none; display: grid; gap: 12px; margin-top: 8px; }
.svc-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.72); }
.svc-list li svg { width: 18px; height: 18px; flex-shrink: 0; stroke: #ffec00; fill: none; stroke-width: 2; margin-top: 2px; }
.svc-steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 8px; }
.svc-step { border: 1px solid var(--border); border-radius: 12px; background: rgba(255,255,255,0.02); padding: 18px 16px; }
.svc-step-num { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #ffec00; margin-bottom: 8px; }
.svc-step h3 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.svc-step p { font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.5); margin: 0; }
.svc-aside { display: flex; flex-direction: column; gap: 14px; position: sticky; top: calc(var(--site-header-height) + 24px); }
.svc-aside-card { border: 1px solid var(--border); border-radius: 14px; background: var(--surface-grad); padding: 22px 20px; }
.svc-aside-card h3 { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.svc-aside-card p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.52); margin-bottom: 16px; }
.svc-aside-list { list-style: none; display: grid; gap: 8px; }
.svc-aside-list li { font-size: 13.5px; color: rgba(255,255,255,0.62); padding-left: 14px; position: relative; }
.svc-aside-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: #ffec00; }
.svc-related { margin-top: 48px; }
.svc-related-head { margin-bottom: 22px; }
@media (max-width: 960px) { .svc-layout { grid-template-columns: 1fr; } .svc-aside { position: static; } .svc-steps { grid-template-columns: 1fr; } }
@media (max-width: 680px) { .svc-main, .services-page { padding: 40px 20px 80px; } .svc-panel { padding: 22px 18px; } }

/* ── About page ── */
.about-page .ab-section,
.about-page .ab-stats,
.about-page .ab-cta,
.svc-main, .services-page, footer { position: relative; z-index: 3; }

.about-page .page-banner-title {
  background: linear-gradient(180deg, #ffffff 30%, rgba(255,255,255,0.72) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-page .page-banner-sub { max-width: 620px; margin-top: 22px; }
.about-page .page-banner-inner > :nth-child(3) { animation-delay: 0.25s; }

.about-page .ab-section {
  background: var(--bg);
  padding: 84px 24px;
  border-top: 1px solid var(--border);
}
.about-page .ab-section-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-page .ab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffd800;
  margin-bottom: 16px;
}
.about-page .ab-eyebrow .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffd800;
}
.about-page .ab-title {
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  background: linear-gradient(180deg, #ffffff 28%, rgba(255,255,255,0.66) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.35));
}

.about-page .ab-ph {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 12px, transparent 12px 24px),
    #141414;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.about-page .ab-ph::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.26);
}

.about-page .ab-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: center;
}
.about-page .ab-story-content .ab-title { margin-bottom: 20px; }
.about-page .ab-story-intro {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 44px;
}
.about-page .ab-story-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 24px;
}
.about-page .ab-story-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-page .ab-story-feature-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  margin-top: 1px;
  background: #141414;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .ab-story-feature-ico svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #ffec00;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-page .ab-story-feature-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-page .ab-story-feature-text h3 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0;
}
.about-page .ab-story-feature-text p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.about-page .ab-story-visual { position: relative; }
.about-page .ab-story-image {
  position: relative;
  aspect-ratio: 7 / 6;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.about-page .ab-story-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(120% 100% at 70% 20%, #000, transparent 75%);
  mask-image: radial-gradient(120% 100% at 70% 20%, #000, transparent 75%);
  pointer-events: none;
}
.about-page .ab-story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 72% 30%, rgba(255,236,0,0.14), transparent 42%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.about-page .ab-story-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-page .ab-story-image-label {
  position: absolute;
  left: 22px;
  top: 20px;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.about-page .ab-story-quote {
  position: absolute;
  left: -8px;
  bottom: -28px;
  z-index: 3;
  width: 70%;
  max-width: 440px;
  margin: 0;
  background: rgba(11,11,11,0.82);
  border: 1px solid rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: 0 24px 60px -18px rgba(0,0,0,0.85);
}
.about-page .ab-story-quote-mark {
  font-family: Georgia, serif;
  font-size: 44px;
  line-height: 0;
  color: #ffec00;
  display: block;
  height: 22px;
  margin-bottom: 4px;
}
.about-page .ab-story-quote p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  margin-bottom: 16px;
}
.about-page .ab-story-quote .hl { color: #ffec00; }
.about-page .ab-story-quote cite {
  font-size: 12.5px;
  font-style: normal;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 9px;
}
.about-page .ab-story-quote cite::before {
  content: '';
  width: 22px;
  height: 1px;
  background: #ffec00;
  flex-shrink: 0;
}

.about-page .ab-stats {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 0 24px;
}
.about-page .ab-stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.about-page .ab-stat {
  padding: 48px 28px;
  border-right: 1px solid var(--border);
}
.about-page .ab-stat:last-child { border-right: none; }
.about-page .ab-stat-num {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #ffec00;
  margin-bottom: 10px;
}
.about-page .ab-stat-label { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.55); }

.about-page .ab-values-head { max-width: 640px; margin-bottom: 44px; }
.about-page .ab-values-head .ab-title { margin-bottom: 16px; }
.about-page .ab-values-head p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.55); }
.about-page .ab-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-page .ab-value-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 28px;
  background: var(--surface);
  transition: border-color 0.25s, background 0.25s;
}
.about-page .ab-value-card:hover {
  border-color: rgba(255,255,255,0.14);
  background: #141414;
}
.about-page .ab-value-ico {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  margin-bottom: 22px;
  background: #141414;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .ab-value-ico svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #ffec00;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-page .ab-value-card h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 10px;
}
.about-page .ab-value-card p { font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,0.55); }

.about-page .ab-team { overflow: hidden; }
.about-page .ab-team-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}
.about-page .ab-team-head-left { max-width: 620px; }
.about-page .ab-team-head-left .ab-title { margin-bottom: 16px; }
.about-page .ab-team-head-left p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.55); }
.about-page .ab-team-nav { display: flex; gap: 12px; flex-shrink: 0; }
.about-page .ab-team-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}
.about-page .ab-team-arrow:hover { background: #ffec00; color: #080808; border-color: #ffec00; }
.about-page .ab-team-arrow:disabled { opacity: 0.32; cursor: default; }
.about-page .ab-team-arrow:disabled:hover { background: var(--surface); color: #fff; border-color: rgba(255,255,255,0.14); }
.about-page .ab-team-arrow svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-page .ab-team-viewport { overflow: hidden; margin: 0 -8px; }
.about-page .ab-team-track {
  display: flex;
  gap: 20px;
  padding: 0 8px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.about-page .ab-team-card {
  flex: 0 0 calc((100% - 40px) / 3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.25s, transform 0.25s;
}
.about-page .ab-team-card:hover { border-color: rgba(255,255,255,0.14); transform: translateY(-4px); }
.about-page .ab-team-photo { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.about-page .ab-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-page .ab-team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(8,8,8,0.55) 100%);
  pointer-events: none;
}
.about-page .ab-team-socials {
  position: absolute;
  right: 14px;
  top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s, transform 0.25s;
}
.about-page .ab-team-card:hover .ab-team-socials { opacity: 1; transform: translateY(0); }
.about-page .ab-team-social {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(8,8,8,0.6);
  border: 1px solid rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.about-page .ab-team-social svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-page .ab-team-info { padding: 22px 24px 26px; }
.about-page .ab-team-role {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffd800;
  margin-bottom: 10px;
}
.about-page .ab-team-role .dot { width: 6px; height: 6px; border-radius: 50%; background: #ffd800; }
.about-page .ab-team-info h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; color: #fff; margin-bottom: 8px; }
.about-page .ab-team-info p { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.55); }
.about-page .ab-team-dots { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.about-page .ab-team-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: none;
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
  padding: 0;
}
.about-page .ab-team-dot.active { background: #ffec00; width: 24px; }

.about-page .ab-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.about-page .ab-why-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .ab-area-map { position: relative; width: 78%; aspect-ratio: 1 / 1; }
.about-page .ab-area-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(255,236,0,0.16); }
.about-page .ab-area-ring.r2 { inset: 16%; border-color: rgba(255,236,0,0.22); }
.about-page .ab-area-ring.r3 { inset: 32%; border-color: rgba(255,236,0,0.3); }
.about-page .ab-area-core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #ffec00, #d4c400);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 40px rgba(255,236,0,0.25);
}
.about-page .ab-area-core strong { font-size: 14px; color: #080808; font-weight: 700; line-height: 1.1; }
.about-page .ab-area-core span { font-size: 9px; color: rgba(8,8,8,0.7); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.about-page .ab-area-pin { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #ffec00; box-shadow: 0 0 0 4px rgba(255,236,0,0.12); }
.about-page .ab-area-pin.p1 { top: 8%; left: 50%; }
.about-page .ab-area-pin.p2 { top: 50%; left: 92%; }
.about-page .ab-area-pin.p3 { top: 92%; left: 50%; }
.about-page .ab-area-pin.p4 { top: 50%; left: 8%; }
.about-page .ab-area-label { position: absolute; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.4); white-space: nowrap; }
.about-page .ab-area-label.l1 { top: 1%; left: 54%; }
.about-page .ab-area-label.l2 { top: 47%; right: -2%; }
.about-page .ab-area-label.l3 { bottom: 0; left: 54%; }
.about-page .ab-area-label.l4 { top: 47%; left: -2%; }
.about-page .ab-why-copy .ab-title { margin-bottom: 20px; }
.about-page .ab-why-copy > p { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.62); margin-bottom: 26px; }
.about-page .ab-why-list { display: flex; flex-direction: column; gap: 16px; }
.about-page .ab-why-item { display: flex; align-items: flex-start; gap: 14px; }
.about-page .ab-why-check {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  flex-shrink: 0;
  margin-top: 1px;
  background: #ffec00;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .ab-why-check svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #080808;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-page .ab-why-item-text strong { display: block; font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.about-page .ab-why-item-text span { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.55); }

.about-page .ab-cta {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 84px 24px;
}
.about-page .ab-cta-inner { max-width: 1320px; margin: 0 auto; }
.about-page .ab-cta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,236,0,0.25);
  border-radius: 20px;
  background:
    radial-gradient(120% 160% at 100% 0%, rgba(255,236,0,0.12), transparent 55%),
    var(--surface);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.about-page .ab-cta-card .ab-title {
  font-size: 34px;
  margin-bottom: 12px;
  max-width: 9in;
}
.about-page .ab-cta-card p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.55); max-width: 460px; }
.about-page .ab-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #ffec00;
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 26px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  white-space: nowrap;
  transition: opacity 0.2s;
}
.about-page .ab-cta-btn:hover { opacity: 0.88; }
.about-page .ab-cta-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}
.about-page .ab-cta-btn:hover svg { transform: translateX(3px); }

@media (max-width: 1080px) {
  .about-page .ab-story-grid,
  .about-page .ab-why-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-page .ab-story-visual { margin-bottom: 28px; }
  .about-page .ab-story-quote {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    margin-top: -48px;
  }
  .about-page .ab-why-visual { max-width: 420px; }
  .about-page .ab-values-grid { grid-template-columns: 1fr 1fr; }
  .about-page .ab-stats-inner { grid-template-columns: 1fr 1fr; }
  .about-page .ab-stat:nth-child(2) { border-right: none; }
  .about-page .ab-stat:nth-child(1),
  .about-page .ab-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .about-page .ab-team-card { flex-basis: calc((100% - 20px) / 2); }
}
@media (max-width: 980px) {
  .about-page .ab-title { font-size: 34px; }
}
@media (max-width: 760px) {
  .about-page .page-banner-title { font-size: 34px; }
  .about-page .ab-title { font-size: 28px; }
  .about-page .ab-story-features { grid-template-columns: 1fr; gap: 28px; }
  .about-page .ab-values-grid { grid-template-columns: 1fr; }
  .about-page .ab-team-head { flex-direction: column; align-items: flex-start; }
  .about-page .ab-team-card { flex-basis: 100%; }
  .about-page .ab-cta-card { padding: 36px 28px; }
  .about-page .ab-cta-card .ab-title { font-size: 26px; }
}
@media (max-width: 480px) {
  .about-page .ab-stats-inner { grid-template-columns: 1fr; }
  .about-page .ab-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .about-page .ab-stat:last-child { border-bottom: none; }
}
.footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
    }

    .footer-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
      gap: 56px;
      padding: 72px 0 64px;
    }

    /* Brand */
    .footer-logo {
      height: 17.3px;
      width: auto;
      margin-bottom: 24px;
    }

    .footer-desc {
      font-size: 15px;
      line-height: 1.75;
      color: rgba(255,255,255,0.46);
      max-width: 340px;
      margin-bottom: 28px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .footer-social a svg { width: 18px; height: 18px; }

    .footer-social a:hover {
      background: #ffec00;
      border-color: #ffec00;
      color: #0a0a0a;
    }

    /* Column heads */
    .footer-col-head {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #ffec00;
      margin-bottom: 26px;
    }

    .footer-col-dot {
      width: 8px;
      height: 8px;
      border-radius: 2px;
      background: #ffec00;
      box-shadow: 0 0 12px rgba(255,236,0,0.7);
    }

    /* Link lists */
    .footer-links { list-style: none; }

    .footer-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }

    .footer-links a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 0;
      font-size: 16px;
      color: rgba(255,255,255,0.82);
      text-decoration: none;
      transition: color 0.2s, padding-left 0.2s;
    }

    .footer-links a svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: rgba(255,255,255,0.3);
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke 0.2s, transform 0.2s;
    }

    .footer-links a:hover {
      color: #ffec00;
      padding-left: 6px;
    }

    .footer-links a:hover svg {
      stroke: #ffec00;
      transform: translateX(3px);
    }

    /* Let's Talk card */
    .footer-cta {
      position: relative;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 28px 30px 30px;
      overflow: hidden;
      background:
        radial-gradient(130% 120% at 100% 100%, var(--glow), transparent 60%),
        var(--surface-grad);
    }

    .footer-cta-title {
      font-size: 26px;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: #fff;
      margin-bottom: 12px;
    }

    .footer-cta-text {
      font-size: 15px;
      line-height: 1.7;
      color: rgba(255,255,255,0.5);
      margin-bottom: 24px;
    }

    .footer-cta-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      margin-bottom: 12px;
    }

    .footer-cta-btn svg {
      width: 18px; height: 18px;
      fill: none; stroke: currentColor;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
      transition: transform 0.2s;
    }
    .footer-cta-btn:hover svg { transform: translateX(3px); }

    /* Bottom bar */
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 26px 0 30px;
      border-top: 1px solid rgba(255,255,255,0.07);
      flex-wrap: wrap;
    }

    .footer-copy {
      font-size: 14px;
      color: rgba(255,255,255,0.42);
    }

    .footer-legal {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .footer-legal a {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-legal a:hover { color: #ffec00; }

    .footer-legal-sep { color: rgba(255,255,255,0.2); }

    /* Responsive */
    @media (max-width: 1080px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 44px 40px;
      }
      .footer-brand { grid-column: 1 / -1; }
      .footer-cta { grid-column: 1 / -1; }
    }

    @media (max-width: 600px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 24px;
        padding: 56px 0 48px;
      }
      .footer-brand { grid-column: 1 / -1; order: 0; }
      .footer-cta   { grid-column: 1 / -1; order: 1; }
      .footer-col   { order: 2; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
    }

    /* ─────────────────────────────────────────────
       Apple-style dark elevation card system
       (flat grays, cards lift above the bg)
       ───────────────────────────────────────────── */
    :root {
      --surface: #0b0b0b;
      --surface-2: #0a0a0a;
      --surface-grad: #0b0b0b;
      --surface-grad-hover: #141414;
      --border: rgba(255,255,255,0.09);
      --border-strong: rgba(255,255,255,0.14);
      --silver-line: rgba(255,255,255,0.12);
      --silver-line-soft: rgba(255,255,255,0.05);
      --card-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 4px 16px rgba(0,0,0,0.3);
      --card-shadow-hover:
        inset 0 1px 0 rgba(255,255,255,0.07),
        0 8px 28px rgba(0,0,0,0.4);
    }

    .stat-card,
    .service-card,
    .tcard,
    .pcard,
    .bcard,
    .services-cta,
    .why-right,
    .kpi,
    .chart-panel,
    .mini-panel,
    .footer-cta,
    .mega-menu-inner {
      background: var(--surface-grad) !important;
      border-color: var(--border) !important;
      box-shadow: var(--card-shadow) !important;
    }

    .footer-cta {
      background:
        radial-gradient(130% 120% at 100% 100%, rgba(255,236,0,0.10), transparent 60%),
        #0b0b0b !important;
    }

    .stat-card:hover,
    .service-card:hover,
    .tcard:hover,
    .pcard:hover,
    .bcard:hover,
    .services-cta:hover,
    .footer-cta:hover {
      background: var(--surface-grad-hover) !important;
      border-color: var(--border-strong) !important;
      box-shadow: var(--card-shadow-hover) !important;
    }

    .stat-card::after {
      background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.13), transparent) !important;
      opacity: 0.42 !important;
    }

    .service-card::after,
    .tcard::after,
    .footer-cta::after,
    .services-cta::after {
      opacity: 0 !important;
    }

    .service-card:hover::after,
    .tcard:hover::after,
    .footer-cta:hover::after,
    .services-cta:hover::after { opacity: 0 !important; }

    .service-icon,
    .mega-icon,
    .m-svc-icon,
    .partner-point-icon {
      background: #141414 !important;
      border-color: rgba(255,255,255,0.09) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.05) !important;
    }

    .service-card:hover .service-icon,
    .mega-item:hover .mega-icon,
    .m-services-panel a:hover .m-svc-icon,
    .partner-point:hover .partner-point-icon {
      border-color: rgba(255,255,255,0.14) !important;
      background: #181818 !important;
    }

    .why-right::before {
      background: none !important;
    }

    .kpi::after {
      background:
        radial-gradient(circle, rgba(255,255,255,0.045), rgba(255,255,255,0.012) 58%, transparent 72%) !important;
      border-color: rgba(255,255,255,0.09) !important;
    }

    .chart-panel,
    .mini-panel {
      background: #0a0a0a !important;
    }

    .pcard-foot {
      background: #0a0a0a !important;
      border-top-color: rgba(255,255,255,0.09) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04) !important;
    }

    .pcard:hover .pcard-foot {
      background: #0b0b0b !important;
    }

    .pcard-badge {
      background: rgba(255,255,255,0.08) !important;
      border-color: rgba(255,255,255,0.12) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04) !important;
    }

    /* Mega menu CTA panel — yellow glow (button stays yellow) */
    .mega-cta {
      border-left-color: rgba(255,255,255,0.09) !important;
      background:
        radial-gradient(130% 120% at 100% 0%, rgba(255,236,0,0.10), transparent 55%),
        #0b0b0b !important;
    }

    .mega-cta-glow {
      background: radial-gradient(circle, rgba(255,236,0,0.12), transparent 65%) !important;
    }

    .mega-item:hover {
      background: rgba(255,255,255,0.05) !important;
    }
/* ── Scroll reveal (GPU-only: opacity + transform) ── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
                  transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    }
    .reveal.in-view {
      opacity: 1;
      transform: none;
    }
    /* Staggered children within a revealed group */
    .reveal-stagger > * {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
                  transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    }
    .reveal-stagger.in-view > * {
      opacity: 1;
      transform: none;
    }
    .reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
    .reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.12s; }
    .reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.19s; }
    .reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.26s; }
    .reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.33s; }
    .reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.40s; }

    @media (prefers-reduced-motion: reduce) {
      .reveal, .reveal-stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
    }
    /* ── SCROLL-TO-TOP PROGRESS BUTTON ── */
    .scroll-top {
      position: fixed;
      right: 28px;
      bottom: 28px;
      width: 45px;
      height: 45px;
      z-index: 120;
      border: none;
      padding: 0;
      background: transparent;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
    }
    .scroll-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .scroll-top-inner {
      position: absolute;
      inset: 4px;
      border-radius: 4px;
      background: #0a0a0b;
      box-shadow: 0 8px 24px rgba(0,0,0,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .scroll-top-inner svg {
      width: 16px;
      height: 16px;
      stroke: #fff;
      stroke-width: 2.4;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .scroll-top-ring {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      transform: none;
      pointer-events: none;
    }
    .scroll-top-ring rect {
      fill: none;
      stroke-width: 3;
    }
    .scroll-top-track { stroke: rgba(255,255,255,0.1); }
    .scroll-top-bar {
      stroke: #ffec00;
      stroke-linecap: round;
      transition: stroke-dashoffset 0.1s linear;
    }
    @media (max-width: 680px) {
      .scroll-top { right: 18px; bottom: 18px; }
    }