/* =========================================
   VARIABLES & THEME
   ========================================= */
   :root {
    /* Refined Off-White Premium Light Theme */
    --bg-color: #F6F5F2; 
    --surface-color: #FFFFFF; 
    --surface-alt: #EAE8E2; 
    --border-color: #DFDDDB; 
    --text-primary: #101112; 
    --text-muted: #5C5D60;
    
    /* Vibrant, Unmistakable Accent */
    --accent-color: #FE4116; /* Electric Orange-Red */
    --accent-hover: #DB320C;
    --accent-light: rgba(254, 65, 22, 0.12);
    
    /* Black Sections */
    --bg-dark: #070709; /* Deep, deep black-blue */
    --surface-dark: #111215;
    --border-dark: #202227;
    --text-light: #F4F6F9;
    --text-muted-light: #9EA1A5;
  
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
  
    /* Sizes & Spacing */
    --container-width: 1240px;
    --nav-height: 90px;
    --section-pad: 10rem;
  
    /* Modern Transitions */
    --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --bounce: 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  
    /* Shadows */
    --shadow-sm: 0 4px 16px rgba(0,0,0,0.03);
    --shadow-md: 0 12px 32px rgba(0,0,0,0.04);
    --shadow-hover: 0 24px 48px rgba(0,0,0,0.08);
    --shadow-glow: 0 0 40px rgba(254, 65, 22, 0.25);
  }
  
  /* =========================================
     RESET & BASE
     ========================================= */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
    font-size: 16px;
  }
  
  body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
  }
  
  ::selection {
    background-color: var(--accent-color);
    color: #fff;
  }
  
  /* Utilities */
  .relative { position: relative; }
  .z-10 { z-index: 10; }
  .overflow-hidden { overflow: hidden; }
  .italic { font-style: italic; }
  .text-center { text-align: center; justify-content: center; }
  .mx-auto { margin-left: auto; margin-right: auto; }
  .flex-center-vert { display: flex; flex-direction: column; }
  
  /* =========================================
     EFFECTS & CUSTOM CURSOR
     ========================================= */
  .cursor-dot {
    position: fixed; top: 0; left: 0;
    width: 8px; height: 8px; background-color: var(--accent-color);
    border-radius: 50%; pointer-events: none; z-index: 99999;
    transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background-color 0.2s;
  }
  
  .cursor-outline {
    position: fixed; top: 0; left: 0;
    width: 40px; height: 40px; border: 1px solid var(--accent-color);
    border-radius: 50%; pointer-events: none; z-index: 99998;
    transform: translate(-50%, -50%); transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), width 0.2s, height 0.2s;
  }
  
  body.hovering-link .cursor-dot { background-color: transparent; }
  body.hovering-link .cursor-outline { width: 60px; height: 60px; background-color: var(--accent-light); border-color: transparent; }
  
  /* Dynamic Background Orbs */
  .global-bg-anim {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none; z-index: 0; overflow: hidden;
  }
  .bg-orb {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.1;
    animation: orbFloat 25s infinite ease-in-out;
  }
  .orb-1 { width: 60vw; height: 60vw; top: -10vw; left: -10vw; background: var(--accent-color); }
  .orb-2 { width: 50vw; height: 50vw; bottom: 0; right: -20vw; background: #FF9B80; animation-delay: -5s; animation-duration: 20s;}
  .orb-3 { width: 40vw; height: 40vw; top: 30vh; left: 20vw; background: #FEB6A6; animation-delay: -12s; animation-duration: 30s;}
  
  @keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5vw, 10vh) scale(1.1); }
    66% { transform: translate(-8vw, 5vh) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
  }
  
  /* Noise */
  .noise-wrap {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none; z-index: 9000; opacity: 0.4; mix-blend-mode: multiply;
  }
  .noise-wrap::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    animation: noise 3s steps(4) infinite;
  }
  @keyframes noise {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-2%, 2%); }
    50% { transform: translate(2%, -2%); }
    75% { transform: translate(-1%, 1%); }
  }
  
  /* =========================================
     TYPOGRAPHY
     ========================================= */
  a { text-decoration: none; color: inherit; }
  h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 600; line-height: 1.05; letter-spacing: -0.03em; }
  
  .accent { color: var(--accent-color); }
  .outline-text { -webkit-text-stroke: 1px var(--accent-color); color: transparent; }
  
  .container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 5%; }
  .section { padding: var(--section-pad) 0; }
  
  .split-line { overflow: hidden; display: inline-block; padding-bottom: 0.1em; margin-bottom: -0.1em;}
  .split-word { display: inline-block; transform: translateY(110%); opacity: 0; }
  
  /* Labels */
  .section-label {
    display: inline-flex; align-items: center; gap: 0.8rem;
    font-size: 0.85rem; font-family: var(--font-heading); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted);
    padding: 0.6rem 1.25rem; border: 1px solid var(--border-color); border-radius: 100px;
    margin-bottom: 2.5rem; background: rgba(255,255,255,0.5); backdrop-filter: blur(8px);
  }
  .dot-sep { font-size: 1.2em; line-height: 0; color: var(--accent-color); }
  .border-dark { border-color: rgba(255,255,255,0.15); color: #fff; background: transparent; }
  
  .section-title { font-size: clamp(3.2rem, 6vw, 5.5rem); margin-bottom: 3.5rem; max-width: 850px; }
  
  .black-section { background-color: var(--bg-dark); color: var(--text-light); }
  .black-section .section-label { background: transparent; border-color: rgba(255,255,255,0.15); color: var(--text-muted-light); }
  
  .hover-underline { position: relative; display: inline-block; }
  .hover-underline::after {
    content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px; background: currentColor;
    transform: scaleX(0); transform-origin: right; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .hover-underline:hover::after { transform: scaleX(1); transform-origin: left; }
  
  /* =========================================
     BUTTONS & TAGS
     ========================================= */
  .btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1.1rem 2.25rem; gap: 0.75rem; border-radius: 100px;
    font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
    cursor: pointer; overflow: hidden; transition: transform var(--bounce), box-shadow var(--transition);
    border: none; position: relative; z-index: 1;
  }
  .btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: rgba(255,255,255,0.2); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1; border-radius: 100px;
  }
  .btn:hover::before { transform: translateX(100%); }
  
  .btn-primary { background-color: var(--accent-color); color: white; }
  .btn-primary:hover { box-shadow: var(--shadow-glow); }
  
  .btn-outline { background-color: transparent; border: 1.5px solid var(--border-color); color: var(--text-primary); }
  .btn-outline:hover { background-color: var(--surface-color); border-color: rgba(0,0,0,0.1); box-shadow: var(--shadow-sm); }
  .btn-pill { background-color: var(--text-primary); color: var(--bg-color); padding: 0.8rem 1.75rem; border-radius: 100px; }
  .btn-large { padding: 1.4rem 3rem; font-size: 1.15rem; }
  
  .btn .arrow { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); display: inline-block; }
  .btn:hover .arrow { transform: translateX(6px) rotate(-15deg); }
  
  .tag-cloud { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
  .tag {
    background-color: var(--surface-color); color: var(--text-primary); padding: 0.6rem 1.25rem; border-radius: 100px;
    font-size: 0.85rem; font-weight: 500; font-family: var(--font-heading); border: 1px solid var(--border-color);
    transition: transform var(--bounce), border-color var(--transition-fast), background var(--transition-fast);
  }
  .tag.hover-lift:hover { transform: translateY(-4px); background: #fff; border-color: var(--accent-light); box-shadow: 0 4px 12px var(--accent-light); }
  
  /* =========================================
     NAVIGATION & HERO (DEDEN STYLE)
     ========================================= */
  .navbar { 
    position: fixed; top: 24px; left: 50%; transform: translateX(-50%);
    width: 92vw; max-width: 900px; height: 72px; 
    z-index: 1000; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); 
    background-color: #1A1A1E; /* Dark pill */
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 100px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12); color: #fff;
  }
  .navbar.nav-hidden { top: -100px; opacity: 0; pointer-events: none; }
  
  .nav-container { display: flex; justify-content: space-between; align-items: center; height: 100%; width: 100%; padding: 0 0.8rem 0 2rem; max-width: 100%; }
  
  .nav-links { display: flex; align-items: center; gap: 2.5rem; flex: 1; }
  .nav-left { justify-content: flex-start; }
  .nav-right { justify-content: flex-end; gap: 2rem;}
  
  .logo.center-logo {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.04em; color: #fff;
  }
  .logo.center-logo span { font-weight: 400; opacity: 0.6; }
  
  .nav-link { font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.7); transition: color 0.3s; }
  .nav-link:hover { color: #fff; }
  
  /* Replace the hover-underline so it's a white line for the dark nav */
  .nav-link.hover-underline::after { background: #fff; }
  
  .btn-nav { 
    background-color: #E7E4DF; color: #111; padding: 0.65rem 1.75rem; border-radius: 100px; 
    font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em;
    transition: all 0.3s ease; display: inline-flex; justify-content: center; align-items: center; cursor: pointer;
  }
  .btn-nav:hover { background-color: #fff; transform: scale(1.03); box-shadow: 0 0 20px rgba(255,255,255,0.2); }
  
  /* Mobile Menu */
  .mobile-menu-btn {
    display: none; background: none; border: none; width: 40px; height: 40px; border-radius: 50%;
    position: relative; z-index: 1001; cursor: pointer; background: var(--surface-color); border: 1px solid var(--border-color);
  }
  .mobile-menu-btn span {
    position: absolute; left: 50%; transform: translateX(-50%); width: 16px; height: 2px;
    background: var(--text-primary); transition: all 0.3s ease;
  }
  .mobile-menu-btn span:nth-child(1) { top: 15px; }
  .mobile-menu-btn span:nth-child(2) { top: 21px; }
  .mobile-menu-btn.open span:nth-child(1) { top: 18px; transform: translateX(-50%) rotate(45deg); }
  .mobile-menu-btn.open span:nth-child(2) { top: 18px; transform: translateX(-50%) rotate(-45deg); }
  
  .mobile-menu { position: fixed; inset: 0; z-index: 999; visibility: hidden; pointer-events: none; }
  .mobile-menu-bg {
    position: absolute; inset: 0; background: var(--text-primary); clip-path: circle(0px at calc(100% - 40px) 40px); transition: clip-path 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  }
  .mobile-menu.active { visibility: visible; pointer-events: auto; }
  .mobile-menu.active .mobile-menu-bg { clip-path: circle(150vw at calc(100% - 40px) 40px); }
  .mobile-menu-content {
    position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 2rem; opacity: 0; transition: opacity 0.5s 0.3s;
  }
  .mobile-menu.active .mobile-menu-content { opacity: 1; }
  .mobile-menu-content a { font-family: var(--font-heading); font-size: 3rem; color: var(--bg-color); opacity: 0.8; }
  
  .hero { min-height: 100vh; display: flex; align-items: center; padding-top: calc(var(--nav-height) + 4rem); }
  .hero-title { font-size: clamp(3.8rem, 8vw, 8rem); max-width: 1100px; margin-bottom: 2.5rem; letter-spacing: -0.05em; }
  .hero-desc { font-size: clamp(1.2rem, 2vw, 1.4rem); color: var(--text-muted); max-width: 650px; margin-bottom: 3.5rem; line-height: 1.6; }
  
  .scroll-indicator { position: absolute; bottom: 3rem; left: 5%; display: flex; align-items: center; gap: 1rem; opacity: 0.7; }
  .scroll-text { font-family: var(--font-heading); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
  .mouse { width: 1px; height: 40px; background: rgba(0,0,0,0.1); position: relative; overflow: hidden; }
  .mouse::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 40%;
    background: var(--text-primary); animation: scrollDown 1.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  }
  @keyframes scrollDown { 0% { transform: translateY(-100%); } 100% { transform: translateY(250%); } }
  
  /* =========================================
     ABOUT & SERVICES
     ========================================= */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
  .about-text p { font-size: 1.25rem; color: var(--text-muted-light); margin-bottom: 2rem; line-height: 1.7; }
  
  .services-grid { display: flex; flex-direction: column; gap: 2.5rem; }
  .service-card { position: relative; padding: 4rem; border-radius: 20px; overflow: hidden; background-color: rgba(255,255,255,0.7); backdrop-filter: blur(10px); border: 1px solid var(--border-color); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
  .service-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-hover); border-color: rgba(254, 65, 22, 0.3); background-color: var(--surface-color); }
  
  .card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2rem; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 2rem;}
  .card-top h3 { font-size: 3rem; letter-spacing: -0.04em; line-height: 1.1; }
  
  .icon-circle { width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; background: #fff;}
  .dot-inner { width: 12px; height: 12px; background: var(--accent-color); border-radius: 50%; }
  .dot-inner.pulse { animation: pulse 2s infinite cubic-bezier(0.16, 1, 0.3, 1); }
  @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(254, 65, 22, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(254, 65, 22, 0); } 100% { box-shadow: 0 0 0 0 rgba(254, 65, 22, 0); } }
  .service-card p { font-size: 1.2rem; max-width: 800px; color: var(--text-muted); margin-bottom: 3rem; }
  
  /* =========================================
     🔥 NEW: BENTO WHY US SECTION (DRAMATIC FOCUS)
     ========================================= */
  .why-bento-section { padding: 12rem 0; }
  .bento-bg-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(254, 65, 22, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 0; pointer-events: none;
  }
  
  .bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(320px, auto);
    gap: 1.5rem;
    position: relative;
    z-index: 10;
  }
  
  .bento-card {
    position: relative;
    background: rgba(30, 32, 38, 0.6);
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    padding: 3.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform var(--bounce), border-color 0.4s;
    backdrop-filter: blur(20px);
  }
  
  .bento-wide { grid-column: span 2; }
  
  /* Spotlight effect structure setup for JS cursor tracking */
  .bento-glow {
    position: absolute; inset: 0; border-radius: 24px;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.06), transparent 40%);
    opacity: 0; transition: opacity 0.3s; z-index: 0; pointer-events: none;
  }
  .bento-card:hover .bento-glow { opacity: 1; border-color: rgba(254, 65, 22, 0.4); }
  .bento-card:hover { border-color: rgba(254, 65, 22, 0.3); transform: scale(1.02); }
  
  /* Dimming others when hovering grid */
  .bento-grid:hover .bento-card:not(:hover) { opacity: 0.5; filter: grayscale(50%); transform: scale(0.98); }
  
  .bento-content { position: relative; z-index: 1; }
  .bento-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
  .bento-icon { font-size: 1.5rem; color: #fff; opacity: 0.7;}
  .bento-icon.accent { color: var(--accent-color); opacity: 1; }
  .bento-header h4 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted-light); }
  
  .bento-main-text { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1.5rem; color: #fff; max-width: 650px;}
  .bento-wide .bento-main-text { font-size: clamp(2.5rem, 4.5vw, 4rem); max-width: 800px; }
  
  .bento-card p { font-size: 1.15rem; color: #A0A5B0; max-width: 500px; line-height: 1.6; }
  
  /* =========================================
     PROCESS
     ========================================= */
  .process { padding-top: 10rem; }
  .process-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 5rem; }
  .process-line { position: absolute; top: 40px; left: 0; width: 100%; height: 1px; background: var(--border-color); z-index: 0; }
  .process-line-progress { height: 100%; width: 0%; background: var(--accent-color); transition: width 1.5s ease-out; }
  .process-steps.visible-line .process-line-progress { width: 100%; }
  
  .process-step { position: relative; z-index: 1; padding-top: 20px;}
  .step-num {
    width: 80px; height: 80px; background: var(--bg-color); border: 1px solid var(--border-color);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading);
    font-size: 1.5rem; font-weight: 500; color: var(--text-primary); transition: all 0.4s;
    margin-bottom: 2rem; margin-top: -60px;
  }
  .process-step:hover .step-num { background: var(--accent-color); color: white; border-color: transparent; }
  .step-content h3 { font-size: 1.4rem; margin-bottom: 1rem; }
  .step-content p { color: var(--text-muted); font-size: 1rem; }
  
  /* =========================================
     STATS
     ========================================= */
  .stats { padding: 10rem 0 0; }
  .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border-color); border-radius: 24px; overflow: hidden; margin-top: 5rem;}
  .stat-item { padding: 8rem 3rem; text-align: center; }
  .stat-dark { background: var(--bg-dark); color: #fff;}
  .stat-light { background: var(--accent-color); color: #fff;}
  .stat-light .stat-label, .stat-light .stat-symbol { color: rgba(255,255,255,0.8); }
  .stat-number { font-size: clamp(6rem, 12vw, 9rem); font-family: var(--font-heading); font-weight: 700; line-height: 1; letter-spacing: -0.05em; display: flex; justify-content: center; align-items: flex-start;}
  .stat-symbol { font-size: 0.4em; margin-top: 0.3em; }
  .stat-dark .stat-symbol { color: var(--accent-color); }
  .stat-label { font-size: 1.25rem; margin-top: 1.5rem; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600;}
  .stat-dark .stat-label { color: var(--text-muted-light); }
  
  /* =========================================
     CTA & FOOTER
     ========================================= */
  .cta-bg-elements { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
  .blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; animation: float 10s infinite alternate ease-in-out; }
  .blob-1 { top: -20%; left: -10%; width: 500px; height: 500px; background: rgba(254, 65, 22, 0.15); }
  .blob-2 { bottom: -20%; right: -10%; width: 400px; height: 400px; background: rgba(254, 168, 22, 0.1); animation-delay: -5s;}
  
  .cta-box { position: relative; padding: 7rem 4rem; text-align: center; background: rgba(255,255,255,0.8); backdrop-filter: blur(20px); border-radius: 24px; border: 1px solid #fff; box-shadow: var(--shadow-hover); }
  .cta-title { font-size: clamp(3rem, 6vw, 5rem); margin: 2rem 0; }
  .cta-desc { font-size: 1.3rem; margin-bottom: 3.5rem; color: var(--text-muted); }
  .cta-actions { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
  
  @keyframes float { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(50px, 50px) scale(1.1); } }
  
  .footer { background: var(--bg-dark); color: var(--text-light); padding: 8rem 0 3rem; }
  .footer-top { display: flex; justify-content: space-between; gap: 4rem; margin-bottom: 6rem; flex-wrap: wrap; }
  .footer-brand p { color: var(--text-muted-light); margin-top: 1.5rem; max-width: 350px; font-size: 1.1rem; }
  .footer-links { display: flex; gap: 6rem; }
  .link-col h4 { font-size: 0.9rem; margin-bottom: 2rem; color: var(--text-muted-light); text-transform: uppercase; letter-spacing: 0.1em; }
  .link-col a { display: block; margin-bottom: 1rem; color: #fff; font-size: 1.1rem; }
  .footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 3rem; color: var(--text-muted-light); font-size: 0.95rem; }
  
  /* =========================================
     ANIMATIONS & UTILITIES
     ========================================= */
  .fade-up { opacity: 0; transform: translateY(40px); transition: opacity var(--transition-slow), transform var(--transition-slow), filter var(--transition-slow); }
  .fade-up.visible { opacity: 1; transform: translateY(0); filter: blur(0px); }
  .stagger-delay-1 { transition-delay: 0.15s; }
  .stagger-delay-2 { transition-delay: 0.3s; }
  .stagger-delay-3 { transition-delay: 0.45s; }
  .stagger-delay-4 { transition-delay: 0.6s; }
  
  /* =========================================
     RESPONSIVE
     ========================================= */
  @media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-wide { grid-column: span 1; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 4rem 2rem; }
    .process-line { display: none; }
    .step-num { margin-top: 0; margin-bottom: 1.5rem; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .section { padding: 6rem 0; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; }
    .footer-links { flex-direction: column; gap: 3rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .cta-actions { flex-direction: column; }
    .cta-box { padding: 4rem 2rem; }
    .process-steps { grid-template-columns: 1fr; }
    .cursor-dot, .cursor-outline { display: none; }
    .bento-card { padding: 2rem; }
    .stat-item { padding: 4rem 2.5rem; }
  }
