
    /* ══════════════════════════════════════════════════════════
       FLOATING CONTACT BUTTONS
    ══════════════════════════════════════════════════════════ */
    .float-btn {
      position: fixed; bottom: 28px; z-index: 9001;
      width: 52px; height: 52px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
    }
    .float-btn:hover { transform: scale(1.13) translateY(-3px); }

    /* Call — left */
    .float-btn--call {
      left: 20px;
      background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
      box-shadow: 0 4px 18px rgba(29,78,216,0.45);
    }
    .float-btn--call:hover { box-shadow: 0 8px 28px rgba(29,78,216,0.55); }

    /* WhatsApp — right */
    .float-btn--wa {
      right: 20px;
      background: linear-gradient(135deg, #25d366, #128c7e);
      box-shadow: 0 4px 18px rgba(37,211,102,0.45);
    }
    .float-btn--wa:hover { box-shadow: 0 8px 28px rgba(37,211,102,0.55); }

    /* Pulse ring */
    .float-btn::before {
      content: ''; position: absolute;
      width: 100%; height: 100%; border-radius: 50%;
      background: inherit; opacity: 0.35;
      animation: fb-pulse 2.4s ease-out infinite;
    }
    @keyframes fb-pulse {
      0%          { transform: scale(1);   opacity: 0.35; }
      70%, 100%   { transform: scale(1.7); opacity: 0; }
    }

    /* Tooltip */
    .float-btn::after {
      content: attr(data-tip);
      position: absolute; font-size: 0.71rem; font-weight: 600;
      color: #fff; background: rgba(15,23,42,0.82);
      padding: 4px 10px; border-radius: 6px; white-space: nowrap;
      opacity: 0; pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
      backdrop-filter: blur(4px);
    }
    .float-btn--call::after { left: 62px;  top: 50%; transform: translateY(-50%) translateX(-4px); }
    .float-btn--wa::after   { right: 62px; top: 50%; transform: translateY(-50%) translateX(4px); }
    .float-btn:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

    @media (max-width: 480px) {
      .float-btn { width: 44px; height: 44px; bottom: 18px; }
      .float-btn--call { left: 14px; }
      .float-btn--wa   { right: 14px; }
      .float-btn::after { display: none; }
    }

    /* ══════════════════════════════════════════════════════════
       SCROLL ROCKET
    ══════════════════════════════════════════════════════════ */
    #scroll-rocket {
      position: fixed;
      right: 22px;
      top: 85vh;
      z-index: 9000;
      pointer-events: none;
      opacity: 0;
      transform: translateY(-50%);
      transition: opacity 0.5s ease, top 0s;
      filter: drop-shadow(0 6px 16px rgba(29,78,216,0.4));
      display: flex; flex-direction: column; align-items: center; gap: 4px;
    }
    #scroll-rocket.sr-visible { opacity: 1; }

    /* Flame flicker */
    @keyframes sr-flicker {
      0%,100% { transform: scaleY(1)    scaleX(1);    opacity: 1; }
      25%      { transform: scaleY(0.88) scaleX(1.1);  opacity: 0.85; }
      50%      { transform: scaleY(1.1)  scaleX(0.92); opacity: 1; }
      75%      { transform: scaleY(0.94) scaleX(1.06); opacity: 0.9; }
    }
    .sr-flame  { animation: sr-flicker 0.38s ease-in-out infinite; transform-origin: 50% 0; }
    .sr-flame2 { animation: sr-flicker 0.28s ease-in-out infinite 0.12s; transform-origin: 50% 0; }

    /* Exhaust trail dots */
    .sr-trail { display: flex; flex-direction: column; align-items: center; gap: 5px; margin-top: 2px; }
    .sr-trail span {
      display: block; border-radius: 50%;
      background: rgba(29,78,216,0.25);
      animation: sr-trail-pulse 0.9s ease-in-out infinite;
    }
    .sr-trail span:nth-child(1) { width: 5px; height: 5px; animation-delay: 0s; }
    .sr-trail span:nth-child(2) { width: 3.5px; height: 3.5px; animation-delay: 0.2s; }
    .sr-trail span:nth-child(3) { width: 2px; height: 2px; animation-delay: 0.4s; }
    @keyframes sr-trail-pulse {
      0%,100% { opacity: 0.7; transform: scale(1); }
      50%     { opacity: 0.2; transform: scale(0.6); }
    }


    /* ══════════════════════════════════════════════════════════
       GLOBAL BASE
    ══════════════════════════════════════════════════════════ */
    :root {
      --blue:   #1d4ed8;
      --orange: #f97316;
      --cyan:   #a5f3fc;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: #f0f9ff;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ══════════════════════════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════════════════════════ */
    #navbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: linear-gradient(135deg, #dbeafe 0%, #a5f3fc 100%);
      border-bottom-left-radius:  20px;
      border-bottom-right-radius: 20px;
      box-shadow:
        0 4px 6px -1px rgba(99,179,237,0.25),
        0 10px 28px -4px rgba(56,189,248,0.18),
        inset 0 1px 0 rgba(255,255,255,0.7);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: box-shadow 0.3s ease;
    }
    #navbar.scrolled {
      box-shadow:
        0 6px 12px -2px rgba(56,189,248,0.35),
        0 16px 40px -6px rgba(29,78,216,0.15),
        inset 0 1px 0 rgba(255,255,255,0.8);
    }

    /* ── Logo ── */
    .logo {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      line-height: 1;
      user-select: none;
    }
    .logo .space  { color: #1e40af; }
    .logo .coding { color: #f97316; }
    .logo-dot     { color: #0ea5e9; }

    /* ── Desktop nav links ── */
    .nav-link {
      position: relative;
      font-size: 0.875rem;
      font-weight: 500;
      color: #1e3a5f;
      text-decoration: none;
      padding-bottom: 2px;
      white-space: nowrap;
      transition: color 0.25s ease;
    }
    .nav-link:hover { color: #1d4ed8; }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, #1d4ed8, #f97316);
      border-radius: 2px;
      transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
    }
    .nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

    /* ── CTA button (Get Started) ── */
    .btn-cta {
      position: relative; overflow: hidden;
      background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
      color: #fff;
      border: none; border-radius: 10px;
      font-size: 0.875rem; font-weight: 600;
      padding: 0.5rem 1.25rem;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 2px 8px rgba(29,78,216,0.35);
      white-space: nowrap;
    }
    .btn-cta::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
      opacity: 0; transition: opacity 0.3s ease;
      border-radius: inherit;
    }
    .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(29,78,216,0.4); }
    .btn-cta:hover::before { opacity: 1; }
    .btn-cta span { position: relative; z-index: 1; }

    /* ── Hamburger ── */
    .hamburger {
      display: flex; flex-direction: column; justify-content: center; align-items: center;
      width: 40px; height: 40px; gap: 5px;
      cursor: pointer;
      border-radius: 10px;
      transition: background 0.2s ease;
      border: none; background: transparent; padding: 0;
    }
    .hamburger:hover { background: rgba(29,78,216,0.1); }
    .bar {
      display: block; width: 22px; height: 2px;
      background: #1e3a5f; border-radius: 2px;
      transition:
        transform 0.35s cubic-bezier(0.23,1,0.32,1),
        opacity 0.25s ease,
        width 0.25s ease;
      transform-origin: center;
    }
    .hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open .bar:nth-child(2) { opacity: 0; width: 0; }
    .hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── Mobile menu ── */
    #mobile-menu {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
      opacity: 0;
    }
    #mobile-menu.open { max-height: 400px; opacity: 1; }

    .mobile-link {
      display: block;
      font-size: 1rem; font-weight: 500;
      color: #1e3a5f;
      padding: 0.75rem 1rem;
      border-radius: 10px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .mobile-link:hover {
      background: rgba(29,78,216,0.1);
      color: #1d4ed8;
      transform: translateX(4px);
    }

    /* ══════════════════════════════════════════════════════════
       HERO
    ══════════════════════════════════════════════════════════ */
    .hero {
      position: relative;
      width: 100%;
      min-height: 100vh;
      background: linear-gradient(145deg, #1e40af 0%, #0ea5e9 45%, #06b6d4 75%, #67e8f9 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 80px 24px 100px;
      overflow: hidden;
    }

    /* Radial light accent */
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(255,255,255,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(6,182,212,0.25) 0%, transparent 55%);
      pointer-events: none;
    }

    /* Decorative floating shapes */
    .floater { position: absolute; pointer-events: none; z-index: 1; }
    .orb {
      border-radius: 50%;
      filter: blur(55px);
      opacity: 0.25;
    }
    .orb-1 {
      width: 260px; height: 260px;
      background: #fcd34d;
      top: 5%; left: -60px;
      animation: drift 9s ease-in-out infinite alternate;
    }
    .orb-2 {
      width: 200px; height: 200px;
      background: #818cf8;
      bottom: 10%; right: -40px;
      animation: drift 12s ease-in-out infinite alternate-reverse;
    }
    .dot-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
    }
    .dot-grid span {
      display: block;
      width: 5px; height: 5px;
      border-radius: 50%;
      background: rgba(255,255,255,0.45);
    }
    .spin-ring {
      width: 90px; height: 90px;
      border-radius: 50%;
      border: 2px dashed rgba(255,255,255,0.3);
      animation: spin 16s linear infinite;
    }
    .sparkle   { animation: twinkle 2.8s ease-in-out infinite; }
    .sparkle-2 { animation-delay: 1.2s; }
    .sparkle-3 { animation-delay: 0.6s; }
    .sparkle-4 { animation-delay: 2s; }

    /* ── Hero "Live" badge ── */
    .float-badge {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 50px;
      padding: 6px 14px;
      font-size: 0.72rem; font-weight: 600; color: #fff;
      display: flex; align-items: center; gap: 6px;
      white-space: nowrap;
      animation: floatY 4s ease-in-out infinite alternate;
    }
    .pulse-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #4ade80;
      position: relative;
    }
    .pulse-dot::after {
      content: '';
      position: absolute; inset: -5px;
      border-radius: 50%;
      border: 2px solid #4ade80;
      animation: pulse 1.8s ease-out infinite;
    }

    /* ── Stat badges ── */
    .stat-badge {
      background: rgba(255,255,255,0.95);
      border-radius: 18px;
      padding: 10px 16px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
      animation: floatY 5s ease-in-out 1s infinite alternate;
    }
    .stat-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.3rem; font-weight: 800;
      color: #1d4ed8; line-height: 1;
    }
    .stat-lbl {
      font-size: 0.65rem; color: #64748b;
      font-weight: 500; margin-top: 2px;
    }

    /* ── Hero text ── */
    .hero-eyebrow {
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: #bae6fd;
      display: flex; align-items: center; gap: 8px;
      margin-bottom: 16px;
    }
    .hero-eyebrow span { display: inline-block; width: 28px; height: 1.5px; background: #bae6fd; border-radius: 2px; }

    .hero-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(2rem, 5.5vw, 3.6rem);
      font-weight: 800; color: #fff;
      text-align: center; line-height: 1.12;
      letter-spacing: -0.8px; margin-bottom: 18px;
    }
    .hero-title em {
      font-style: normal;
      background: linear-gradient(90deg, #fbbf24, #f97316);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: 1rem; font-weight: 400;
      color: #bae6fd; text-align: center;
      max-width: 480px; line-height: 1.7;
      margin-bottom: 36px;
    }
    .cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 64px; }
    .btn-primary {
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem; font-weight: 600;
      padding: 0.7rem 1.5rem;
      background: #fff; color: #1d4ed8;
      border: none; border-radius: 12px; cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
    .btn-outline {
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem; font-weight: 500;
      padding: 0.7rem 1.5rem;
      background: rgba(255,255,255,0.1); color: #fff;
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 12px; cursor: pointer;
      backdrop-filter: blur(8px);
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

    /* ── Laptop Mockup ── */
    .laptop-wrapper {
      position: relative; width: 100%; max-width: 680px; z-index: 2;
      filter: drop-shadow(0 32px 60px rgba(0,0,0,0.28));
    }
    .laptop-screen {
      width: 100%;
      background: linear-gradient(145deg, #dde0e5 0%, #c8cbd0 40%, #d4d7dc 100%);
      border-radius: 16px 16px 0 0;
      border: 2.5px solid #b0b3b8;
      padding: 14px;
      position: relative;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), inset 0 -1px 0 rgba(0,0,0,0.08);
    }
    .laptop-camera {
      width: 7px; height: 7px; border-radius: 50%;
      background: radial-gradient(circle at 40% 35%, #a0a3a8, #6b6e73);
      box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
      margin: 0 auto 12px;
    }
    .laptop-glass {
      background: linear-gradient(145deg, #f8fafc 0%, #edf4fb 100%);
      border-radius: 8px;
      padding: 22px 16px;
      position: relative; overflow: hidden;
      min-height: 220px;
      border: 1px solid rgba(0,0,0,0.06);
    }
    .browser-bar { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
    .mac-red    { width:10px; height:10px; border-radius:50%; background:#ef4444; }
    .mac-yellow { width:10px; height:10px; border-radius:50%; background:#eab308; }
    .mac-green  { width:10px; height:10px; border-radius:50%; background:#22c55e; }
    .browser-url {
      flex: 1; height: 22px;
      background: rgba(100,116,139,0.1);
      border-radius: 6px; margin-left: 8px;
      display: flex; align-items: center;
      padding: 0 10px;
      font-size: 0.65rem; color: #64748b;
    }
    .laptop-hinge {
      height: 10px;
      background: linear-gradient(180deg, #b8bbbf 0%, #9a9da2 100%);
      border-radius: 0 0 2px 2px;
      border: 2px solid #a0a3a8; border-top: none;
    }
    .laptop-base {
      height: 18px;
      background: linear-gradient(180deg, #d4d7dc 0%, #bec1c6 100%);
      border-radius: 0 0 16px 16px;
      width: 110%; margin-left: -5%;
      position: relative;
      box-shadow: 0 4px 12px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.5);
    }

    /* Slider nav */
    .slider-nav {
      display: flex; justify-content: space-between; align-items: center;
      margin-top: 12px; padding: 0 2px;
    }
    .slider-btn {
      width: 28px; height: 28px; border-radius: 8px;
      background: rgba(29,78,216,0.08);
      border: 1px solid rgba(29,78,216,0.18);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
    }
    .slider-btn:hover {
      background: rgba(29,78,216,0.18);
      transform: translateY(-2px) scale(1.12);
      box-shadow: 0 4px 10px rgba(29,78,216,0.2);
    }
    .slider-dots { display: flex; gap: 5px; }
    .slider-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(29,78,216,0.2); transition: background 0.2s, transform 0.2s;
    }
    .slider-dot.active { background: #1d4ed8; transform: scale(1.3); }

    /* ══════════════════════════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════════════════════════ */
    @keyframes drift {
      from { transform: translate(0,0) scale(1); }
      to   { transform: translate(18px,24px) scale(1.08); }
    }
    @keyframes floatY {
      from { transform: translateY(0); }
      to   { transform: translateY(-10px); }
    }
    @keyframes pulse {
      from { opacity: .8; transform: scale(1); }
      to   { opacity: 0; transform: scale(2); }
    }
    @keyframes spin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    @keyframes twinkle {
      0%,100% { opacity: .5; transform: scale(1) rotate(0deg); }
      50%      { opacity: 1; transform: scale(1.2) rotate(20deg); }
    }
    @keyframes flamePulse {
      0%,100% { opacity: 0.85; transform: scaleY(1) scaleX(1); }
      50%      { opacity: 1;    transform: scaleY(1.18) scaleX(0.88); }
    }
    @keyframes trailFade {
      0%,100% { opacity: 0.12; transform: scale(0.75); }
      50%      { opacity: 0.45; transform: scale(1); }
    }
    @keyframes illusFloat {
      from { transform: translateY(0px) rotate(0deg); }
      to   { transform: translateY(-16px) rotate(2deg); }
    }
    @keyframes illusFloatTilt {
      from { transform: translateY(0px) rotate(-8deg); }
      to   { transform: translateY(-14px) rotate(-5deg); }
    }
    @keyframes illusFloatUp {
      from { transform: translateY(0px) rotate(0deg); }
      to   { transform: translateY(-20px) rotate(-3deg); }
    }
    @keyframes laptopMarquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .flame-flicker { animation: flamePulse 0.7s ease-in-out infinite; transform-origin: center top; }
    .trail-d1 { animation: trailFade 1.6s ease-in-out 0.0s infinite; }
    .trail-d2 { animation: trailFade 1.6s ease-in-out 0.3s infinite; }
    .trail-d3 { animation: trailFade 1.6s ease-in-out 0.6s infinite; }
    .trail-d4 { animation: trailFade 1.6s ease-in-out 0.9s infinite; }
    .trail-d5 { animation: trailFade 1.6s ease-in-out 1.2s infinite; }

    /* Illustration float classes */
    .illus { position: absolute; pointer-events: none; z-index: 1; }
    .illus-float      { animation: illusFloat     5s ease-in-out infinite alternate; }
    .illus-float-tilt { animation: illusFloatTilt  6s ease-in-out infinite alternate; }
    .illus-float-up   { animation: illusFloatUp    4.5s ease-in-out infinite alternate; }

    /* ══════════════════════════════════════════════════════════
       INFINITE CARD SLIDER
    ══════════════════════════════════════════════════════════ */
    .slider-viewport {
      position: relative; overflow: hidden;
      width: 100%; padding: 20px 0;
    }
    .cards-row {
      display: flex; gap: 14px;
      width: max-content;
      animation: laptopMarquee var(--slider-duration, 28s) linear infinite;
      will-change: transform;
    }
    .slider-viewport:hover .cards-row,
    .cards-row.paused { animation-play-state: paused; }

    /* Edge fade masks */
    .slider-viewport::before,
    .slider-viewport::after {
      content: '';
      position: absolute; top: 0; bottom: 0;
      width: 36px; z-index: 3; pointer-events: none;
    }
    .slider-viewport::before { left:  0; background: linear-gradient(to right,  rgba(248,250,252,0.95), transparent); }
    .slider-viewport::after  { right: 0; background: linear-gradient(to left, rgba(224,242,254,0.95), transparent); }

    .service-card {
      flex: 0 0 160px;
      background: #fff;
      border-radius: 16px;
      padding: 20px 12px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      cursor: default;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s ease;
    }
    .sc-icon-inner {
      width: 46px; height: 46px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
    }
    .sc-card-label {
      font-weight: 600; font-size: 0.72rem;
      color: #0f172a; text-align: center; line-height: 1.4;
    }
    .sc-slider-badge {
      font-size: 0.6rem; font-weight: 500;
      padding: 2px 8px; border-radius: 100px;
    }
    .service-card:hover {
      transform: translateY(-6px) scale(1.04);
      box-shadow: 0 16px 32px rgba(0,0,0,0.14);
    }

    /* ══════════════════════════════════════════════════════════
       SERVICES SECTION
    ══════════════════════════════════════════════════════════ */
    .services-section {
      padding: 96px 24px;
      background: #f0f9ff;
      position: relative; overflow: hidden;
    }

    /* Section labels */
    .section-eyebrow {
      font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: #2563eb;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      margin-bottom: 12px;
    }
    .section-eyebrow::before,
    .section-eyebrow::after {
      content: ''; display: inline-block;
      width: 24px; height: 1.5px;
      background: #2563eb; border-radius: 2px;
    }
    .section-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: #0f172a;
      text-align: center;
      line-height: 1.15;
      letter-spacing: -0.5px;
      margin-bottom: 14px;
    }
    .section-title span {
      background: linear-gradient(90deg, #1d4ed8, #0ea5e9);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .section-sub {
      font-size: 1rem; color: #64748b;
      text-align: center;
      max-width: 520px; margin: 0 auto 56px;
      line-height: 1.7;
    }

    /* ── Service card (big grid) ── */
    .svc-card {
      background: #fff;
      border-radius: 24px;
      padding: 36px 28px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
      border: 1px solid rgba(203,213,225,0.8);
      display: flex; flex-direction: column; align-items: center; text-align: center;
      position: relative; overflow: hidden;
      transition:
        transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    }
    /* Top accent bar that slides in on hover */
    .svc-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--card-accent, linear-gradient(90deg, #1d4ed8, #0ea5e9));
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
      border-radius: 24px 24px 0 0;
    }
    .svc-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 48px rgba(0,0,0,0.12); border-color: rgba(29,78,216,0.15); }
    .svc-card:hover::before { transform: scaleX(1); }
    .svc-card:hover .svc-icon-wrap { transform: scale(1.1) rotate(-4deg); }
    .svc-card:hover .svc-tag { background: #eff6ff; color: #2563eb; }

    .svc-icon-wrap {
      width: 68px; height: 68px; border-radius: 20px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 22px;
      transition: transform 0.3s ease;
    }
    .svc-badge {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 0.65rem; font-weight: 600;
      padding: 3px 10px; border-radius: 100px;
      margin-bottom: 14px;
    }
    .svc-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.2rem; font-weight: 700; color: #0f172a;
      margin-bottom: 12px; line-height: 1.2;
    }
    .svc-desc { font-size: 0.875rem; color: #64748b; line-height: 1.7; margin-bottom: 24px; }
    .svc-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 28px; }
    .svc-tag {
      font-size: 0.68rem; font-weight: 500;
      padding: 4px 10px; border-radius: 8px;
      background: #f1f5f9; color: #475569;
      transition: background 0.2s, color 0.2s;
    }
    .svc-stats {
      display: flex; gap: 20px; justify-content: center;
      padding: 16px 0; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9;
      margin-bottom: 24px; width: 100%;
    }
    .svc-stat { display: flex; flex-direction: column; align-items: center; }
    .svc-stat-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.1rem; font-weight: 800; color: #1d4ed8; line-height: 1;
    }
    .svc-stat-lbl { font-size: 0.6rem; color: #94a3b8; font-weight: 500; margin-top: 3px; }
    .svc-stat-divider { width: 1px; background: #f1f5f9; }

    .svc-link {
      font-size: 0.85rem; font-weight: 600; color: #1d4ed8;
      display: inline-flex; align-items: center; gap: 6px;
      text-decoration: none; margin-top: auto;
      transition: gap 0.2s ease;
    }
    .svc-link:hover { gap: 10px; }

    /* ══════════════════════════════════════════════════════════
       ACCELERATORS SECTION
    ══════════════════════════════════════════════════════════ */
    .accel-section {
      position: relative;
      padding: 104px 24px 112px;
      background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 55%, #0c2340 100%);
      overflow: hidden;
    }

    /* Grid texture overlay */
    .accel-grid-bg {
      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: 48px 48px;
      pointer-events: none;
    }

    /* Section labels (dark version) */
    .accel-eyebrow {
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: #38bdf8;
      text-align: center;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      margin-bottom: 14px;
    }
    .accel-eyebrow::before,
    .accel-eyebrow::after {
      content: ''; display: inline-block;
      width: 28px; height: 1px;
      background: #38bdf8; border-radius: 2px; opacity: 0.6;
    }
    .accel-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(1.9rem, 4.5vw, 3rem);
      font-weight: 800; color: #f8fafc;
      text-align: center; line-height: 1.1;
      letter-spacing: -0.5px; margin-bottom: 16px;
    }
    .accel-title span {
      background: linear-gradient(90deg, #38bdf8, #818cf8);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .accel-sub {
      font-size: 0.975rem; color: #94a3b8;
      text-align: center; max-width: 500px;
      margin: 0 auto 64px; line-height: 1.75;
    }

    /* Accel card */
    .accel-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 24px;
      padding: 40px 32px 36px;
      display: flex; flex-direction: column; align-items: flex-start;
      position: relative;
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      transition:
        transform 0.32s cubic-bezier(0.34,1.56,0.64,1),
        box-shadow 0.32s ease,
        border-color 0.32s ease,
        background 0.32s ease;
    }
    /* Inner glow reveals on hover */
    .accel-card::before {
      content: ''; position: absolute; inset: 0;
      background: var(--glow, radial-gradient(circle at 10% 10%, rgba(56,189,248,0.08) 0%, transparent 60%));
      pointer-events: none; opacity: 0;
      transition: opacity 0.35s ease; border-radius: inherit;
    }
    /* Bottom bar reveals on hover */
    .accel-card::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      height: 3px; width: 0%;
      background: var(--bar, linear-gradient(90deg, #38bdf8, #818cf8));
      border-radius: 0 0 24px 24px;
      transition: width 0.45s cubic-bezier(0.34,1.56,0.64,1);
    }
    .accel-card:hover {
      transform: translateY(-10px);
      background: rgba(255,255,255,0.07);
      border-color: rgba(255,255,255,0.16);
      box-shadow: 0 24px 56px rgba(0,0,0,0.45);
    }
    .accel-card:hover::before { opacity: 1; }
    .accel-card:hover::after  { width: 100%; }
    .accel-card:hover .accel-icon-ring { transform: scale(1.12) rotate(-5deg); }
    .accel-card:hover .accel-cta { gap: 10px; opacity: 1; }

    .accel-icon-ring {
      width: 64px; height: 64px; border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
      transition: transform 0.3s ease;
    }
    .accel-number {
      position: absolute; top: 24px; right: 28px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2.8rem; font-weight: 800;
      color: rgba(255,255,255,0.04);
      line-height: 1; user-select: none; pointer-events: none;
      letter-spacing: -4px;
      transition: color 0.4s ease;
    }
    .accel-card:hover .accel-number { color: rgba(255,255,255,0.07); }

    .accel-card-label {
      font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      margin-bottom: 10px;
      padding: 3px 10px; border-radius: 100px;
    }
    .accel-card-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.3rem; font-weight: 800; color: #e2e8f0;
      margin-bottom: 14px; line-height: 1.2;
    }
    .accel-card-desc {
      font-size: 0.875rem; color: #94a3b8;
      line-height: 1.75; margin-bottom: 28px; flex: 1;
    }
    .accel-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
    .accel-feat {
      display: flex; align-items: center; gap: 5px;
      font-size: 0.72rem; font-weight: 500; color: #94a3b8;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 8px; padding: 4px 10px;
      transition: background 0.2s, border-color 0.2s;
    }
    .accel-feat:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.14); }
    .accel-feat-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
    .accel-cta {
      font-size: 0.82rem; font-weight: 600;
      display: inline-flex; align-items: center; gap: 6px;
      text-decoration: none; opacity: 0.75;
      transition: gap 0.2s ease, opacity 0.2s;
    }

    /* Stats strip below cards */
    .accel-stat-row {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 1px;
      background: rgba(255,255,255,0.06);
      border-radius: 20px; overflow: hidden;
      margin-top: 72px;
    }
    .accel-stat-cell {
      background: rgba(255,255,255,0.02);
      padding: 24px; text-align: center;
      backdrop-filter: blur(6px);
    }
    .accel-stat-val {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.8rem; font-weight: 800; color: #f8fafc; line-height: 1;
    }
    .accel-stat-desc { font-size: 0.75rem; color: #94a3b8; margin-top: 6px; line-height: 1.4; }

    @media (max-width: 600px) {
      .accel-stat-row {
        grid-template-columns: 1fr;
        gap: 1px;
        margin-top: 40px;
      }
      .accel-stat-cell {
        padding: 20px 16px;
      }
      .accel-stat-val {
        font-size: 1.5rem;
      }
    }

    /* ══════════════════════════════════════════════════════════
       THE CODING BOOST — CTA / DARK FULL-WIDTH
    ══════════════════════════════════════════════════════════ */
    .cta-boost {
      position: relative; overflow: hidden;
      background: linear-gradient(140deg, #020617 0%, #0c1a3a 35%, #0c4a6e 70%, #0e7490 100%);
      padding-bottom: 100px;
    }

    /* ── Background glow blobs ── */
    .cta-glow-l, .cta-glow-r {
      position: absolute; border-radius: 50%; pointer-events: none;
    }
    .cta-glow-l {
      width: 480px; height: 480px;
      background: radial-gradient(circle, rgba(14,165,233,0.18) 0%, transparent 70%);
      top: 10%; left: -120px;
    }
    .cta-glow-r {
      width: 380px; height: 380px;
      background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
      bottom: 5%; right: -80px;
    }
    .cta-dot-grid {
      position: absolute; inset: 0; pointer-events: none;
      background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
      background-size: 36px 36px;
    }

    /* ── Centre content ── */
    .cta-inner {
      max-width: 680px; margin: 0 auto; padding: 0 24px;
      text-align: center; display: flex; flex-direction: column; align-items: center;
      position: relative; z-index: 2;
      padding-bottom: 10px;
    }

    /* ── Eyebrow chip ── */
    .cta-chip {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 5px 16px; border-radius: 100px;
      background: rgba(14,165,233,0.15);
      border: 1px solid rgba(14,165,233,0.30);
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: #38bdf8; margin-bottom: 22px;
    }
    .cta-chip-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: #38bdf8;
      animation: pulse 1.8s ease-out infinite;
    }

    /* ── Heading ── */
    .cta-heading {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 800; color: #f1f5f9;
      text-align: center; line-height: 1.1;
      letter-spacing: -0.8px; margin-bottom: 18px;
    }
    .cta-heading .hi { color: #38bdf8; }
    .cta-heading .ho {
      background: linear-gradient(90deg, #f97316, #fbbf24);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ── Sub copy ── */
    .cta-sub {
      font-size: 1rem; color: #64748b;
      text-align: center; max-width: 520px; margin: 0 auto 48px;
      line-height: 1.75;
    }

    /* ── Bullet items ── */
    .cta-bullets {
      list-style: none;
      display: flex; flex-direction: column; gap: 14px;
      margin-bottom: 48px; max-width: 480px; width: 100%;
    }
    .cta-bullet {
      display: flex; align-items: flex-start; gap: 14px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 18px; padding: 14px 18px;
      transition: background 0.25s, border-color 0.25s, transform 0.25s;
    }
    .cta-bullet:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(56,189,248,0.2);
      transform: translateX(4px);
    }
    .cta-check {
      flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center; margin-top: 1px;
    }
    .cta-bullet-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.9rem; font-weight: 700; color: #e2e8f0; margin-bottom: 3px;
    }
    .cta-bullet-desc { font-size: 0.8rem; color: #475569; line-height: 1.55; }

    /* ── CTA boost button ── */
    .cta-boost-btn {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 0.95rem; font-weight: 600;
      padding: 0.85rem 2rem;
      background: #3b82f6; color: #fff;
      border-radius: 100px; border: none; cursor: pointer;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(59,130,246,0.45);
      position: relative; overflow: hidden;
      transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    }
    .cta-boost-btn::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
      transform: translateX(-100%); transition: transform 0.55s ease;
    }
    .cta-boost-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(59,130,246,0.55); }
    .cta-boost-btn:hover::before  { transform: translateX(100%); }
    .cta-boost-btn:hover .btn-arrow { transform: translateX(5px); }
    .btn-arrow { display: inline-flex; transition: transform 0.25s ease; }

    /* ── Trust line ── */
    .cta-trust {
      margin-top: 18px; font-size: 0.75rem; color: #475569;
      display: flex; align-items: center; gap: 8px;
    }
    .cta-trust::before, .cta-trust::after {
      content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.07);
    }

    /* ══════════════════════════════════════════════════════════
       SC-BTN — Reusable button system
    ══════════════════════════════════════════════════════════ */
    .sc-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      font-family: 'Inter', sans-serif; font-weight: 600;
      border: none; border-radius: 100px;
      cursor: pointer; text-decoration: none;
      position: relative; overflow: hidden; user-select: none; white-space: nowrap;
      transition:
        transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
        box-shadow 0.22s ease, background 0.22s ease, opacity 0.2s ease;
    }
    .sc-btn::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
      transform: translateX(-100%); transition: transform 0.5s ease; pointer-events: none;
    }
    .sc-btn:hover::after { transform: translateX(100%); }
    .sc-btn:hover { transform: translateY(-3px) scale(1.03); }
    .sc-btn:active { transform: translateY(0) scale(0.97); transition-duration: 0.1s; }
    .sc-btn:focus-visible { outline: 2px solid #38bdf8; outline-offset: 3px; }
    .sc-btn:disabled, .sc-btn[aria-disabled="true"] { opacity: 0.45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
    .sc-btn:disabled::after, .sc-btn[aria-disabled="true"]::after { display: none; }

    /* Variants */
    .sc-btn-primary {
      background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
      color: #fff;
      box-shadow: 0 4px 14px rgba(37,99,235,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
    }
    .sc-btn-primary:hover {
      background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 50%, #1e3a8a 100%);
      box-shadow: 0 10px 28px rgba(29,78,216,0.55), inset 0 1px 0 rgba(255,255,255,0.15);
    }
    .sc-btn-orange {
      background: linear-gradient(135deg, #f97316 0%, #ea6c0a 50%, #c2560a 100%);
      color: #fff;
      box-shadow: 0 4px 14px rgba(249,115,22,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
    }
    .sc-btn-orange:hover {
      background: linear-gradient(135deg, #ea6c0a 0%, #c2560a 50%, #9a3a06 100%);
      box-shadow: 0 10px 28px rgba(234,108,10,0.55), inset 0 1px 0 rgba(255,255,255,0.15);
    }
    .sc-btn-ghost {
      background: transparent; color: #1d4ed8;
      border: 2px solid #1d4ed8;
    }
    .sc-btn-ghost:hover { background: #eff6ff; box-shadow: 0 6px 18px rgba(29,78,216,0.15); }
    .sc-btn-ghost-dark {
      background: rgba(255,255,255,0.08); color: #fff;
      border: 1.5px solid rgba(255,255,255,0.3);
      backdrop-filter: blur(8px);
    }
    .sc-btn-ghost-dark:hover {
      background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5);
      box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    }
    .sc-btn-white {
      background: #fff; color: #1d4ed8;
      box-shadow: 0 4px 14px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
    }
    .sc-btn-white:hover { background: #f0f9ff; box-shadow: 0 10px 28px rgba(0,0,0,0.18); }

    /* Sizes */
    .sc-btn-sm  { font-size: 0.78rem; padding: 0.45rem 1.1rem; }
    .sc-btn-md  { font-size: 0.9rem;  padding: 0.65rem 1.55rem; }
    .sc-btn-lg  { font-size: 1rem;    padding: 0.85rem 2rem; }
    .sc-btn-xl  { font-size: 1.1rem;  padding: 1rem 2.4rem; }
    .sc-btn-icon { padding: 0; border-radius: 50%; width: 44px; height: 44px; }
    .sc-btn-icon.sc-btn-sm { width: 34px; height: 34px; }
    .sc-btn-icon.sc-btn-lg { width: 54px; height: 54px; }

    /* ── Loading spinner ─────────────────────────────────── */
    .sc-btn-spinner {
      width: 14px; height: 14px;
      border: 2px solid rgba(255,255,255,0.35);
      border-top-color: #fff;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
      flex-shrink: 0;
    }
    .sc-btn-ghost .sc-btn-spinner,
    .sc-btn-white .sc-btn-spinner {
      border-color: rgba(29,78,216,0.25);
      border-top-color: #1d4ed8;
    }

    /* ══════════════════════════════════════════════════════════
       TWO-COLUMN  — CODING AMNISICS & TECHNONOOK
    ══════════════════════════════════════════════════════════ */
    .split-section {
      position: relative;
      overflow: hidden;
      background: linear-gradient(130deg, #ffffff 0%, #eff6ff 40%, #dbeafe 75%, #bfdbfe 100%);
      padding: 100px 24px 110px;
    }

    /* faint radial glow top-right */
    .split-section::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(29,78,216,0.06) 0%, transparent 70%);
      top: -180px; right: -160px;
      pointer-events: none;
    }

    /* ── Flow lines SVG ── */
    .split-flow-lines {
      position: absolute;
      inset: 0;
      pointer-events: none;
      width: 100%; height: 100%;
    }

    /* ── Left column ── */

    .split-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #2563eb;
      margin-bottom: 18px;
    }
    .split-eyebrow-line {
      display: inline-block;
      width: 24px; height: 1.5px;
      background: #2563eb;
      border-radius: 2px;
    }

    .split-heading {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 800;
      color: #0f172a;
      line-height: 1.1;
      letter-spacing: -0.8px;
      margin-bottom: 22px;
    }
    .split-heading .hl-blue {
      background: linear-gradient(90deg, #1d4ed8, #0ea5e9);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .split-heading .hl-orange {
      background: linear-gradient(90deg, #f97316, #fbbf24);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .split-para {
      font-size: 1rem;
      color: #475569;
      line-height: 1.75;
      max-width: 460px;
      margin-bottom: 36px;
    }

    /* mini feature list */
    .split-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 40px;
    }
    .split-feat-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.875rem;
      color: #334155;
      font-weight: 500;
    }
    .split-feat-check {
      width: 20px; height: 20px;
      border-radius: 6px;
      background: linear-gradient(135deg, #2563eb, #0ea5e9);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 2px 6px rgba(37,99,235,0.35);
    }

    /* ── Right column ── */

    /* glow halo behind illustration */
    .split-illu-glow {
      position: absolute;
      width: 340px; height: 340px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    /* orbit ring that spins slowly */
    .split-orbit {
      position: absolute;
      width: 320px; height: 320px;
      border-radius: 50%;
      border: 1.5px dashed rgba(37,99,235,0.2);
      animation: spin 22s linear infinite;
      pointer-events: none;
    }
    .split-orbit-dot {
      position: absolute;
      top: -5px; left: 50%;
      transform: translateX(-50%);
      width: 10px; height: 10px;
      border-radius: 50%;
      background: #2563eb;
      box-shadow: 0 0 8px rgba(37,99,235,0.6);
    }

    /* floating code pill */
    .split-code-pill {
      position: absolute;
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 8px 14px;
      font-family: monospace;
      font-size: 0.72rem;
      color: #1d4ed8;
      box-shadow: 0 4px 14px rgba(0,0,0,0.08);
      pointer-events: none;
      white-space: nowrap;
    }

    .pill-float-1 { animation: illusFloat 4s ease-in-out infinite alternate; }
    .pill-float-2 { animation: illusFloat 5s ease-in-out 1s infinite alternate; }
    .pill-float-3 { animation: illusFloat 3.5s ease-in-out 0.5s infinite alternate; }

    @media (max-width: 768px) {
      .split-section {
        padding: 60px 20px 70px;
      }
      .split-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
      }
      .split-right {
        order: -1;          /* illustration goes on top */
      }
      .split-right svg {
        width: 200px !important;
        height: auto !important;
      }
      .split-illu-glow,
      .split-orbit,
      .split-code-pill {
        display: none;      /* hide decorative floaters on small screens */
      }
      .split-heading {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
      }
      .split-para {
        max-width: 100%;
        font-size: 0.9rem;
      }
    }

    /* ══════════════════════════════════════════════════════════
       CODING BOOST — LIGHT PANEL STRIP
    ══════════════════════════════════════════════════════════ */
    .boost-section {
      position: relative;
      overflow: hidden;
      padding: 120px 24px 140px;
      background: #f0f9ff;
    }

    /* ── Dot grid overlay ── */
    .boost-bg-grid {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px);
      background-size: 30px 30px;
      pointer-events: none;
    }

    /* ── Ambient glows ── */
    .boost-bg-glow {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(110px);
    }
    .boost-bg-glow--l {
      width: 640px; height: 640px;
      background: radial-gradient(circle, rgba(37,99,235,0.14) 0%, transparent 70%);
      top: -160px; left: -180px;
      animation: drift 14s ease-in-out infinite alternate;
    }
    .boost-bg-glow--r {
      width: 520px; height: 520px;
      background: radial-gradient(circle, rgba(245,158,11,0.11) 0%, transparent 70%);
      bottom: -110px; right: -120px;
      animation: drift 18s ease-in-out 2s infinite alternate-reverse;
    }

    /* ── Wrapper ── */
    .boost-wrap {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .boost-eyebrow {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: #f59e0b;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 16px;
    }
    .boost-eyebrow::before,
    .boost-eyebrow::after {
      content: '';
      display: inline-block;
      width: 30px; height: 1px;
      background: linear-gradient(90deg, transparent, #f59e0b);
      opacity: 0.7;
    }
    .boost-eyebrow::after {
      background: linear-gradient(90deg, #f59e0b, transparent);
    }

    .boost-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      font-weight: 800;
      color: #0f172a;
      text-align: center;
      line-height: 1.1;
      letter-spacing: -0.5px;
      margin-bottom: 18px;
    }
    .boost-title span {
      background: linear-gradient(95deg, #f59e0b 0%, #fbbf24 45%, #fb923c 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .boost-sub {
      font-size: 0.95rem;
      color: #64748b;
      max-width: 430px;
      margin: 0 auto;
      line-height: 1.8;
    }

    /* ── Panel container ── */
    .boost-panels {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      box-shadow:
        0 0 0 1px rgba(0,0,0,0.03) inset,
        0 20px 60px rgba(0,0,0,0.08);
    }

    /* ── Individual panel ── */
    .boost-panel {
      position: relative;
      padding: 38px 26px 32px;
      border-right: 1px solid rgba(0,0,0,0.07);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: background 0.4s ease;
      /* entrance animation — paused until .boost-panels.in-view */
      opacity: 0;
      transform: translateY(28px);
      transition:
        background 0.4s ease,
        opacity 0.55s cubic-bezier(0.25,0.46,0.45,0.94),
        transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .boost-panels.in-view .boost-panel { opacity: 1; transform: translateY(0); }
    .boost-panels.in-view .boost-panel:nth-child(1) { transition-delay: 0.05s; }
    .boost-panels.in-view .boost-panel:nth-child(2) { transition-delay: 0.15s; }
    .boost-panels.in-view .boost-panel:nth-child(3) { transition-delay: 0.25s; }
    .boost-panels.in-view .boost-panel:nth-child(4) { transition-delay: 0.35s; }

    .boost-panel:last-child { border-right: none; }
    .boost-panel:hover { background: rgba(0,0,0,0.02); }

    /* top accent streak — reveals on hover */
    .boost-panel::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      opacity: 0;
      transform: scaleX(0);
      transform-origin: left;
      transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
    }
    .boost-panel:hover::before { opacity: 1; transform: scaleX(1); }

    /* bottom ambient glow — reveals on hover */
    .boost-panel::after {
      content: '';
      position: absolute;
      bottom: -40px; left: 50%;
      translate: -50% 0;
      width: 120px; height: 80px;
      border-radius: 50%;
      filter: blur(30px);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }
    .boost-panel:hover::after { opacity: 1; }

    /* ── Color variants ── */
    .boost-panel--blue::before  { background: linear-gradient(90deg,#2563eb,#38bdf8); }
    .boost-panel--amber::before { background: linear-gradient(90deg,#f59e0b,#fbbf24); }
    .boost-panel--emerald::before { background: linear-gradient(90deg,#059669,#34d399); }
    .boost-panel--violet::before  { background: linear-gradient(90deg,#7c3aed,#a78bfa); }

    .boost-panel--blue::after   { background: #2563eb; }
    .boost-panel--amber::after  { background: #f59e0b; }
    .boost-panel--emerald::after { background: #059669; }
    .boost-panel--violet::after  { background: #7c3aed; }

    .boost-panel--blue   .boost-panel-icon { background: rgba(37,99,235,0.12);  color: #2563eb; }
    .boost-panel--amber  .boost-panel-icon { background: rgba(245,158,11,0.14); color: #d97706; }
    .boost-panel--emerald .boost-panel-icon { background: rgba(5,150,105,0.12); color: #059669; }
    .boost-panel--violet .boost-panel-icon  { background: rgba(124,58,237,0.12); color: #7c3aed; }

    .boost-panel--blue   .boost-panel-bar-fill { background: linear-gradient(90deg,#2563eb,#38bdf8); }
    .boost-panel--amber  .boost-panel-bar-fill { background: linear-gradient(90deg,#f59e0b,#fbbf24); }
    .boost-panel--emerald .boost-panel-bar-fill { background: linear-gradient(90deg,#059669,#34d399); }
    .boost-panel--violet .boost-panel-bar-fill  { background: linear-gradient(90deg,#7c3aed,#a78bfa); }

    .boost-panel--blue   .boost-panel-tag { color: #2563eb; }
    .boost-panel--amber  .boost-panel-tag { color: #d97706; }
    .boost-panel--emerald .boost-panel-tag { color: #059669; }
    .boost-panel--violet .boost-panel-tag  { color: #7c3aed; }

    .boost-panel--blue   .boost-panel-pct { color: #2563eb; }
    .boost-panel--amber  .boost-panel-pct { color: #d97706; }
    .boost-panel--emerald .boost-panel-pct { color: #059669; }
    .boost-panel--violet .boost-panel-pct  { color: #7c3aed; }

    /* ── Ghost number ── */
    .boost-panel-ghost {
      position: absolute;
      bottom: -16px; right: -4px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 7.5rem;
      font-weight: 900;
      line-height: 1;
      color: rgba(0,0,0,0.05);
      pointer-events: none;
      user-select: none;
      letter-spacing: -4px;
      transition: color 0.4s ease;
    }
    .boost-panel:hover .boost-panel-ghost { color: rgba(0,0,0,0.09); }

    /* ── Top row: icon + tag ── */
    .boost-panel-top {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
    }

    .boost-panel-icon {
      width: 40px; height: 40px;
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    }
    .boost-panel:hover .boost-panel-icon { transform: scale(1.14) rotate(-7deg); }

    .boost-panel-tag {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.75;
    }

    /* ── Title ── */
    .boost-panel-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      color: #0f172a;
      line-height: 1.25;
      margin-bottom: 14px;
      letter-spacing: -0.3px;
    }

    /* ── Description ── */
    .boost-panel-text {
      font-size: 0.81rem;
      color: #475569;
      line-height: 1.8;
      flex: 1;
      margin-bottom: 26px;
    }

    /* ── Footer: bar + pct ── */
    .boost-panel-foot {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: auto;
    }

    .boost-panel-bar {
      flex: 1;
      height: 3px;
      background: rgba(0,0,0,0.08);
      border-radius: 4px;
      overflow: hidden;
    }
    .boost-panel-bar-fill {
      height: 100%;
      border-radius: 4px;
      width: 0%;
      transition: width 1.2s cubic-bezier(0.34,1.56,0.64,1) 0.2s;
    }
    /* fill triggers on panel hover OR when section is in view */
    .boost-panel:hover .boost-panel-bar-fill,
    .boost-panels.in-view .boost-panel-bar-fill { width: var(--p, 80%); }

    .boost-panel-pct {
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      flex-shrink: 0;
      font-variant-numeric: tabular-nums;
    }

    /* ── Responsive ── */
    @media (max-width: 920px) {
      .boost-panels {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 16px;
      }
      .boost-panel:nth-child(2) { border-right: none; }
      .boost-panel:nth-child(1),
      .boost-panel:nth-child(2) {
        border-bottom: 1px solid rgba(0,0,0,0.07);
      }
    }
    @media (max-width: 540px) {
      .boost-section { padding: 80px 16px 100px; }
      .boost-panels {
        grid-template-columns: 1fr;
        border-radius: 14px;
      }
      .boost-panel { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); }
      .boost-panel:last-child { border-bottom: none; }
      .boost-panel-ghost { font-size: 5.5rem; }
    }

    /* ══════════════════════════════════════════════════════════
       PRICING SECTION — REDESIGNED
    ══════════════════════════════════════════════════════════ */
    .pricing-section {
      position: relative;
      overflow: hidden;
      padding: 100px 24px 120px;
      background: #f0f6ff;
    }
    .pricing-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(ellipse at 15% 15%, rgba(37,99,235,0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 85%, rgba(14,165,233,0.05) 0%, transparent 50%);
      pointer-events: none;
    }

    /* decorative elements from old design — hidden */
    .pricing-grid-bg, .pricing-glow-l, .pricing-glow-r { display: none; }

    /* ── Section header ── */
    .pricing-eyebrow {
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: #2563eb;
      background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.18);
      padding: 5px 16px; border-radius: 100px; margin-bottom: 18px;
    }
    .pricing-eyebrow::before, .pricing-eyebrow::after { display: none; }
    .pricing-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; color: #0f172a;
      text-align: center; line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 14px;
    }
    .pricing-title span {
      background: linear-gradient(90deg, #2563eb, #0ea5e9);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .pricing-sub {
      font-size: 0.96rem; color: #64748b; text-align: center;
      max-width: 460px; margin: 0 auto 56px; line-height: 1.7;
    }

    /* ── Tab switcher ── */
    .px-tabs { display: flex; justify-content: center; margin-bottom: 44px; }
    .px-tabs-pill {
      display: inline-flex; background: #fff; border: 1.5px solid #e2e8f0;
      border-radius: 14px; padding: 5px; gap: 4px;
      box-shadow: 0 2px 12px rgba(15,23,42,0.07);
    }
    .px-tab {
      display: inline-flex; align-items: center; gap: 6px; padding: 9px 24px;
      font-size: 0.865rem; font-weight: 600; color: #64748b;
      background: transparent; border: none; cursor: pointer; border-radius: 10px;
      transition: all 0.22s cubic-bezier(0.34,1.56,0.64,1); font-family: 'Inter', sans-serif; white-space: nowrap;
    }
    .px-tab:hover {
      color: #0f172a; background: #f1f5f9;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(15,23,42,0.08);
    }
    .px-tab.active {
      background: linear-gradient(135deg, #1d4ed8, #0ea5e9); color: #fff;
      box-shadow: 0 4px 14px rgba(29,78,216,0.3);
    }

    /* Panel visibility */
    .px-panel { display: none; }
    .px-panel.active { display: block; }

    /* Grids */
    .px-pkg-grid {
      display: grid; grid-template-columns: repeat(5, 1fr);
      gap: 16px; max-width: 1200px; margin: 0 auto;
    }
    .px-seo-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px; max-width: 900px; margin: 0 auto;
    }

    /* ── Base card ── */
    .px-card {
      background: #fff; border: 1.5px solid #e8edf5; border-radius: 20px;
      padding: 30px 20px 22px; padding-top: 34px;
      position: relative; display: flex; flex-direction: column; overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
      cursor: pointer;
    }
    .px-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
      background: var(--accent, #2563eb); border-radius: 20px 20px 0 0;
    }
    .px-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(15,23,42,0.09); border-color: transparent; }

    /* Active / selected state */
    .px-card--active {
      background: linear-gradient(145deg, #eff6ff, #dbeafe) !important;
      border-color: #2563eb !important;
      box-shadow: 0 0 0 3px rgba(37,99,235,0.18), 0 20px 48px rgba(37,99,235,0.14) !important;
      transform: translateY(-6px) !important;
    }
    .px-card--active::before { height: 6px; }
    .px-card--active .px-title { color: #1d4ed8; }
    .px-card--active .px-price-amt { color: #1d4ed8; }
    .px-card--popular.px-card--active {
      background: #0f172a !important;
      border-color: #38bdf8 !important;
      box-shadow: 0 0 0 3px rgba(56,189,248,0.3), 0 24px 56px rgba(29,78,216,0.35) !important;
    }

    /* Popular card — dark inversion */
    .px-card--popular {
      background: #0f172a; border-color: transparent;
      box-shadow: 0 16px 48px rgba(29,78,216,0.2); transform: translateY(-6px);
    }
    .px-card--popular::before { background: linear-gradient(90deg, #38bdf8, #818cf8); height: 6px; }
    .px-card--popular:hover { transform: translateY(-12px); box-shadow: 0 28px 64px rgba(29,78,216,0.3); }

    /* "Most Popular" badge */
    .px-ribbon {
      position: absolute; top: 14px; right: 14px;
      font-size: 0.58rem; font-weight: 800; letter-spacing: 0.1em;
      text-transform: uppercase; color: #fff;
      background: linear-gradient(135deg, #2563eb, #38bdf8);
      padding: 3px 9px; border-radius: 100px; white-space: nowrap;
    }

    /* Card parts */
    .px-icon { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
    .px-type { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 5px; }
    .px-card--popular .px-type { color: #38bdf8 !important; }
    .px-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 800; color: #0f172a; margin-bottom: 14px; line-height: 1.2; }
    .px-card--popular .px-title { color: #f8fafc; }

    /* Price */
    .px-price-row { display: flex; align-items: baseline; gap: 2px; margin-bottom: 3px; }
    .px-price-sym { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; line-height: 2; }
    .px-price-amt { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.1rem; font-weight: 900; color: #0f172a; line-height: 1; }
    .px-card--popular .px-price-amt { color: #fff; }
    .px-card--popular .px-price-sym { color: #38bdf8 !important; }
    .px-price-note { font-size: 0.67rem; color: #94a3b8; margin-bottom: 16px; }

    /* Divider */
    .px-divider { height: 1px; background: #f1f5f9; margin: 0 0 16px; }
    .px-card--popular .px-divider { background: rgba(255,255,255,0.07); }

    /* Features */
    .px-feats { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
    .px-feat { display: flex; align-items: flex-start; gap: 7px; font-size: 0.775rem; color: #475569; line-height: 1.4; }
    .px-card--popular .px-feat { color: #94a3b8; }
    .px-feat-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }

    /* CTA buttons */
    .px-cta {
      display: block; text-align: center; padding: 10px 16px; border-radius: 10px;
      font-size: 0.82rem; font-weight: 700; text-decoration: none;
      transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease, background 0.2s, border-color 0.2s, color 0.2s;
      font-family: 'Inter', sans-serif; cursor: pointer; border: none;
      position: relative; overflow: hidden;
    }
    .px-cta::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
      transform: translateX(-100%); transition: transform 0.5s ease; pointer-events: none;
    }
    .px-cta:hover::after { transform: translateX(100%); }
    .px-cta--primary { background: linear-gradient(135deg, #1d4ed8, #0ea5e9); color: #fff; box-shadow: 0 4px 14px rgba(29,78,216,0.35); }
    .px-cta--primary:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 10px 28px rgba(29,78,216,0.5);
    }
    .px-cta--ghost { color: #475569; border: 1.5px solid #e2e8f0; background: #f8fafc; }
    .px-cta--ghost:hover {
      border-color: #94a3b8; background: #f1f5f9; color: #0f172a;
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 6px 18px rgba(15,23,42,0.1);
    }
    .px-card--popular .px-cta--ghost { color: #cbd5e1; border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); }
    .px-card--popular .px-cta--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); color: #fff; }

    /* Trust strip */
    .px-trust { display: flex; justify-content: center; align-items: center; gap: 8px 28px; flex-wrap: wrap; margin-top: 52px; padding-top: 28px; border-top: 1px solid #e2e8f0; }
    .px-trust-item { font-size: 0.78rem; color: #64748b; display: flex; align-items: center; gap: 6px; }
    .px-trust-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }

    /* Responsive */
    @media (max-width: 1080px) { .px-pkg-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 680px)  { .px-pkg-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 440px)  { .px-pkg-grid, .px-seo-grid { grid-template-columns: 1fr; } }
    @media (max-width: 720px)  { .px-seo-grid { max-width: 400px; } }

    /* ══════════════════════════════════════════════════════════
       SECTION TRANSITIONS & DECORATIVES
    ══════════════════════════════════════════════════════════ */

    /* ── Wave divider wrapper ── */
    .sc-wave {
      position: relative;
      z-index: 5;
      line-height: 0;
      overflow: hidden;
      /* prevent sub-pixel gaps */
      margin-top: -1px;
      margin-bottom: -1px;
    }
    .sc-wave svg {
      display: block;
      width: 100%;
    }

    /* ── Glow separator (dark→dark boundary) ── */
    .sc-glow-sep {
      position: relative;
      z-index: 5;
      height: 1px;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(56,189,248,0.0) 10%,
        rgba(56,189,248,0.35) 35%,
        rgba(129,140,248,0.4) 50%,
        rgba(56,189,248,0.35) 65%,
        rgba(56,189,248,0.0) 90%,
        transparent 100%
      );
    }
    /* glow bloom above the line */
    .sc-glow-sep::before {
      content: '';
      position: absolute;
      left: 20%; right: 20%;
      top: -12px;
      height: 24px;
      background: radial-gradient(ellipse, rgba(56,189,248,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── Floating micro-dots ── */
    .deco-dots {
      position: absolute;
      pointer-events: none;
      display: grid;
      gap: 12px;
    }
    .deco-dots span {
      display: block;
      width: 4px; height: 4px;
      border-radius: 50%;
      background: currentColor;
    }
    .deco-dots-2col { grid-template-columns: repeat(2,1fr); }
    .deco-dots-3col { grid-template-columns: repeat(3,1fr); }
    .deco-dots-4col { grid-template-columns: repeat(4,1fr); }

    /* ── Diagonal accent line ── */
    .deco-diag-line {
      position: absolute;
      pointer-events: none;
      height: 1px;
      border-radius: 2px;
    }

    /* ── Blur orb decoration ── */
    .deco-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(70px);
      pointer-events: none;
    }

    /* ── Frosted glass card shimmer ── */
    .glass-shimmer {
      background: rgba(255,255,255,0.55);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.7);
    }

    /* ── Subtle section ring accent ── */
    .deco-ring {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    /* ══════════════════════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════════════════════ */
    .site-footer {
      position: relative; overflow: hidden; text-align: center;
      background: linear-gradient(170deg, #f0f9ff 0%, #e0f2fe 40%, #dbeafe 75%, #eff6ff 100%);
      padding: 80px 24px 0;
    }
    .site-footer::before {
      content: ''; position: absolute;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
      top: -160px; left: -100px; pointer-events: none;
    }
    .site-footer::after {
      content: ''; position: absolute;
      width: 380px; height: 380px; border-radius: 50%;
      background: radial-gradient(circle, rgba(14,165,233,0.06) 0%, transparent 70%);
      bottom: 0; right: -80px; pointer-events: none;
    }

    .footer-tagline {
      font-size: 0.875rem; color: #475569;
      max-width: 320px; margin: 0 auto 32px;
      line-height: 1.65;
    }

    .footer-socials { display: flex; justify-content: center; gap: 10px; margin-bottom: 48px; }
    .footer-social-btn {
      width: 40px; height: 40px; border-radius: 12px;
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(203,213,225,0.8);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), background 0.2s, border-color 0.2s, box-shadow 0.2s;
      backdrop-filter: blur(6px);
    }
    .footer-social-btn:hover {
      transform: translateY(-4px) scale(1.08);
      background: #fff; border-color: rgba(37,99,235,0.2);
      box-shadow: 0 6px 18px rgba(37,99,235,0.15);
    }

    .footer-cols {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 860px; margin: 0 auto 56px;
    }
    .footer-cols > div {
      background: rgba(255,255,255,0.55);
      border: 1px solid rgba(203,213,225,0.6);
      border-radius: 16px;
      padding: 24px 20px;
      backdrop-filter: blur(8px);
      text-align: left;
    }
    .footer-col-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.7rem; font-weight: 800;
      letter-spacing: 0.15em; text-transform: uppercase;
      background: linear-gradient(90deg, #2563eb, #0ea5e9);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 16px;
    }
    .footer-link {
      font-size: 0.82rem; color: #475569;
      display: block;
      text-decoration: none; margin-bottom: 9px;
      padding: 3px 0;
      border-bottom: 1px solid transparent;
      transition: color 0.18s, padding-left 0.18s;
    }
    .footer-link:hover { color: #2563eb; padding-left: 6px; }

    .footer-bottom-bar {
      display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px;
      padding: 18px 24px;
      background: linear-gradient(90deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
      position: relative; z-index: 1;
      width: calc(100% + 48px); margin: 0 -24px;
    }
    .footer-bottom-bar p, .footer-bottom-bar a {
      font-size: 0.78rem; color: #e2e8f0; text-decoration: none;
      transition: color 0.2s;
    }
    .footer-bottom-bar a:hover { color: #fff; }
    .sep { color: #334155; user-select: none; }

    /* ══════════════════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════════════════ */
    @media (max-width: 640px) {
      .service-card { flex: 0 0 42%; }
      .laptop-screen { padding: 8px; }
      .laptop-glass  { padding: 10px 8px; min-height: unset; }
      .browser-bar   { margin-bottom: 10px; }
      .slider-viewport { padding: 6px 0; }
      .cards-row { gap: 8px; width: auto; animation-duration: 2.5s; }
      .boost-grid { grid-template-columns: 1fr; gap: 20px; }
      .boost-card:nth-child(1),
      .boost-card:nth-child(2),
      .boost-card:nth-child(3),
      .boost-card:nth-child(4) { transform: none; }
      /* Pricing: stack on mobile, reset featured scale */
      .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
      .pricing-featured { transform: none; }
      .pricing-featured:hover { transform: translateY(-6px); }
      /* Footer: stack columns on mobile */
      .footer-cols { grid-template-columns: 1fr 1fr; gap: 14px; }
      .footer-cols > div:first-child { grid-column: 1 / -1; }
    }