/* ── Reset & Variables ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      /* ── Background hierarchy ── */
      --bg-0:    #05070a;   /* page base (deepest) */
      --bg-1:    #0a0f14;   /* raised surface */
      --bg-2:    #11181f;   /* card surface */
      --black:   #05070a;   /* legacy alias → bg-0 */
      --gray:    #11181f;   /* legacy alias → bg-2 */
      --mid:     #243038;   /* borders / dividers */

      /* ── Text ── */
      --white:   #f4f8fa;   /* primary text */
      --muted:   #8a98a2;   /* secondary text (AA on dark) */
      --faint:   #5c6770;   /* tertiary / labels */

      /* ── Brand accents (from logo pulse) ── */
      --cyan:    #00cfff;
      --teal:    #00e0c6;
      --acid:    #19d4ff;   /* primary accent — brightened for AA contrast */
      --orange:  #00e0c6;   /* secondary accent (teal) */
      --grad:    linear-gradient(120deg, #00cfff 0%, #00e0c6 100%);
      --grad-soft: linear-gradient(160deg, rgba(0,207,255,0.10), rgba(0,224,198,0.02));

      /* ── Channel colors ── */
      --whatsapp: #25D366;

      /* ── Type ── */
      --font-display: 'Bebas Neue', 'Tajawal', sans-serif;          /* English display */
      --font-body:    'IBM Plex Sans Arabic', 'DM Sans', sans-serif; /* bilingual body */
      --font-mono:    'Space Mono', monospace;
      --radius: 2px;
      --transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      cursor: none;
    }

    /* ── Language Switcher ── */
    .lang-switch {
      display: flex; align-items: center; border: 1px solid var(--mid);
      font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em;
      overflow: hidden;
    }
    .lang-switch button {
      background: none; border: none; color: var(--muted); cursor: pointer;
      padding: 7px 11px; font: inherit; transition: all 0.2s;
    }
    .lang-switch button.active { background: var(--grad); color: var(--black); font-weight: 700; }
    .lang-switch button:not(.active):hover { color: var(--white); }

    /* ── RTL (Arabic) ── */
    [dir="rtl"] { text-align: right; }
    [dir="rtl"] body, [dir="rtl"] .hero-title, [dir="rtl"] .section-title,
    [dir="rtl"] .page-hero-title, [dir="rtl"] .cta-title, [dir="rtl"] .pillar-title,
    [dir="rtl"] .footer-cta-title, [dir="rtl"] .pc-name, [dir="rtl"] .sc-title {
      font-family: 'Tajawal', sans-serif;
    }
    [dir="rtl"] .hero-eyebrow::before { margin-left: 0; }
    [dir="rtl"] .nav-links a::after,
    [dir="rtl"] .see-all,
    [dir="rtl"] .tag { transform-origin: right; }
    [dir="rtl"] .hero-left { border-right: none; border-left: 1px solid var(--mid); }
    [dir="rtl"] .service-card::before { transform-origin: bottom; }
    [dir="rtl"] .pc-feat::before, [dir="rtl"] .modal-trust-item::before { margin-left: 6px; }
    [dir="rtl"] .pillar-svc-arrow, [dir="rtl"] .svc-hub-link, [dir="rtl"] .pmc-view { transform: scaleX(-1); }
    [dir="rtl"] .field label, [dir="rtl"] .cm-label, [dir="rtl"] .footer-col h4 { text-align: right; }

    /* ── Premium Loading Screen ── */
    #loader {
      position: fixed; inset: 0;
      z-index: 10000;
      background: var(--bg-0);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 22px;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }
    #loader.done { opacity: 0; visibility: hidden; }
    #loader::after {
      /* exit curtain wipe */
      content: ''; position: absolute; inset: 0; background: var(--bg-0);
      transform: translateY(0); z-index: -1;
    }
    .loader-logo-wrap {
      width: min(74vw, 480px);
      display: flex; flex-direction: column; align-items: center; gap: 18px;
    }
    /* stage holds the logo + the ECG scan head */
    .loader-stage { position: relative; width: 100%; }
    /* the real logo is "traced" left → right like an ECG readout */
    .loader-logo {
      width: 100%; height: auto; display: block;
      clip-path: inset(0 100% 0 0);
      animation: logoTrace 1.8s cubic-bezier(0.7,0,0.25,1) 0.3s forwards;
      will-change: clip-path;
    }
    @keyframes logoTrace {
      to { clip-path: inset(0 0 0 0); filter: drop-shadow(0 0 22px rgba(0,207,255,0.28)); }
    }
    /* the bright scan head that draws the pulse across the logo */
    .loader-scan {
      position: absolute; top: -8%; bottom: -8%; left: 0; width: 3px;
      background: linear-gradient(to bottom, transparent, var(--cyan), var(--teal), transparent);
      box-shadow: 0 0 18px 4px rgba(0,207,255,0.85);
      opacity: 0;
      animation: scanMove 1.8s cubic-bezier(0.7,0,0.25,1) 0.3s forwards;
    }
    @keyframes scanMove {
      0%   { left: 0%;   opacity: 0; }
      8%   { opacity: 1; }
      88%  { opacity: 1; }
      100% { left: 100%; opacity: 0; }
    }
    /* gradient underline that draws from the centre after the trace */
    .loader-line {
      width: 100%; height: 2px; background: var(--grad);
      transform: scaleX(0); transform-origin: center;
      animation: lineDraw 0.9s cubic-bezier(0.16,1,0.3,1) 1.5s forwards;
    }
    @keyframes lineDraw { to { transform: scaleX(1); } }
    @media (prefers-reduced-motion: reduce) {
      .loader-scan { display: none; }
      .loader-logo { animation: none; clip-path: none; }
      .loader-line { animation: none; transform: scaleX(1); }
    }

    /* ── Custom Cursor ── */
    #cursor {
      width: 12px; height: 12px;
      background: var(--acid);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.15s ease, background 0.2s;
      transform: translate(-50%, -50%);
    }
    #cursor-ring {
      width: 36px; height: 36px;
      border: 1px solid rgba(200,255,0,0.4);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9998;
      transition: transform 0.35s ease, width 0.3s, height 0.3s, border-color 0.3s;
      transform: translate(-50%, -50%);
    }
    body:has(a:hover) #cursor { transform: translate(-50%,-50%) scale(2.5); background: var(--orange); }
    body:has(a:hover) #cursor-ring { width: 52px; height: 52px; border-color: var(--orange); }

    /* ── Pages ── */
    .page { display: none; min-height: 100vh; }
    .page.active { display: block; animation: fadeIn 0.5s var(--transition) both; }
    @keyframes fadeIn { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }

    /* ── Noise Overlay ── */
    body::after {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9000;
      opacity: 0.5;
    }

    /* ── Navigation ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 48px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      backdrop-filter: blur(12px);
      background: rgba(8,8,8,0.85);
    }

    .nav-logo {
      cursor: pointer;
      display: flex; align-items: center;
      transition: opacity 0.2s;
    }
    .nav-logo img { height: 34px; width: auto; display: block; }
    .nav-logo:hover { opacity: 0.8; }

    .nav-links { display: flex; gap: 36px; align-items: center; }
    .nav-links a {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      cursor: pointer;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: -4px; left: 0; right: 0;
      height: 1px; background: var(--acid);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s ease;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--white); }
    .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

    /* ── Services Dropdown ── */
    .nav-dropdown { position: relative; }
    .nav-drop-trigger { display: flex; align-items: center; gap: 6px; }
    .nav-drop-trigger .caret { font-size: 8px; transition: transform 0.3s; }
    .nav-dropdown:hover .nav-drop-trigger .caret { transform: rotate(180deg); }
    .dropdown-menu {
      position: absolute;
      top: calc(100% + 18px); left: 50%;
      transform: translateX(-50%) translateY(10px);
      background: var(--gray);
      border: 1px solid var(--mid);
      min-width: 260px;
      padding: 12px;
      display: flex; flex-direction: column;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
      z-index: 1100;
    }
    .dropdown-menu::before {
      content: ''; position: absolute; top: -18px; left: 0; right: 0; height: 18px;
    }
    .nav-dropdown:hover .dropdown-menu {
      opacity: 1; visibility: visible; pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .dropdown-menu a {
      padding: 12px 14px;
      font-size: 12px;
      color: var(--muted);
      transition: background 0.2s, color 0.2s, padding-left 0.2s;
      letter-spacing: 0.08em;
    }
    .dropdown-menu a::after { display: none; }
    .dropdown-menu a:hover { background: var(--black); color: var(--acid); padding-left: 20px; }
    .dropdown-divider { height: 1px; background: var(--mid); margin: 8px 0; }
    .dropdown-menu a.dropdown-all { color: var(--acid); font-weight: 600; }
    .dropdown-menu a.dropdown-all:hover { color: var(--white); }

    .nav-right { display: flex; align-items: center; gap: 18px; }

    /* Header social icons */
    .nav-socials { display: flex; align-items: center; gap: 10px; }
    .nav-social {
      width: 30px; height: 30px; border: 1px solid var(--mid);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted); text-decoration: none; transition: all 0.2s;
    }
    .nav-social svg { width: 14px; height: 14px; fill: currentColor; }
    .nav-social:hover { color: var(--acid); border-color: var(--acid); }
    .nav-divider { width: 1px; height: 22px; background: var(--mid); }

    /* WhatsApp button (primary contact) */
    .nav-wa {
      display: flex; align-items: center; gap: 8px;
      font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
      text-transform: uppercase; font-weight: 700;
      color: #fff; background: var(--whatsapp);
      padding: 10px 18px; text-decoration: none; white-space: nowrap;
      transition: filter 0.2s, transform 0.2s;
    }
    .nav-wa svg { width: 16px; height: 16px; fill: #fff; }
    .nav-wa:hover { filter: brightness(1.08); transform: translateY(-1px); }

    .nav-cta {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--grad);
      padding: 11px 24px;
      text-decoration: none;
      cursor: pointer;
      border: none;
      font-weight: 700;
      transition: filter 0.2s, transform 0.2s;
    }
    .nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }

    /* ── WhatsApp Float (primary contact channel) ── */
    .wa-float {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 1500;
      display: flex; align-items: center; gap: 0;
      background: var(--whatsapp);
      color: #fff;
      border-radius: 50px;
      padding: 0;
      box-shadow: 0 8px 30px rgba(37,211,102,0.45);
      cursor: pointer;
      text-decoration: none;
      overflow: hidden;
      transition: padding 0.35s var(--transition), box-shadow 0.3s;
    }
    .wa-float svg { width: 30px; height: 30px; margin: 15px; flex-shrink: 0; fill: #fff; }
    .wa-float .wa-label {
      max-width: 0;
      opacity: 0;
      font-family: var(--font-body);
      font-size: 14px; font-weight: 700;
      white-space: nowrap;
      transition: max-width 0.35s var(--transition), opacity 0.25s, padding 0.35s;
      overflow: hidden;
    }
    .wa-float:hover { box-shadow: 0 10px 40px rgba(37,211,102,0.65); }
    .wa-float:hover .wa-label { max-width: 240px; opacity: 1; padding-right: 24px; }
    @keyframes waPulse {
      0% { box-shadow: 0 8px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
      70% { box-shadow: 0 8px 30px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
      100% { box-shadow: 0 8px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
    }
    .wa-float { animation: waPulse 2.6s infinite; }

    /* ── Hamburger ── */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }
    .mobile-menu {
      display: none;
      position: fixed; inset: 0;
      background: var(--black);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu { overflow-y: auto; gap: 18px; padding: 80px 24px 40px; }
    .mobile-menu a {
      font-family: var(--font-display);
      font-size: 40px;
      line-height: 1;
      color: var(--white);
      text-decoration: none;
      cursor: pointer;
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--acid); }
    .mobile-menu .m-label {
      font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
      color: var(--muted); text-transform: uppercase; margin-top: 8px;
    }
    .mobile-menu .mobile-sub {
      font-family: var(--font-body); font-size: 18px; font-weight: 500;
      color: var(--muted);
    }
    .mobile-menu .mobile-sub:hover { color: var(--acid); }
    .mobile-close {
      position: absolute; top: 24px; right: 48px;
      font-family: var(--font-mono); font-size: 11px;
      color: var(--muted); cursor: pointer; letter-spacing: 0.1em;
    }

    /* ── Lead Modal ── */
    .modal-overlay {
      position: fixed; inset: 0;
      background: rgba(3,5,6,0.82);
      backdrop-filter: blur(8px);
      z-index: 2000;
      display: flex; align-items: center; justify-content: center;
      padding: 24px;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .modal-overlay.open { opacity: 1; pointer-events: auto; }
    .modal {
      background: var(--gray);
      border: 1px solid var(--mid);
      width: 100%; max-width: 920px;
      max-height: 92vh; overflow: hidden;
      display: grid; grid-template-columns: 1fr 1fr;
      position: relative;
      transform: translateY(24px) scale(0.98);
      transition: transform 0.4s var(--transition);
    }
    .modal-overlay.open .modal { transform: translateY(0) scale(1); }
    .modal.success-mode { grid-template-columns: 1fr; }
    .modal-close {
      position: absolute; top: 18px; right: 20px;
      width: 34px; height: 34px;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid var(--mid);
      color: var(--muted); cursor: pointer;
      font-size: 16px; z-index: 3;
      transition: all 0.2s;
    }
    .modal-close:hover { border-color: var(--acid); color: var(--acid); }

    .modal-aside {
      background: linear-gradient(150deg, rgba(0,207,255,0.12), rgba(0,224,198,0.04));
      padding: 48px 40px;
      display: flex; flex-direction: column; justify-content: space-between;
      border-right: 1px solid var(--mid);
    }
    .modal-aside .tag { margin-bottom: 20px; }
    .modal-aside h3 {
      font-family: var(--font-display);
      font-size: 44px; line-height: 0.95;
      color: var(--white); margin-bottom: 16px;
    }
    .modal-aside h3 em { font-style: normal; color: var(--acid); }
    .modal-aside p { font-size: 14px; color: var(--muted); line-height: 1.6; }
    .modal-trust { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
    .modal-trust-item {
      display: flex; align-items: center; gap: 12px;
      font-size: 13px; color: var(--white);
    }
    .modal-trust-item::before {
      content: '✓';
      width: 20px; height: 20px; flex-shrink: 0;
      background: var(--grad); color: var(--black);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 700;
    }

    .modal-form { padding: 48px 40px; overflow-y: auto; }
    .modal-form h4 {
      font-family: var(--font-display);
      font-size: 26px; color: var(--white); margin-bottom: 6px;
    }
    .modal-form .form-sub {
      font-size: 13px; color: var(--muted); margin-bottom: 28px;
    }
    .field { margin-bottom: 18px; }
    .field label {
      display: block;
      font-family: var(--font-mono);
      font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--muted); margin-bottom: 8px;
    }
    .field input, .field select, .field textarea {
      width: 100%;
      background: var(--black);
      border: 1px solid var(--mid);
      color: var(--white);
      padding: 13px 14px;
      font-family: var(--font-body);
      font-size: 14px;
      transition: border-color 0.2s;
      outline: none;
    }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--acid); }
    .field textarea { resize: vertical; min-height: 80px; }
    .field select { cursor: pointer; appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236f7e87' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center;
    }
    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-submit {
      width: 100%;
      background: var(--grad);
      color: var(--black);
      border: none;
      padding: 16px;
      font-family: var(--font-mono);
      font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
      font-weight: 700;
      cursor: pointer;
      margin-top: 8px;
      transition: filter 0.2s, transform 0.2s;
    }
    .form-submit:hover { filter: brightness(1.1); transform: translateY(-2px); }
    .form-note { font-size: 11px; color: var(--muted); margin-top: 14px; text-align: center; }

    .form-success {
      display: none;
      flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 60px 40px; height: 100%;
    }
    .form-success.show { display: flex; }
    .success-icon {
      width: 64px; height: 64px;
      background: var(--grad); color: var(--black);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 30px; margin-bottom: 24px;
    }
    .form-success h4 { font-family: var(--font-display); font-size: 32px; color: var(--white); margin-bottom: 12px; }
    .form-success p { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 320px; }

    /* ── Shared Utilities ── */
    .container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
    .tag {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--acid);
      border: 1px solid rgba(200,255,0,0.3);
      padding: 5px 12px;
      margin-bottom: 24px;
    }
    .section-num {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.1em;
    }

    /* Placeholder image block */
    .ph {
      background: var(--gray);
      border: 1px dashed var(--mid);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column;
      gap: 8px;
      color: var(--muted);
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      position: relative;
      overflow: hidden;
    }
    .ph::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.015) 10px,
        rgba(255,255,255,0.015) 11px
      );
    }
    .ph-icon { font-size: 24px; opacity: 0.4; }

    /* Divider */
    .divider {
      width: 100%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--mid), transparent);
      margin: 0;
    }

    /* ─────────────────────────────────────────
       HOME PAGE
    ───────────────────────────────────────── */
    #page-home { padding-top: 80px; }

    /* Hero */
    .hero {
      min-height: calc(100vh - 80px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      position: relative;
    }
    .hero-left {
      padding: 80px 48px 80px 48px;
      display: flex; flex-direction: column; justify-content: center;
      border-right: 1px solid var(--mid);
    }
    .hero-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--acid);
      margin-bottom: 28px;
      display: flex; align-items: center; gap: 12px;
    }
    .hero-eyebrow::before {
      content: ''; display: block;
      width: 32px; height: 1px; background: var(--acid);
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(72px, 8vw, 120px);
      line-height: 0.92;
      letter-spacing: 0.01em;
      color: var(--white);
      margin-bottom: 32px;
    }
    .hero-title em {
      font-style: normal;
      color: transparent;
      -webkit-text-stroke: 1px var(--acid);
    }
    .hero-desc {
      font-size: 17px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 420px;
      margin-bottom: 48px;
      font-weight: 300;
    }
    .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--acid);
      padding: 16px 36px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
    .btn-outline {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white);
      background: transparent;
      padding: 16px 36px;
      border: 1px solid var(--mid);
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s, transform 0.2s;
      display: inline-block;
    }
    .btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }

    .hero-right {
      position: relative;
      overflow: hidden;
    }
    .hero-ph {
      width: 100%; height: 100%;
      min-height: 600px;
    }
    .hero-badge {
      position: absolute;
      bottom: 40px; left: 40px;
      background: var(--black);
      border: 1px solid var(--mid);
      padding: 20px 28px;
      backdrop-filter: blur(8px);
    }
    .hero-badge-num {
      font-family: var(--font-display);
      font-size: 48px;
      line-height: 1;
      color: var(--acid);
    }
    .hero-badge-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 4px;
    }

    /* Stats Bar */
    .stats-bar {
      border-top: 1px solid var(--mid);
      border-bottom: 1px solid var(--mid);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .stat-item {
      padding: 32px 40px;
      border-right: 1px solid var(--mid);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: var(--font-display);
      font-size: 52px;
      line-height: 1;
      color: var(--white);
    }
    .stat-num span { color: var(--acid); }
    .stat-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 8px;
    }

    /* Services preview */
    .services-preview { padding: 96px 0; }
    .section-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 56px;
      padding: 0 48px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(42px, 5vw, 72px);
      line-height: 0.95;
      color: var(--white);
    }
    .section-title em { font-style: normal; color: var(--acid); }
    .see-all {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      cursor: pointer;
      text-decoration: none;
      display: flex; align-items: center; gap: 8px;
      transition: color 0.2s;
      white-space: nowrap;
      padding-bottom: 4px;
    }
    .see-all:hover { color: var(--acid); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      border-top: 1px solid var(--mid);
    }
    .services-grid.svc-pillars { grid-template-columns: repeat(4, 1fr); }
    .service-card {
      padding: 40px 32px;
      border-right: 1px solid var(--mid);
      border-bottom: 1px solid var(--mid);
      cursor: pointer;
      transition: background 0.3s;
      position: relative;
      overflow: hidden;
    }
    .service-card:last-child { border-right: none; }
    .service-card::before {
      content: '';
      position: absolute; inset: 0;
      background: var(--acid);
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
      z-index: 0;
    }
    .service-card:hover::before { transform: translateY(0); }
    .service-card:hover .sc-num,
    .service-card:hover .sc-title,
    .service-card:hover .sc-desc { color: var(--black); }
    .service-card > * { position: relative; z-index: 1; }
    .sc-num {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 0.1em;
      margin-bottom: 40px;
      transition: color 0.3s;
    }
    .sc-icon {
      width: 40px; height: 40px;
      margin-bottom: 20px;
      opacity: 0.6;
    }
    .sc-title {
      font-family: var(--font-display);
      font-size: 28px;
      color: var(--white);
      margin-bottom: 12px;
      transition: color 0.3s;
    }
    .sc-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
      transition: color 0.3s;
    }

    /* Client Logos Bar */
    .logos-bar {
      border-bottom: 1px solid var(--mid);
      padding: 40px 48px;
    }
    .logos-label {
      font-family: var(--font-mono);
      font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--muted); text-align: center; margin-bottom: 28px;
    }
    .logos-track {
      display: flex; align-items: center; justify-content: center;
      gap: 24px; flex-wrap: wrap;
    }
    .logo-item {
      height: 56px; min-width: 130px; flex: 1; max-width: 170px;
      background: var(--gray);
      border: 1px dashed var(--mid);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em;
      color: var(--muted); text-transform: uppercase;
      transition: border-color 0.3s, color 0.3s;
    }
    .logo-item:hover { border-color: var(--acid); color: var(--white); }

    /* Testimonials */
    .testimonials { padding: 96px 0; }
    .testi-grid {
      padding: 0 48px;
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
      margin-top: 56px;
    }
    .testi-card {
      border: 1px solid var(--mid);
      padding: 36px 32px;
      display: flex; flex-direction: column; gap: 24px;
      transition: border-color 0.3s, transform 0.3s;
      background: linear-gradient(160deg, rgba(0,207,255,0.03), transparent);
    }
    .testi-card:hover { border-color: var(--acid); transform: translateY(-4px); }
    .testi-stars { color: var(--acid); font-size: 15px; letter-spacing: 3px; }
    .testi-quote { font-size: 15px; line-height: 1.7; color: var(--white); font-weight: 300; flex: 1; }
    .testi-author { display: flex; align-items: center; gap: 14px; }
    .testi-avatar {
      width: 46px; height: 46px; border-radius: 50%;
      background: var(--gray); border: 1px dashed var(--mid);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-mono); font-size: 8px; color: var(--muted);
      flex-shrink: 0; text-align: center; line-height: 1.1;
    }
    .testi-name { font-size: 14px; font-weight: 600; color: var(--white); }
    .testi-role { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.06em; margin-top: 2px; }
    .testi-result {
      margin-top: 4px;
      font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
      color: var(--acid); text-transform: uppercase;
    }

    /* Why us */
    .why-us { padding: 96px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .why-ph { height: 520px; border-radius: var(--radius); }
    .why-content { }
    .why-items { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
    .why-item {
      padding: 24px 0;
      border-bottom: 1px solid var(--mid);
      display: flex; gap: 20px; align-items: flex-start;
    }
    .why-item:first-child { border-top: 1px solid var(--mid); }
    .why-n {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--acid);
      letter-spacing: 0.1em;
      min-width: 28px;
      padding-top: 2px;
    }
    .why-text h4 { font-size: 16px; font-weight: 500; margin-bottom: 6px; }
    .why-text p { font-size: 14px; color: var(--muted); line-height: 1.6; }

    /* Portfolio preview */
    .portfolio-preview { padding: 96px 0; }
    .port-grid {
      padding: 0 48px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
    }
    .port-card {
      position: relative; overflow: hidden; cursor: pointer;
      aspect-ratio: 4/3;
    }
    .port-ph { width: 100%; height: 100%; }
    .port-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex; align-items: flex-end; padding: 24px;
    }
    .port-card:hover .port-overlay { opacity: 1; }
    .port-info { }
    .port-cat {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--acid);
      margin-bottom: 4px;
    }
    .port-name { font-family: var(--font-display); font-size: 24px; color: var(--white); }

    /* Social Media Presence */
    .social-section { padding: 96px 0; border-top: 1px solid var(--mid); }
    .social-feed {
      padding: 0 48px; margin-top: 56px;
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    }
    .social-post {
      position: relative; aspect-ratio: 1/1; overflow: hidden;
      border: 1px solid var(--mid); cursor: pointer;
    }
    .social-post .ph { width: 100%; height: 100%; }
    .social-post-overlay {
      position: absolute; inset: 0; opacity: 0;
      background: linear-gradient(to top, rgba(5,7,10,0.92), transparent 70%);
      display: flex; flex-direction: column; justify-content: flex-end; padding: 18px;
      transition: opacity 0.3s;
    }
    .social-post:hover .social-post-overlay { opacity: 1; }
    .social-post-platform { display: flex; align-items: center; gap: 8px; color: var(--acid); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
    .social-post-platform svg { width: 14px; height: 14px; fill: currentColor; }
    .social-post-meta { font-size: 12px; color: var(--white); }
    .social-handles { padding: 0 48px; margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
    .social-handle {
      display: flex; align-items: center; gap: 10px;
      border: 1px solid var(--mid); padding: 12px 20px; text-decoration: none;
      color: var(--white); transition: all 0.2s;
    }
    .social-handle svg { width: 18px; height: 18px; fill: currentColor; color: var(--muted); transition: color 0.2s; }
    .social-handle:hover { border-color: var(--acid); }
    .social-handle:hover svg { color: var(--acid); }
    .social-handle b { font-size: 13px; font-weight: 600; }
    .social-handle span { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }

    /* CTA section */
    .cta-section {
      margin: 0 48px 96px;
      background: var(--acid);
      padding: 80px 64px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 40px;
    }
    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 64px);
      color: var(--black);
      line-height: 0.95;
    }
    .btn-dark {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--black);
      padding: 18px 40px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.2s;
      display: inline-block;
    }
    .btn-dark:hover { background: var(--orange); }

    /* Old per-page footers — replaced by single global footer */
    .page footer { display: none !important; }
    .footer-logo { display: flex; align-items: center; }
    .footer-logo img { height: 30px; width: auto; display: block; }

    /* ── Global Site Footer ── */
    .site-footer { border-top: 1px solid var(--mid); background: var(--bg-1); }
    /* Secondary CTA band */
    .footer-cta {
      padding: 64px 48px; border-bottom: 1px solid var(--mid);
      display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
    }
    .footer-cta-title { font-family: var(--font-display); font-size: clamp(32px,4vw,52px); line-height: 0.95; color: var(--white); }
    .footer-cta-title em { font-style: normal; color: var(--acid); }
    .footer-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .footer-cta-wa {
      display: flex; align-items: center; gap: 10px; background: var(--whatsapp); color: #fff;
      font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
      padding: 16px 28px; text-decoration: none; transition: filter 0.2s, transform 0.2s;
    }
    .footer-cta-wa svg { width: 18px; height: 18px; fill: #fff; }
    .footer-cta-wa:hover { filter: brightness(1.08); transform: translateY(-2px); }

    /* Main footer columns */
    .footer-main {
      padding: 64px 48px; display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px;
    }
    .footer-brand .footer-logo img { height: 34px; margin-bottom: 20px; }
    .footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 320px; margin-bottom: 24px; }
    .footer-socials { display: flex; gap: 10px; }
    .footer-social {
      width: 38px; height: 38px; border: 1px solid var(--mid);
      display: flex; align-items: center; justify-content: center; color: var(--muted);
      text-decoration: none; transition: all 0.2s;
    }
    .footer-social svg { width: 16px; height: 16px; fill: currentColor; }
    .footer-social:hover { color: var(--acid); border-color: var(--acid); }
    .footer-col h4 {
      font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--faint); margin-bottom: 20px;
    }
    .footer-col a, .footer-col .fc-item {
      display: block; font-size: 14px; color: var(--muted); text-decoration: none;
      margin-bottom: 12px; cursor: pointer; transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--acid); }
    .footer-col .fc-item { cursor: default; }
    .footer-col .fc-item b { color: var(--white); font-weight: 500; }
    /* Bottom bar */
    .footer-bottom {
      padding: 24px 48px; border-top: 1px solid var(--mid);
      display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
    }
    .footer-bottom-copy { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; color: var(--faint); }
    .footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
    .footer-legal a { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); text-decoration: none; cursor: pointer; transition: color 0.2s; }
    .footer-legal a:hover { color: var(--acid); }

    /* ─────────────────────────────────────────
       SERVICES PAGE (shared layout)
    ───────────────────────────────────────── */
    .service-page { padding-top: 80px; }

    .service-hero {
      min-height: 60vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 1px solid var(--mid);
    }
    .sh-left {
      padding: 80px 48px;
      border-right: 1px solid var(--mid);
      display: flex; flex-direction: column; justify-content: flex-end;
    }
    .sh-number {
      font-family: var(--font-display);
      font-size: 200px;
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255,255,255,0.08);
      position: absolute;
      top: 80px; right: 48px;
      pointer-events: none;
    }
    .sh-right { position: relative; overflow: hidden; }
    .sh-ph { width: 100%; height: 100%; min-height: 400px; }
    .service-title {
      font-family: var(--font-display);
      font-size: clamp(64px, 8vw, 110px);
      line-height: 0.92;
      color: var(--white);
      margin: 16px 0 28px;
    }
    .service-title em { font-style: normal; color: var(--acid); }
    .service-desc-hero {
      font-size: 17px;
      color: var(--muted);
      max-width: 480px;
      line-height: 1.7;
      font-weight: 300;
    }

    /* Service Results Bar */
    .results-bar {
      display: grid; grid-template-columns: repeat(4, 1fr);
      border-bottom: 1px solid var(--mid);
    }
    .result-item {
      padding: 44px 36px; border-right: 1px solid var(--mid);
      text-align: center;
    }
    .result-item:last-child { border-right: none; }
    .result-num {
      font-family: var(--font-display); font-size: 60px; line-height: 1;
      background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    }
    .result-label {
      font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--muted); margin-top: 12px;
    }

    /* Mini Case Study (in service pages) */
    .mini-case {
      margin: 0 48px 96px; border: 1px solid var(--mid);
      display: grid; grid-template-columns: 1fr 1fr;
    }
    .mini-case-ph { min-height: 360px; border-right: 1px solid var(--mid); }
    .mini-case-body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
    .mini-case-quote { font-size: 18px; line-height: 1.6; color: var(--white); font-weight: 300; margin: 20px 0 24px; }
    .mini-case-kpis { display: flex; gap: 32px; flex-wrap: wrap; }
    .mini-kpi-num { font-family: var(--font-display); font-size: 36px; color: var(--acid); line-height: 1; }
    .mini-kpi-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

    /* Process section */
    .process-section { padding: 96px 48px; }
    .process-steps {
      margin-top: 56px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--mid);
    }
    .process-step {
      padding: 40px 32px;
      border-right: 1px solid var(--mid);
      border-bottom: 1px solid var(--mid);
    }
    .process-step:last-child { border-right: none; }
    .ps-num {
      font-family: var(--font-display);
      font-size: 56px;
      color: var(--acid);
      line-height: 1;
      margin-bottom: 20px;
    }
    .ps-title { font-size: 16px; font-weight: 500; margin-bottom: 10px; }
    .ps-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* Features */
    .features-section {
      padding: 0 48px 96px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .features-ph { height: 480px; }
    .features-list { display: flex; flex-direction: column; gap: 0; }
    .feature-item {
      padding: 24px 0;
      border-bottom: 1px solid var(--mid);
      display: flex; justify-content: space-between; align-items: center;
    }
    .feature-item:first-child { border-top: 1px solid var(--mid); }
    .fi-name { font-size: 15px; font-weight: 500; }
    .fi-check {
      width: 20px; height: 20px;
      background: var(--acid);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .fi-check::after { content: '✓'; font-size: 11px; color: var(--black); font-weight: 700; }

    /* Pricing tiers */
    .pricing-section { padding: 0 48px 96px; }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid var(--mid);
      margin-top: 56px;
    }
    .pricing-card {
      padding: 48px 36px;
      border-right: 1px solid var(--mid);
      position: relative;
    }
    .pricing-card:last-child { border-right: none; }
    .pricing-card.featured { background: var(--acid); }
    .pricing-card.featured .pc-name,
    .pricing-card.featured .pc-price,
    .pricing-card.featured .pc-feat { color: var(--black); }
    .pricing-card.featured .pc-tag { background: var(--black); color: var(--acid); }
    .pc-tag {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--acid);
      color: var(--black);
      padding: 4px 10px;
      display: inline-block;
      margin-bottom: 20px;
    }
    .pc-name {
      font-family: var(--font-display);
      font-size: 32px;
      color: var(--white);
      margin-bottom: 16px;
    }
    .pc-price {
      font-family: var(--font-display);
      font-size: 56px;
      line-height: 1;
      color: var(--white);
      margin-bottom: 8px;
    }
    .pc-period {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 0.1em;
      margin-bottom: 32px;
    }
    .pc-feats { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
    .pc-feat {
      font-size: 13px;
      color: var(--muted);
      display: flex; gap: 10px; align-items: flex-start;
    }
    .pc-feat::before { content: '—'; color: var(--acid); flex-shrink: 0; }
    .pricing-card.featured .pc-feat::before { color: var(--black); }

    /* ─────────────────────────────────────────
       PORTFOLIO PAGE
    ───────────────────────────────────────── */
    #page-portfolio { padding-top: 80px; }
    .port-hero {
      padding: 80px 48px;
      border-bottom: 1px solid var(--mid);
    }
    .port-hero-title {
      font-family: var(--font-display);
      font-size: clamp(72px, 9vw, 130px);
      line-height: 0.9;
      color: var(--white);
    }
    .port-hero-title em { font-style: normal; -webkit-text-stroke: 1px var(--acid); color: transparent; }
    .port-hero-sub {
      font-size: 17px;
      color: var(--muted);
      max-width: 600px;
      margin-top: 24px;
      font-weight: 300;
      line-height: 1.7;
    }

    /* Filter bar */
    .filter-bar {
      padding: 24px 48px;
      border-bottom: 1px solid var(--mid);
      display: flex; gap: 8px; flex-wrap: wrap;
    }
    .filter-btn {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      background: none;
      border: 1px solid var(--mid);
      padding: 8px 18px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .filter-btn:hover, .filter-btn.active { color: var(--black); background: var(--acid); border-color: var(--acid); }

    /* Portfolio grid */
    .port-main-grid {
      padding: 48px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .port-main-card {
      position: relative; overflow: hidden; cursor: pointer;
      border: 1px solid var(--mid);
      transition: border-color 0.3s;
    }
    .port-main-card:hover { border-color: var(--acid); }
    .port-main-card:first-child {
      grid-column: span 2;
      grid-row: span 1;
    }
    .pmc-ph {
      width: 100%;
      aspect-ratio: 16/9;
    }
    .port-main-card:first-child .pmc-ph { aspect-ratio: 21/9; }
    .pmc-info {
      padding: 20px 24px 24px;
      border-top: 1px solid var(--mid);
    }
    .pmc-cat {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--acid);
      margin-bottom: 6px;
    }
    .pmc-name { font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: 8px; }
    .pmc-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
    /* KPI strip on portfolio cards */
    .pmc-kpis { display: flex; gap: 24px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--mid); }
    .pmc-kpi-num { font-family: var(--font-display); font-size: 26px; line-height: 1;
      background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
    .pmc-kpi-label { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
    .pmc-view {
      display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
      font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--acid); transition: gap 0.2s;
    }
    .port-main-card:hover .pmc-view { gap: 14px; }

    /* ─────────────────────────────────────────
       CASE STUDY DETAIL PAGE
    ───────────────────────────────────────── */
    .cs-back {
      padding: 110px 48px 0;
      font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--muted); cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
      transition: color 0.2s;
    }
    .cs-back:hover { color: var(--acid); }
    .cs-hero { padding: 28px 48px 56px; border-bottom: 1px solid var(--mid); }
    .cs-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 24px; }
    .cs-meta-item { }
    .cs-meta-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
    .cs-meta-val { font-size: 14px; color: var(--white); margin-top: 4px; }
    .cs-banner-ph { height: 440px; margin: 0; }
    /* Big results */
    .cs-results {
      display: grid; grid-template-columns: repeat(4, 1fr);
      border-bottom: 1px solid var(--mid);
    }
    .cs-result { padding: 56px 36px; border-right: 1px solid var(--mid); text-align: center; }
    .cs-result:last-child { border-right: none; }
    .cs-result-num { font-family: var(--font-display); font-size: 72px; line-height: 1;
      background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
    .cs-result-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
    /* CSP body */
    .cs-body { padding: 96px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
    .cs-block h3 { font-family: var(--font-display); font-size: 32px; color: var(--white); margin-bottom: 16px; }
    .cs-block h3 em { font-style: normal; color: var(--acid); }
    .cs-block p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
    /* Before / After */
    .cs-ba { padding: 0 48px 96px; }
    .cs-ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
    .cs-ba-col { border: 1px solid var(--mid); padding: 36px 32px; }
    .cs-ba-col.after { background: linear-gradient(160deg, rgba(0,207,255,0.05), transparent); border-color: rgba(0,207,255,0.3); }
    .cs-ba-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
    .cs-ba-col.after .cs-ba-tag { color: var(--acid); }
    .cs-ba-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--mid); font-size: 14px; }
    .cs-ba-row:last-child { border-bottom: none; }
    .cs-ba-row span:first-child { color: var(--muted); }
    .cs-ba-row span:last-child { color: var(--white); font-weight: 600; }
    .cs-ba-col.after .cs-ba-row span:last-child { color: var(--acid); }

    /* ─────────────────────────────────────────
       GENERIC PAGE HERO (services/about/packages/contact)
    ───────────────────────────────────────── */
    .page-hero {
      padding: 130px 48px 64px;
      border-bottom: 1px solid var(--mid);
      position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: ''; position: absolute; top: -40%; right: -10%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(0,207,255,0.08), transparent 70%);
      pointer-events: none;
    }
    .page-hero-title {
      font-family: var(--font-display);
      font-size: clamp(60px, 8vw, 120px);
      line-height: 0.9; color: var(--white); position: relative;
    }
    .page-hero-title em { font-style: normal; -webkit-text-stroke: 1px var(--acid); color: transparent; }
    .page-hero-title em.fill { -webkit-text-stroke: 0; color: var(--acid); }
    .page-hero-sub {
      font-size: 17px; color: var(--muted); max-width: 560px;
      margin-top: 22px; font-weight: 300; line-height: 1.7; position: relative;
    }

    /* Services Hub */
    .svc-hub-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 0; border-top: 1px solid var(--mid); border-left: 1px solid var(--mid);
    }
    .svc-hub-card {
      border-right: 1px solid var(--mid); border-bottom: 1px solid var(--mid);
      padding: 48px 44px; cursor: pointer;
      display: flex; flex-direction: column; gap: 16px;
      transition: background 0.3s; position: relative; overflow: hidden;
    }
    .svc-hub-card::after {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
      background: var(--grad); transform: scaleY(0); transform-origin: top;
      transition: transform 0.4s var(--transition);
    }
    .svc-hub-card:hover { background: rgba(0,207,255,0.03); }
    .svc-hub-card:hover::after { transform: scaleY(1); }
    .svc-hub-num { font-family: var(--font-mono); font-size: 11px; color: var(--acid); letter-spacing: 0.1em; }
    .svc-hub-title { font-family: var(--font-display); font-size: 40px; color: var(--white); line-height: 1; }
    .svc-hub-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
    .svc-hub-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
    .svc-hub-tag {
      font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--muted); border: 1px solid var(--mid); padding: 5px 10px;
    }
    .svc-hub-link {
      font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--acid); margin-top: 6px; display: inline-flex; align-items: center; gap: 8px;
    }

    /* Service Pillars (unified offering) */
    .pillar {
      display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px;
      padding: 56px 48px; border-bottom: 1px solid var(--mid); align-items: start;
    }
    .pillar:first-of-type { border-top: 1px solid var(--mid); }
    .pillar-head { position: sticky; top: 100px; }
    .pillar-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--acid); }
    .pillar-title { font-family: var(--font-display); font-size: clamp(36px,4vw,52px); line-height: 0.95; color: var(--white); margin: 14px 0 16px; }
    .pillar-desc { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 340px; }
    .pillar-services { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--mid); border-left: 1px solid var(--mid); }
    .pillar-svc {
      border-right: 1px solid var(--mid); border-bottom: 1px solid var(--mid);
      padding: 24px 24px; cursor: pointer; transition: background 0.25s;
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
    }
    .pillar-svc:hover { background: rgba(0,207,255,0.04); }
    .pillar-svc-name { font-size: 15px; font-weight: 500; color: var(--white); }
    .pillar-svc-arrow { color: var(--acid); font-size: 13px; opacity: 0; transform: translateX(-6px); transition: all 0.25s; }
    .pillar-svc:hover .pillar-svc-arrow { opacity: 1; transform: translateX(0); }

    /* About */
    .about-story { padding: 96px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-story-ph { height: 480px; }
    .about-lead { font-size: 22px; line-height: 1.6; color: var(--white); font-weight: 300; margin-bottom: 24px; }
    .about-lead em { color: var(--acid); font-style: normal; }
    .about-body p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
    .team-grid {
      padding: 0 48px 96px;
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px;
    }
    .team-card { cursor: default; }
    .team-ph { aspect-ratio: 3/4; margin-bottom: 16px; }
    .team-name { font-family: var(--font-display); font-size: 22px; color: var(--white); }
    .team-role { font-family: var(--font-mono); font-size: 10px; color: var(--acid); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
    .partners-bar {
      padding: 56px 48px; border-top: 1px solid var(--mid); border-bottom: 1px solid var(--mid);
      text-align: center;
    }
    .partners-track { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
    .partner-badge {
      height: 70px; min-width: 150px; padding: 0 24px;
      background: var(--gray); border: 1px dashed var(--mid);
      display: flex; align-items: center; justify-content: center; gap: 10px;
      font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.08em;
    }

    /* Packages */
    .packages-wrap { padding: 80px 48px 40px; }
    .billing-note { text-align: center; font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 40px; }
    .addons-row {
      padding: 0 48px 96px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
    }
    .addon-card { border: 1px solid var(--mid); padding: 28px 26px; }
    .addon-card h4 { font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: 8px; }
    .addon-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
    .addon-price { font-family: var(--font-mono); font-size: 11px; color: var(--acid); margin-top: 12px; letter-spacing: 0.08em; }

    /* FAQ (shared) */
    .faq-section { padding: 0 48px 96px; max-width: 900px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--mid); }
    .faq-q {
      padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px;
      font-size: 16px; font-weight: 500; color: var(--white);
    }
    .faq-q .faq-icon { color: var(--acid); font-size: 22px; transition: transform 0.3s; flex-shrink: 0; }
    .faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
    .faq-a p { font-size: 14px; color: var(--muted); line-height: 1.7; }
    .faq-item.open .faq-a { max-height: 220px; padding-bottom: 24px; }

    /* Contact */
    .contact-grid { padding: 80px 48px 96px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; }
    .contact-info { display: flex; flex-direction: column; gap: 0; }
    /* Prominent WhatsApp primary contact card */
    .contact-wa-card {
      display: flex; align-items: center; gap: 16px;
      background: var(--whatsapp); color: #fff;
      padding: 22px 24px; text-decoration: none; margin-bottom: 28px;
      transition: filter 0.2s, transform 0.2s;
    }
    .contact-wa-card:hover { filter: brightness(1.06); transform: translateY(-2px); }
    .contact-wa-card svg { width: 34px; height: 34px; fill: #fff; flex-shrink: 0; }
    .contact-wa-card .cwa-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }
    .contact-wa-card .cwa-val { font-size: 17px; font-weight: 700; margin-top: 2px; }
    .contact-wa-card .cwa-tag { margin-left: auto; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(255,255,255,0.2); padding: 4px 10px; }
    .contact-method {
      display: flex; gap: 18px; align-items: flex-start;
      padding: 24px 0; border-bottom: 1px solid var(--mid);
    }
    .contact-method:first-child { border-top: 1px solid var(--mid); }
    .contact-icn {
      width: 44px; height: 44px; flex-shrink: 0;
      border: 1px solid var(--mid); display: flex; align-items: center; justify-content: center;
      color: var(--acid); font-size: 18px;
    }
    .contact-method .cm-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
    .contact-method .cm-value { font-size: 16px; color: var(--white); }
    .contact-method a.cm-value { text-decoration: none; transition: color 0.2s; }
    .contact-method a.cm-value:hover { color: var(--acid); }
    .contact-socials { display: flex; gap: 12px; margin-top: 28px; }
    .contact-social {
      width: 42px; height: 42px; border: 1px solid var(--mid);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted); cursor: pointer; transition: all 0.2s; text-decoration: none;
      font-family: var(--font-mono); font-size: 10px;
    }
    .contact-social svg { fill: currentColor; }
    .contact-social:hover { border-color: var(--acid); color: var(--acid); }
    .contact-form-box { border: 1px solid var(--mid); padding: 44px 40px; background: linear-gradient(160deg, rgba(0,207,255,0.03), transparent); }
    .contact-form-box h3 { font-family: var(--font-display); font-size: 32px; color: var(--white); margin-bottom: 8px; }
    .contact-form-box .form-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
    .contact-map-ph { height: 340px; margin: 0 48px 96px; }

    /* ─────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────── */
    @media (max-width: 1200px) {
      .nav-socials, .nav-divider { display: none; }
    }
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .stats-bar { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .service-card:nth-child(2) { border-right: none; }
      .service-card:nth-child(3) { border-right: 1px solid var(--mid); }
      .service-card:last-child { border-right: none; }
      .port-grid { grid-template-columns: repeat(2, 1fr); }
      .cta-section { grid-template-columns: 1fr; }
      .service-hero { grid-template-columns: 1fr; }
      .sh-right { display: none; }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .features-section { grid-template-columns: 1fr; }
      .features-ph { display: none; }
      .pricing-grid { grid-template-columns: 1fr; }
      .pricing-card { border-right: none; border-bottom: 1px solid var(--mid); }
      .port-main-grid { grid-template-columns: repeat(2, 1fr); }
      .port-main-card:first-child { grid-column: span 2; }
      footer { grid-template-columns: 1fr; text-align: center; }
      .footer-links { justify-content: center; }
      .why-us { grid-template-columns: 1fr; }
      .why-ph { display: none; }
      .testi-grid { grid-template-columns: 1fr; }
      .svc-hub-grid { grid-template-columns: 1fr; }
      .pillar { grid-template-columns: 1fr; gap: 28px; }
      .pillar-head { position: static; }
      .social-feed { grid-template-columns: repeat(2, 1fr); }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
      .footer-brand { grid-column: span 2; }
      .about-story { grid-template-columns: 1fr; }
      .about-story-ph { display: none; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .addons-row { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: 48px; }
      .results-bar { grid-template-columns: repeat(2, 1fr); }
      .result-item:nth-child(2) { border-right: none; }
      .mini-case { grid-template-columns: 1fr; }
      .mini-case-ph { border-right: none; border-bottom: 1px solid var(--mid); min-height: 240px; }
      .cs-results { grid-template-columns: repeat(2, 1fr); }
      .cs-result:nth-child(2) { border-right: none; }
      .cs-result { border-bottom: 1px solid var(--mid); }
      .cs-body { grid-template-columns: 1fr; gap: 48px; }
    }

    @media (max-width: 768px) {
      nav { padding: 16px 24px; }
      .nav-links, .nav-right { display: none; }
      .hamburger { display: flex; }
      .container { padding: 0 24px; }
      .hero-left { padding: 60px 24px; }
      .stats-bar { grid-template-columns: 1fr 1fr; }
      .stat-item { padding: 24px; }
      .services-grid { grid-template-columns: 1fr; }
      .service-card { border-right: none; }
      .section-header { flex-direction: column; align-items: flex-start; gap: 16px; padding: 0 24px; }
      .port-grid { grid-template-columns: 1fr; padding: 0 24px; }
      .cta-section { margin: 0 24px 64px; padding: 48px 32px; }
      .services-preview, .portfolio-preview, .testimonials { padding: 64px 0; }
      .testi-grid { grid-template-columns: 1fr; padding: 0 24px; }
      .logos-bar { padding: 32px 24px; }
      .process-steps { grid-template-columns: 1fr; }
      .sh-left { padding: 60px 24px; }
      .process-section, .features-section, .pricing-section, .port-hero, .filter-bar, .port-main-grid { padding-left: 24px; padding-right: 24px; }
      .port-main-grid { grid-template-columns: 1fr; }
      .port-main-card:first-child { grid-column: span 1; }
      footer { padding: 32px 24px; gap: 24px; }
      #cursor, #cursor-ring { display: none; }
      body { cursor: auto; }
      .why-us { padding: 64px 24px; }
      .page-hero { padding: 110px 24px 48px; }
      .svc-hub-card { padding: 36px 24px; }
      .about-story { padding: 64px 24px; }
      .team-grid { grid-template-columns: 1fr 1fr; padding: 0 24px 64px; }
      .partners-bar { padding: 48px 24px; }
      .packages-wrap { padding: 48px 24px 24px; }
      .addons-row { padding: 0 24px 64px; }
      .faq-section { padding: 0 24px 64px; }
      .contact-grid { padding: 48px 24px 64px; }
      .contact-form-box { padding: 32px 24px; }
      .contact-map-ph { margin: 0 24px 64px; }
      .field-row { grid-template-columns: 1fr; }
      .cta-section[style] { margin: 0 24px 64px !important; }
      .results-bar { grid-template-columns: 1fr 1fr; }
      .result-item { padding: 28px 16px; border-bottom: 1px solid var(--mid); }
      .result-num { font-size: 42px; }
      .mini-case { margin: 0 24px 64px; }
      .mini-case-body { padding: 32px 24px; }
      .cs-hero { padding: 24px 24px 40px; }
      .cs-back { padding: 100px 24px 0; }
      .cs-result { padding: 36px 16px; }
      .cs-result-num { font-size: 48px; }
      .cs-body { padding: 64px 24px; }
      .cs-ba { padding: 0 24px 64px; }
      .cs-ba-grid { grid-template-columns: 1fr; }
      .cs-banner-ph { height: 240px; }
      .pmc-kpis { gap: 16px; }
      .pillar { padding: 40px 24px; }
      .pillar-services { grid-template-columns: 1fr; }
      .svc-pillars { grid-template-columns: 1fr !important; }
      .social-section { padding: 64px 0; }
      .social-feed { grid-template-columns: 1fr 1fr; padding: 0 24px; }
      .social-handles { padding: 0 24px; }
      .footer-cta { padding: 40px 24px; }
      .footer-main { grid-template-columns: 1fr; padding: 48px 24px; }
      .footer-brand { grid-column: span 1; }
      .footer-bottom { padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
      .modal { grid-template-columns: 1fr; max-height: 94vh; overflow-y: auto; }
      .modal-aside { display: none !important; }
      .modal-form { padding: 40px 24px; }
    }