/* ================================================================
   BlueWave IT — home.css
   Page-specific styles for index.html
   Depends on: theme.css, components.css
   ================================================================ */

    /* ─── PAGE-LEVEL ONLY — all design tokens defined in theme.css ─── */

        /* ─── RESET & BASE ───────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text);
      background:
        radial-gradient(ellipse 80% 55% at 0% 0%,   rgba(0,194,203,0.13),   transparent 50%),
        radial-gradient(ellipse 60% 45% at 100% 8%,  rgba(15,76,129,0.12),   transparent 50%),
        radial-gradient(ellipse 90% 50% at 50% 100%, rgba(15,76,129,0.07),   transparent 60%),
        linear-gradient(180deg, #060e1a 0%, #07101e 100%);
      overflow-x: hidden;
      transition: background 250ms ease, color 250ms ease;
    }

    body.theme-light {
      background:
        radial-gradient(ellipse 80% 55% at 0% 0%,   rgba(0,194,203,0.07),   transparent 50%),
        radial-gradient(ellipse 60% 45% at 100% 8%,  rgba(15,76,129,0.06),   transparent 50%),
        linear-gradient(180deg, #f3f8fd 0%, #edf4fb 100%);
    }

    /* theme.css handles h1–h4 font-family */
    h1, h2, h3, h4, .brand { margin: 0; }
    h1 { font-weight: 400; letter-spacing: 0.01em; }
    h2 { font-weight: 400; letter-spacing: 0.01em; }
    h3 { font-weight: 600; letter-spacing: -0.01em; }
    h4 { font-weight: 600; letter-spacing: -0.01em; }
    a  { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { font: inherit; cursor: pointer; }
    p { margin: 0; }

    .container {
      width: min(calc(100% - 40px), var(--max));
      margin: 0 auto;
    }

    /* ─── REVEAL ANIMATION ───────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 650ms cubic-bezier(0.16, 1, 0.3, 1),
                  transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 80ms; }
    .reveal-delay-2 { transition-delay: 160ms; }
    .reveal-delay-3 { transition-delay: 240ms; }

    /* ─── HEADER ─────────────────────────────────────────────── */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 60;
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      background: rgba(6, 14, 26, 0.70);
      border-bottom: 1px solid var(--line);
      transition: background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    }
    body.theme-light .site-header {
      background: rgba(243, 248, 253, 0.80);
    }
    .site-header.scrolled {
      background: rgba(6, 14, 26, 0.94);
      box-shadow: 0 8px 32px rgba(0,0,0,0.30);
      border-bottom-color: var(--line-strong);
    }
    body.theme-light .site-header.scrolled {
      background: rgba(243, 248, 253, 0.96);
      box-shadow: 0 8px 32px rgba(10,22,40,0.10);
    }

    .nav {
      min-height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 0 0 auto;
    }
    .logo-mark {
      width: 44px;
      height: 44px;
      border-radius: 13px;
      background: linear-gradient(135deg, rgba(0,194,203,0.25), rgba(15,76,129,0.30));
      border: 1px solid rgba(56,217,232,0.24);
      box-shadow: 0 0 28px rgba(0,194,203,0.16);
      display: grid;
      place-items: center;
      overflow: hidden;
      flex: 0 0 auto;
    }
    .logo-mark img { width: 86%; height: 86%; object-fit: contain; }
    .logo-wordmark {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .logo-wordmark strong {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: -0.01em;
    }
    .logo-wordmark span {
      color: var(--muted);
      font-size: 0.74rem;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    /* Nav links */
    .nav-links {
      display: flex;
      gap: 6px;
      align-items: center;
    }
    .nav-links a {
      position: relative;
      color: var(--muted-2);
      font-size: 0.95rem;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: var(--radius-xs);
      transition: color 160ms ease, background 160ms ease;
    }
    .nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
    body.theme-light .nav-links a:hover { background: rgba(10,22,40,0.05); }

    /* Nav right */
    .nav-right { display: flex; gap: 8px; align-items: center; flex-wrap: nowrap; }

    .toggle-group {
      display: inline-flex;
      gap: 2px;
      padding: 4px;
      border-radius: 999px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--line);
    }
    body.theme-light .toggle-group { background: rgba(10,22,40,0.04); }
    .toggle-btn {
      border: 0;
      background: transparent;
      color: var(--muted);
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 0.84rem;
      font-weight: 500;
      transition: all 180ms ease;
    }
    .toggle-btn.active {
      background: rgba(56,217,232,0.15);
      color: var(--text);
    }

    /* Mobile nav toggle */
    .nav-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 12px;
      border: 1px solid var(--line-strong);
      background: rgba(255,255,255,0.04);
      color: var(--text);
      font-size: 1.2rem;
      align-items: center;
      justify-content: center;
    }
    .mobile-menu { display: none; padding: 0 0 14px; }
    .mobile-menu.open { display: grid; gap: 8px; }
    .mobile-menu a,
    .mobile-menu .mobile-menu-theme { padding: 11px 14px; border-radius: 13px; background: var(--bg-card); border: 1px solid var(--line); color: var(--text); display: flex; align-items: center; gap: 10px; font-size: 0.96rem; font-weight: 500; }
    .mobile-menu .m-row { padding: 11px 14px; border-radius: 13px; background: var(--bg-card); border: 1px solid var(--line); color: var(--text); display: flex; align-items: center; gap: 10px; font-size: 0.96rem; font-weight: 500; }
    .mobile-menu .m-row { flex-wrap: wrap; gap: 8px; }

    /* ─── BUTTONS ────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 26px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-family: var(--font-display);
      font-size: 0.93rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
      white-space: nowrap;
    }
    .btn-primary {
      background: linear-gradient(130deg, #00c2cb 0%, #38d9e8 100%);
      color: #031922;
      box-shadow: 0 6px 22px rgba(0,194,203,0.32), inset 0 1px 0 rgba(255,255,255,0.20);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0,194,203,0.42), inset 0 1px 0 rgba(255,255,255,0.20);
    }
    .btn-secondary {
      background: rgba(255,255,255,0.04);
      border-color: var(--line-strong);
      color: var(--text);
    }
    .btn-secondary:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(56,217,232,0.30);
      transform: translateY(-2px);
    }
    body.theme-light .btn-secondary {
      background: rgba(10,22,40,0.04);
    }
    body.theme-light .btn-secondary:hover {
      background: rgba(10,22,40,0.08);
    }

    /* ─── CARDS ──────────────────────────────────────────────── */
    .card {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-card);
      padding: 26px;
      transition: transform 220ms cubic-bezier(0.16,1,0.3,1),
                  border-color 220ms ease,
                  box-shadow 220ms ease,
                  background 220ms ease;
    }
    .card.hover-lift:hover {
      transform: translateY(-5px);
      border-color: rgba(56,217,232,0.24);
      box-shadow: 0 20px 48px rgba(0,0,0,0.26), 0 0 0 1px rgba(56,217,232,0.10);
      background: var(--bg-card-hover);
    }
    .tilt-card { transform-style: preserve-3d; will-change: transform; }

    /* Card icon */
    .card-icon {
      width: 52px;
      height: 52px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      background: linear-gradient(135deg, rgba(0,194,203,0.15), rgba(15,76,129,0.22));
      border: 1px solid rgba(56,217,232,0.20);
      color: var(--cyan-3);
    }
    .icon-svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ─── LAYOUT GRIDS ───────────────────────────────────────── */
    .grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
    .grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }

    /* ─── SECTION BASE ───────────────────────────────────────── */
    section { padding: 68px 0; }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      border: 1px solid rgba(56,217,232,0.18);
      background: rgba(255,255,255,0.03);
      color: var(--cyan-3);
      font-size: 0.80rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .section-label::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cyan-2);
      box-shadow: 0 0 0 6px rgba(56,217,232,0.10);
    }
    body.theme-light .section-label { background: rgba(10,22,40,0.04); color: var(--blue-mid); }

    .section-head { margin-bottom: 36px; }
    .section-head h2 {
      font-size: clamp(2.1rem, 3.6vw, 3.1rem);
      line-height: 1.05;
      margin-bottom: 14px;
    }
    .section-head p {
      color: var(--muted-2);
      max-width: 62ch;
      font-size: 1.06rem;
    }

    /* Section divider band */
    .band {
      background: var(--bg-alt);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    /* ─── GRADIENT TEXT ──────────────────────────────────────── */
    .gradient-text {
      background: linear-gradient(105deg, #4beaf4 0%, #00c2cb 45%, #6af0fc 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    body.theme-light .gradient-text {
      background: linear-gradient(105deg, #006f80 0%, #007f8f 50%, #009ab0 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    /* ─── EYEBROW PILL ───────────────────────────────────────── */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px;
      border-radius: 999px;
      border: 1px solid rgba(56,217,232,0.20);
      background: rgba(255,255,255,0.03);
      color: #c6f7ff;
      font-size: 0.83rem;
      font-weight: 500;
      margin-bottom: 20px;
    }
    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--cyan-2);
      box-shadow: 0 0 0 7px rgba(56,217,232,0.10);
      flex: 0 0 auto;
    }
    body.theme-light .eyebrow { background: rgba(10,22,40,0.04); color: var(--blue-mid); }

    /* ─── FEATURE LIST ───────────────────────────────────────── */
    .feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
    .feature-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--muted-2);
      font-size: 0.97rem;
    }
    .feature-list li::before {
      content: "";
      width: 18px;
      height: 18px;
      margin-top: 2px;
      flex: 0 0 auto;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2338d9e8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
    }

    /* ─── STATUS DOTS ────────────────────────────────────────── */
    .status-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 7px rgba(62,232,154,0.10);
      flex: 0 0 auto;
    }
    .status-dot.amber { background: var(--amber); box-shadow: 0 0 0 7px rgba(255,207,78,0.10); }
    .status-dot.red   { background: var(--danger); box-shadow: 0 0 0 7px rgba(255,95,95,0.10); }

    /* ─── HERO ───────────────────────────────────────────────── */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 100px 0 60px;
      isolation: isolate;
    }
    .hero::before, .hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: -1;
    }
    .hero::before {
      width: 560px;
      height: 560px;
      right: -180px;
      top: -80px;
      background: radial-gradient(circle, rgba(0,194,203,0.14), transparent 60%);
      filter: blur(40px);
      animation: floatGlow 12s ease-in-out infinite;
    }
    .hero::after {
      width: 380px;
      height: 380px;
      left: -100px;
      bottom: -40px;
      background: radial-gradient(circle, rgba(56,217,232,0.09), transparent 60%);
      filter: blur(30px);
      animation: floatGlow 14s ease-in-out infinite reverse;
    }
    @keyframes floatGlow {
      0%, 100% { transform: translate3d(0,0,0) scale(1); }
      50%       { transform: translate3d(0,-18px,0) scale(1.05); }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 40px;
      align-items: center;
    }

    .hero h1 {
      font-size: clamp(3rem, 6.8vw, 5.6rem);
      line-height: 0.90;
      max-width: 13ch;
      margin-bottom: 24px;
    }
    .hero p {
      color: var(--muted-2);
      max-width: 58ch;
      font-size: 1.08rem;
      margin: 0 0 30px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }

    /* Hero mini-stat points */
    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 12px;
    }
    .hero-point {
      padding: 16px;
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      transition: transform 200ms ease, border-color 200ms ease;
    }
    .hero-point:hover {
      transform: translateY(-3px);
      border-color: rgba(56,217,232,0.24);
    }
    .hero-point strong {
      display: block;
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }
    .hero-point span { color: var(--muted); font-size: 0.87rem; line-height: 1.4; }

    /* Hero dashboard card */
    .hero-card {
      position: relative;
      background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
      border: 1px solid var(--line-strong);
      border-radius: 26px;
      padding: 24px;
      box-shadow: var(--shadow);
      overflow: hidden;
      transform-style: preserve-3d;
      transition: transform 220ms ease, border-color 220ms ease;
    }
    .hero-card::before {
      content: "";
      position: absolute;
      inset: auto -20% -18% auto;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,194,203,0.18), transparent 65%);
      pointer-events: none;
    }
    .hero-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.055), transparent 60%);
      transform: translateX(-130%);
      transition: transform 700ms ease;
      pointer-events: none;
    }
    .hero-card:hover::after { transform: translateX(130%); }

    /* Dashboard internals */
    .dash-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 16px;
    }
    .dash-top h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
    .dash-top p  { color: var(--muted); font-size: 0.84rem; margin: 0; }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 0.80rem;
      font-weight: 500;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--line);
      color: var(--muted-2);
      white-space: nowrap;
      flex: 0 0 auto;
    }

    .status-strip {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }
    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--line);
      color: var(--muted-2);
      font-size: 0.82rem;
    }

    .dash-metrics {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-bottom: 14px;
    }
    .health-metric {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      padding: 14px;
    }
    .health-metric small { display: block; color: var(--muted); font-size: 0.80rem; margin-bottom: 6px; }
    .health-metric strong {
      display: block;
      font-family: var(--font-mono);
      font-size: 1.55rem;
      line-height: 1;
      margin-bottom: 8px;
      color: var(--text);
    }
    .metric-bar {
      width: 100%;
      height: 6px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      overflow: hidden;
    }
    .metric-fill {
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
    }
    .metric-fill.warn { background: linear-gradient(90deg, #e8a532, #ffcf4e); }

    .dash-activity {
      background: rgba(255,255,255,0.025);
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      padding: 16px;
    }
    .dash-activity-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }
    .dash-activity-head strong { font-size: 0.88rem; }
    .activity-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
    .activity-item {
      display: grid;
      grid-template-columns: 20px 1fr auto;
      gap: 10px;
      align-items: center;
      padding-bottom: 9px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      font-size: 0.875rem;
      color: var(--muted-2);
    }
    .activity-item:last-child { border-bottom: 0; padding-bottom: 0; }
    .activity-icon { width: 17px; height: 17px; color: var(--cyan-3); }
    .activity-status {
      font-size: 0.75rem;
      padding: 4px 9px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.03);
      white-space: nowrap;
    }
    .activity-status.good   { color: #a8ffd6; border-color: rgba(62,232,154,0.20); background: rgba(62,232,154,0.08); }
    .activity-status.info   { color: var(--cyan-3); border-color: rgba(56,217,232,0.20); background: rgba(56,217,232,0.08); }
    .activity-status.warn   { color: #ffe0a0; border-color: rgba(255,207,78,0.20); background: rgba(255,207,78,0.08); }

    /* ─── SOCIAL PROOF BAR ───────────────────────────────────── */
    .proof-bar {
      padding: 24px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--bg-alt);
    }
    .proof-inner {
      display: flex;
      align-items: center;
      gap: 0;
      overflow: hidden;
    }
    .proof-label {
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      white-space: nowrap;
      padding-right: 28px;
      border-right: 1px solid var(--line);
      margin-right: 28px;
      flex: 0 0 auto;
    }
    .proof-items {
      display: flex;
      gap: 32px;
      align-items: center;
      flex-wrap: wrap;
    }
    .proof-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--muted-2);
      font-size: 0.90rem;
    }
    .proof-item svg { width: 18px; height: 18px; color: var(--cyan); stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }

    /* ─── TRUST BAR (value props) ────────────────────────────── */
    .trust-bar { padding: 48px 0; }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 16px;
    }
    .trust-item {
      padding: 22px;
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      text-align: center;
      transition: border-color 200ms ease, transform 200ms ease;
    }
    .trust-item:hover { transform: translateY(-3px); border-color: rgba(56,217,232,0.24); }
    .trust-icon {
      width: 44px;
      height: 44px;
      border-radius: 13px;
      margin: 0 auto 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(0,194,203,0.14), rgba(15,76,129,0.20));
      border: 1px solid rgba(56,217,232,0.18);
      color: var(--cyan-3);
    }
    .trust-item strong { display: block; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
    .trust-item span   { color: var(--muted); font-size: 0.88rem; }

    /* ─── PROBLEMS SECTION ───────────────────────────────────── */
    .problems-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 18px;
    }
    .problem-card {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 22px;
      transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
    }
    .problem-card:hover {
      transform: translateY(-4px);
      border-color: rgba(56,217,232,0.22);
      background: var(--bg-card-hover);
    }
    .problem-top {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 10px;
    }
    .problem-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(0,194,203,0.14), rgba(15,76,129,0.22));
      border: 1px solid rgba(56,217,232,0.18);
      color: var(--cyan-3);
      flex: 0 0 auto;
    }
    .problem-icon .icon-svg { width: 20px; height: 20px; }
    .problem-card h3 { font-size: 0.98rem; font-weight: 700; line-height: 1.35; }
    .problem-card p  { color: var(--muted-2); font-size: 0.90rem; margin-top: 6px; line-height: 1.5; }

    /* ─── SERVICES ───────────────────────────────────────────── */
    .service-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }
    .service-tab {
      padding: 9px 18px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.03);
      color: var(--muted-2);
      font-size: 0.88rem;
      font-weight: 500;
      transition: all 180ms ease;
    }
    .service-tab:hover, .service-tab.active {
      background: rgba(56,217,232,0.12);
      border-color: rgba(56,217,232,0.28);
      color: var(--text);
    }
    .service-card.is-hidden { display: none; }
    .svc-detail-link {
      display: inline-flex; align-items: center; gap: 5px;
      margin-top: 14px; font-size: 0.84rem; font-weight: 600;
      font-family: var(--font-display); color: var(--cyan-2);
      text-decoration: none; transition: gap 160ms, opacity 160ms;
    }
    .svc-detail-link:hover { gap: 8px; opacity: 0.8; }

    .service-preview-inset {
      margin-top: 8px;
      background: rgba(255,255,255,0.025);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 18px;
    }
    .service-preview-inset ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
    .service-preview-inset li {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      color: var(--muted-2);
      font-size: 0.88rem;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .service-preview-inset li:last-child { border-bottom: 0; padding-bottom: 0; }
    .service-preview-inset b { color: var(--text); }

    /* ─── HERO CARD STAT GRID (inside hero) ──────────────────── */
    .stat-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-bottom: 14px;
    }
    .stat {
      padding: 16px;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
    }
    .stat small { display: block; color: var(--muted); font-size: 0.80rem; margin-bottom: 5px; }
    .stat strong { font-family: var(--font-mono); font-size: 1.75rem; font-weight: 500; color: var(--text); }

    /* ─── REMOTE WORK SECTION ────────────────────────────────── */
    .remote-work { padding: 28px 0 56px; }
    .remote-shell {
      position: relative;
      border-radius: 28px;
      border: 1px solid var(--line);
      overflow: hidden;
      background:
        radial-gradient(circle at top left, rgba(0,194,203,0.09), transparent 30%),
        radial-gradient(circle at bottom right, rgba(56,217,232,0.07), transparent 26%),
        linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
      box-shadow: var(--shadow);
    }
    .remote-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.030) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.030) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.06));
      pointer-events: none;
    }
    body.theme-light .remote-shell {
      background:
        radial-gradient(circle at top left, rgba(0,194,203,0.07), transparent 30%),
        linear-gradient(160deg, rgba(255,255,255,0.94), rgba(255,255,255,0.78));
      border-color: var(--line);
    }
    body.theme-light .remote-shell::before {
      background-image:
        linear-gradient(rgba(10,22,40,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,22,40,0.035) 1px, transparent 1px);
    }
    .remote-inner {
      position: relative;
      z-index: 1;
      padding: 40px;
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 28px;
      align-items: stretch;
    }
    .remote-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 18px;
    }
    .remote-pill {
      padding: 7px 14px;
      border-radius: 999px;
      border: 1px solid rgba(56,217,232,0.18);
      background: rgba(255,255,255,0.04);
      color: var(--cyan-3);
      font-size: 0.82rem;
      font-weight: 500;
    }
    body.theme-light .remote-pill { background: rgba(10,22,40,0.04); color: var(--muted-2); }
    .remote-copy h3 { font-size: clamp(1.9rem, 3vw, 2.9rem); margin-bottom: 14px; }
    .remote-copy > p { margin: 0 0 22px; color: var(--muted-2); max-width: 60ch; }

    .remote-features { display: grid; gap: 18px; margin: 0 0 24px; }
    .remote-feature {
      display: grid;
      grid-template-columns: 50px 1fr;
      gap: 14px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--line);
    }
    .remote-feature:last-child { border-bottom: 0; padding-bottom: 0; }
    .rf-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(0,194,203,0.16), rgba(15,76,129,0.22));
      border: 1px solid rgba(56,217,232,0.18);
      color: var(--cyan-3);
      flex: 0 0 auto;
    }
    .remote-feature h4 { font-size: 1rem; font-weight: 700; margin: 0 0 5px; color: var(--text); }
    .remote-feature p  { color: var(--muted-2); font-size: 0.90rem; margin: 0; line-height: 1.55; }
    .remote-actions { display: flex; gap: 12px; flex-wrap: wrap; }

    /* Visual column */
    .remote-visual { display: grid; gap: 16px; }
    .remote-panel {
      padding: 22px;
      border-radius: 22px;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--line);
    }
    body.theme-light .remote-panel { background: rgba(255,255,255,0.82); }
    .remote-panel-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
    }
    .panel-dots { display: flex; gap: 6px; }
    .panel-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.20); }
    body.theme-light .panel-dots span { background: rgba(10,22,40,0.14); }
    .panel-title { color: var(--muted); font-size: 0.88rem; }

    .remote-network {
      position: relative;
      min-height: 210px;
      display: grid;
      grid-template-columns: 1fr 100px 1fr;
      align-items: center;
      gap: 8px;
      border-radius: 18px;
      padding: 18px 10px;
      background:
        radial-gradient(circle at center, rgba(0,194,203,0.08), transparent 50%),
        rgba(255,255,255,0.025);
      border: 1px solid var(--line);
      overflow: hidden;
    }
    .rn-node { text-align: center; position: relative; z-index: 2; }
    .rn-ring {
      width: 82px;
      height: 82px;
      margin: 0 auto 10px;
      border-radius: 50%;
      border: 1px solid rgba(56,217,232,0.22);
      background: radial-gradient(circle, rgba(0,194,203,0.16), rgba(255,255,255,0.02));
      position: relative;
      animation: remotePulse 3.4s infinite ease-in-out;
    }
    .rn-ring-icon { position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.8rem; }
    .rn-label { color: var(--muted-2); font-size: 0.88rem; }
    .rn-center { position: relative; height: 100%; display: grid; place-items: center; }
    .rn-badge {
      position: relative;
      z-index: 3;
      padding: 9px 13px;
      border-radius: 999px;
      background: rgba(6,14,26,0.92);
      border: 1px solid rgba(56,217,232,0.26);
      color: var(--cyan-3);
      font-size: 0.82rem;
      font-weight: 600;
      white-space: nowrap;
    }
    body.theme-light .rn-badge { background: rgba(255,255,255,0.94); color: var(--blue-mid); }
    .rn-link {
      position: absolute;
      left: 50%;
      width: 210px;
      height: 2px;
      transform: translateX(-50%);
      background: linear-gradient(90deg, rgba(0,194,203,0), rgba(0,194,203,0.80), rgba(0,194,203,0));
      overflow: hidden;
    }
    .rn-link::after {
      content: "";
      position: absolute;
      inset: -4px auto -4px -18%;
      width: 18%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.90), transparent);
      animation: remoteFlow 2.2s linear infinite;
    }
    .rn-link-1 { top: 34%; }
    .rn-link-2 { top: 50%; }
    .rn-link-2::after { animation-delay: 0.22s; }
    .rn-link-3 { top: 66%; }
    .rn-link-3::after { animation-delay: 0.44s; }
    @keyframes remoteFlow  { 0% { left:-18%; opacity:0; } 15% { opacity:1; } 100% { left:100%; opacity:0; } }
    @keyframes remotePulse { 0%,100% { transform:scale(1); box-shadow:0 0 18px rgba(0,194,203,0.10); } 50% { transform:scale(1.04); box-shadow:0 0 28px rgba(0,194,203,0.18); } }

    .remote-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    .remote-stat {
      padding: 13px;
      border-radius: 14px;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--line);
    }
    body.theme-light .remote-stat { background: rgba(10,22,40,0.03); }
    .remote-stat small { display: block; color: var(--muted); font-size: 0.79rem; margin-bottom: 5px; }
    .remote-stat strong { color: var(--text); font-size: 0.94rem; font-weight: 600; }

    /* ─── ABOUT ──────────────────────────────────────────────── */
    .about-section { padding: 68px 0; }
    .about-card { padding: 32px; }

    /* Industry mini-cards */
    .industry-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 12px;
    }
    .industry-item {
      padding: 14px;
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      transition: border-color 200ms ease, transform 200ms ease;
    }
    .industry-item:hover { transform: translateY(-2px); border-color: rgba(56,217,232,0.22); }
    .industry-item strong { display: block; font-size: 0.94rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
    .industry-item span   { color: var(--muted); font-size: 0.85rem; }

    /* ─── PROCESS ────────────────────────────────────────────── */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 0;
      position: relative;
    }
    /* Connecting line */
    .process-grid::before {
      content: "";
      position: absolute;
      top: 30px;
      left: calc(12.5% + 19px);
      right: calc(12.5% + 19px);
      height: 2px;
      background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
      opacity: 0.35;
      z-index: 0;
    }
    .process-step {
      padding: 24px 20px;
      position: relative;
      z-index: 1;
      text-align: center;
    }
    .proc-num {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
      color: #031922;
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 800;
      margin: 0 auto 16px;
      box-shadow: 0 4px 16px rgba(0,194,203,0.30);
    }
    .process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .process-step p  { color: var(--muted-2); font-size: 0.88rem; line-height: 1.55; }

    /* ─── PRICING ────────────────────────────────────────────── */
    .pricing-card { position: relative; overflow: hidden; }
    .pricing-ribbon {
      position: absolute;
      top: 18px;
      right: -46px;
      background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
      color: #031922;
      padding: 7px 52px;
      transform: rotate(34deg);
      font-size: 0.75rem;
      font-weight: 700;
      font-family: var(--font-display);
      letter-spacing: 0.03em;
    }
    .price {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin: 20px 0 14px;
    }
    .price strong { font-family: var(--font-display); font-size: 3.4rem; font-weight: 800; line-height: 1; color: var(--text); }
    .price span { color: var(--muted-2); font-size: 0.94rem; }

    /* Pricing calculator */
    .calculator {
      margin-top: 10px;
      background: rgba(255,255,255,0.025);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 20px;
    }
    .calc-row { display: flex; justify-content: space-between; align-items: center; color: var(--muted-2); font-size: 0.90rem; margin-bottom: 12px; }
    .calc-row output { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--text); }
    input[type=range] {
      width: 100%;
      -webkit-appearance: none;
      height: 6px;
      border-radius: 999px;
      background: rgba(255,255,255,0.10);
      outline: none;
      margin: 4px 0 10px;
    }
    input[type=range]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0,194,203,0.35);
    }
    .calc-total { text-align: center; }
    .calc-total small { display: block; color: var(--muted); font-size: 0.82rem; margin-bottom: 4px; }

    /* Form inputs */
    input[type=text], input[type=email], input[type=tel], textarea, select {
      width: 100%;
      padding: 13px 16px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--line-strong);
      background: rgba(255,255,255,0.04);
      color: var(--text);
      font: inherit;
      outline: none;
      transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }
    input:focus, textarea:focus, select:focus {
      border-color: rgba(56,217,232,0.38);
      box-shadow: 0 0 0 4px rgba(56,217,232,0.09);
      background: rgba(255,255,255,0.06);
    }
    input::placeholder, textarea::placeholder { color: #6a86a0; }
    textarea { min-height: 140px; resize: vertical; }
    select { cursor: pointer; }
    body.theme-light input[type=text],
    body.theme-light input[type=email],
    body.theme-light input[type=tel],
    body.theme-light textarea,
    body.theme-light select {
      background: rgba(255,255,255,0.70);
      border-color: var(--line);
    }

    /* ─── FAQ ────────────────────────────────────────────────── */
    .faq-list { display: grid; gap: 10px; }
    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color 200ms ease;
    }
    .faq-item.open { border-color: rgba(56,217,232,0.22); }
    .faq-question {
      width: 100%;
      text-align: left;
      background: transparent;
      border: 0;
      padding: 20px 22px;
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
    }
    .faq-chevron {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: rgba(56,217,232,0.10);
      border: 1px solid rgba(56,217,232,0.20);
      display: grid;
      place-items: center;
      color: var(--cyan-2);
      font-size: 0.90rem;
      transition: transform 260ms ease;
      flex: 0 0 auto;
    }
    .faq-item.open .faq-chevron { transform: rotate(45deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 280ms ease, padding 280ms ease;
      color: var(--muted-2);
      font-size: 0.97rem;
      line-height: 1.65;
      padding: 0 22px;
    }
    .faq-item.open .faq-answer { max-height: 600px; padding: 0 22px 22px; }

    /* ─── ASSESSMENT CTA ─────────────────────────────────────── */
    .assessment-section { padding: 24px 0 56px; }
    .assessment-box {
      padding: 52px 40px;
      text-align: center;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,194,203,0.13), transparent 60%),
        linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      border: 1px solid rgba(56,217,232,0.18);
      border-radius: 28px;
      position: relative;
      overflow: hidden;
    }
    .assessment-box::before {
      content: "";
      position: absolute;
      width: 350px;
      height: 350px;
      left: -120px;
      top: -120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,194,203,0.10), transparent 60%);
      pointer-events: none;
    }
    .assessment-box::after {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      right: -80px;
      bottom: -80px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(15,76,129,0.12), transparent 60%);
      pointer-events: none;
    }
    .assessment-box h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); margin-bottom: 14px; position: relative; z-index: 1; }
    .assessment-box p  { max-width: 58ch; margin: 0 auto 28px; color: var(--muted-2); position: relative; z-index: 1; }
    .assessment-box .btn { position: relative; z-index: 1; }

    /* ─── CONTACT ────────────────────────────────────────────── */
    .contact-wrap { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 24px; }
    .contact-panel {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 30px;
    }
    .contact-panel h3 { font-size: 1.3rem; margin-bottom: 20px; }
    .contact-items { display: grid; gap: 0; list-style: none; margin: 0; padding: 0; }
    .contact-item {
      padding: 16px 0;
      border-bottom: 1px solid var(--line);
    }
    .contact-item:last-of-type { border-bottom: 0; }
    .contact-item strong { display: block; font-size: 0.96rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
    .contact-item p { color: var(--muted-2); font-size: 0.90rem; }

    .quick-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
    .quick-chip {
      padding: 8px 16px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.03);
      color: var(--muted-2);
      font-size: 0.84rem;
      font-weight: 500;
      transition: all 180ms ease;
    }
    .quick-chip:hover {
      background: rgba(56,217,232,0.10);
      border-color: rgba(56,217,232,0.26);
      color: var(--text);
    }

    .form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 12px; }
    .form-grid + select,
    .form-grid + input,
    .contact-panel form select { margin-bottom: 12px; display: block; }
    .form-status { min-height: 22px; font-size: 0.88rem; margin-top: 4px; transition: color 200ms; }

    /* ─── FOOTER ─────────────────────────────────────────────── */
    .site-footer {
      border-top: 1px solid var(--line);
      background: var(--bg-alt);
      padding: 48px 0 36px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand p { color: var(--muted); font-size: 0.90rem; margin: 14px 0 0; max-width: 36ch; line-height: 1.6; }
    .footer-col h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
    .footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
    .footer-col ul a { color: var(--muted-2); font-size: 0.92rem; transition: color 160ms ease; }
    .footer-col ul a:hover { color: var(--text); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.88rem;
    }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { color: var(--muted); transition: color 160ms ease; }
    .footer-legal a:hover { color: var(--text); }
    .footer-logo { display: flex; align-items: center; gap: 10px; }
    .footer-logo strong { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }

    /* ─── BACK TO TOP ────────────────────────────────────────── */
    .back-to-top {
      position: fixed;
      right: 20px;
      bottom: 20px;
      width: 46px;
      height: 46px;
      border-radius: 14px;
      border: 1px solid var(--line-strong);
      background: rgba(6,14,26,0.88);
      backdrop-filter: blur(10px);
      color: var(--text);
      display: grid;
      place-items: center;
      font-size: 1.1rem;
      opacity: 0;
      transform: translateY(12px);
      pointer-events: none;
      transition: all 200ms ease;
      box-shadow: var(--shadow-sm);
      z-index: 70;
    }
    .back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
    body.theme-light .back-to-top { background: rgba(255,255,255,0.90); }

    /* ─── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 1080px) {
      .nav-links { display: none; }
      .nav-toggle { display: inline-flex; }
      .nav-cta { display: none; }
    }

    /* ─── MOBILE NAV ─────────────────────────────────────────── */
    @media (max-width: 600px) {
      /* Hide "MANAGED IT SERVICES" subtitle */
      .logo-wordmark span { display: none; }

      /* Hide hero eyebrow pill */
      .eyebrow { display: none; }

      /* Hide theme toggle from nav bar — shown in dropdown instead */
      .nav-right .toggle-group[aria-label="Theme switcher"] { display: none; }

      /* Shrink toggle buttons */
      .tog .tog-btn, .toggle-group .toggle-btn {
        padding: 5px 8px;
        font-size: 0.76rem;
      }
      .tog, .toggle-group { padding: 3px; }

      /* Stack the nav: logo row on top, toggles row below */
      .nav {
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px 0;
        min-height: unset;
      }
      /* Logo takes full first row */
      .logo { flex: 1 1 auto; }
      /* nav-right: lang toggle + hamburger only */
      .nav-right {
        flex: 0 0 auto;
        gap: 6px;
        margin-left: auto;
      }
    }

    @media (max-width: 980px) {
      section { padding: 52px 0; }
      .hero { padding: 72px 0 48px; }
      .hero-grid,
      .contact-wrap,
      .grid-3,
      .grid-2,
      .trust-grid,
      .problems-grid,
      .process-grid,
      .footer-grid,
      .remote-inner { grid-template-columns: 1fr; }
      .process-grid::before { display: none; }
      .hero-points { grid-template-columns: repeat(2, 1fr); }
      .proof-bar { display: none; }
    }

    @media (max-width: 640px) {
      .hero-points { grid-template-columns: 1fr; }
      .dash-metrics { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .remote-inner { padding: 24px; }
      .remote-network { grid-template-columns: 1fr; min-height: auto; }
      .remote-link { width: 2px; height: 80px; top: 50%; background: linear-gradient(180deg, rgba(0,194,203,0), rgba(0,194,203,0.80), rgba(0,194,203,0)); }
      .remote-link::after { inset: -14% -4px auto -4px; width: auto; height: 16%; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.90), transparent); }
      .remote-link-1, .remote-link-2, .remote-link-3 { left: 50%; transform: translateX(-50%); }
      .remote-link-1 { top: 8%; }
      .remote-link-2 { top: 30%; }
      .remote-link-3 { top: 52%; }
      .remote-stats { grid-template-columns: 1fr; }
      .assessment-box { padding: 36px 24px; }
    }

    /* -- HERO BACKGROUND IMAGE -- */
    .hero-bg-img {
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image: url('../../images/hero_dark_bg.jpg');
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      opacity: 0.18;
      mix-blend-mode: luminosity;
      pointer-events: none;
      transition: opacity 300ms ease;
    }
    .hero-bg-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 0%, transparent 50%, var(--bg) 100%);
      pointer-events: none;
    }
    body.theme-light .hero-bg-img {
      background-image: url('../../images/hero_light_bg.jpg');
      opacity: 0.22;
      mix-blend-mode: multiply;
    }

