/* ── PRELOADER ── */
    #preloader {
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: #000000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }

    #preloader.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .preloader-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.8rem;
    }

    .preloader-spinner {
      width: 48px;
      height: 48px;
      border: 3px solid rgba(255, 255, 255, 0.08);
      border-top-color: #0ea5e9;
      border-radius: 50%;
      animation: preloaderSpin 0.8s linear infinite;
    }

    .preloader-brand {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.02em;
    }

    .preloader-text {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.4);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      animation: preloaderPulse 1.5s ease infinite;
    }

    @keyframes preloaderSpin {
      to { transform: rotate(360deg); }
    }

    @keyframes preloaderPulse {
      0%, 100% { opacity: 0.4; }
      50% { opacity: 1; }
    }

/* ── RESET & BASE ── */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    :root {
      --bg: #000000;
      --bg2: #09090b;
      --surface: #18181b;
      --surface2: #27272a;
      --border: rgba(255, 255, 255, 0.1);
      --border2: rgba(255, 255, 255, 0.2);
      --accent: #0ea5e9;
      --accent2: #6366f1;
      --accent3: #8b5cf6;
      --accent-glow: rgba(14, 165, 233, 0.5);
      --text: #ffffff;
      --text-gradient: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
      --muted: #a1a1aa;
      --muted2: #71717a;
      --card: rgba(24, 24, 27, 0.6);
      --red: #ef4444;
      --green: #22c55e;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: clip;
      -webkit-overflow-scrolling: touch;
      line-height: 1.6;
      min-height: 100vh
    }

    body.perf-lite {
      scroll-behavior: auto;
    }

    /* Decorative noise is disabled by default because a fixed full-screen layer
       creates measurable paint cost during scroll on low-end devices. */
    body::before {
      content: none;
    }
    @media (max-width: 768px) {
      
      html { scroll-behavior: auto !important; }
      
      /* Restore dark contrast by shrinking giant glows */
      .hero-glow1 { width: 300px !important; height: 300px !important; top: -5% !important; left: -20% !important; filter: blur(50px) !important; }
      .hero-glow2 { width: 250px !important; height: 250px !important; bottom: -5% !important; right: -10% !important; filter: blur(50px) !important; }
    }

    @media (max-width: 1024px) {
      .marquee-track {
        animation-duration: 34s;
      }
    }

    /* ── PAGE SYSTEM ── */
    .page {
      display: none
    }

    .page.active {
      display: block
    }

    /* ── NAV ── */
    #mainNav {
      position: fixed;
      top: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 1100px;
      z-index: 500;
      padding: 0.1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(8, 12, 18, 0.7);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 100px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    #mainNav:hover {
      border-color: rgba(255, 255, 255, 0.15);
      background: rgba(8, 12, 18, 0.85);
    }

    /* Hide nav on admin page */
    #page-admin.active ~ #mainNav,
    #page-admin.active #mainNav,
    body:has(#page-admin.active) #mainNav {
      display: none !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }

    .logo {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 1.25rem;
      letter-spacing: -0.02em;
      color: #fff;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.1em;
    }

    /* Make header logo look like a polished "brand tile" */
    #mainNav .logo {
      padding: 0;
      border-radius: 12px;
      background: transparent;
      border: none;
      box-shadow: none;
      gap: 0;
    }

    #mainNav .logo img {
      width: auto;
      display: block;
      height: 65px;
      max-height: 65px;
      max-width: 270px;
      transform: scale(1.077);
      transform-origin: left center;
      image-rendering: auto;
    }

    .logo .accent {
      color: var(--accent)
    }

    .nav-links {
      display: flex;
      gap: 0.3rem;
      list-style: none;
      align-items: center;
    }

    .nav-links li a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      cursor: pointer;
      transition: color 0.3s, background 0.3s;
      background: none;
      border: none;
      font-family: 'Inter', sans-serif;
      padding: 0.3rem 0.85rem;
      border-radius: 100px;
    }

    .nav-links li a:hover {
      color: var(--accent);
      background: rgba(14, 165, 233, 0.08);
    }

    .nav-links li a.nav-active {
      color: var(--accent);
      background: rgba(14, 165, 233, 0.1);
    }

    .nav-cta {
      padding: 0.4rem 1.1rem;
      background: var(--accent);
      color: var(--text) !important;
      font-weight: 700 !important;
      font-size: 0.82rem !important;
      border-radius: 100px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
      cursor: pointer;
      box-shadow: 0 4px 15px var(--accent-glow);
    }

    .nav-cta:hover {
      opacity: 0.9;
      transform: translateY(-2px) scale(1.02) !important;
      box-shadow: 0 6px 20px var(--accent-glow);
    }

    .nav-hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
      padding: 4px
    }

    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      transition: .3s
    }

    /* Hide mobile menu on desktop */
    .mobile-menu {
      display: none;
    }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .6rem;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 1rem;
      letter-spacing: .02em;
      text-decoration: none;
      transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 12px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
      color: #ffffff;
      padding: 1rem 2.2rem;
      border: none;
      font-weight: 600;
      box-shadow: 0 4px 20px 0 var(--accent-glow), inset 0 1px 1px rgba(255,255,255,0.3);
      text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px 0 var(--accent-glow), inset 0 1px 1px rgba(255,255,255,0.4);
      filter: brightness(1.1);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.03);
      color: var(--text);
      border: 1px solid var(--border);
      padding: 1rem 2.2rem;
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.4);
      transform: translateY(-2px);
    }

    .btn-sm {
      padding: .5rem 1.2rem;
      font-size: .82rem
    }

    .btn-danger {
      background: var(--red);
      color: #fff;
      clip-path: none
    }

    .btn-danger:hover {
      opacity: .85
    }

    .btn-ghost {
      background: transparent;
      color: var(--muted);
      border: 1px solid var(--border);
      clip-path: none;
      padding: .45rem 1rem;
      font-size: .8rem
    }

    .btn-ghost:hover {
      color: var(--accent);
      border-color: rgba(0, 229, 255, .3)
    }

    /* ── SECTION COMMONS ── */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem
    }

    .section-label::before {
      content: '';
      width: 22px;
      height: 1px;
      background: var(--accent)
    }

    h2.heading {
      font-family: 'Inter', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -.03em;
      margin-bottom: 1.2rem;
      background: var(--text-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .desc {
      color: var(--muted2);
      font-size: 1rem;
      line-height: 1.75;
      font-weight: 300
    }

    .reveal {
      opacity: 0;
      transform: translate3d(0, 20px, 0); /* Reduced distance for snappier feel */
      will-change: opacity, transform;
      transition: opacity .6s cubic-bezier(0.2, 0.8, 0.2, 1), transform .6s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

    body.perf-lite::before {
      display: none;
    }

    body.perf-lite .reveal {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
      will-change: auto !important;
    }

    /* ── TOAST ── */
    #toast {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      padding: .8rem 1.6rem;
      background: var(--accent);
      color: #000;
      font-weight: 700;
      font-size: .85rem;
      z-index: 9999;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%)
    }

    #toast.show {
      opacity: 1
    }

    /* ── MODAL ── */
    #modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .85);
      z-index: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
      backdrop-filter: blur(6px)
    }

    #modal.open {
      opacity: 1;
      pointer-events: all
    }

    .modal-box {
      background: var(--surface);
      border: 1px solid var(--border2);
      padding: 2rem;
      max-width: 92vw;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      width: 640px
    }

    .modal-close {
      position: absolute;
      top: .8rem;
      right: .8rem;
      background: none;
      border: none;
      color: var(--muted);
      font-size: 1.1rem;
      cursor: pointer;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color .2s
    }

    .modal-close:hover {
      color: var(--text)
    }

    #modalContent img,
    #modalContent video {
      width: 100%;
      max-height: 72vh;
      object-fit: contain;
      display: block
    }

    /* ═══════════════════════════════
       ANIMATIONS
       ═══════════════════════════════ */
    @keyframes pulse {
      0% { transform: scale(1); opacity: 0.4; }
      50% { transform: scale(1.4); opacity: 0; }
      100% { transform: scale(1); opacity: 0.4; }
    }

    /* ═══════════════════════════════
   HOME PAGE
═══════════════════════════════ */

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      text-align: left;
      padding: 8rem 6rem 5rem;
      position: relative;
      overflow: hidden;
      gap: 4rem;
    }
    
    .hero-content {
      flex: 1;
      max-width: 640px;
      z-index: 10;
    }

    .hero-visual {
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      width: 40%;
      max-width: 550px;
      height: 80vh;
      max-height: 750px;
      display: flex;
      justify-content: center;
      align-items: flex-end; /* Restored to match original */
      z-index: 5;
      opacity: 1;
      animation: fadeUp 1s 0.2s ease both;
      background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 40px;
      backdrop-filter: blur(25px);
      box-shadow: 
        0 40px 100px rgba(0,0,0,0.6),
        inset 0 1px 1px rgba(255,255,255,0.1);
      overflow: visible;
    }

    .hero-robot-shell,
    #spline-container {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    #spline-container {
      z-index: 2;
    }

    #spline-container.is-loading {
      background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.1), transparent 70%);
      animation: pulseGlow 2s infinite ease-in-out;
    }

    @keyframes pulseGlow {
      0%, 100% { opacity: 0.3; transform: scale(0.98); }
      50% { opacity: 0.6; transform: scale(1.02); }
    }

    .hero-robot-shell {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      z-index: 1;
      background:
        radial-gradient(circle at 50% 12%, rgba(14, 165, 233, 0.14), transparent 36%),
        linear-gradient(180deg, transparent 0%, rgba(14, 165, 233, 0.04) 100%);
    }

    /* Hide shell on desktop to satisfy "not seen at all" request */
    @media (min-width: 961px) {
      .hero-robot-shell {
        display: none !important;
      }
    }

    .hero-robot-core {
      position: relative;
      width: min(64%, 330px);
      aspect-ratio: 0.72;
      margin-bottom: 3%;
      filter: drop-shadow(0 30px 50px rgba(0,0,0,0.65));
    }

    .hero-robot-head,
    .hero-robot-body,
    .hero-robot-arm {
      position: absolute;
      background: linear-gradient(145deg, #1e293b 0%, #0f172a 40%, #020617 100%); /* Glossy dark finish */
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 
        inset 0 2px 4px rgba(255,255,255,0.1),
        0 10px 20px rgba(0,0,0,0.4);
    }

    /* Add a "shine" reflection to the robot parts */
    .hero-robot-head::before,
    .hero-robot-body::before {
      content: '';
      position: absolute;
      top: 5%;
      left: 10%;
      width: 80%;
      height: 30%;
      background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
      border-radius: 50% 50% 0 0;
      pointer-events: none;
    }

    .hero-robot-head {
      top: 2%;
      left: 28%;
      width: 44%;
      height: 24%;
      border-radius: 46% 46% 36% 36%;
    }

    .hero-robot-head::after {
      content: '';
      position: absolute;
      left: 50%;
      top: 34%;
      width: 36%;
      height: 9%;
      transform: translateX(-50%);
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
      box-shadow: 0 0 15px #0ea5e9;
      opacity: 0.8;
    }

    .hero-robot-body {
      left: 18%;
      bottom: 3%;
      width: 64%;
      height: 66%;
      border-radius: 44% 44% 18% 18%;
    }

    .hero-robot-body::before {
      content: '';
      position: absolute;
      inset: 16% 24% auto;
      height: 42%;
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(14,165,233,0.04));
    }

    .hero-robot-arm {
      top: 38%;
      width: 18%;
      height: 50%;
      border-radius: 999px;
      opacity: 0.82;
    }

    .hero-robot-arm-left {
      left: 2%;
      transform: rotate(18deg);
    }

    .hero-robot-arm-right {
      right: 2%;
      transform: rotate(-18deg);
    }

    .hero-robot-shell.is-loading {
      opacity: 0.45;
    }

    .hero-3d-load {
      position: absolute;
      right: 1rem;
      bottom: 1rem;
      z-index: 3;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50%;
      color: var(--text);
      background: rgba(6, 10, 18, 0.72);
      cursor: pointer;
      font: 700 0.78rem/1 'Inter', sans-serif;
    }

    .hero-3d-load:hover {
      border-color: rgba(14, 165, 233, 0.5);
      color: var(--accent);
    }
    
    .hero-btns, .hero-stats {
      justify-content: flex-start;
      margin-top: 2rem;
    }

    spline-viewer::part(logo) {
      display: none !important;
    }

    .hero-glow1 {
      position: absolute;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 60%);
      top: -20%;
      left: -10%;
      pointer-events: none;
      filter: blur(80px);
      will-change: transform;
    }

    .hero-glow2 {
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(129, 140, 248, 0.1) 0%, transparent 60%);
      bottom: -10%;
      right: 10%;
      pointer-events: none;
      filter: blur(80px);
      will-change: transform;
    }

    body.perf-lite #mainNav,
    body.perf-lite .hero-badge,
    body.perf-lite .hero-stats,
    body.perf-lite .roi-column,
    body.perf-lite .hero-visual,
    body.perf-lite #modal {
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
    }

    body.perf-lite .hero-glow1,
    body.perf-lite .hero-glow2,
    body.perf-lite .hero-grid {
      display: none !important;
    }

    body.perf-lite #mainNav,
    body.perf-lite .hm-card:hover,
    body.perf-lite .testi-card.has-image:hover {
      box-shadow: none !important;
      transform: none !important;
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), 
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 80px 80px;
      pointer-events: none;
      mask-image: radial-gradient(circle at center, black, transparent 80%);
      -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      padding: .4rem 1.2rem;
      border: 1px solid var(--border);
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      color: var(--text);
      font-size: .8rem;
      font-weight: 500;
      letter-spacing: .02em;
      margin-bottom: 2rem;
      animation: fadeUp .8s ease both;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .hero-badge-dot {
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--accent);
      animation: pulse 2s infinite;
    }

    .hero h1 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(3.2rem, 6vw, 5.2rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -.03em;
      margin-bottom: 1.5rem;
      animation: fadeUp .8s .12s ease both;
      color: #fff;
    }

    .hero h1 .grad {
      display: inline-block;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent3) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      padding-bottom: 0.1em;
    }

    .hero-sub {
      font-size: 1.12rem;
      color: var(--muted2);
      max-width: 540px;
      margin: 0 auto 2.8rem;
      font-weight: 300;
      line-height: 1.75;
      animation: fadeUp .8s .24s ease both
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp .8s .36s ease both
    }

    .hero-stats {
      display: flex;
      gap: 3.5rem;
      margin-top: 5rem;
      animation: fadeUp .8s .5s ease both;
      flex-wrap: wrap;
      justify-content: center
    }

    .stat-num {
      font-family: 'Inter', sans-serif;
      font-size: 2.1rem;
      font-weight: 800;
      color: #fff
    }

    .stat-num em {
      color: var(--accent);
      font-style: normal
    }

    .stat-lbl {
      font-size: .75rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .07em;
      margin-top: .15rem
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
      }

      to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
    }

    /* TRUST STRIP */
    .trust-strip {
      padding: 4rem 0;
      background: var(--bg);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative;
    }

    .trust-strip .section-label {
      opacity: 0.6;
      transition: opacity 0.3s;
    }

    .trust-strip:hover .section-label {
      opacity: 1;
    }

    /* MARQUEE */
    .marquee-wrap {
      padding: 1.4rem 0;
      overflow: hidden;
      background: transparent;
    }

    .marquee-track {
      display: flex;
      gap: 3.5rem;
      animation: marquee 22s linear infinite;
      will-change: transform;
      white-space: nowrap;
      align-items: center
    }

    .marquee-item {
      font-family: 'Inter', sans-serif;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: var(--muted);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: .9rem
    }

    .marquee-item::after {
      content: '✦';
      color: var(--accent);
      font-size: .55rem
    }

    @keyframes marquee {
      from {
        transform: translate3d(0, 0, 0);
      }

      to {
        transform: translate3d(-50%, 0, 0);
      }
    }

    body.perf-lite .marquee-track {
      animation: none;
      transform: none;
      width: 100%;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* SERVICES */
    .services-section {
      background: var(--bg2);
      padding: 7rem 4rem
    }

    .services-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 5rem;
      gap: 1.2rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: var(--border)
    }

    .svc-card {
      background: var(--bg2);
      padding: 2.4rem;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      display: block;
      color: inherit;
      text-decoration: none;
      transition: background .3s
    }

    .svc-card:hover {
      background: var(--surface)
    }

    .svc-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s
    }

    .svc-card:hover::before {
      transform: scaleX(1)
    }

    .svc-icon {
      width: 46px;
      height: 46px;
      background: rgba(0, 229, 255, .07);
      border: 1px solid rgba(0, 229, 255, .14);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 1.4rem
    }

    .svc-num {
      font-family: 'Inter', sans-serif;
      font-size: .7rem;
      color: var(--accent);
      font-weight: 700;
      letter-spacing: .1em;
      margin-bottom: .6rem
    }

    .svc-card h3 {
      font-family: 'Inter', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: .7rem;
      letter-spacing: -.01em
    }

    .svc-card p {
      color: var(--muted2);
      font-size: .88rem;
      line-height: 1.7;
      font-weight: 300
    }

    .svc-tags {
      display: flex;
      flex-wrap: wrap;
      gap: .4rem;
      margin-top: 1.4rem
    }

    .tag {
      padding: .18rem .65rem;
      border: 1px solid var(--border);
      font-size: .7rem;
      color: var(--muted);
      letter-spacing: .03em
    }

    .svc-arrow {
      position: absolute;
      bottom: 1.4rem;
      right: 1.4rem;
      color: var(--accent);
      font-size: 1.1rem;
      opacity: 0;
      transition: all .3s;
      transform: translateX(-6px)
    }

    .svc-card:hover .svc-arrow {
      opacity: 1;
      transform: none
    }

    /* CTA BANNER — styles defined in main CTA section below */

    .cta-banner-content {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* ABOUT SECTION (homepage teaser) */
    .about-section {
      padding: 7rem 4rem
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center
    }

    .about-visual {
      position: relative;
      height: 460px
    }

    .about-card {
      position: absolute;
      inset: 0;
      background: var(--surface);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden
    }

    .about-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0, 229, 255, .04) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0, 229, 255, .04) 40px)
    }

    .about-bg-text {
      font-family: 'Inter', sans-serif;
      font-size: 9rem;
      font-weight: 800;
      color: rgba(0, 229, 255, .05);
      position: absolute;
      letter-spacing: -.04em;
      pointer-events: none
    }

    .about-tools {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: .8rem;
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 1
    }

    .tool-pill {
      padding: .6rem 1.4rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      font-size: .9rem;
      font-weight: 500;
      color: var(--muted);
      transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: default;
      border-radius: 8px;
    }

    .tool-pill:hover {
      border-color: var(--accent);
      color: var(--text);
      background: rgba(14, 165, 233, 0.1);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .about-stats-card {
      position: absolute;
      bottom: -1.2rem;
      right: -1.2rem;
      background: var(--bg2);
      border: 1px solid rgba(0, 229, 255, .22);
      padding: 1.4rem 1.8rem;
      min-width: 200px
    }

    .about-stat-val {
      font-family: 'Inter', sans-serif;
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--accent);
      line-height: 1
    }

    .about-stat-lbl {
      font-size: .8rem;
      color: var(--muted);
      margin-top: .25rem
    }

    .about-text .section-label {
      margin-bottom: 1rem
    }

    .about-text h2.heading {
      margin-bottom: 1rem
    }

    .about-text .desc {
      margin-bottom: 1rem
    }

    .about-mini-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem
    }

    .mini-stat {
      padding: 1.2rem;
      background: var(--card);
      border: 1px solid var(--border)
    }

    .mini-stat-val {
      font-family: 'Inter', sans-serif;
      font-size: 1.7rem;
      font-weight: 800;
      color: var(--accent)
    }

    .mini-stat-lbl {
      font-size: .8rem;
      color: var(--muted);
      margin-top: .2rem
    }

    .meet-team-btn {
      margin-top: 2rem
    }

    /* PROCESS */
    .process-section {
      background: var(--bg2);
      padding: 7rem 4rem;
      text-align: center
    }

    .process-header {
      margin-bottom: 1rem
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin-top: 4rem;
      position: relative
    }

    .process-line {
      position: absolute;
      top: 27px;
      left: 12%;
      width: 76%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
      opacity: .28
    }

    .step {
      padding: 2rem 1.5rem;
      text-align: center
    }

    .step-dot {
      width: 54px;
      height: 54px;
      background: var(--surface);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 800;
      color: var(--accent);
      margin: 0 auto 1.4rem;
      position: relative;
      z-index: 1
    }

    .step h3 {
      font-family: 'Inter', sans-serif;
      font-size: .95rem;
      font-weight: 700;
      margin-bottom: .5rem
    }

    .step p {
      font-size: .83rem;
      color: var(--muted2);
      line-height: 1.65;
      font-weight: 300
    }

    /* PRICING */
    .pricing-section {
      padding: 7rem 4rem
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 1rem
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: var(--border);
      margin-top: 3.5rem
    }

    .price-card {
      background: var(--bg);
      padding: 2.4rem;
      position: relative
    }

    .price-card.featured {
      background: var(--surface);
      border-top: 2px solid var(--accent)
    }

    .plan-badge {
      display: inline-block;
      padding: .22rem .75rem;
      background: rgba(0, 229, 255, .09);
      border: 1px solid rgba(0, 229, 255, .28);
      color: var(--accent);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 1.4rem
    }

    .plan-name {
      font-family: 'Inter', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: .5rem
    }

    .plan-price {
      font-family: 'Inter', sans-serif;
      font-size: 2.8rem;
      font-weight: 800;
      line-height: 1;
      margin: 1rem 0 .25rem;
      letter-spacing: -.03em
    }

    .plan-price sup {
      font-size: 1.1rem;
      vertical-align: top;
      margin-top: .5rem;
      color: var(--muted);
      font-weight: 400
    }

    .plan-period {
      font-size: .82rem;
      color: var(--muted);
      margin-bottom: 1.8rem
    }

    .plan-features {
      list-style: none;
      margin-bottom: 2rem
    }

    .plan-features li {
      padding: .6rem 0;
      border-bottom: 1px solid var(--border);
      font-size: .86rem;
      color: var(--muted2);
      display: flex;
      align-items: flex-start;
      gap: .65rem
    }

    .plan-features li::before {
      content: '→';
      color: var(--accent);
      font-size: .78rem;
      flex-shrink: 0;
      margin-top: .1rem
    }

    /* TESTIMONIALS */
    .testimonials-section {
      background: var(--bg2);
      padding: 7rem 4rem
    }

    .testi-header {
      text-align: center;
      margin-bottom: 1rem
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
      margin-top: 3.5rem
    }

    .testi-card {
      background: var(--card);
      border: 1px solid var(--border);
      padding: 2rem;
      position: relative;
      overflow: hidden
    }

    .testi-card::after {
      content: '"';
      position: absolute;
      top: .6rem;
      right: 1.2rem;
      font-family: 'Inter', sans-serif;
      font-size: 5rem;
      color: rgba(0, 229, 255, .07);
      font-weight: 800;
      line-height: 1;
      pointer-events: none
    }

    .stars {
      color: var(--accent);
      font-size: .75rem;
      margin-bottom: .9rem;
      letter-spacing: .1em
    }

    .testi-text {
      font-size: .88rem;
      color: var(--muted2);
      line-height: 1.78;
      font-style: italic;
      margin-bottom: 1.4rem;
      font-weight: 300
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: .75rem
    }

    .testi-avatar {
      width: 38px;
      height: 38px;
      background: linear-gradient(135deg, var(--accent2), var(--accent));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: .85rem;
      color: #fff;
      flex-shrink: 0;
      font-family: 'Syne', sans-serif
    }

    .testi-name {
      font-family: 'Inter', sans-serif;
      font-size: .88rem;
      font-weight: 700
    }

    .testi-role {
      font-size: .76rem;
      color: var(--muted)
    }

    /* CTA BANNER */
    .cta-banner {
      padding: 7rem 4rem;
      background: var(--bg);
      text-align: center;
      position: relative;
      overflow: hidden
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 229, 255, .05) 0%, transparent 70%);
      pointer-events: none
    }

    .cta-banner h2.heading {
      margin-bottom: 1rem
    }

    .cta-banner .desc {
      margin: 0 auto 2.5rem;
      max-width: 480px
    }

    /* CONTACT */
    .contact-section {
      padding: 7rem 4rem;
      background: var(--bg2)
    }

    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 5rem;
      align-items: start
    }

    .contact-info h2.heading {
      margin-bottom: 1rem
    }

    .contact-info .desc {
      margin-bottom: 2rem
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: .9rem;
      padding: .9rem 0;
      border-bottom: 1px solid var(--border)
    }

    .cd-icon {
      width: 38px;
      height: 38px;
      background: rgba(0, 229, 255, .06);
      border: 1px solid rgba(0, 229, 255, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .95rem;
      flex-shrink: 0
    }

    .cd-lbl {
      font-size: .73rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .05em;
      margin-bottom: .15rem
    }

    .cd-val {
      font-size: .92rem
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: .9rem
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .9rem
    }

    .f-group {
      display: flex;
      flex-direction: column;
      gap: .35rem
    }

    .f-label {
      font-size: .73rem;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: .07em;
      text-transform: uppercase
    }

    .f-input {
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--text);
      padding: .8rem 1rem;
      font-family: 'Inter', sans-serif;
      font-size: .88rem;
      outline: none;
      transition: border-color .2s;
      resize: none;
      width: 100%
    }

    .f-input:focus {
      border-color: rgba(0, 229, 255, .38)
    }

    .f-input option {
      background: var(--surface)
    }

    .form-success {
      text-align: center;
      padding: 3rem;
      border: 1px solid var(--border)
    }

    /* FOOTER */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 4rem
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 3rem
    }

    .footer-brand .logo {
      margin-bottom: 1rem;
      display: inline-flex;
      font-size: calc(1.25rem + 50px);
    }

    .footer-brand p {
      color: var(--muted);
      font-size: .86rem;
      line-height: 1.7;
      font-weight: 300;
      max-width: 270px
    }

    .footer-col h4 {
      font-family: 'Inter', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 1.1rem
    }

    .footer-col ul {
      list-style: none
    }

    .footer-col li {
      margin-bottom: .55rem
    }

    .footer-col a,
    .footer-col span {
      color: var(--muted);
      text-decoration: none;
      font-size: .86rem;
      transition: color .2s;
      background: none;
      border: none;
      font-family: 'Inter', sans-serif
    }

    .footer-col a {
      cursor: pointer;
    }

    .footer-col a:hover {
      color: var(--accent)
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
      gap: 1rem
    }

    .footer-copy {
      color: var(--muted);
      font-size: .8rem
    }

    .social-row {
      display: flex;
      gap: .7rem
    }

    .social-btn {
      width: 34px;
      height: 34px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: .9rem;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      background: none;
      text-decoration: none;
      font-family: 'Inter', sans-serif;
      font-weight: 700
    }

    .social-btn:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-3px) scale(1.08);
      box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
    }

    /* ═══════════════════════════════
   SERVICE DETAIL PAGE
═══════════════════════════════ */
    .svc-detail-page {
      padding-top: 5.5rem;
      min-height: 100vh
    }

    .svc-hero {
      padding: 4rem;
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden
    }

    .svc-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(0, 229, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 229, 255, .02) 1px, transparent 1px);
      background-size: 44px 44px;
      pointer-events: none
    }

    .svc-hero-inner {
      max-width: 820px;
      position: relative;
      z-index: 1
    }

    .svc-hero-inner .section-label {
      margin-bottom: 1rem
    }

    .svc-hero-inner h1 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(2rem, 5vw, 3.8rem);
      font-weight: 800;
      letter-spacing: -.03em;
      margin-bottom: 1rem
    }

    .svc-hero-inner .desc {
      max-width: 580px
    }

    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      color: var(--muted);
      font-size: .86rem;
      cursor: pointer;
      border: none;
      background: none;
      font-family: 'Inter', sans-serif;
      padding: 0;
      margin-bottom: 1.8rem;
      transition: color .2s
    }

    .back-btn:hover {
      color: var(--accent)
    }

    .portfolio-sec {
      padding: 4rem
    }

    .portfolio-title {
      font-family: 'Inter', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      margin-bottom: .5rem
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.4rem;
      margin-top: 2rem
    }

    .p-item {
      background: var(--surface);
      border: 1px solid var(--border);
      overflow: hidden;
      cursor: pointer;
      transition: border-color .3s;
      position: relative
    }

    .p-item:hover {
      border-color: rgba(0, 229, 255, .35)
    }

    .p-thumb {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      display: block;
      background: var(--bg2)
    }

    .p-thumb-video {
      width: 100%;
      aspect-ratio: 16/9;
      display: block;
      background: #000
    }

    .p-info {
      padding: 1.1rem
    }

    .p-info h4 {
      font-family: 'Inter', sans-serif;
      font-size: .95rem;
      font-weight: 700;
      margin-bottom: .3rem
    }

    .p-info p {
      font-size: .82rem;
      color: var(--muted);
      font-weight: 300
    }

    .p-badge {
      position: absolute;
      top: .7rem;
      left: .7rem;
      padding: .18rem .6rem;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase
    }

    .p-badge-img {
      background: rgba(0, 229, 255, .15);
      border: 1px solid rgba(0, 229, 255, .3);
      color: var(--accent)
    }

    .p-badge-vid {
      background: rgba(124, 58, 237, .15);
      border: 1px solid rgba(124, 58, 237, .3);
      color: var(--accent3)
    }

    .p-empty {
      padding: 4rem;
      text-align: center;
      border: 2px dashed var(--border);
      color: var(--muted);
      grid-column: 1/-1
    }

    .p-empty-icon {
      font-size: 3rem;
      margin-bottom: 1rem
    }

    .p-empty h3 {
      font-family: 'Inter', sans-serif;
      font-size: 1.1rem;
      margin-bottom: .4rem;
      color: var(--text)
    }

    /* ═══════════════════════════════
   TEAM PAGE
═══════════════════════════════ */
    .team-page {
      padding-top: 5.5rem;
      min-height: 100vh
    }

    .team-hero {
      padding: 4rem;
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden
    }

    .team-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(0, 229, 255, .05) 0%, transparent 60%);
      pointer-events: none
    }

    .team-hero-inner {
      max-width: 700px;
      position: relative;
      z-index: 1
    }

    .team-hero-inner h1 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 800;
      letter-spacing: -.03em;
      margin-bottom: 1rem
    }

    .team-content {
      padding: 4rem
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 2.5rem
    }

    .member-card {
      background: var(--surface);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: border-color .3s, transform .3s;
      cursor: pointer
    }

    .member-card:hover {
      border-color: rgba(0, 229, 255, .35);
      transform: translateY(-3px)
    }

    .member-photo {
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: cover;
      display: block;
      background: linear-gradient(135deg, var(--bg2), var(--surface2))
    }

    .member-photo-placeholder {
      width: 100%;
      aspect-ratio: 1/1;
      background: linear-gradient(135deg, var(--surface), var(--surface2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Inter', sans-serif;
      font-size: 3rem;
      font-weight: 800;
      color: rgba(0, 229, 255, .2)
    }

    .member-info {
      padding: 1.5rem
    }

    .member-role-badge {
      display: inline-block;
      padding: .2rem .7rem;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
      margin-bottom: .8rem
    }

    .badge-founder {
      background: rgba(0, 229, 255, .12);
      border: 1px solid rgba(0, 229, 255, .3);
      color: var(--accent)
    }

    .badge-cofounder {
      background: rgba(124, 58, 237, .12);
      border: 1px solid rgba(124, 58, 237, .3);
      color: var(--accent3)
    }

    .badge-member {
      background: rgba(255, 255, 255, .06);
      border: 1px solid var(--border2);
      color: var(--muted2)
    }

    .member-name {
      font-family: 'Inter', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      margin-bottom: .2rem
    }

    .member-title {
      font-size: .84rem;
      color: var(--muted2);
      margin-bottom: .9rem;
      font-weight: 300
    }

    .member-bio {
      font-size: .84rem;
      color: var(--muted);
      line-height: 1.68;
      font-weight: 300;
      margin-bottom: 1.1rem;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden
    }

    .member-skills {
      display: flex;
      flex-wrap: wrap;
      gap: .35rem;
      margin-bottom: 1.1rem
    }

    .skill-tag {
      padding: .18rem .65rem;
      background: rgba(0, 229, 255, .06);
      border: 1px solid rgba(0, 229, 255, .12);
      font-size: .68rem;
      color: var(--muted2);
      letter-spacing: .03em
    }

    .member-exp {
      font-size: .78rem;
      color: var(--muted);
      margin-bottom: 1rem
    }

    .member-exp em {
      color: var(--accent);
      font-style: normal;
      font-weight: 600
    }

    .member-socials {
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
      margin-bottom: 1rem
    }

    .soc-btn {
      width: 30px;
      height: 30px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: .68rem;
      cursor: pointer;
      transition: all .2s;
      background: none;
      text-decoration: none;
      font-weight: 700;
      font-family: 'Syne', sans-serif
    }

    .soc-btn:hover {
      border-color: var(--accent);
      color: var(--accent)
    }

    .member-actions {
      display: flex;
      gap: .6rem;
      flex-wrap: wrap;
      padding-top: 1rem;
      border-top: 1px solid var(--border)
    }

    /* Member detail modal */
    .member-modal-inner {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 2rem;
      align-items: start
    }

    .member-modal-photo {
      width: 200px;
      height: 200px;
      object-fit: cover;
      display: block;
      background: linear-gradient(135deg, var(--bg2), var(--surface2))
    }

    .member-modal-photo-ph {
      width: 200px;
      height: 200px;
      background: linear-gradient(135deg, var(--surface), var(--surface2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Inter', sans-serif;
      font-size: 4rem;
      font-weight: 800;
      color: rgba(0, 229, 255, .25)
    }

    .member-modal-info h2 {
      font-family: 'Inter', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      margin: .6rem 0 .2rem
    }

    .member-modal-title {
      color: var(--muted2);
      font-size: .9rem;
      margin-bottom: 1rem
    }

    .member-modal-bio {
      color: var(--muted2);
      font-size: .9rem;
      line-height: 1.75;
      font-weight: 300;
      margin-bottom: 1.2rem
    }

    .member-modal-section {
      margin-bottom: 1.2rem
    }

    .member-modal-section h4 {
      font-family: 'Inter', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: .6rem
    }

    /* ═══════════════════════════════
   ADMIN PANEL
═══════════════════════════════ */
    .admin-page {
      min-height: 100vh;
      background: #060a10
    }

    .admin-login {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #060a10;
      position: relative
    }

    .admin-login::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 55% 55% at 50% 40%, rgba(0, 229, 255, .04) 0%, transparent 70%);
      pointer-events: none
    }

    .login-box {
      background: var(--surface);
      border: 1px solid var(--border2);
      padding: 2.8rem;
      width: 100%;
      max-width: 400px;
      position: relative;
      z-index: 1
    }

    .login-box h2 {
      font-family: 'Inter', sans-serif;
      font-size: 1.7rem;
      font-weight: 800;
      margin-bottom: .4rem
    }

    .login-box p {
      color: var(--muted);
      font-size: .88rem;
      margin-bottom: 2rem
    }

    .a-input {
      width: 100%;
      background: var(--bg2);
      border: 1px solid var(--border);
      color: var(--text);
      padding: .85rem 1rem;
      font-family: 'Inter', sans-serif;
      font-size: .92rem;
      outline: none;
      transition: border-color .2s;
      margin-bottom: .9rem
    }

    .a-input:focus {
      border-color: rgba(0, 229, 255, .38)
    }

    .login-error {
      color: var(--red);
      font-size: .83rem;
      margin-bottom: .8rem;
      display: none
    }

    /* Admin layout */
    .admin-layout {
      display: grid;
      grid-template-columns: 250px 1fr;
      min-height: 100vh
    }

    .admin-sidebar {
      background: var(--surface);
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      position: sticky;
      top: 0;
      height: 100vh;
      overflow-y: auto
    }

    .admin-logo-wrap {
      padding: 1.6rem 1.4rem;
      border-bottom: 1px solid var(--border)
    }

    .admin-logo-wrap small {
      display: block;
      color: var(--muted);
      font-size: .72rem;
      letter-spacing: .06em;
      margin-top: .2rem
    }

    .a-nav {
      flex: 1;
      padding: 1rem 0
    }

    .a-nav-item {
      display: flex;
      align-items: center;
      gap: .75rem;
      padding: .72rem 1.4rem;
      color: var(--muted);
      cursor: pointer;
      font-size: .86rem;
      font-weight: 500;
      transition: all .2s;
      border-left: 2px solid transparent;
      user-select: none
    }

    .a-nav-item:hover {
      background: rgba(0, 229, 255, .04);
      color: var(--text)
    }

    .a-nav-item.active {
      background: rgba(0, 229, 255, .06);
      color: var(--accent);
      border-left-color: var(--accent)
    }

    .a-nav-icon {
      font-size: .95rem;
      width: 18px;
      text-align: center;
      flex-shrink: 0
    }

    .a-nav-divider {
      height: 1px;
      background: var(--border);
      margin: .5rem 0
    }

    .admin-main {
      padding: 2.2rem;
      overflow-y: auto;
      background: #060a10
    }

    .admin-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      padding-bottom: 1.4rem;
      border-bottom: 1px solid var(--border)
    }

    .admin-header h1 {
      font-family: 'Inter', sans-serif;
      font-size: 1.5rem;
      font-weight: 800
    }

    .a-section {
      display: none
    }

    .a-section.active {
      display: block
    }

    .a-card {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 1.8rem;
      margin-bottom: 1.4rem
    }

    .a-card-title {
      font-family: 'Inter', sans-serif;
      font-size: .88rem;
      font-weight: 700;
      margin-bottom: 1.4rem;
      padding-bottom: .9rem;
      border-bottom: 1px solid var(--border);
      color: var(--text);
      display: flex;
      justify-content: space-between;
      align-items: center
    }

    .a-field {
      margin-bottom: .9rem
    }

    .a-label {
      display: block;
      font-size: .72rem;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-bottom: .35rem
    }

    .a-field input,
    .a-field textarea,
    .a-field select {
      width: 100%;
      background: var(--bg2);
      border: 1px solid var(--border);
      color: var(--text);
      padding: .75rem .9rem;
      font-family: 'Inter', sans-serif;
      font-size: .88rem;
      outline: none;
      transition: border-color .2s;
      resize: vertical
    }

    .a-field input:focus,
    .a-field textarea:focus,
    .a-field select:focus {
      border-color: rgba(0, 229, 255, .38)
    }

    .a-field select option {
      background: var(--surface)
    }

    /* Dashboard */
    .dash-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-bottom: 1.5rem
    }

    .dash-card {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 1.3rem
    }

    .dash-num {
      font-family: 'Inter', sans-serif;
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--accent)
    }

    .dash-lbl {
      font-size: .75rem;
      color: var(--muted);
      margin-top: .25rem;
      text-transform: uppercase;
      letter-spacing: .06em
    }

    /* Admin tabs */
    .a-tabs {
      display: flex;
      gap: 0;
      border-bottom: 1px solid var(--border);
      margin-bottom: 1.8rem;
      overflow-x: auto
    }

    .a-tab {
      padding: .7rem 1.3rem;
      font-size: .84rem;
      font-weight: 500;
      color: var(--muted);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      transition: all .2s;
      white-space: nowrap;
      background: none;
      border-top: none;
      border-left: none;
      border-right: none;
      font-family: 'Inter', sans-serif
    }

    .a-tab:hover {
      color: var(--text)
    }

    .a-tab.active {
      color: var(--accent);
      border-bottom-color: var(--accent)
    }

    /* Services editor */
    .svc-edit-item {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 1.4rem;
      margin-bottom: .9rem
    }

    .svc-edit-hdr {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem
    }

    .svc-edit-hdr h4 {
      font-family: 'Inter', sans-serif;
      font-size: .88rem;
      font-weight: 700;
      color: var(--accent)
    }

    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem
    }

    .three-col {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1rem
    }

    /* Portfolio admin */
    .upload-zone {
      border: 2px dashed var(--border);
      padding: 2.5rem;
      text-align: center;
      cursor: pointer;
      transition: all .2s;
      position: relative
    }

    .upload-zone:hover {
      border-color: rgba(0, 229, 255, .38);
      background: rgba(0, 229, 255, .02)
    }

    .upload-zone input {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
      width: 100%;
      height: 100%
    }

    .upload-zone p {
      color: var(--muted);
      font-size: .86rem;
      margin-top: .4rem
    }

    .port-admin-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
      gap: .9rem;
      margin-top: 1.4rem
    }

    .port-admin-item {
      background: var(--bg2);
      border: 1px solid var(--border);
      overflow: hidden;
      position: relative
    }

    .port-admin-thumb {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      display: block;
      background: var(--bg)
    }

    .port-admin-info {
      padding: .7rem
    }

    .port-admin-info input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--border);
      color: var(--text);
      padding: .25rem 0;
      font-family: 'Inter', sans-serif;
      font-size: .78rem;
      outline: none;
      margin-bottom: .25rem
    }

    .port-del {
      position: absolute;
      top: 5px;
      right: 5px;
      background: #ff4757;
      border: 2px solid #fff;
      color: #fff;
      width: 28px;
      height: 28px;
      cursor: pointer;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
      border-radius: 4px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      pointer-events: auto !important;
    }
    .port-del:hover {
      background: #ff6b81;
      transform: scale(1.1);
    }

    /* Pricing editor */
    .price-edit-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem
    }

    .price-edit-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 1.4rem
    }

    .price-edit-card h4 {
      font-family: 'Inter', sans-serif;
      font-size: .84rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--accent)
    }

    .feat-list {
      list-style: none;
      margin-bottom: .8rem
    }

    .feat-list li {
      display: flex;
      align-items: center;
      gap: .4rem;
      margin-bottom: .35rem
    }

    .feat-list li input {
      flex: 1;
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--text);
      padding: .35rem .6rem;
      font-family: 'Inter', sans-serif;
      font-size: .8rem;
      outline: none
    }

    .feat-list li button {
      background: none;
      border: none;
      color: var(--muted);
      cursor: pointer;
      font-size: .85rem;
      padding: .1rem;
      transition: color .2s
    }

    .feat-list li button:hover {
      color: var(--red)
    }

    .add-feat {
      width: 100%;
      background: none;
      border: 1px dashed var(--border);
      color: var(--muted);
      padding: .38rem;
      font-family: 'Inter', sans-serif;
      font-size: .75rem;
      cursor: pointer;
      transition: all .2s
    }

    .add-feat:hover {
      border-color: var(--accent);
      color: var(--accent)
    }

    /* Testimonials editor */
    .testi-edit-item {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 1.4rem;
      margin-bottom: .9rem
    }

    .testi-edit-hdr {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem
    }

    /* Team editor */
    .team-edit-item {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 1.4rem;
      margin-bottom: .9rem
    }

    .team-edit-hdr {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem
    }

    .team-edit-hdr h4 {
      font-family: 'Inter', sans-serif;
      font-size: .88rem;
      font-weight: 700;
      color: var(--accent)
    }

    /* Submissions */
    .sub-item {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 1.4rem;
      margin-bottom: .9rem
    }

    .sub-hdr {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      flex-wrap: wrap;
      gap: .5rem
    }

    .sub-hdr h4 {
      font-family: 'Inter', sans-serif;
      font-size: .95rem;
      font-weight: 700
    }

    .sub-date {
      font-size: .76rem;
      color: var(--muted)
    }

    .sub-field {
      margin-bottom: .45rem;
      font-size: .86rem
    }

    .sub-field strong {
      display: block;
      font-size: .7rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .05em;
      margin-bottom: .15rem
    }

    .sub-new {
      display: inline-block;
      padding: .15rem .6rem;
      background: rgba(0, 229, 255, .12);
      border: 1px solid rgba(0, 229, 255, .3);
      color: var(--accent);
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-left: .5rem
    }

    /* ── RESPONSIVE ── */
    @media(max-width:960px) {
      #mainNav {
        padding: 1rem 1.5rem
      }

      .nav-links {
        display: none
      }

      .nav-hamburger {
        display: flex
      }

      .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(8, 12, 20, .97);
        z-index: 490;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateX(100%);
        /* Extra safety: fully hide by default */
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: transform .3s
      }

      .mobile-menu.open {
        transform: none;
        visibility: visible;
        opacity: 1;
        pointer-events: auto
      }

      .mobile-menu a {
        font-family: 'Inter', sans-serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--text);
        text-decoration: none;
        cursor: pointer;
        background: none;
        border: none
      }

      .mobile-menu-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        color: var(--text);
        font-size: 1.4rem;
        cursor: pointer
      }

      .services-section,
      .about-section,
      .process-section,
      .pricing-section,
      .testimonials-section,
      .cta-banner,
      .roi-journey-section,
      .home-team-section,
      .faq-section,
      .contact-section {
        padding: 4rem 1.2rem
      }

      .hero {
        flex-direction: column;
        padding: 6rem 1.2rem 3rem;
        text-align: center;
        min-height: auto;
        gap: 2.5rem;
      }

      .hero-content {
        max-width: 100%;
        margin: 0 auto;
      }

      .hero h1 {
        font-size: clamp(2.4rem, 8vw, 3.5rem);
      }

      .hero-btns {
        justify-content: center;
      }

      .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 3rem;
      }

      .hero-visual {
        display: flex !important;
        position: relative !important;
        width: 100% !important;
        height: 480px !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 1.5rem auto 0 !important;
        opacity: 1 !important;
        animation: none !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
      }

      .hero-visual div {
        transform: scale(0.9) translateY(0) !important;
        transform-origin: center center !important;
      }

      .hero-stats {
        position: relative;
        z-index: 15;
        background: rgba(0,0,0,0.4);
        padding: 1.5rem;
        border-radius: 20px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.05);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        width: 100%;
      }

      .hero-stats > div:last-child {
        grid-column: 1 / span 2;
      }

      #mainNav {
        padding: 0.1rem 1.2rem;
        top: 0.8rem;
        width: 92%;
        height: 60px;
      }

      .logo img {
        height: 44px !important;
      }

      .roi-column,
      .journey-column {
        min-width: 100% !important;
        flex: 100% !important;
      }

      /* Shrink huge headings on mobile */
      #roiTitle, #journeyTitle {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
      }

      .roi-column {
        padding: 1.5rem !important;
        border-radius: 16px !important;
      }

      .roi-column .desc {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
      }

      .calc-group {
        margin-bottom: 1.5rem !important;
      }

      #roiHoursVal {
        font-size: 1.2rem !important;
      }

      #roiCost {
        padding: 0.8rem 1rem 0.8rem 2rem !important;
        font-size: 1rem !important;
      }

      .roi-column > div.roi-calculator-ui > div:last-child {
         padding: 1.2rem !important;
         border-radius: 16px !important;
      }

      .roi-column #roiResult {
         font-size: 2.2rem !important;
      }

      .journey-column {
        padding: 1rem 0 !important;
      }

      #journeyList {
        padding-left: 2.5rem !important;
      }

      #journeyList > div:first-child {
         left: 0.35rem !important;
      }

      .timeline-slot {
        margin-bottom: 2rem !important;
        margin-left: 1.5rem !important;
      }

      .timeline-slot > h4 {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
      }

      .timeline-slot > p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
      }

      /* Adjust timeline pulse circle */
      .timeline-slot > div:first-child {
         left: -2.5rem !important;
         width: 12px !important;
         height: 12px !important;
         top: 0.35rem !important;
      }

      .journey-list {
        padding-left: 1rem !important;
      }

      .services-grid,
      .pricing-grid,
      .testi-grid,
      .process-steps {
        grid-template-columns: 1fr
      }

      .about-inner,
      .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem
      }

      .about-visual {
        height: 320px
      }

      .process-line {
        display: none
      }



      footer {
        padding: 3rem 1.5rem
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem
      }

      .admin-layout {
        grid-template-columns: 1fr
      }

      .admin-sidebar {
        position: relative;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap
      }

      .a-nav {
        display: flex;
        flex-wrap: wrap;
        padding: .5rem
      }

      .dash-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .price-edit-grid,
      .three-col,
      .two-col {
        grid-template-columns: 1fr
      }

      .svc-hero,
      .portfolio-sec,
      .team-hero,
      .team-content {
        padding: 2rem 1.5rem
      }

      .member-modal-inner {
        grid-template-columns: 1fr
      }

      .member-modal-photo,
      .member-modal-photo-ph {
        width: 100%;
        height: 220px
      }
    }

    @media(max-width:600px) {
      .team-grid {
        grid-template-columns: 1fr
      }

      .portfolio-grid {
        grid-template-columns: 1fr
      }

      .form-row {
        grid-template-columns: 1fr
      }
    }

    /* ── HOME TEAM SECTION ── */
    .home-team-section {
      padding: 7rem 4rem;
      position: relative;
      background: var(--bg2);
      border-top: 1px solid var(--border);
    }

    .home-team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hm-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    .hm-card:hover {
      transform: translateY(-8px);
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(0, 229, 255, 0.3);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 229, 255, 0.1);
    }

    .hm-img-wrap {
      width: 100%;
      height: 280px;
      position: relative;
      overflow: hidden;
      background: var(--surface2);
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: 1px solid var(--border);
    }

    .hm-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .hm-card:hover .hm-photo {
      transform: scale(1.05);
    }

    .hm-photo-ph {
      font-size: 5rem;
      font-weight: 800;
      color: rgba(255,255,255,0.1);
      font-family: 'Inter', sans-serif;
    }

    .hm-info {
      padding: 2rem;
    }

    .hm-name {
      font-size: 1.35rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.3rem;
    }

    .hm-role {
      font-size: 0.85rem;
      color: var(--accent);
      font-weight: 700;
      margin-bottom: 1.2rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .hm-bio {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ── FAQ SECTION ── */
    .faq-section {
      padding: 7rem 4rem;
      background: var(--bg);
    }

    .faq-header {
      margin-bottom: 4rem;
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .faq-item {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-item.active {
      border-color: var(--accent);
      background: rgba(14, 165, 233, 0.03);
    }

    .faq-q {
      padding: 1.5rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
    }

    .faq-q h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text);
    }

    .faq-icon {
      font-size: 1.2rem;
      color: var(--accent);
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 0 2rem;
    }

    .faq-item.active .faq-a {
      max-height: 400px;
      padding: 0 2rem 1.5rem;
    }

    .faq-a p {
      color: var(--muted2);
      line-height: 1.7;
      font-size: 0.95rem;
      border-top: 1px solid var(--border);
      padding-top: 1.2rem;
    }

    /* ── ADMIN FAQ EDITOR ── */
    #faqEditList {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .faq-edit-item {
      padding: 1.5rem;
      background: var(--bg2);
      border: 1px solid var(--border);
    }

    .faq-edit-hdr {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

    /* ── TESTIMONIAL SCREENSHOT STYLES ── */
    .testi-card.has-image {
      cursor: pointer;
      position: relative;
    }

    .testi-card.has-image:hover {
      border-color: var(--accent);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
    }

    .testi-proof-badge {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: rgba(14, 165, 233, 0.1);
      border: 1px solid var(--accent);
      color: var(--accent);
      padding: 0.3rem 0.6rem;
      border-radius: 6px;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      pointer-events: none;
    }

    /* Final mobile overrides live at the end of the file so desktop section
       styles declared later in the stylesheet cannot accidentally win. */
    @media (max-width: 768px) {
      html,
      body {
        overflow-x: hidden;
      }

      #mainNav {
        top: 0.6rem !important;
        left: 0.5rem !important;
        right: 0.5rem !important;
        width: auto !important;
        transform: none !important;
        height: 60px !important;
        padding: 0 1rem !important;
        border-radius: 18px !important;
      }

      #mainNav .logo img {
        height: 38px !important;
        max-width: 170px !important;
        transform: none !important;
      }

      .mobile-menu {
        padding: 5.5rem 1rem 2rem !important;
        justify-content: flex-start !important;
        overflow-y: auto;
      }

      .mobile-menu a {
        width: 100%;
        max-width: 320px;
        text-align: center;
        font-size: 1.05rem !important;
        padding: 0.95rem 1rem;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.03);
      }

      .services-section,
      .about-section,
      .process-section,
      .pricing-section,
      .testimonials-section,
      .cta-banner,
      .roi-journey-section,
      .home-team-section,
      .faq-section,
      .contact-section {
        padding: 4.5rem 1rem !important;
      }

      .hero {
        padding: 6.25rem 1rem 3rem !important;
        gap: 2rem !important;
      }

      .hero-content {
        width: 100%;
        min-width: 0;
      }

      .hero h1 {
        font-size: clamp(2.15rem, 10vw, 3rem) !important;
      }

      .hero-sub {
        font-size: 0.98rem !important;
        line-height: 1.65 !important;
        margin: 0 auto 2rem !important;
      }

      .section-label,
      .hero-badge {
        font-size: 0.72rem !important;
        padding: 0.4rem 0.9rem !important;
        max-width: 100%;
        white-space: normal;
        justify-content: center;
        text-align: center;
      }

      .hero-btns {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
      }

      .hero-btns .btn {
        width: 100%;
        padding: 0.95rem 1.1rem;
      }

      .hero-stats {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 1rem !important;
        margin-top: 2rem !important;
      }

      .hero-stats > div:last-child {
        grid-column: auto !important;
      }

      .stat-num {
        font-size: 1.75rem !important;
      }

      .marquee-wrap {
        padding: 1rem 0;
      }

      .marquee-track {
        gap: 1.4rem !important;
        animation-duration: 30s !important;
      }

      .marquee-item {
        font-size: 0.68rem !important;
        letter-spacing: 0.08em !important;
      }

      .roi-journey-section .container {
        padding: 0 1rem !important;
        gap: 2rem !important;
      }

      .roi-column,
      .journey-column {
        width: 100%;
        min-width: 0 !important;
      }

      #roiTitle,
      #journeyTitle {
        font-size: 1.9rem !important;
      }

      #journeyTitle {
        margin-bottom: 2rem !important;
      }

      .roi-column {
        padding: 1.35rem !important;
        border-radius: 20px !important;
      }

      .journey-column {
        padding: 0.25rem 0 0 !important;
      }

      #journeyList {
        padding-left: 2rem !important;
      }

      .timeline-slot {
        margin-left: 1rem !important;
      }

      #roiResult {
        font-size: clamp(2rem, 11vw, 2.7rem) !important;
        word-break: break-word;
      }

      .services-grid,
      .pricing-grid,
      .testi-grid,
      .process-steps,
      .about-inner,
      .contact-inner,
      .footer-grid,
      .home-team-grid,
      .portfolio-grid,
      .team-grid,
      .about-mini-stats {
        grid-template-columns: 1fr !important;
      }

      .svc-card,
      .price-card,
      .testi-card,
      .step,
      .hm-info,
      .member-info {
        padding: 1.3rem !important;
      }

      .about-visual {
        height: 280px !important;
      }

      .about-bg-text {
        font-size: 4.5rem !important;
      }

      .about-stats-card {
        position: static !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
        min-width: 0 !important;
        margin-top: 1rem;
      }

      .tool-pill {
        font-size: 0.82rem;
        padding: 0.5rem 1rem;
      }

      .process-line {
        display: none !important;
      }

      .faq-q {
        padding: 1.1rem 1rem !important;
        align-items: flex-start;
        gap: 1rem;
      }

      .faq-q h3 {
        font-size: 1rem !important;
        line-height: 1.45;
      }

      .faq-a {
        padding: 0 1rem !important;
      }

      .faq-item.active .faq-a {
        max-height: 600px;
        padding: 0 1rem 1rem !important;
      }

      .contact-form,
      .f-group,
      .f-input {
        min-width: 0;
      }

      #contactFormWrap {
        min-height: 0 !important;
      }

      .form-success {
        padding: 2rem 1rem !important;
      }

      footer {
        padding: 3rem 1rem !important;
      }

      .footer-grid {
        gap: 2rem !important;
      }

      .footer-brand p {
        max-width: none;
      }

      .portfolio-sec,
      .team-hero,
      .team-content {
        padding: 2rem 1rem !important;
      }

      .team-hero-inner h1,
      .portfolio-title {
        font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
      }

      .hm-img-wrap {
        height: 240px;
      }

      .p-empty {
        padding: 2rem 1rem;
      }

      .modal-box {
        width: calc(100vw - 1rem);
        max-width: calc(100vw - 1rem);
        max-height: 85vh;
        padding: 1.25rem;
      }

      .member-modal-photo,
      .member-modal-photo-ph {
        height: min(60vw, 240px) !important;
      }
    }

    @media (max-width: 480px) {
      .hero {
        padding: 6rem 0.85rem 2.75rem !important;
      }

      .hero h1 {
        font-size: clamp(1.95rem, 11vw, 2.5rem) !important;
      }

      .hero-sub {
        font-size: 0.92rem !important;
      }

      .services-section,
      .about-section,
      .process-section,
      .pricing-section,
      .testimonials-section,
      .cta-banner,
      .roi-journey-section,
      .home-team-section,
      .faq-section,
      .contact-section,
      .portfolio-sec,
      .team-hero,
      .team-content,
      footer {
        padding-left: 0.85rem !important;
        padding-right: 0.85rem !important;
      }

      .hero-stats,
      .roi-column,
      .svc-card,
      .price-card,
      .testi-card,
      .faq-item,
      .member-card,
      .hm-card {
        border-radius: 18px !important;
      }

      .faq-q {
        padding: 1rem 0.9rem !important;
      }

      .faq-a,
      .faq-item.active .faq-a {
        padding-left: 0.9rem !important;
        padding-right: 0.9rem !important;
      }

      .member-actions,
      .hero-btns {
        gap: 0.75rem !important;
      }

      .member-actions .btn,
      .hero-btns .btn {
        width: 100%;
      }

      .testi-proof-badge {
        top: 1rem;
        right: 1rem;
      }
    }

    @media (max-width: 768px) {
      html, body {
        overflow-x: hidden !important;
        width: 100vw;
        max-width: 100vw;
        position: relative;
      }
      .tag, .tool-pill, .skill-tag {
        white-space: normal !important;
        max-width: 100% !important;
        word-break: break-word;
      }
      .svc-tags, .about-tools, .hm-skills, .member-skills {
        flex-wrap: wrap !important;
      }
      .marquee-wrap {
        overflow: hidden !important;
        width: 100vw;
      }
    }
