/* ==========================================================================
       CSS RESET & DESIGN TOKENS
       ========================================================================== */
    :root {
      /* Single Unified Luxury Brand Theme: Electric Blue & Sky Blue */
      --color-black: #0D0D0D;
      --color-white: #FFFFFF;
      --color-green: #4DA3FF;
      --color-cyan: #78C4FF;
      --color-blue: #60A5FA;

      --bg-main: #0D0D0D;
      --bg-surface: #141414;
      --bg-card: rgba(22, 22, 22, 0.75);
      --bg-card-hover: rgba(28, 28, 28, 0.92);
      --bg-glass: rgba(18, 18, 18, 0.7);

      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-glow: rgba(77, 163, 255, 0.35);
      --border-hover: rgba(77, 163, 255, 0.55);

      --text-primary: #FFFFFF;
      --text-secondary: #A3A3A3;
      --text-muted: #737373;
      --text-highlight: #4DA3FF;

      --primary-cyan: #4DA3FF;
      --primary-blue: #78C4FF;
      --primary-indigo: #4DA3FF;
      
      --gradient-brand: linear-gradient(135deg, #4DA3FF 0%, #78C4FF 100%);
      --gradient-hero: linear-gradient(180deg, #FFFFFF 20%, #A3A3A3 100%);
      --gradient-accent: linear-gradient(135deg, #4DA3FF 0%, #78C4FF 100%);
      --gradient-cyan-mint: linear-gradient(135deg, #4DA3FF 0%, #78C4FF 100%);
      --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
      --gradient-glow: radial-gradient(circle, rgba(77, 163, 255, 0.25) 0%, rgba(120, 196, 255, 0.12) 45%, transparent 70%);

      --font-display: 'Outfit', sans-serif;
      --font-body: 'Plus Jakarta Sans', sans-serif;

      --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.5);
      --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
      --shadow-glow: 0 0 30px rgba(77, 163, 255, 0.35);
      --shadow-cyan: 0 0 25px rgba(77, 163, 255, 0.45);

      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-full: 9999px;

      --container-max: 1240px;
      --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      color-scheme: dark;
      overflow-x: hidden;
      width: 100%;
    }

    body {
      background-color: var(--bg-main);
      color: var(--text-primary);
      font-family: var(--font-body);
      line-height: 1.65;
      overflow-x: hidden;
      position: relative;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Background ambient grid & lighting with unified #4DA3FF and #78C4FF */
    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 38px 38px;
      pointer-events: none;
      z-index: -1;
    }

    /* Vertical Scroll progress bar on left side of screen */
    #scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 3.5px;
      height: 0%;
      background: linear-gradient(180deg, #4DA3FF 0%, #78C4FF 100%);
      box-shadow: none;
      z-index: 1001;
      transition: height 0.08s ease-out;
      pointer-events: none;
      border-radius: 0 2px 2px 0;
    }

    /* Ambient Glowing & Growing Neon Dots Canvas across whole page */
    #ambient-neon-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      opacity: 0.7;
    }

    /* Selection */
    ::selection {
      background: #4DA3FF;
      color: #0D0D0D;
    }

    /* ==========================================================================
       TYPOGRAPHY & UTILITIES
       ========================================================================== */
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-display);
      font-weight: 700;
      line-height: 1.2;
      color: var(--text-primary);
      letter-spacing: -0.02em;
    }

    p {
      color: var(--text-secondary);
      font-size: 1.05rem;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition-smooth);
    }

    img, svg {
      vertical-align: middle;
      display: block;
    }

    .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .section-padding {
      padding: 6.5rem 0;
    }

    .gradient-text {
      background: var(--gradient-brand);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .gradient-text-amber {
      background: linear-gradient(135deg, #4DA3FF 0%, #78C4FF 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .gradient-shimmer-text {
      background: linear-gradient(120deg, #FFFFFF 0%, #4DA3FF 28%, #78C4FF 58%, #4DA3FF 85%, #FFFFFF 100%);
      background-size: 250% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
      animation: textShimmerRun 6s linear infinite;
    }

    @keyframes textShimmerRun {
      0% { background-position: 0% 50%; }
      100% { background-position: 250% 50%; }
    }

    /* Ambient Cursor Aura Follower (Desktop) */
    .cursor-aura {
      position: fixed;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(77, 163, 255, 0.09) 0%, rgba(120, 196, 255, 0.05) 45%, transparent 70%);
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 9998;
      filter: blur(50px);
      transition: opacity 0.35s ease;
      opacity: 0;
    }

    @media (hover: none) or (max-width: 768px) {
      .cursor-aura { display: none !important; }
    }

    .badge-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem 1rem;
      border-radius: var(--radius-full);
      background: rgba(77, 163, 255, 0.1);
      border: 1px solid rgba(77, 163, 255, 0.3);
      color: #4DA3FF;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
    }

    .badge-tag .dot {
      width: 7px;
      height: 7px;
      background-color: #4DA3FF;
      border-radius: 50%;
      box-shadow: none;
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.8); }
    }

    .section-header {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 4rem auto;
    }

    .section-header h2 {
      font-size: clamp(2rem, 4vw, 2.75rem);
      margin-bottom: 1rem;
    }

    .section-header p {
      font-size: 1.1rem;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.65rem;
      padding: 0.85rem 1.85rem;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: var(--radius-full);
      cursor: pointer;
      transition: var(--transition-smooth);
      position: relative;
      border: none;
      outline: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #4DA3FF 0%, #1E90FF 100%);
      color: #0D0D0D;
      font-weight: 800;
      box-shadow: none;
    }

    .btn-primary:hover {
      box-shadow: none;
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-subtle);
      color: var(--text-primary);
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.09);
      border-color: rgba(30, 144, 255, 0.5);
      transform: translateY(-2px);
      color: #FFFFFF;
    }

    .btn-icon-arrow {
      transition: transform 0.25s ease;
    }

    .btn:hover .btn-icon-arrow {
      transform: translateX(4px);
    }

    /* ==========================================================================
       HEADER & NAVIGATION (Ready Creatives Style)
       ========================================================================== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 1.25rem 0;
      transition: var(--transition-smooth);
    }

    .navbar.scrolled {
      padding: 0.8rem 0;
      background: rgba(13, 13, 13, 0.94);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: none;
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Logo */
    .nav-logo-link {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      text-decoration: none;
    }

    .nav-logo-box {
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, #4DA3FF 0%, #1E90FF 100%);
      border-radius: 12px;
      display: grid;
      place-items: center;
      box-shadow: none;
      flex-shrink: 0;
    }

    .nav-logo-box svg {
      width: 21px;
      height: 21px;
      fill: #0D0D0D;
    }

    .nav-brand-title {
      display: flex;
      flex-direction: column;
    }

    .nav-brand-title .brand-name {
      font-family: var(--font-display);
      font-size: 1.22rem;
      font-weight: 800;
      color: #FFFFFF;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .nav-brand-title .brand-sub {
      font-family: var(--font-display);
      font-size: 0.72rem;
      font-weight: 700;
      color: #4DA3FF;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: 1px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.25rem;
      list-style: none;
    }

    .nav-link {
      font-size: 0.95rem;
      font-weight: 500;
      color: #A3A3A3;
      position: relative;
      padding: 0.35rem 0;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #FFFFFF;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 2px;
      background: linear-gradient(90deg, #4DA3FF, #1E90FF);
      transition: width 0.3s ease;
      border-radius: 2px;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    /* Navbar WhatsApp CTA button - Real WhatsApp Gradient */
    .btn-whatsapp-nav {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      padding: 0.6rem 1.45rem 0.6rem 0.75rem;
      background: linear-gradient(135deg, #2563EB 0%, #2874ED 48%, #1E40AF 100%);
      color: #FFFFFF;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 0.84rem;
      letter-spacing: 0.03em;
      border-radius: var(--radius-full);
      box-shadow: none;
      border: 1px solid rgba(255, 255, 255, 0.35);
      transition: var(--transition-smooth);
      text-decoration: none;
      cursor: pointer;
      text-shadow: none;
    }

    .btn-whatsapp-nav:hover {
      background: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #1E3A8A 100%);
      box-shadow: none;
      transform: translateY(-2px);
      color: #FFFFFF;
    }

    .btn-whatsapp-nav .nav-wa-icon {
      width: 26px;
      height: 26px;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
      box-shadow: none;
    }

    .wa-gif-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 50%;
    }

    /* Hamburger Menu Toggle */
    .menu-toggle {
      display: none;
      background: transparent;
      border: none;
      cursor: pointer;
      width: 42px;
      height: 42px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-subtle);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text-primary);
      position: relative;
      z-index: 1010;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
    }

    .menu-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: #FFFFFF;
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .menu-toggle.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle.open span:nth-child(2) {
      opacity: 0;
    }
    .menu-toggle.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ==========================================================================
       LUXURY MOBILE NAVIGATION DRAWER
       ========================================================================== */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100dvh;
      background: rgba(13, 13, 13, 0.98);
      backdrop-filter: blur(28px);
      -webkit-backdrop-filter: blur(28px);
      z-index: 1005;
      padding: 1.5rem 1.5rem 2rem 1.5rem;
      flex-direction: column;
      justify-content: space-between;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px) scale(0.99);
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      overflow-y: auto;
    }

    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
    }

    /* Mobile Drawer Top Bar */
    .mobile-drawer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 1.25rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      margin-bottom: 1.5rem;
    }

    .mobile-drawer-brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .mobile-drawer-logo {
      width: 34px;
      height: 34px;
      background: rgba(77, 163, 255, 0.12);
      border: 1px solid rgba(77, 163, 255, 0.4);
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      color: #4DA3FF;
      box-shadow: none;
    }

    .mobile-drawer-logo svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .mobile-drawer-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.05rem;
      letter-spacing: -0.01em;
      color: #FFFFFF;
      display: flex;
      flex-direction: column;
    }

    .mobile-drawer-title span:last-child {
      font-size: 0.65rem;
      color: #4DA3FF;
      letter-spacing: 0.08em;
      font-weight: 700;
    }

    .mobile-close-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #A3A3A3;
      display: grid;
      place-items: center;
      cursor: pointer;
      font-size: 1.35rem;
      line-height: 1;
      transition: all 0.25s ease;
    }

    .mobile-close-btn:hover {
      background: rgba(77, 163, 255, 0.15);
      border-color: rgba(77, 163, 255, 0.4);
      color: #4DA3FF;
      transform: rotate(90deg);
    }

    /* Mobile Drawer Bento Navigation Links */
    .mobile-nav-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      margin-bottom: 1.5rem;
    }

    .mobile-nav-item a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem 1.15rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: var(--radius-md);
      color: #E2E8F0;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    .mobile-nav-item a:hover,
    .mobile-nav-item a.active {
      background: rgba(77, 163, 255, 0.08);
      border-color: rgba(77, 163, 255, 0.35);
      color: #FFFFFF;
      transform: translateX(4px);
    }

    .mobile-nav-item a:hover .nav-link-arrow,
    .mobile-nav-item a.active .nav-link-arrow {
      color: #4DA3FF;
      transform: translateX(4px);
    }

    .mobile-nav-item a .nav-link-left {
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }

    .mobile-nav-item a .nav-link-num {
      font-family: monospace;
      font-size: 0.78rem;
      color: #4DA3FF;
      font-weight: 700;
      letter-spacing: 0.05em;
    }

    .mobile-nav-item a .nav-link-title {
      font-family: var(--font-display);
      font-size: 1.08rem;
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .mobile-nav-item a .nav-link-arrow {
      color: #64748B;
      font-size: 1rem;
      transition: all 0.25s ease;
    }

    /* Mobile Drawer Quick Telemetry Info Box */
    .mobile-drawer-card {
      background: rgba(20, 20, 20, 0.75);
      border: 1px solid rgba(77, 163, 255, 0.2);
      border-radius: var(--radius-md);
      padding: 1rem 1.15rem;
      margin-bottom: 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .mobile-drawer-status {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.76rem;
      font-weight: 700;
      color: #4DA3FF;
      letter-spacing: 0.04em;
    }

    .mobile-drawer-email {
      font-size: 0.86rem;
      color: #CBD5E1;
      text-decoration: none;
      font-weight: 600;
    }

    .mobile-drawer-sla {
      font-size: 0.74rem;
      color: #64748B;
    }

    /* ==========================================================================
       HERO SECTION (Centered Minimalist: Title, Description & Button)
       ========================================================================== */
    .hero-section {
      min-height: 88vh;
      padding-top: 11rem;
      padding-bottom: 7rem;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .hero-content-center {
      max-width: 960px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    /* Live Agency Status Pill */
    .hero-live-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      padding: 0.45rem 1.25rem;
      border-radius: var(--radius-full);
      background: rgba(20, 20, 20, 0.75);
      border: 1px solid rgba(77, 163, 255, 0.3);
      color: #FFFFFF;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      margin-bottom: 1.85rem;
      backdrop-filter: blur(14px);
      box-shadow: none;
      transition: all 0.3s ease;
    }

    .hero-live-badge:hover {
      border-color: rgba(77, 163, 255, 0.6);
      box-shadow: none;
      transform: translateY(-2px);
    }

    .live-pulse-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #4DA3FF;
      box-shadow: none;
      position: relative;
    }

    .live-pulse-dot::after {
      content: "";
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 1px solid #4DA3FF;
      animation: radarRing 1.8s infinite ease-out;
    }

    @keyframes radarRing {
      0% { transform: scale(0.8); opacity: 1; }
      100% { transform: scale(2.4); opacity: 0; }
    }

    .live-separator {
      color: rgba(255, 255, 255, 0.25);
      font-weight: 400;
    }

    .live-region {
      color: #4DA3FF;
      font-weight: 700;
      font-size: 0.78rem;
    }

    .hero-title-center {
      font-size: clamp(2.8rem, 6.2vw, 4.8rem);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.12;
      margin-bottom: 1.85rem;
      color: #FFFFFF;
    }

    .hero-desc-center {
      font-size: clamp(1.1rem, 2vw, 1.25rem);
      color: #94A3B8;
      max-width: 720px;
      margin: 0 auto 2.75rem auto;
      line-height: 1.8;
    }

    .hero-cta-center {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .btn-hero-whatsapp {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.95rem;
      padding: 1.05rem 2.75rem 1.05rem 1.25rem;
      background: linear-gradient(135deg, #2563EB 0%, #2874ED 48%, #1E40AF 100%);
      color: #FFFFFF;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.05rem;
      letter-spacing: 0.04em;
      border-radius: var(--radius-full);
      box-shadow: none;
      border: 1px solid rgba(255, 255, 255, 0.4);
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      text-decoration: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      text-shadow: none;
    }

    /* Sweeping radiant sheen light */
    .btn-hero-whatsapp::after {
      content: "";
      position: absolute;
      top: -50%;
      left: -60%;
      width: 35%;
      height: 200%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
      transform: rotate(25deg);
      animation: sheenSweep 4s infinite cubic-bezier(0.16, 1, 0.3, 1);
    }

    @keyframes sheenSweep {
      0% { left: -60%; }
      30%, 100% { left: 140%; }
    }

    .btn-hero-whatsapp:hover {
      background: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #1E3A8A 100%);
      box-shadow: none;
      transform: translateY(-3px) scale(1.02);
      color: #FFFFFF;
    }

    .btn-hero-whatsapp .hero-wa-circle {
      width: 34px;
      height: 34px;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.45);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
      box-shadow: none;
    }

    .btn-hero-whatsapp .arrow-slide {
      transition: transform 0.25s ease;
      font-size: 1.2rem;
    }

    .btn-hero-whatsapp:hover .arrow-slide {
      transform: translateX(5px);
    }

    /* ==========================================================================
       UNIVERSAL BUTTON WITH CLOCKWISE MOVING GLOWING BORDER DOT
       ========================================================================== */
    .btn-wa-animated-border {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-full);
      padding: 2.5px;
      overflow: hidden;
      text-decoration: none;
      box-shadow: none;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
      background: rgba(18, 18, 18, 0.6);
      border: none;
      box-sizing: border-box;
    }

    .btn-wa-animated-border:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: none;
    }

    /* Clockwise rotating bright border dot (from 0deg to 360deg) */
    .btn-wa-animated-border::before {
      content: "";
      position: absolute;
      top: -120%;
      left: -60%;
      width: 220%;
      height: 340%;
      background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 310deg,
        rgba(77, 163, 255, 0.25) 330deg,
        rgba(37, 99, 235, 0.8) 348deg,
        #4DA3FF 355deg,
        #FFFFFF 358deg,
        #FFFFFF 360deg
      );
      animation: borderDotClockwise 2.8s linear infinite;
      pointer-events: none;
      border-radius: 50%;
    }

    @keyframes borderDotClockwise {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    .btn-wa-inner {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 0.85rem;
      padding: 0.95rem 2.2rem 0.95rem 1.25rem;
      background: linear-gradient(135deg, #2563EB 0%, #2874ED 48%, #1E40AF 100%);
      border-radius: var(--radius-full);
      color: #FFFFFF;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.02rem;
      letter-spacing: 0.03em;
      text-shadow: none;
      width: 100%;
      justify-content: center;
      box-sizing: border-box;
      transition: background 0.3s ease;
    }

    .btn-wa-animated-border:hover .btn-wa-inner {
      background: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #1E3A8A 100%);
    }

    .wa-btn-icon-circle {
      width: 32px;
      height: 32px;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.45);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
      box-shadow: none;
    }

    .btn-wa-animated-border .arrow-slide {
      transition: transform 0.25s ease;
      font-size: 1.15rem;
    }

    .btn-wa-animated-border:hover .arrow-slide {
      transform: translateX(5px);
    }

    /* Size & layout variants */
    .btn-nav-wa-pill {
      padding: 2px;
    }
    .btn-nav-wa-pill .btn-wa-inner {
      padding: 0.55rem 1.35rem 0.55rem 0.75rem;
      font-size: 0.84rem;
      gap: 0.6rem;
    }

    .btn-hero-whatsapp-glow {
      padding: 2.5px;
    }
    .btn-hero-whatsapp-glow .btn-wa-inner {
      padding: 1.05rem 2.6rem 1.05rem 1.25rem;
      font-size: 1.05rem;
      gap: 0.95rem;
    }

    .btn-wa-cta-large .btn-wa-inner {
      padding: 1.1rem 2.6rem 1.1rem 1.4rem;
      font-size: 1.08rem;
    }

    .btn-submit-project-glow {
      width: 100%;
      padding: 2.5px;
    }
    .btn-submit-project-glow .btn-wa-inner {
      padding: 1.05rem 1.5rem;
      font-size: 1.02rem;
      background: linear-gradient(135deg, #4DA3FF 0%, #78C4FF 100%);
      color: #0D0D0D;
      font-weight: 800;
      text-shadow: none;
    }
    .btn-submit-project-glow:hover .btn-wa-inner {
      background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
    }

    /* ==========================================================================
       LANDING PAGE STUDIO CTA BUTTON - YELLOW & ORANGE GRADIENT WITH CLOCKWISE DOT
       ========================================================================== */
    .btn-landing-cta-glow {
      width: 100%;
      padding: 2px !important;
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-full);
      background: rgba(25, 20, 10, 0.7) !important;
      box-shadow: none;
      text-decoration: none;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      box-sizing: border-box;
      border: none !important;
    }

    .btn-landing-cta-glow:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: none;
    }

    /* Golden amber & white clockwise rotating border dot */
    .btn-landing-cta-glow::before {
      content: "";
      position: absolute;
      top: -140%;
      left: -60%;
      width: 220%;
      height: 380%;
      background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 305deg,
        rgba(255, 138, 0, 0.35) 328deg,
        rgba(255, 184, 0, 0.85) 346deg,
        #FFE600 354deg,
        #FFFFFF 358deg,
        #FFFFFF 360deg
      );
      animation: borderDotClockwise 2.6s linear infinite;
      pointer-events: none;
      border-radius: 50%;
    }

    .btn-landing-cta-glow .btn-wa-inner {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 0.75rem 1rem 0.75rem 0.8rem !important;
      background: linear-gradient(135deg, #FFB800 0%, #FF8A00 52%, #FF5500 100%) !important;
      border-radius: var(--radius-full);
      color: #0A0A0A !important;
      font-family: var(--font-display);
      font-weight: 850;
      font-size: 0.84rem !important;
      letter-spacing: 0.015em;
      white-space: nowrap !important;
      text-shadow: none;
      width: 100%;
      box-sizing: border-box;
      transition: background 0.3s ease;
    }

    .btn-landing-cta-glow:hover .btn-wa-inner {
      background: linear-gradient(135deg, #FFC820 0%, #FF9E20 52%, #FF6610 100%) !important;
    }

    /* Trust dock below CTA */
    .hero-trust-dock {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 1.15rem;
      margin-top: 3.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      max-width: 860px;
    }

    .trust-item {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.86rem;
      font-weight: 600;
      color: #CBD5E1;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-full);
      padding: 0.45rem 1.05rem;
      backdrop-filter: blur(8px);
      transition: all 0.3s ease;
    }

    .trust-item:hover {
      color: #FFFFFF;
      border-color: rgba(77, 163, 255, 0.35);
      background: rgba(77, 163, 255, 0.06);
      transform: translateY(-2px);
    }

    .trust-item .trust-icon {
      font-size: 0.95rem;
    }

    /* ==========================================================================
       PARTNERS / TECH STACK INFINITE MARQUEE
       ========================================================================== */
    .tech-strip {
      padding: 2.25rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(14, 14, 14, 0.75);
      position: relative;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
    }

    .tech-marquee-wrapper {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      overflow: hidden;
      user-select: none;
    }

    .tech-label-capsule {
      font-size: 0.78rem;
      font-weight: 800;
      color: #4DA3FF;
      background: rgba(77, 163, 255, 0.1);
      border: 1px solid rgba(77, 163, 255, 0.3);
      border-radius: var(--radius-full);
      padding: 0.4rem 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      white-space: nowrap;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 0.45rem;
    }

    .tech-marquee-track {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      flex-shrink: 0;
      min-width: 100%;
      animation: marqueeScroll 26s linear infinite;
    }

    .tech-marquee-wrapper:hover .tech-marquee-track {
      animation-play-state: paused;
    }

    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-100%); }
    }

    .tech-item {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      font-family: var(--font-display);
      font-size: 0.94rem;
      font-weight: 700;
      color: #E2E8F0;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-full);
      padding: 0.5rem 1.25rem;
      white-space: nowrap;
      transition: all 0.3s ease;
    }

    .tech-item:hover {
      color: #4DA3FF;
      border-color: rgba(77, 163, 255, 0.45);
      background: rgba(77, 163, 255, 0.08);
      transform: translateY(-2px);
      box-shadow: none;
    }

    .tech-item svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    /* ==========================================================================
       SERVICES SECTION
       ========================================================================== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .service-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 2.25rem 2rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), 
                  border-color 0.65s cubic-bezier(0.16, 1, 0.3, 1), 
                  box-shadow 0.65s cubic-bezier(0.16, 1, 0.3, 1), 
                  background 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                  opacity 0.65s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--gradient-brand);
      opacity: 0;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease;
    }

    /* Interactive hover state */
    .service-card:hover {
      transform: translateY(-6px);
      border-color: rgba(77, 163, 255, 0.55);
      background: var(--bg-card-hover);
      box-shadow: none;
    }

    .service-card:hover::before {
      opacity: 1;
      transform: scaleX(1);
    }

    .service-card:hover .service-icon-box {
      background: linear-gradient(135deg, #4DA3FF 0%, #78C4FF 100%);
      color: #0D0D0D;
      transform: scale(1.06);
      box-shadow: none;
    }

    .service-icon-box {
      width: 58px;
      height: 58px;
      border-radius: var(--radius-md);
      background: rgba(77, 163, 255, 0.1);
      border: 1px solid rgba(77, 163, 255, 0.3);
      display: grid;
      place-items: center;
      color: #4DA3FF;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .service-icon-box svg {
      width: 28px;
      height: 28px;
    }

    .service-card h3 {
      font-size: 1.35rem;
      margin-bottom: 0.85rem;
      color: #FFFFFF;
    }

    .service-card p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      margin-bottom: 1rem;
      line-height: 1.6;
    }

    .service-deliverables {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      margin: 1.25rem 0 1.25rem 0;
      padding-top: 1.15rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .deliverable-item {
      font-size: 0.84rem;
      color: #CBD5E1;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 500;
    }

    .deliverable-item::before {
      content: "•";
      color: #4DA3FF;
      font-weight: 900;
      font-size: 1.15rem;
      line-height: 0;
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-top: auto;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .service-tag {
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.22rem 0.7rem;
      border-radius: var(--radius-full);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: #94A3B8;
    }

    .service-index-tag {
      font-family: monospace;
      font-size: 0.76rem;
      color: #64748B;
      letter-spacing: 0.06em;
      white-space: nowrap;
    }

    .service-tag {
      font-size: 0.75rem;
      font-weight: 500;
      padding: 0.2rem 0.65rem;
      border-radius: var(--radius-full);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text-muted);
    }

    /* ==========================================================================
       ABOUT SECTION
       ========================================================================== */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-image-wrapper {
      position: relative;
    }

    .about-main-card {
      background: linear-gradient(135deg, rgba(22, 22, 22, 0.8) 0%, rgba(16, 16, 16, 0.9) 100%);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
      box-shadow: none;
    }

    /* Studio Terminal Console Header */
    .terminal-console-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 1.15rem;
      margin-bottom: 1.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .terminal-controls {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    .t-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }
    .t-dot.red { background: #FF5F56; }
    .t-dot.yellow { background: #FFBD2E; }
    .t-dot.green { background: #27C93F; }

    .terminal-title-text {
      font-family: monospace;
      font-size: 0.78rem;
      color: #4DA3FF;
      letter-spacing: 0.06em;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .terminal-title-text .t-pulse {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #4DA3FF;
      animation: pulse-dot 1.5s infinite;
    }

    /* Core Web Vitals Benchmark Metrics Bar */
    .cwv-benchmark-panel {
      margin-top: 1.75rem;
      padding: 1.15rem;
      background: rgba(0, 0, 0, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: var(--radius-md);
    }

    .cwv-panel-label {
      font-size: 0.72rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 700;
      margin-bottom: 0.75rem;
      display: flex;
      justify-content: space-between;
    }

    .cwv-scores-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.75rem;
      text-align: center;
    }

    .cwv-pill {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: var(--radius-sm);
      padding: 0.6rem 0.35rem;
    }

    .cwv-num {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.25rem;
      color: #4DA3FF;
      line-height: 1;
    }

    .cwv-pill:nth-child(2) .cwv-num { color: #78C4FF; }
    .cwv-pill:nth-child(3) .cwv-num { color: #4DA3FF; }
    .cwv-pill:nth-child(4) .cwv-num { color: #78C4FF; }

    .cwv-name {
      font-size: 0.7rem;
      color: #A3A3A3;
      margin-top: 0.35rem;
      font-weight: 600;
    }

    /* NDA Guarantee Seal */
    .nda-seal-pill {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      margin-top: 1.25rem;
      padding: 0.65rem 1rem;
      background: rgba(77, 163, 255, 0.06);
      border: 1px solid rgba(77, 163, 255, 0.2);
      border-radius: var(--radius-sm);
      font-size: 0.8rem;
      color: #E2E8F0;
      font-weight: 500;
    }

    .about-stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-top: 1.5rem;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-subtle);
      padding: 1.25rem;
      border-radius: var(--radius-md);
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .stat-card:hover {
      transform: translateY(-4px);
      border-color: rgba(77, 163, 255, 0.4);
      background: rgba(77, 163, 255, 0.06);
      box-shadow: none;
    }

    .stat-number {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 800;
      color: #4DA3FF;
      margin-bottom: 0.25rem;
    }

    .stat-card:nth-child(2) .stat-number {
      color: #78C4FF;
    }

    .stat-card:nth-child(3) .stat-number {
      color: #4DA3FF;
    }

    .stat-card:nth-child(4) .stat-number {
      color: #78C4FF;
    }

    .stat-title {
      font-size: 0.85rem;
      color: var(--text-secondary);
      font-weight: 500;
    }

    .about-points {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin: 2rem 0;
    }

    .about-point-item {
      display: flex;
      align-items: flex-start;
      gap: 0.85rem;
    }

    .point-check {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(77, 163, 255, 0.15);
      color: #4DA3FF;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      margin-top: 2px;
      transition: all 0.4s ease;
    }

    /* SCROLL ANIMATION: Checkmarks pulse when section enters view */
    .about-grid > div.reveal.active .point-check {
      animation: checkPulse 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    @keyframes checkPulse {
      0% { transform: scale(0.5); opacity: 0; }
      70% { transform: scale(1.25); }
      100% { transform: scale(1); opacity: 1; }
    }

    .point-check svg {
      width: 14px;
      height: 14px;
    }

    /* ==========================================================================
       WHY CHOOSE US
       ========================================================================== */
    .why-section {
      background: linear-gradient(180deg, transparent 0%, rgba(20, 20, 20, 0.7) 50%, transparent 100%);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .why-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 2.25rem 2rem;
      position: relative;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .why-card:hover {
      transform: translateY(-6px);
      border-color: rgba(77, 163, 255, 0.55);
      box-shadow: none;
    }

    .why-card:hover .why-icon {
      transform: scale(1.08);
      box-shadow: none;
    }

    .why-num {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.08);
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      line-height: 1;
      transition: color 0.3s ease;
    }

    .why-card:hover .why-num {
      color: rgba(77, 163, 255, 0.22);
    }

    .why-card:nth-child(even) .why-num {
      color: rgba(120, 196, 255, 0.12);
    }

    .why-card:nth-child(even):hover .why-num {
      color: rgba(120, 196, 255, 0.25);
    }

    .why-card h3 {
      font-size: 1.25rem;
      margin: 1.25rem 0 0.75rem 0;
    }

    .why-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      background: rgba(77, 163, 255, 0.1);
      border: 1px solid rgba(77, 163, 255, 0.25);
      color: #4DA3FF;
      display: grid;
      place-items: center;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .why-card:nth-child(even) .why-icon {
      background: rgba(120, 196, 255, 0.1);
      border-color: rgba(120, 196, 255, 0.25);
      color: #78C4FF;
    }

    .why-icon svg {
      width: 24px;
      height: 24px;
    }

    /* ==========================================================================
       OUR PROCESS
       ========================================================================== */
    .process-timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      position: relative;
      margin-top: 3rem;
    }

    .process-timeline::before {
      content: "";
      position: absolute;
      top: 40px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, #4DA3FF, #78C4FF);
      z-index: 0;
      opacity: 0.35;
    }

    .process-step {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 1.5rem 1rem;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .step-badge {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--bg-surface);
      border: 2px solid #4DA3FF;
      box-shadow: none;
      display: grid;
      place-items: center;
      margin: 0 auto 1.5rem auto;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.1rem;
      color: #fff;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }

    /* Concentric glowing ring animation */
    .step-badge::after {
      content: "";
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 1px solid #4DA3FF;
      opacity: 0.4;
      animation: ringPulse 2.8s infinite ease-out;
    }

    .process-step:nth-child(even) .step-badge::after {
      border-color: #78C4FF;
    }

    @keyframes ringPulse {
      0% { transform: scale(0.9); opacity: 0.65; }
      50% { transform: scale(1.3); opacity: 0; }
      100% { transform: scale(0.9); opacity: 0; }
    }

    .step-duration-badge {
      display: inline-block;
      padding: 0.22rem 0.75rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-full);
      font-size: 0.74rem;
      font-weight: 700;
      color: #CBD5E1;
      margin-bottom: 0.65rem;
      letter-spacing: 0.03em;
    }

    .process-step:nth-child(even) .step-badge {
      border-color: #78C4FF;
      box-shadow: none;
    }

    .process-step:hover .step-badge {
      transform: scale(1.15) rotate(6deg);
      box-shadow: none;
    }

    .process-step h3 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }

    .process-step p {
      font-size: 0.92rem;
    }

    /* ==========================================================================
       CTA BANNER SECTION
       ========================================================================== */
    .cta-wrapper {
      background: linear-gradient(135deg, rgba(22, 22, 22, 0.95) 0%, rgba(13, 13, 13, 0.98) 100%);
      border: 1px solid rgba(77, 163, 255, 0.35);
      border-radius: 28px;
      padding: 4.5rem 3rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: none;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .cta-wrapper::before {
      content: "";
      position: absolute;
      top: -50%;
      left: 50%;
      transform: translateX(-50%);
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(30, 144, 255, 0.25) 0%, transparent 60%);
      border-radius: 50%;
      pointer-events: none;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
      margin: 0 auto;
    }

    .cta-title {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      margin-bottom: 1.2rem;
    }

    .cta-desc {
      font-size: 1.15rem;
      color: #CBD5E1;
      margin-bottom: 2.5rem;
    }

    /* ==========================================================================
       CONTACT SECTION
       ========================================================================== */
    .contact-grid {
      max-width: 780px;
      margin: 0 auto;
      width: 100%;
    }

    .contact-info-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 2.75rem 2.25rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* SCROLL ANIMATION: Contact Info Card illuminates on scroll entrance */
    .contact-info-card.reveal.active {
      border-color: rgba(77, 163, 255, 0.35);
      box-shadow: none;
    }

    .contact-info-card.reveal.active .contact-method-icon {
      transform: scale(1.08);
      box-shadow: none;
    }

    .contact-info-card.reveal.active .contact-method-item:nth-child(2) .contact-method-icon {
      box-shadow: none;
    }

    .contact-info-card.reveal.active .contact-method-item:nth-child(3) .contact-method-icon {
      box-shadow: none;
    }

    .contact-method-list {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
      margin: 2.25rem 0;
    }

    .contact-method-item {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }

    .contact-method-icon {
      width: 46px;
      height: 46px;
      border-radius: var(--radius-md);
      background: rgba(77, 163, 255, 0.1);
      border: 1px solid rgba(77, 163, 255, 0.3);
      color: #4DA3FF;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .contact-method-item:nth-child(2) .contact-method-icon {
      background: rgba(120, 196, 255, 0.1);
      border-color: rgba(120, 196, 255, 0.3);
      color: #78C4FF;
    }

    .contact-method-item:nth-child(3) .contact-method-icon {
      background: rgba(77, 163, 255, 0.1);
      border-color: rgba(77, 163, 255, 0.3);
      color: #4DA3FF;
    }

    .contact-method-icon svg {
      width: 22px;
      height: 22px;
    }

    .contact-method-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .contact-method-value {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }

    /* Copy email micro-button */
    .btn-copy-email {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.25rem 0.65rem;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #4DA3FF;
      font-size: 0.75rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .btn-copy-email:hover {
      background: rgba(77, 163, 255, 0.15);
      border-color: rgba(77, 163, 255, 0.4);
      transform: translateY(-1px);
    }

    .btn-copy-email svg {
      width: 12px;
      height: 12px;
    }

    .online-indicator-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.72rem;
      font-weight: 700;
      color: #4DA3FF;
      background: rgba(77, 163, 255, 0.1);
      border: 1px solid rgba(77, 163, 255, 0.25);
      border-radius: var(--radius-full);
      padding: 0.15rem 0.55rem;
    }

    /* Contact Form */
    .contact-form-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 2.75rem 2.25rem;
      transition: all 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }

    .form-label {
      display: block;
      font-size: 0.88rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--text-secondary);
    }

    .form-control {
      width: 100%;
      padding: 0.9rem 1.15rem;
      background: rgba(18, 18, 18, 0.9);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      color: #fff;
      font-family: var(--font-body);
      font-size: 0.95rem;
      transition: all 0.3s ease;
      outline: none;
    }

    .form-control:focus {
      border-color: #4DA3FF;
      box-shadow: none;
      background: rgba(24, 24, 24, 0.95);
    }

    /* Budget Selection Pills */
    .budget-pills-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.65rem;
      margin-top: 0.5rem;
    }

    .budget-pill-option {
      position: relative;
    }

    .budget-pill-option input[type="radio"] {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .budget-pill-label {
      display: block;
      padding: 0.65rem 0.5rem;
      text-align: center;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-sm);
      color: #CBD5E1;
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s ease;
      user-select: none;
    }

    .budget-pill-option input[type="radio"]:checked + .budget-pill-label {
      background: rgba(77, 163, 255, 0.15);
      border-color: #4DA3FF;
      color: #4DA3FF;
      box-shadow: none;
    }

    .budget-pill-label:hover {
      border-color: rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.06);
    }

    textarea.form-control {
      resize: vertical;
      min-height: 120px;
    }

    /* Submit project button */
    .btn-submit-project {
      width: 100%;
      padding: 1.05rem;
      font-size: 1.02rem;
      letter-spacing: 0.03em;
      position: relative;
      overflow: hidden;
    }

    .btn-submit-project::after {
      content: "";
      position: absolute;
      top: -50%;
      left: -60%;
      width: 40%;
      height: 200%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transform: rotate(25deg);
      animation: sheenSweep 4.5s infinite cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Floating Toast Notification */
    .toast-notification {
      position: fixed;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%) translateY(30px);
      background: rgba(18, 18, 18, 0.94);
      border: 1px solid rgba(77, 163, 255, 0.5);
      box-shadow: none;
      backdrop-filter: blur(16px);
      color: #FFFFFF;
      padding: 0.75rem 1.6rem;
      border-radius: var(--radius-full);
      font-size: 0.92rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.65rem;
      z-index: 10000;
      opacity: 0;
      pointer-events: none;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .toast-notification.show {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .toast-notification .toast-check {
      color: #0D0D0D;
      background: #4DA3FF;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 0.75rem;
      font-weight: 900;
    }

    /* Form feedback toast */
    .form-alert {
      display: none;
      padding: 1rem;
      border-radius: var(--radius-sm);
      margin-top: 1.25rem;
      font-size: 0.92rem;
      font-weight: 500;
      align-items: center;
      gap: 0.5rem;
    }

    .form-alert.success {
      display: flex;
      background: rgba(77, 163, 255, 0.15);
      border: 1px solid rgba(77, 163, 255, 0.4);
      color: #4DA3FF;
    }

    /* ==========================================================================
       FOOTER (Ready Creatives Theme with Callout Card & Socials)
       ========================================================================== */
    .site-footer {
      background: #080808;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 5rem 0 2.5rem 0;
      position: relative;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr 0.9fr 1fr 1.35fr;
      gap: 3rem;
      margin-bottom: 3.5rem;
      align-items: start;
    }

    /* Brand Column */
    .footer-brand-header {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      margin-bottom: 1.25rem;
    }

    .footer-logo-box {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, #4DA3FF 0%, #1E90FF 100%);
      border-radius: 12px;
      display: grid;
      place-items: center;
      box-shadow: none;
      flex-shrink: 0;
    }

    .footer-logo-box svg {
      width: 22px;
      height: 22px;
      fill: #0D0D0D;
    }

    .footer-brand-title {
      display: flex;
      flex-direction: column;
    }

    .footer-brand-title .brand-name {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 800;
      color: #FFFFFF;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .footer-brand-title .brand-sub {
      font-family: var(--font-display);
      font-size: 0.78rem;
      font-weight: 700;
      color: #4DA3FF;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: 2px;
    }

    .footer-brand-desc {
      font-size: 0.92rem;
      color: #A3A3A3;
      line-height: 1.65;
      margin-bottom: 1.5rem;
      max-width: 320px;
    }

    .footer-social-row {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .social-btn {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: grid;
      place-items: center;
      color: #CBD5E1;
      transition: var(--transition-smooth);
      cursor: pointer;
    }

    .social-btn:hover {
      background: rgba(77, 163, 255, 0.15);
      border-color: rgba(77, 163, 255, 0.4);
      color: #4DA3FF;
      transform: translateY(-3px);
      box-shadow: none;
    }

    .social-btn svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    /* Headings & Lists */
    .footer-heading {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 1.35rem;
      display: flex;
      align-items: center;
      gap: 0.45rem;
      letter-spacing: -0.01em;
    }

    .footer-heading .heading-dash {
      color: #4DA3FF;
      font-weight: 900;
    }

    .footer-link-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-link-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.92rem;
      color: #A3A3A3;
      transition: var(--transition-smooth);
    }

    .footer-link-item .chevron {
      color: #64748B;
      font-size: 0.85rem;
      font-weight: 700;
      transition: transform 0.2s ease, color 0.2s ease;
    }

    .footer-link-item:hover {
      color: #FFFFFF;
      transform: translateX(4px);
    }

    .footer-link-item:hover .chevron {
      color: #4DA3FF;
    }

    /* Column 4: Landing Page Studio Card */
    .landing-studio-card {
      background: linear-gradient(145deg, rgba(22, 22, 22, 0.85) 0%, rgba(13, 13, 13, 0.95) 100%);
      border: 1px solid rgba(77, 163, 255, 0.35);
      border-radius: 18px;
      padding: 1.5rem;
      position: relative;
      box-shadow: none;
      backdrop-filter: blur(12px);
      transition: all 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .landing-studio-card:hover {
      transform: translateY(-6px) scale(1.01);
      box-shadow: none;
    }

    .studio-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.25rem 0.75rem;
      border-radius: var(--radius-full);
      background: rgba(77, 163, 255, 0.15);
      border: 1px solid rgba(77, 163, 255, 0.4);
      color: #4DA3FF;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 0.85rem;
    }

    .studio-desc {
      font-size: 0.86rem;
      color: #CBD5E1;
      line-height: 1.55;
      margin-bottom: 1.25rem;
    }

    .btn-landing-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    .btn-landing-cta-glow .btn-icon-circle,
    .btn-landing-cta .btn-icon-circle {
      width: 28px;
      height: 28px;
      background: #FFFFFF;
      border-radius: 50%;
      display: grid;
      place-items: center;
      overflow: hidden;
      flex-shrink: 0;
      box-shadow: none;
    }

    .btn-landing-cta-glow .btn-icon-circle img,
    .btn-landing-cta .btn-icon-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .btn-landing-cta .btn-icon-circle svg {
      width: 14px;
      height: 14px;
    }

    /* Bottom Copyright Bar */
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 0.86rem;
      color: #737373;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-legal-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .footer-legal-links button {
      background: none;
      border: none;
      color: #A3A3A3;
      font-size: 0.86rem;
      cursor: pointer;
      font-family: inherit;
      transition: color 0.2s ease;
    }

    .footer-legal-links button:hover {
      color: #4DA3FF;
    }

    /* Floating WhatsApp Button (Bottom Right) - Real WhatsApp Gradient */
    .whatsapp-floating-btn {
      position: fixed;
      bottom: 25px;
      right: 25px;
      z-index: 998;
      display: flex;
      align-items: center;
      gap: 0.7rem;
      padding: 0.65rem 1.45rem 0.65rem 0.75rem;
      background: linear-gradient(135deg, #2563EB 0%, #2874ED 48%, #1E40AF 100%);
      color: #FFFFFF;
      font-family: var(--font-display);
      font-size: 0.92rem;
      font-weight: 800;
      border-radius: var(--radius-full);
      box-shadow: none;
      border: 1px solid rgba(255, 255, 255, 0.4);
      transition: var(--transition-smooth);
      text-decoration: none;
      cursor: pointer;
      text-shadow: none;
    }

    .whatsapp-floating-btn:hover {
      background: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #1E3A8A 100%);
      box-shadow: none;
      transform: translateY(-3px) scale(1.03);
      color: #FFFFFF;
    }

    .whatsapp-icon-circle {
      width: 32px;
      height: 32px;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.45);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
      box-shadow: none;
    }

    /* Back to top button */
    .back-to-top {
      position: fixed;
      bottom: 25px;
      left: 25px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--bg-surface);
      border: 1px solid var(--border-glow);
      color: #fff;
      display: grid;
      place-items: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(15px);
      transition: var(--transition-smooth);
      z-index: 990;
      box-shadow: none;
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .back-to-top:hover {
      background: var(--gradient-brand);
      color: #0D0D0D;
      border-color: transparent;
      transform: translateY(-3px);
    }

    /* ==========================================================================
       MODALS (Privacy Policy & Terms of Service - Premium Legal UI)
       ========================================================================== */
    .modal-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(8, 8, 8, 0.9);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      z-index: 2000;
      display: grid;
      place-items: center;
      padding: 1.5rem;
      opacity: 0;
      visibility: hidden;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .modal-backdrop.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-container {
      background: #111216;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      width: 100%;
      max-width: 780px;
      max-height: 86vh;
      display: flex;
      flex-direction: column;
      box-shadow: none;
      transform: scale(0.96) translateY(15px);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
      overflow: hidden;
      position: relative;
    }

    .modal-backdrop.active .modal-container {
      transform: scale(1) translateY(0);
    }

    .modal-header {
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background: #15161A;
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .modal-header h3 {
      font-size: 1.35rem;
      font-weight: 700;
      color: #FFFFFF;
      margin: 0;
      letter-spacing: -0.01em;
    }

    .modal-date {
      font-size: 0.8rem;
      color: #94A3B8;
      margin-top: 0.25rem;
    }

    .modal-close-btn {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      width: 34px;
      height: 34px;
      border-radius: 50%;
      color: #94A3B8;
      display: grid;
      place-items: center;
      cursor: pointer;
      font-size: 1.25rem;
      line-height: 1;
      transition: all 0.2s ease;
    }

    .modal-close-btn:hover {
      background: rgba(255, 255, 255, 0.15);
      color: #FFFFFF;
      border-color: rgba(255, 255, 255, 0.25);
    }

    .modal-body {
      padding: 2rem;
      overflow-y: auto;
      font-size: 0.94rem;
      color: #CBD5E1;
      line-height: 1.75;
    }

    /* Minimal, Clean Scrollbar for Legal Body */
    .modal-body::-webkit-scrollbar {
      width: 5px;
    }

    .modal-body::-webkit-scrollbar-track {
      background: transparent;
    }

    .modal-body::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.15);
      border-radius: 9999px;
    }

    .modal-body::-webkit-scrollbar-thumb:hover {
      background: rgba(255, 255, 255, 0.3);
    }

    .legal-section {
      margin-bottom: 2rem;
      padding-bottom: 1.75rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .legal-section:last-of-type {
      border-bottom: none;
      margin-bottom: 0.5rem;
      padding-bottom: 0;
    }

    .legal-section-title {
      font-size: 1.08rem;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 0.75rem;
      letter-spacing: -0.01em;
    }

    .legal-section p {
      margin-bottom: 0.85rem;
      color: #CBD5E1;
      font-size: 0.94rem;
      line-height: 1.75;
    }

    .legal-section p:last-child {
      margin-bottom: 0;
    }

    .legal-list {
      margin: 0.75rem 0 0.75rem 1.25rem;
      padding-left: 0.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .legal-list li {
      color: #CBD5E1;
      font-size: 0.92rem;
      line-height: 1.65;
    }

    .legal-list li strong {
      color: #FFFFFF;
    }

    .modal-footer-bar {
      padding: 1.15rem 2rem;
      background: #15161A;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .modal-footer-info {
      font-size: 0.82rem;
      color: #94A3B8;
    }

    .modal-footer-info a {
      color: #4DA3FF;
      text-decoration: underline;
    }

    .btn-modal-close {
      padding: 0.55rem 1.4rem;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      color: #FFFFFF;
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .btn-modal-close:hover {
      background: rgba(255, 255, 255, 0.16);
      border-color: rgba(255, 255, 255, 0.25);
    }

    /* Clean static display - Scroll entry animation stopped */
    .reveal {
      opacity: 1;
      transform: none;
    }

    .reveal.active {
      opacity: 1;
      transform: none;
    }

    /* ==========================================================================
       RESPONSIVE BREAKPOINTS (Desktop -> Tablet -> Mobile -> Small Mobile)
       ========================================================================== */
    @media (max-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }
      .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
      .process-timeline::before {
        display: none;
      }
      .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
      }
      .hero-title-center {
        font-size: 3.6rem;
      }
    }

    @media (max-width: 768px) {
      /* Navigation */
      .nav-links, #nav-cta-btn, .btn-nav-wa-pill, .btn-whatsapp-nav {
        display: none !important;
      }
      .menu-toggle {
        display: flex;
      }
      .mobile-menu {
        display: flex;
      }

      /* Global Layout & Padding */
      .container {
        padding: 0 1.25rem;
      }
      .section-padding {
        padding: 4.5rem 0;
      }
      .section-header {
        margin-bottom: 2.5rem;
      }
      .section-header h2 {
        font-size: 2.2rem;
      }
      .section-header p {
        font-size: 0.95rem;
      }

      /* Hero Section */
      .hero-section {
        min-height: auto;
        padding-top: 7rem;
        padding-bottom: 4rem;
      }
      .hero-live-badge {
        font-size: 0.74rem;
        padding: 0.35rem 0.95rem;
        margin-bottom: 1.35rem;
      }
      .hero-title-center {
        font-size: 2.5rem;
        line-height: 1.15;
        margin-bottom: 1.35rem;
      }
      .hero-desc-center {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 2rem;
      }
      .hero-content-center {
        width: 100%;
      }
      .hero-cta-center {
        width: 100%;
        display: flex;
        justify-content: center;
      }
      .btn-hero-whatsapp {
        width: 100% !important;
        max-width: 100% !important;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.1rem 1.5rem;
        font-size: 1.02rem;
        box-sizing: border-box;
      }
      .hero-trust-dock {
        margin-top: 2.25rem;
        padding-top: 1.5rem;
        gap: 0.6rem;
      }
      .trust-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.85rem;
      }

      /* Tech Marquee */
      .tech-strip {
        padding: 0.85rem 0;
      }
      .tech-label-capsule {
        display: none;
      }
      .tech-item {
        font-size: 0.82rem;
        padding: 0.38rem 0.85rem;
      }
      .tech-marquee-track {
        gap: 1.5rem;
      }

      /* Services Section */
      .services-grid {
        grid-template-columns: 1fr;
        gap: 1.35rem;
      }
      .service-card {
        padding: 1.85rem 1.45rem;
      }
      .service-card h3 {
        font-size: 1.25rem;
      }
      .service-card p {
        font-size: 0.9rem;
      }

      /* About Section */
      .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .about-image-card {
        padding: 1.5rem 1.25rem;
      }
      .terminal-console-header {
        padding-bottom: 0.9rem;
        margin-bottom: 1.15rem;
      }
      .cwv-benchmark-panel {
        padding: 0.95rem;
        margin-top: 1.35rem;
      }
      .cwv-scores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
      }
      .about-stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.95rem;
      }
      .stat-card {
        padding: 1.1rem;
      }
      .stat-number {
        font-size: 1.85rem;
      }

      /* Why Choose Us */
      .why-grid {
        grid-template-columns: 1fr;
        gap: 1.35rem;
      }
      .why-card {
        padding: 1.85rem 1.45rem;
      }
      .why-num {
        font-size: 2.1rem;
        top: 1.35rem;
        right: 1.35rem;
      }

      /* Process Timeline */
      .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.35rem;
        margin-top: 2rem;
      }
      .process-step {
        padding: 1.25rem 0.75rem;
      }
      .step-badge {
        width: 52px;
        height: 52px;
        font-size: 1rem;
        margin-bottom: 1rem;
      }

      /* CTA Banner */
      .cta-wrapper {
        padding: 3rem 1.35rem;
        border-radius: 20px;
      }
      .cta-title {
        font-size: 2.1rem;
      }
      .cta-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
      }
      .btn-wa-cta-large {
        width: 100%;
        max-width: 360px;
      }

      /* Contact Section */
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .contact-info-card {
        padding: 1.85rem 1.35rem;
      }
      .contact-form-card {
        padding: 1.85rem 1.35rem;
      }
      .form-row {
        grid-template-columns: 1fr;
        gap: 1.1rem;
      }
      .budget-pills-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.55rem;
      }

      /* Footer */
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
      }
      .footer-legal-links {
        justify-content: center;
        gap: 1.25rem;
      }

      /* Floating WhatsApp button on Mobile */
      .whatsapp-floating-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.55rem 1.15rem 0.55rem 0.65rem;
        font-size: 0.85rem;
      }
      .whatsapp-icon-circle {
        width: 30px;
        height: 30px;
      }
      .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
      }
    }

    @media (max-width: 480px) {
      /* Small Mobile (< 480px) Enhancements */
      .container {
        padding: 0 1rem;
      }
      .section-padding {
        padding: 3.5rem 0;
      }
      .section-header h2 {
        font-size: 1.95rem;
      }
      .section-header p {
        font-size: 0.88rem;
      }

      /* Navbar Brand Scaling */
      .nav-logo-box {
        width: 36px;
        height: 36px;
        border-radius: 10px;
      }
      .nav-logo-box svg {
        width: 18px;
        height: 18px;
      }
      .nav-brand-title .brand-name {
        font-size: 1.05rem;
      }
      .nav-brand-title .brand-sub {
        font-size: 0.62rem;
      }

      /* Hero */
      .hero-section {
        padding-top: 6rem;
        padding-bottom: 3rem;
      }
      .hero-live-badge {
        font-size: 0.68rem;
        padding: 0.3rem 0.75rem;
        gap: 0.4rem;
        width: 100%;
        max-width: 320px;
        justify-content: center;
      }
      .live-separator {
        display: none;
      }
      .live-region {
        display: none;
      }
      .hero-title-center {
        font-size: 2.15rem;
        letter-spacing: -0.025em;
      }
      .hero-cta-center {
        width: 100%;
      }
      .btn-hero-whatsapp {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 0.96rem;
        padding: 1rem 1rem;
        box-sizing: border-box;
      }
      .btn-wa-animated-border {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
      }
      .btn-wa-inner {
        padding: 0.95rem 1.25rem 0.95rem 1rem;
        font-size: 0.96rem;
      }
      .trust-item {
        width: 100%;
        justify-content: center;
        font-size: 0.76rem;
      }

      /* About Stat Grid on small screens */
      .about-stat-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
      }

      /* Budget Pills */
      .budget-pills-container {
        grid-template-columns: 1fr 1fr;
      }
      .budget-pill-label {
        font-size: 0.75rem;
        padding: 0.55rem 0.35rem;
      }

      /* Floating WhatsApp Button turns into round circular FAB on small screens */
      .whatsapp-floating-btn {
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        bottom: 16px;
        right: 16px;
      }
      .whatsapp-floating-btn span {
        display: none;
      }
      .whatsapp-icon-circle {
        width: 100%;
        height: 100%;
        border: none;
        background: transparent;
      }
      .back-to-top {
        bottom: 16px;
        left: 16px;
        width: 38px;
        height: 38px;
      }

      /* Modals */
      .modal-backdrop {
        padding: 0.75rem;
      }
      .modal-container {
        max-height: 94vh;
        border-radius: 16px;
      }
      .modal-header {
        padding: 1.15rem 1.15rem;
      }
      .modal-header h3 {
        font-size: 1.25rem;
      }
      .modal-body {
        padding: 1.35rem 1.15rem;
        font-size: 0.88rem;
      }
    }

/* Flat color treatment: the moving cursor aura is the only glow. */
.btn-wa-animated-border::before,
.btn-landing-cta-glow::before,
.btn-hero-whatsapp::after,
.btn-submit-project::after,
.step-badge::after,
.live-pulse-dot::after,
.cta-wrapper::before {
  content: none;
  animation: none;
}

.gradient-shimmer-text {
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  animation: none;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--text-highlight);
  outline-offset: 4px;
}

/* Clip moving badges separately so they cannot overlap the fixed label. */
.tech-strip {
  mask-image: none;
  -webkit-mask-image: none;
}
.tech-label-capsule {
  margin-left: 1.25rem;
}
.tech-marquee-viewport {
  display: flex;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding-block: 4px;
  mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
}
.tech-marquee-track {
  width: max-content;
  min-width: 100%;
  padding-right: 2.5rem;
}
@media (max-width: 768px) {
  .tech-marquee-track { gap: 1.5rem; padding-right: 1.5rem; }
}
