
  :root {
    --red: #E01020;
    --red-bright: #FF1428;
    --red-deep: #B00010;
    --red-glow: rgba(224, 16, 32, 0.35);
    --black: #000000;
    --black-1: #0A0A0A;
    --black-2: #111111;
    --black-3: #181818;
    --black-4: #222222;
    --white: #FFFFFF;
    --white-muted: rgba(255,255,255,0.7);
    --white-faint: rgba(255,255,255,0.08);
    --glass: rgba(255,255,255,0.04);
    --glass-border: rgba(255,255,255,0.08);
    --font-display: 'Inter', sans-serif;
    --font-mono: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
  }

  *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
  }

  /* ═══ NOISE OVERLAY ═══ */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    opacity: 0.5;
  }

  /* ═══ SCROLLBAR ═══ */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black-1); }
  ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

  /* ═══ SELECTION ═══ */
  ::selection { background: var(--red); color: var(--white); }

  /* ═══ PROGRESS BAR ═══ */
  #progress-bar {
    position: fixed; top: 0; left: 0;
    height: 2px; background: var(--red);
    z-index: 9999; width: 0%;
    transition: width 0.1s;
    box-shadow: 0 0 10px var(--red);
  }

  /* ═══ NAVBAR ═══ */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 10000;
    padding: 0 5%;
    height: 70px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s ease;
    background: transparent;
  }
  nav.scrolled {
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
  }
  .nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 800;
    letter-spacing: -0.5px;
  }
  .nav-logo-text span { color: var(--red); }
  .nav-logo-badge {
    background: var(--red);
    color: white;
    font-size: 0.55rem; font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 1px;
    font-family: var(--font-mono);
  }
  .nav-links {
    display: flex; align-items: center; gap: 2rem;
    list-style: none;
  }
  .nav-links a {
    color: var(--white-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; width: 0; height: 1px;
    background: var(--red);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--red);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 20px rgba(224,16,32,0.3);
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--red-bright) !important; box-shadow: 0 0 30px rgba(224,16,32,0.6) !important; transform: translateY(-1px); }

  /* Hamburger */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: white; transition: all 0.3s;
    border-radius: 2px;
  }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

  .mobile-menu {
    position: fixed; inset: 0; top: 0;
    background: linear-gradient(135deg, rgba(5,5,5,0.97) 0%, rgba(15,0,0,0.97) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 0;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
    padding: 90px 40px 40px;
    overflow: hidden;
  }

  /* Red radial glow behind menu */
  .mobile-menu::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(224,16,32,0.15) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
    animation: mmGlow 3s ease-in-out infinite;
  }
  .mobile-menu::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(224,16,32,0.08) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
  }

  @keyframes mmGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
  }

  .mobile-menu.open { transform: translateX(0); }

  /* Staggered animation for links */
  .mobile-menu.open .mm-link:nth-child(1) { animation: mmSlideIn 0.4s 0.1s both; }
  .mobile-menu.open .mm-link:nth-child(2) { animation: mmSlideIn 0.4s 0.18s both; }
  .mobile-menu.open .mm-link:nth-child(3) { animation: mmSlideIn 0.4s 0.26s both; }
  .mobile-menu.open .mm-link:nth-child(4) { animation: mmSlideIn 0.4s 0.34s both; }
  .mobile-menu.open .mm-link:nth-child(5) { animation: mmSlideIn 0.4s 0.42s both; }
  .mobile-menu.open .mm-link:nth-child(6) { animation: mmSlideIn 0.4s 0.50s both; }

  @keyframes mmSlideIn {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  .mobile-menu .mm-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 16px 0;
    width: 100%;
    text-align: center;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s ease;
  }

  /* No numbers */
  .mobile-menu .mm-link::before {
    display: none !important;
  }
  .mobile-menu .mm-link::after {
    display: none !important;
  }

  .mobile-menu .mm-link:hover {
    color: var(--red);
    letter-spacing: 2.2px;
    background: rgba(255, 255, 255, 0.02);
  }

  /* Active state */
  .mobile-menu .mm-link.mm-active {
    color: var(--red);
  }

  /* CTA button at bottom */
  .mm-cta-wrap {
    margin-top: 30px;
    width: 100%;
    z-index: 1;
  }
  .mm-cta-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--red) 0%, #ff2030 100%);
    color: white !important;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(224,16,32,0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  .mm-cta-btn:hover {
    box-shadow: 0 12px 40px rgba(224,16,32,0.6);
    transform: translateY(-2px);
  }

  /* Bottom info strip */
  .mm-footer-strip {
    position: absolute;
    bottom: 30px;
    left: 0; right: 0;
    text-align: center;
    color: rgba(255,255,255,0.15);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
  }
  .mm-footer-strip span { color: var(--red); }


  /* ═══ HERO ═══ */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 120px 5% 80px;
  }

  .hero-video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
  }

  .hero-video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
    pointer-events: none;
  }

  #hero-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
  }


  @keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
  }

  /* Radial glow */
  .hero-glow {
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(224,16,32,0.12) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: pulsGlow 4s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes pulsGlow {
    0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
  }

  .hero-content {
    position: relative; z-index: 3 !important;
    max-width: 820px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(10, 10, 12, 0.45);
    border: 1px solid rgba(224, 16, 32, 0.22);
    border-radius: 24px;
    padding: 55px 45px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(224, 16, 32, 0.15);
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--red);
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.8s ease 0.1s both;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
  }
  @keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -2px;
    margin-bottom: 24px;
  }
  .hero-title .line {
    display: block;
    animation: fadeSlideUp 0.8s ease both;
  }
  .hero-title .line:nth-child(1) { animation-delay: 0.2s; }
  .hero-title .line:nth-child(2) { animation-delay: 0.35s; }
  .hero-title .line:nth-child(3) { animation-delay: 0.5s; color: var(--red); }
  .hero-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
  }

  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .cursor-blink {
    animation: blinkCursor 0.8s infinite;
    color: var(--red);
    margin-left: 8px;
    font-weight: 300;
    display: inline-block;
  }

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

  .hero-desc {
    font-size: 1.1rem;
    color: var(--white-muted);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeSlideUp 0.8s ease 0.65s both;
  }

  .hero-buttons {
    display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
    animation: fadeSlideUp 0.8s ease 0.8s both;
  }
  .btn-primary {
    background: var(--red);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(224,16,32,0.4);
    letter-spacing: 0.3px;
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
  }
  .btn-primary:hover::after { transform: translateX(100%); }
  .btn-primary:hover { box-shadow: 0 0 50px rgba(224,16,32,0.7); transform: translateY(-2px); background: var(--red-bright); }

  .btn-outline {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
    backdrop-filter: blur(4px);
  }
  .btn-outline:hover { border-color: var(--red); color: var(--red); background: rgba(224,16,32,0.05); }

  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
    animation: fadeSlideUp 0.8s ease 1s both;
    z-index: 2;
    width: 100%;
  }
  .stat-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .stat-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
  }
  .stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 800;
    color: var(--red);
    display: block;
  }
  .stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
  }


  /* Code Editor Window (Mobile Hidden) */
  .hero-code-window {
    display: none;
  }
  .code-window-header {
    background: rgba(20, 20, 25, 0.85);
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .code-window-dots {
    display: flex;
    gap: 8px;
  }
  .code-window-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
  }
  .code-window-dots .red { background: #FF5F56; }
  .code-window-dots .yellow { background: #FFBD2E; }
  .code-window-dots .green { background: #27C93F; }
  .code-window-title {
    font-family: monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
  }
  .code-window-body {
    padding: 24px;
    height: 330px;
    overflow-y: auto;
    text-align: left;
  }
  .code-window-body pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-all;
  }
  .code-window-body code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #e5c07b;
  }
  .code-window-body .keyword { color: #c678dd; font-weight: 600; }
  .code-window-body .string { color: #98c379; }
  .code-window-body .number { color: #d19a66; }
  .code-window-body .tag { color: #e06c75; }
  .code-window-body .class-name { color: #61afef; font-weight: 500; }
  .code-window-body .comment { color: #5c6370; font-style: italic; }
  .code-window-body .method { color: #61afef; }
  .code-window-body .property { color: #abb2bf; }

  /* Scroll indicator */
  .scroll-ind {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    animation: fadeSlideUp 0.8s ease 1.2s both;
    z-index: 2;
  }
  .scroll-ind span {
    font-size: 0.65rem; letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    position: relative; overflow: hidden;
  }
  .scroll-line::after {
    content: '';
    position: absolute;
    width: 100%; height: 20px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: scrollDrop 2s ease-in-out infinite;
  }
  @keyframes scrollDrop {
    0% { top: -20px; }
    100% { top: 60px; }
  }

  /* ═══ SECTION BASE ═══ */
  section { padding: 100px 5%; position: relative; }
  .section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .section-tag::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--red);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .section-sub {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 60px;
  }

  /* ═══ MARQUEE ═══ */
  .marquee-wrap {
    background: var(--red);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .marquee-inner {
    display: inline-block;
    animation: marquee 20s linear infinite;
  }
  .marquee-inner span {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 32px;
    color: rgba(255,255,255,0.8);
  }
  .marquee-inner span.dot { color: rgba(255,255,255,0.4); padding: 0; }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ═══ SERVICES ═══ */
  #services { background: var(--black-1); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
  }
  .service-card {
    background: var(--black-1);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: pointer;
  }
  .service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(224,16,32,0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .service-card:hover { background: var(--black-2); }
  .service-card:hover::before { opacity: 1; }
  .service-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  .service-card:hover::after { transform: scaleX(1); }
  .service-icon {
    width: 52px; height: 52px;
    background: rgba(224,16,32,0.1);
    border: 1px solid rgba(224,16,32,0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s;
  }
  .service-card:hover .service-icon {
    background: rgba(224,16,32,0.2);
    box-shadow: 0 0 20px rgba(224,16,32,0.3);
  }
  .service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 700;
    margin-bottom: 12px;
  }
  .service-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .service-hover-details {
    margin: 0;
    list-style: none;
    padding: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  .service-hover-details li {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
    position: relative;
    padding-left: 14px;
  }
  .service-hover-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 0.8rem;
  }
  .service-card:hover .service-hover-details {
    max-height: 300px;
    opacity: 1;
    margin-bottom: 20px;
  }
  .service-tags {
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .service-tag {
    font-size: 0.65rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3px 10px;
    border-radius: 50px;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
  }
  .service-card:hover .service-tag {
    border-color: rgba(224,16,32,0.3);
    color: rgba(224,16,32,0.8);
    background: rgba(224,16,32,0.05);
  }
  .service-arrow {
    position: absolute; top: 32px; right: 32px;
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    transition: all 0.3s;
  }
  .service-card:hover .service-arrow {
    background: var(--red);
    border-color: var(--red);
    color: white;
    transform: rotate(45deg);
  }

  /* ═══ WHY CHOOSE US ═══ */
  #why {
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .why-visual {
    position: relative; height: 500px;
    overflow: hidden;
    border-radius: 16px;
  }
  .why-center-circle {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 140px; height: 140px;
    background: var(--red);
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    box-shadow: 0 0 60px rgba(224,16,32,0.5), 0 0 120px rgba(224,16,32,0.2);
    z-index: 2;
    animation: centerPulse 3s ease-in-out infinite;
  }
  @keyframes centerPulse {
    0%,100% { box-shadow: 0 0 40px rgba(224,16,32,0.5), 0 0 80px rgba(224,16,32,0.2); }
    50% { box-shadow: 0 0 80px rgba(224,16,32,0.8), 0 0 160px rgba(224,16,32,0.3); }
  }
  .why-center-circle span:first-child {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 800;
    color: white;
  }
  .why-center-circle span:last-child {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .why-ring {
    position: absolute; top: 50%; left: 50%;
    border: 1px solid rgba(224,16,32,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ringRotate 20s linear infinite;
  }
  .why-ring:nth-child(1) { width: 220px; height: 220px; }
  .why-ring:nth-child(2) { width: 320px; height: 320px; animation-direction: reverse; animation-duration: 25s; }
  .why-ring:nth-child(3) { width: 420px; height: 420px; animation-duration: 30s; }
  @keyframes ringRotate { to { transform: translate(-50%,-50%) rotate(360deg); } }
  .why-orbit {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 320px; height: 320px;
    animation: orbitSpin 15s linear infinite;
  }
  .why-orbit-dot {
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 12px; height: 12px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--red);
  }
  @keyframes orbitSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }
  .why-feature-dot {
    position: absolute;
    width: 48px; height: 48px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
  }
  .why-feature-dot:hover {
    background: rgba(224,16,32,0.1);
    border-color: rgba(224,16,32,0.3);
    transform: scale(1.1);
  }
  .f1 { top: 10%; left: 10%; }
  .f2 { top: 10%; right: 10%; }
  .f3 { bottom: 10%; left: 10%; }
  .f4 { bottom: 10%; right: 10%; }
  .f5 { top: 50%; left: 5%; transform: translateY(-50%); }
  .f6 { top: 50%; right: 5%; transform: translateY(-50%); }

  .why-list {
    display: flex; flex-direction: column; gap: 16px;
    margin-top: 40px;
  }
  .why-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .why-item::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--red);
    transform: scaleY(0);
    transition: transform 0.3s;
  }
  .why-item:hover { border-color: rgba(224,16,32,0.3); background: rgba(224,16,32,0.04); }
  .why-item:hover::before { transform: scaleY(1); }
  .why-item-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .why-item-text h4 {
    font-family: var(--font-display);
    font-size: 0.95rem; font-weight: 700;
    margin-bottom: 4px;
  }
  .why-item-text p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
  }

  /* ═══ TECHNOLOGIES ═══ */
  #tech { background: var(--black-1); }
  .tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
  }
  .tech-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px 12px;
    text-align: center;
    transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .tech-item::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(224,16,32,0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .tech-item:hover { border-color: rgba(224,16,32,0.4); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(224,16,32,0.15); }
  .tech-item:hover::before { opacity: 1; }
  .tech-item .tech-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
  .tech-item .tech-name {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    font-family: var(--font-mono);
  }
  .tech-category {
    margin-bottom: 32px;
  }
  .tech-cat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
  }

  /* ═══ PORTFOLIO ═══ */
  #portfolio { background: var(--black); }
  .portfolio-filters {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .filter-btn {
    padding: 8px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
  }
  .filter-btn:hover, .filter-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: white;
    box-shadow: 0 0 16px rgba(224,16,32,0.3);
  }
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
  }
  .portfolio-card {
    background: var(--black-2);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
  }
  .portfolio-card:hover { border-color: rgba(224,16,32,0.3); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(224,16,32,0.1); }
  .portfolio-img {
    height: 200px;
    position: relative; overflow: hidden;
    background: var(--black-3);
    display: flex; align-items: center; justify-content: center;
  }
  .portfolio-img-placeholder {
    font-size: 3rem;
    opacity: 0.3;
    transition: all 0.3s;
  }
  .portfolio-card:hover .portfolio-img-placeholder {
    opacity: 0.5;
    transform: scale(1.1);
  }
  .portfolio-overlay {
    position: absolute; inset: 0;
    background: rgba(224,16,32,0.85);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .portfolio-card:hover .portfolio-overlay { opacity: 1; }
  .portfolio-overlay a {
    background: white;
    color: var(--red);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: transform 0.2s;
  }
  .portfolio-overlay a:hover { transform: scale(1.05); }
  .portfolio-info { padding: 24px; }
  .portfolio-category {
    font-size: 0.65rem;
    color: var(--red);
    font-family: var(--font-mono);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
  }
  .portfolio-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700;
    margin-bottom: 8px;
  }
  .portfolio-info p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .portfolio-stack {
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .stack-badge {
    font-size: 0.62rem;
    background: rgba(224,16,32,0.1);
    border: 1px solid rgba(224,16,32,0.2);
    color: rgba(224,16,32,0.8);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: var(--font-mono);
  }

  /* ═══ STATS ═══ */
  #stats {
    background: var(--red);
    padding: 80px 5%;
    position: relative; overflow: hidden;
  }
  #stats::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative; z-index: 1;
  }
  .stats-num {
    font-family: var(--font-display);
    font-size: 3.5rem; font-weight: 800;
    display: block;
    letter-spacing: -2px;
    color: white;
  }
  .stats-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-mono);
    display: block;
    margin-top: 4px;
  }
  .stats-divider {
    width: 40px; height: 2px;
    background: rgba(255,255,255,0.3);
    margin: 12px auto;
  }

  /* ═══ TESTIMONIALS ═══ */
  #testimonials { background: var(--black-1); }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
  .testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    position: relative; overflow: hidden;
    transition: all 0.3s;
  }
  .testimonial-card::before {
    content: '"';
    position: absolute; top: -10px; right: 20px;
    font-family: var(--font-display);
    font-size: 8rem; font-weight: 800;
    color: rgba(224,16,32,0.08);
    line-height: 1;
  }
  .testimonial-card:hover { border-color: rgba(224,16,32,0.3); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
  .stars {
    color: var(--red);
    font-size: 0.85rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
  }
  .testimonial-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative; z-index: 1;
  }
  .testimonial-author {
    display: flex; align-items: center; gap: 12px;
  }
  .author-avatar {
    width: 42px; height: 42px;
    background: var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .author-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem; font-weight: 700;
  }
  .author-info span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
  }

  /* ═══ CONTACT CTA ═══ */
  #cta {
    background: var(--black);
    text-align: center;
    padding: 120px 5%;
    position: relative; overflow: hidden;
  }
  #cta::before {
    content: '';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(224,16,32,0.1), transparent 70%);
    pointer-events: none;
  }
  #cta .section-title { font-size: clamp(2.5rem, 6vw, 5rem); margin: 0 auto 24px; max-width: 700px; }
  #cta p {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.7;
  }
  #cta .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ═══ CONTACT FORM ═══ */
  #contact { background: var(--black-1); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 800;
    margin-bottom: 16px;
  }
  .contact-info p {
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 40px;
  }
  .contact-details {
    display: flex; flex-direction: column; gap: 20px;
  }
  .contact-detail {
    display: flex; align-items: center; gap: 16px;
  }
  .contact-detail-icon {
    width: 44px; height: 44px;
    background: rgba(224,16,32,0.1);
    border: 1px solid rgba(224,16,32,0.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .contact-detail-text span {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-mono);
    margin-bottom: 2px;
  }
  .contact-detail-text a, .contact-detail-text strong {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .contact-detail-text a:hover { color: var(--red); }
  .contact-form {
    display: flex; flex-direction: column; gap: 16px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
  }
  .form-group input, .form-group textarea, .form-group select {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(224,16,32,0.1);
    background: rgba(224,16,32,0.03);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group select option { background: var(--black-2); }
  .form-submit {
    background: var(--red);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 24px rgba(224,16,32,0.3);
    font-family: var(--font-body);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%;
  }
  .form-submit:hover { background: var(--red-bright); box-shadow: 0 0 40px rgba(224,16,32,0.6); transform: translateY(-2px); }
  .form-note {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
  }

  /* ═══ FOOTER ═══ */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 80px 5% 32px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-top: 16px;
    max-width: 280px;
  }
  .footer-social {
    display: flex; gap: 10px;
    margin-top: 24px;
  }
  .social-btn {
    width: 36px; height: 36px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s;
  }
  .social-btn:hover { background: var(--red); border-color: var(--red); color: white; box-shadow: 0 0 16px rgba(224,16,32,0.4); }
  .footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.9rem; font-weight: 700;
    margin-bottom: 20px;
    color: white;
  }
  .footer-links {
    list-style: none;
    display: flex; flex-direction: column; gap: 10px;
  }
  .footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
    display: flex; align-items: center; gap: 6px;
  }
  .footer-links a::before {
    content: '→';
    font-size: 0.7rem;
    color: var(--red);
    opacity: 0;
    transition: opacity 0.2s;
  }
  .footer-links a:hover { color: white; padding-left: 4px; }
  .footer-links a:hover::before { opacity: 1; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 28px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
  }
  .footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
  }
  .footer-bottom span { color: var(--red); }
  .footer-bottom-links {
    display: flex; gap: 24px;
  }
  .footer-bottom-links a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-bottom-links a:hover { color: var(--red); }

  /* ═══ FLOATING ELEMENTS ═══ */
  .floating-wa {
    position: fixed; bottom: 80px; right: 24px;
    width: 52px; height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    z-index: 100;
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
  }
  .floating-wa:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
  @keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  .back-top {
    position: fixed; bottom: 24px; right: 24px;
    width: 42px; height: 42px;
    background: var(--red);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    color: white;
    z-index: 100;
    transition: all 0.3s;
    opacity: 0; pointer-events: none;
    box-shadow: 0 0 16px rgba(224,16,32,0.4);
  }
  .back-top.visible { opacity: 1; pointer-events: auto; }
  .back-top:hover { transform: translateY(-3px); box-shadow: 0 0 24px rgba(224,16,32,0.6); }

  /* ═══ AOS ANIMATIONS ═══ */
  [data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
  }
  [data-aos="fade-right"] { transform: translateX(-30px); }
  [data-aos="fade-right"].aos-animate { transform: translateX(0); }
  [data-aos="fade-left"] { transform: translateX(30px); }
  [data-aos="fade-left"].aos-animate { transform: translateX(0); }
  [data-aos="zoom-in"] { transform: scale(0.9); }
  [data-aos="zoom-in"].aos-animate { transform: scale(1); }

  /* ═══ RESPONSIVE ═══ */
  @media (max-width: 1024px) {
    #why { grid-template-columns: 1fr; gap: 40px; }
    .why-visual { height: 360px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-stats { display: none; }
    section { padding: 70px 5%; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    #hero { padding: 100px 5% 60px; }
    .hero-content { padding: 35px 24px; border-radius: 16px; }
  }
  @media (max-width: 480px) {
    .hero-title { letter-spacing: -1px; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
    .why-visual { transform: scale(0.85); transform-origin: center center; margin: -30px 0; }
  }

  /* ═══ NOTIFICATION TOAST ═══ */
  .toast {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px);
    background: var(--black-2);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 14px 24px;
    display: flex; align-items: center; gap: 12px;
    z-index: 10000;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
    min-width: 280px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  }
  .toast.show { transform: translateX(-50%) translateY(0); }
  .toast-icon { font-size: 1.2rem; }
  .toast-text { font-size: 0.85rem; color: rgba(255,255,255,0.8); }

  /* ═══ PRELOADER ═══ */
  #preloader {
    position: fixed; inset: 0;
    background: var(--black);
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }
  #preloader.hide { opacity: 0; visibility: hidden; }
  .preloader-inner {
    text-align: center;
  }
  .preloader-logo {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 800;
    margin-bottom: 20px;
    animation: logoPulse 1s ease-in-out infinite;
  }
  .preloader-logo span { color: var(--red); }
  @keyframes logoPulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
  .preloader-bar {
    width: 200px; height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 1px;
    overflow: hidden;
  }
  .preloader-fill {
    height: 100%; width: 0;
    background: var(--red);
    box-shadow: 0 0 8px var(--red);
    animation: preloaderFill 1.5s ease forwards;
  }
  @keyframes preloaderFill { to { width: 100%; } }

  /* ═══ SECTION DIVIDER ═══ */
  .divider {
    width: 80px; height: 3px;
    background: var(--red);
    margin-bottom: 48px;
    position: relative;
  }
  .divider::after {
    content: '';
    position: absolute; top: 0; right: -16px;
    width: 6px; height: 3px;
    background: var(--red);
    opacity: 0.5;
  }

  /* ═══ NAV LOGO IMAGE ═══ */
  .nav-logo-img {
    width: 240px;
    height: auto;
    transition: filter 0.3s, transform 0.3s;
    object-fit: contain;
  }
  .nav-logo-img:hover { filter: drop-shadow(0 0 8px rgba(224,16,32,0.8)); transform: scale(1.04); }

  /* ═══ HERO CANVAS ANIMATION ═══ */
  #hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
  }

  /* Override hero content z-index */
  .hero-content { z-index: 3 !important; }
  .hero-stats { z-index: 3 !important; }
  .scroll-ind { z-index: 3 !important; }
  .hero-glow { z-index: 0 !important; }

  /* ═══ ANIMATED COLOR BACKGROUND ═══ */
  .hero-color-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #050505;
    overflow: hidden;
  }

  /* Morphing, floating premium color blobs */
  .color-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.58;
    mix-blend-mode: screen;
    will-change: transform;
    animation: floatBlob 25s infinite alternate ease-in-out;
  }

  .blob-red {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 16, 32, 0.65) 0%, rgba(224, 16, 32, 0) 70%);
    top: -10%;
    left: -5%;
    animation-duration: 20s;
  }

  .blob-purple {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.55) 0%, rgba(147, 51, 234, 0) 70%);
    bottom: -15%;
    right: -5%;
    animation-duration: 28s;
    animation-delay: -6s;
  }

  .blob-orange {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.48) 0%, rgba(249, 115, 22, 0) 70%);
    top: 25%;
    right: 20%;
    animation-duration: 22s;
    animation-delay: -12s;
  }

  .blob-burgundy {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(120, 10, 25, 0.6) 0%, rgba(120, 10, 25, 0) 70%);
    bottom: 10%;
    left: -10%;
    animation-duration: 24s;
    animation-delay: -18s;
  }

  /* Glass overlay to blend the blobs and add sleek style */
  .glass-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: radial-gradient(circle at 50% 50%, transparent 20%, rgba(5, 5, 5, 0.45) 100%);
    z-index: 1;
    pointer-events: none;
  }

  @keyframes floatBlob {
    0% {
      transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
    33% {
      transform: translate3d(8%, 12%, 0) scale(1.15) rotate(120deg);
    }
    66% {
      transform: translate3d(-10%, -6%, 0) scale(0.9) rotate(240deg);
    }
    100% {
      transform: translate3d(0, 0, 0) scale(1) rotate(360deg);
    }
  }

  /* ═══ CODE RAIN MATRIX EFFECT ═══ */
  .code-rain-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    font-family: monospace;
    font-size: 11px;
    line-height: 1.2;
    color: rgba(224, 16, 32, 0.45);
    white-space: pre;
    opacity: 0.35;
    mix-blend-mode: screen;
  }

  .code-col {
    position: absolute;
    top: -300px;
    animation: codeRainDown linear infinite;
    white-space: pre-wrap;
    word-break: break-all;
    text-shadow: 0 0 8px rgba(224, 16, 32, 0.8);
  }

  @keyframes codeRainDown {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(115vh);
    }
  }

  /* Corner decorations */
  .hero-corner {
    position: absolute;
    width: 60px; height: 60px;
    pointer-events: none;
    z-index: 3;
  }
  .hero-corner::before, .hero-corner::after {
    content: '';
    position: absolute;
    background: var(--red);
    opacity: 0.5;
  }
  .hero-corner.tl { top: 20px; left: 20px; }
  .hero-corner.tl::before { top: 0; left: 0; width: 40px; height: 1px; }
  .hero-corner.tl::after { top: 0; left: 0; width: 1px; height: 40px; }
  .hero-corner.tr { top: 20px; right: 20px; }
  .hero-corner.tr::before { top: 0; right: 0; width: 40px; height: 1px; }
  .hero-corner.tr::after { top: 0; right: 0; width: 1px; height: 40px; }
  .hero-corner.bl { bottom: 20px; left: 20px; }
  .hero-corner.bl::before { bottom: 0; left: 0; width: 40px; height: 1px; }
  .hero-corner.bl::after { bottom: 0; left: 0; width: 1px; height: 40px; }
  .hero-corner.br { bottom: 20px; right: 20px; }
  .hero-corner.br::before { bottom: 0; right: 0; width: 40px; height: 1px; }
  .hero-corner.br::after { bottom: 0; right: 0; width: 1px; height: 40px; }

  /* Floating tech badges */
  .tech-badge-float {
    position: absolute;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(224,16,32,0.3);
    border-radius: 8px;
    padding: 8px 12px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: rgba(224,16,32,0.9);
    backdrop-filter: blur(8px);
    white-space: nowrap;
    z-index: 3;
    pointer-events: none;
  }
  .tech-badge-float::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    animation: blink 1.5s ease-in-out infinite;
  }
  .tbf1 { top: 15%; left: 55%; animation: floatBadge1 5s ease-in-out infinite; }
  .tbf2 { top: 30%; right: 5%; animation: floatBadge2 6s ease-in-out infinite 1s; }
  .tbf3 { top: 55%; left: 52%; animation: floatBadge3 7s ease-in-out infinite 0.5s; }
  .tbf4 { bottom: 20%; right: 8%; animation: floatBadge1 8s ease-in-out infinite 2s; }
  @keyframes floatBadge1 { 0%,100%{transform:translateY(0px);} 50%{transform:translateY(-12px);} }
  @keyframes floatBadge2 { 0%,100%{transform:translateY(-8px);} 50%{transform:translateY(6px);} }
  @keyframes floatBadge3 { 0%,100%{transform:translateY(4px);} 50%{transform:translateY(-10px);} }

  @media(max-width:768px){
    .hero-data-stream { display:none; }
    .tech-badge-float { display:none; }
    .hero-corner { display:none; }
    .code-rain-container { opacity:0.4; }
    .nav-logo-img { width: 160px; height: auto; }
  }




/* ═══ PAGE HERO (Inner Pages) ═══ */
.page-hero {
  padding: 160px 5% 80px;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at top, rgba(224,16,32,0.1), transparent 60%), var(--black);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  animation: pageHeroSlideDown 0.9s cubic-bezier(0.23,1,0.32,1) both;
}
.page-hero-title span {
  color: var(--red);
}
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  background: var(--glass);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  position: relative;
  z-index: 2;
  animation: pageHeroSlideUp 0.9s cubic-bezier(0.23,1,0.32,1) 0.2s both;
}
.page-breadcrumb a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.page-breadcrumb a:hover {
  color: var(--white);
}
.page-breadcrumb span.sep {
  color: rgba(255,255,255,0.3);
}
@keyframes pageHeroSlideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pageHeroSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══ ENHANCED TECH GRID ═══ */
.tech-category {
  margin-bottom: 60px;
}
.tech-category-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 12px;
}
.tech-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), transparent);
}
.tech-grid-adv {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.tech-item-adv {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.tech-item-adv:hover {
  background: rgba(224,16,32,0.05);
  border-color: rgba(224,16,32,0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(224,16,32,0.1);
}
.tech-item-adv .tech-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.tech-item-adv .tech-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

/* ═══ RESPONSIVE HERO DESKTOP LAYOUT ═══ */
@media (min-width: 992px) {
  #hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 8%;
    padding-right: 8%;
    gap: 60px;
  }
  
  .hero-content {
    flex: 1.2;
    text-align: left;
    align-items: flex-start;
    margin: 0;
    max-width: 600px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
  }
  
  .hero-code-window {
    display: block;
    flex: 1.3;
    max-width: 680px;
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(224, 16, 32, 0.05);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: hidden;
    animation: fadeSlideUp 0.8s ease 0.4s both;
  }
  .hero-code-window .code-window-body {
    height: 440px;
  }
  .hero-code-window .code-window-body code {
    font-size: 0.95rem;
  }
  
  .hero-title {
    text-align: left;
    font-size: clamp(3.2rem, 5vw, 4.8rem);
  }
  
  .hero-desc {
    text-align: left;
    margin-left: 0;
    font-size: 1.1rem;
    max-width: 580px;
  }
  
  .hero-buttons {
    justify-content: flex-start;
  }
  
  .hero-stats {
    justify-content: flex-start;
    gap: 45px;
    margin-top: 50px;
  }
  
  .stat-card {
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    padding: 0 45px 0 0 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 0 !important;
    text-align: left;
  }
  
  .stat-card:last-child {
    border-right: none !important;
  }
  
  .stat-card::before {
    display: none !important;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
}
