 /* ===== DESIGN SYSTEM (same as original) ===== */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 :root {
     --neon-cyan: #00f0ff;
     --neon-purple: #7000ff;
     --neon-pink: #ff00aa;
     --neon-amber: #ffbe0b;
     --dark-bg: #050505;
     --darker-bg: #020202;
     --glass-bg: rgba(255, 255, 255, 0.03);
     --glass-border: rgba(255, 255, 255, 0.08);
     --text-primary: #f0f4fa;
     --text-secondary: #a0b3d9;
     --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 240, 255, 0.1);
     --radius-xl: 32px;
     --radius-lg: 24px;
     --radius-md: 18px;
     --ease-smooth: cubic-bezier(0.23, 1, 0.32, 1);
     --bg-card: rgba(18, 22, 33, 0.7);
 }

 body.light-mode {
     --dark-bg: #f5f9ff;
     --darker-bg: #e6ecf5;
     --glass-bg: rgba(255, 255, 255, 0.5);
     --glass-border: rgba(0, 150, 200, 0.2);
     --text-primary: #0a1a2f;
     --text-secondary: #2c3e50;
     --bg-card: rgba(255, 255, 255, 0.7);
     --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 168, 232, 0.3);
 }

 body {
     font-family: 'Inter', sans-serif;
     background-color: var(--dark-bg);
     color: var(--text-primary);
     line-height: 1.5;
     overflow-x: hidden;
     transition: background-color 0.3s, color 0.3s;
 }

 .skip-link {
     position: fixed;
     top: -100px;
     left: 8px;
     z-index: 99999;
     background: var(--neon-cyan);
     color: #000;
     padding: 0.5rem 1rem;
     border-radius: 4px;
     font-weight: 700;
     transition: top 0.2s;
     text-decoration: none
 }

 .skip-link:focus {
     top: 8px
 }

 @keyframes heroFadeUp {
     from {
         opacity: 0;
         transform: translateY(60px)
     }

     to {
         opacity: 1;
         transform: translateY(0)
     }
 }

 @keyframes heroScale {
     from {
         opacity: 0;
         transform: scale(0.82)
     }

     to {
         opacity: 1;
         transform: scale(1)
     }
 }

 .hero .hero-title {
     animation: heroFadeUp 1.1s cubic-bezier(0.23, 1, 0.32, 1) both
 }

 .hero .hero-typing {
     animation: heroFadeUp 1.1s 0.25s cubic-bezier(0.23, 1, 0.32, 1) both
 }

 .hero .hero-quote {
     animation: heroFadeUp 1s 0.4s cubic-bezier(0.23, 1, 0.32, 1) both
 }

 .hero .hero-buttons {
     animation: heroFadeUp 0.9s 0.5s cubic-bezier(0.23, 1, 0.32, 1) both
 }

 .hero .avatar-container {
     animation: heroScale 1s 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both
 }

 .cv-auto {
     content-visibility: auto;
     contain-intrinsic-size: 0 600px
 }

 ::-webkit-scrollbar {
     width: 8px
 }

 ::-webkit-scrollbar-track {
     background: var(--darker-bg)
 }

 ::-webkit-scrollbar-thumb {
     background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
     border-radius: 4px
 }

 .progress-bar {
     position: fixed;
     top: 0;
     left: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
     z-index: 9999;
     width: 0%;
     transition: width 0.1s linear;
     box-shadow: 0 0 10px var(--neon-cyan)
 }

 #particle-canvas {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 1;
     opacity: 0.4
 }

 .orb {
     position: fixed;
     border-radius: 50%;
     opacity: 0.18;
     pointer-events: none;
     animation: floatOrb 20s infinite ease-in-out;
     will-change: transform
 }

 .orb-1 {
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
     top: 5%;
     left: -15%;
     animation-duration: 22s
 }

 .orb-2 {
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
     top: 38%;
     right: -10%;
     animation-delay: -7s;
     animation-duration: 18s
 }

 .orb-3 {
     width: 350px;
     height: 350px;
     background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
     bottom: 8%;
     left: 28%;
     animation-delay: -12s;
     animation-duration: 25s
 }

 @keyframes floatOrb {

     0%,
     100% {
         transform: translate(0, 0)
     }

     33% {
         transform: translate(25px, -40px)
     }

     66% {
         transform: translate(-15px, 15px)
     }
 }

 .gooey-wrapper {
     --color-bg1: rgb(0, 17, 82);
     --color-bg2: rgb(108, 0, 162);
     --color1: 18, 113, 255;
     --color2: 221, 74, 255;
     --color3: 100, 220, 255;
     --color4: 200, 50, 50;
     --color5: 180, 180, 50;
     --color-interactive: 140, 100, 255;
     --circle-size: 80%;
     --blending: hard-light;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     overflow: hidden;
     pointer-events: none;
     display: none
 }

 body.gooey-active .gooey-wrapper {
     display: block
 }

 body.gooey-active .orb,
 body.gooey-active #particle-canvas {
     display: none
 }

 @keyframes moveInCircle {
     0% {
         transform: rotate(0deg)
     }

     50% {
         transform: rotate(180deg)
     }

     100% {
         transform: rotate(360deg)
     }
 }

 @keyframes moveVertical {
     0% {
         transform: translateY(-50%)
     }

     50% {
         transform: translateY(50%)
     }

     100% {
         transform: translateY(-50%)
     }
 }

 @keyframes moveHorizontal {
     0% {
         transform: translateX(-50%) translateY(-10%)
     }

     50% {
         transform: translateX(50%) translateY(10%)
     }

     100% {
         transform: translateX(-50%) translateY(-10%)
     }
 }

 .gradient-bg {
     width: 100%;
     height: 100%;
     position: absolute;
     overflow: hidden;
     background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
     top: 0;
     left: 0
 }

 .gradient-bg svg {
     position: fixed;
     top: 0;
     left: 0;
     width: 0;
     height: 0
 }

 .gradients-container {
     filter: url(#goo) blur(40px);
     width: 100%;
     height: 100%
 }

 .g1 {
     position: absolute;
     background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
     mix-blend-mode: var(--blending);
     width: var(--circle-size);
     height: var(--circle-size);
     top: calc(50% - var(--circle-size)/2);
     left: calc(50% - var(--circle-size)/2);
     transform-origin: center center;
     animation: moveVertical 30s ease infinite
 }

 .g2 {
     position: absolute;
     background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
     mix-blend-mode: var(--blending);
     width: var(--circle-size);
     height: var(--circle-size);
     top: calc(50% - var(--circle-size)/2);
     left: calc(50% - var(--circle-size)/2);
     transform-origin: calc(50% - 400px);
     animation: moveInCircle 20s reverse infinite
 }

 .g3 {
     position: absolute;
     background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
     mix-blend-mode: var(--blending);
     width: var(--circle-size);
     height: var(--circle-size);
     top: calc(50% - var(--circle-size)/2 + 200px);
     left: calc(50% - var(--circle-size)/2 - 500px);
     transform-origin: calc(50% + 400px);
     animation: moveInCircle 40s linear infinite
 }

 .g4 {
     position: absolute;
     background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
     mix-blend-mode: var(--blending);
     width: var(--circle-size);
     height: var(--circle-size);
     top: calc(50% - var(--circle-size)/2);
     left: calc(50% - var(--circle-size)/2);
     transform-origin: calc(50% - 200px);
     animation: moveHorizontal 40s ease infinite;
     opacity: 0.7
 }

 .g5 {
     position: absolute;
     background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
     mix-blend-mode: var(--blending);
     width: calc(var(--circle-size)*2);
     height: calc(var(--circle-size)*2);
     top: calc(50% - var(--circle-size));
     left: calc(50% - var(--circle-size));
     transform-origin: calc(50% - 800px) calc(50% + 200px);
     animation: moveInCircle 20s ease infinite
 }

 .interactive {
     position: absolute;
     background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
     mix-blend-mode: var(--blending);
     width: 100%;
     height: 100%;
     top: -50%;
     left: -50%;
     opacity: 0.7;
     transition: none;
     will-change: transform
 }

 .hero {
     min-height: 100vh;
     width: 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     position: relative;
     background: #050816;
     overflow: hidden;
     padding: 0 2rem;
     margin: 0;
 }

 #neural-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
     pointer-events: none
 }

 .hero h1 {
     margin-top: 0;
     /* removed previous 7rem compensation */
 }

 .hero-content {
     display: flex;
     width: 100%;
     max-width: 900px;
     justify-content: space-between;
     align-items: center;
     z-index: 2;
     position: relative;
     flex-wrap: wrap;
     gap: 2rem
 }

 .hero-left {
     max-width: 600px;
     flex: 1 1 300px
 }

 .hero .hero-title {
     font-size: clamp(2rem, 8vw, 5rem);
     font-weight: 800;
     background: radial-gradient(circle at 30% 30%, #fff, var(--neon-cyan));
     background-clip: text;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     line-height: 1.1;
     text-align: left;
     margin-bottom: 1rem
 }

 .hero-typing {
     font-size: clamp(1.2rem, 4vw, 1.8rem);
     color: var(--text-secondary);
     margin: 1rem 0;
     display: flex;
     align-items: center;
     flex-wrap: wrap
 }

 #type {
     color: var(--neon-amber);
     font-weight: 600;
     margin-left: 0.5rem
 }

 #cursorBlink {
     display: inline-block;
     width: 4px;
     height: 2rem;
     background: var(--neon-cyan);
     margin-left: 4px;
     animation: blink 1s infinite
 }

 @keyframes blink {

     0%,
     50% {
         opacity: 1
     }

     51%,
     100% {
         opacity: 0
     }
 }

 .hero-quote {
     color: var(--text-secondary);
     font-size: 0.9rem;
     margin: 2rem 0
 }

 .hero-buttons {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap
 }

 .btn-primary,
 .btn-secondary {
     padding: 0.8rem 2rem;
     border-radius: 60px;
     font-weight: 600;
     text-decoration: none;
     transition: 0.3s;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     border: none;
     cursor: pointer
 }

 .btn-primary {
     background: #04767e;
     color: #fffefe
 }

 .btn-secondary {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid var(--neon-cyan);
     color: var(--text-primary)
 }

 .btn-secondary:hover {
     background: rgba(0, 240, 255, 0.1)
 }

 .hero-right {
     position: relative;
     flex: 0 0 auto
 }

 .avatar-container {
     position: relative;
     width: min(320px, 70vw);
     height: min(320px, 70vw);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center
 }

 .avatar {
     width: 80%;
     height: 80%;
     border-radius: 50%;
     z-index: 2;
     object-fit: cover;
     box-shadow: 0 0 30px rgba(58, 134, 255, 0.3);
     aspect-ratio: 1/1
 }

 .hologram-ring {
     position: absolute;
     width: 100%;
     height: 100%;
     border-radius: 50%;
     border: 2px solid rgba(58, 134, 255, 0.6);
     animation: spin 10s linear infinite;
     box-shadow: 0 0 15px rgba(58, 134, 255, 0.2)
 }

 .hologram-ring::after {
     content: '';
     position: absolute;
     top: -10px;
     left: -10px;
     right: -10px;
     bottom: -10px;
     border-radius: 50%;
     border: 1px dashed rgba(147, 51, 234, 0.4);
     animation: spin 15s linear infinite reverse
 }

 @keyframes spin {
     to {
         transform: rotate(360deg)
     }
 }

 .code-stream {
     position: absolute;
     bottom: 20px;
     left: 0;
     width: 100%;
     color: #3A86FF;
     font-family: 'JetBrains Mono', monospace;
     font-size: 14px;
     opacity: 0.4;
     display: flex;
     justify-content: space-around;
     z-index: 1;
     pointer-events: none;
     flex-wrap: wrap
 }

 .code-stream span {
     animation: floatCode 6s ease-in-out infinite;
     margin: 0 0.5rem
 }

 .code-stream span:nth-child(2) {
     animation-delay: 1s
 }

 .code-stream span:nth-child(3) {
     animation-delay: 2s
 }

 .code-stream span:nth-child(4) {
     animation-delay: 3s
 }

 @keyframes floatCode {

     0%,
     100% {
         transform: translateY(0);
         opacity: 0.2
     }

     50% {
         transform: translateY(-10px);
         opacity: 0.6
     }
 }

 @media(max-width:900px) {
     .hero-content {
         flex-direction: column-reverse;
         text-align: center
     }

     .hero-left {
         display: flex;
         flex-direction: column;
         align-items: center
     }

     .hero .hero-title,
     .hero-typing {
         text-align: center;
         justify-content: center
     }
 }

 /* Navbar — updated to sticky + contained (like about.html) */
 .navbar {
     position: sticky;
     top: 1.2rem;
     z-index: 100;
     max-width: 1300px;
     margin: 0 auto;
     padding: 0 2rem;
     background: rgba(10, 15, 25, 0.7);
     backdrop-filter: blur(16px) saturate(200%);
     border: 1px solid rgba(100, 255, 218, 0.3);
     box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
     transition: all 0.3s, backdrop-filter 0.3s;
 }

 .nav-container {
     display: flex;
     align-items: center;
     justify-content: space-between;
     background: transparent;
     border-radius: 80px;
     padding: 0.5rem 1.5rem;
     transition: background 0.3s, border 0.3s, box-shadow 0.3s;
 }

 .navbar.scrolled .nav-container {
     background: rgba(10, 15, 25, 0.7);
     backdrop-filter: blur(16px) saturate(200%);
     border: 1px solid rgba(100, 255, 218, 0.3);
     box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
 }

 body.light-mode .navbar.scrolled .nav-container {
     background: rgba(255, 255, 255, 0.7);
     border-color: rgba(0, 119, 190, 0.4);
 }

 .logo a {
     font-size: 1.8rem;
     font-weight: 700;
     background: linear-gradient(130deg, #fff, var(--neon-cyan));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     text-decoration: none;
 }

 .nav-desktop {
     display: flex;
     align-items: center;
     gap: 1.5rem;
 }

 .nav-desktop a {
     color: var(--text-secondary);
     text-decoration: none;
     font-weight: 500;
     transition: 0.2s;
 }

 .nav-desktop a:hover,
 .nav-desktop .active {
     color: var(--text-primary);
     text-shadow: 0 0 8px var(--neon-cyan);
 }

 .nav-desktop .theme-toggle {
     background: rgba(100, 255, 218, 0.1);
     border: 1px solid var(--neon-cyan);
     border-radius: 40px;
     padding: 0.4rem 1.2rem;
     color: var(--neon-cyan);
     cursor: pointer;
     transition: 0.2s;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     margin-left: 0.5rem;
 }

 .nav-button {
     background: rgba(100, 255, 218, 0.1);
     border: 1px solid var(--neon-cyan);
     border-radius: 40px;
     padding: 0.4rem 1.4rem;
     color: var(--neon-cyan);
 }

 /* Mobile toggle button — proper button element */
 .mobile-menu-toggle {
     display: none;
     background: none;
     border: none;
     font-size: 2rem;
     color: var(--text-primary);
     cursor: pointer;
     padding: 0;
     line-height: 1;
 }

 /* Mobile overlay — improved for responsiveness, body scroll lock */
 .mobile-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: rgba(5, 8, 15, 0.98);
     backdrop-filter: blur(20px);
     z-index: 200;
     display: flex;
     flex-direction: column;
     transform: translateX(100%);
     transition: transform 0.4s var(--ease-smooth);
     overflow-y: auto;
 }

 body.light-mode .mobile-overlay {
     background: rgba(245, 249, 255, 0.98);
 }

 .mobile-overlay.open {
     transform: translateX(0);
 }

 .mobile-overlay-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 2rem 2rem 1rem;
     border-bottom: 1px solid rgba(100, 255, 218, 0.2);
 }

 .mobile-overlay-logo {
     font-size: 2rem;
     font-weight: 700;
     background: linear-gradient(130deg, #fff, var(--neon-cyan));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
 }

 .mobile-overlay-close {
     background: none;
     border: none;
     font-size: 2.5rem;
     color: var(--neon-cyan);
     cursor: pointer;
     transition: transform 0.2s;
     line-height: 1;
     padding: 0;
 }

 .mobile-overlay-close:hover {
     transform: scale(1.1);
 }

 .mobile-overlay-links {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     flex: 1;
     gap: 2rem;
     padding: 2rem;
 }

 .mobile-overlay-links a {
     color: var(--text-primary);
     text-decoration: none;
     font-size: 2rem;
     font-weight: 600;
     transition: 0.2s;
     border-bottom: 1px solid transparent;
 }

 .mobile-overlay-links a:hover {
     color: var(--neon-cyan);
     border-bottom-color: var(--neon-cyan);
 }

 .mobile-overlay-links .theme-toggle {
     background: rgba(100, 255, 218, 0.1);
     border: 1px solid var(--neon-cyan);
     border-radius: 40px;
     padding: 0.8rem 2rem;
     color: var(--neon-cyan);
     font-size: 1.5rem;
     cursor: pointer;
     width: fit-content;
 }

 .login-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
     color: #05050f;
     font-weight: 700;
     font-size: 0.9rem;
     padding: 0.55rem 1.4rem;
     border-radius: 60px;
     text-decoration: none;
     border: none;
     cursor: pointer;
     transition: all 0.3s var(--ease-smooth);
     box-shadow: 0 4px 20px rgba(0, 240, 255, 0.25);
     margin-left: 0.8rem;
     white-space: nowrap;
     letter-spacing: 0.02em
 }

 .login-btn:hover {
     transform: translateY(-2px) scale(1.04);
     box-shadow: 0 8px 30px rgba(0, 240, 255, 0.45);
     color: #000
 }

 .login-btn i {
     transition: transform 0.3s
 }

 .login-btn:hover i {
     transform: translateX(3px)
 }

 .mobile-login-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.7rem;
     background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
     color: #05050f;
     font-weight: 700;
     font-size: 1.4rem;
     padding: 0.9rem 2.5rem;
     border-radius: 60px;
     text-decoration: none;
     border: none;
     cursor: pointer;
     transition: all 0.3s;
     box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3)
 }

 .floating-gooey {
     position: fixed;
     bottom: 30px;
     right: 100px;
     z-index: 1001;
     background: linear-gradient(145deg, var(--neon-cyan), var(--neon-purple));
     color: #0a0a0f;
     border: none;
     border-radius: 60px;
     padding: 1rem 2rem;
     font-weight: 700;
     font-size: 1.2rem;
     cursor: pointer;
     box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
     display: flex;
     align-items: center;
     gap: 0.8rem;
     animation: floatGooey 3s infinite ease-in-out;
     transition: transform 0.3s, box-shadow 0.3s;
     border: 1px solid rgba(255, 255, 255, 0.2)
 }

 .floating-gooey:hover {
     transform: scale(1.05);
     box-shadow: 0 15px 40px rgba(0, 240, 255, 0.6);
     animation: none
 }

 @keyframes floatGooey {

     0%,
     100% {
         transform: translateY(0)
     }

     50% {
         transform: translateY(-10px)
     }
 }

 .floating-scroll {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 50px;
     height: 50px;
     background: var(--bg-card);
     backdrop-filter: blur(12px);
     border: 1px solid var(--neon-cyan);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--neon-cyan);
     cursor: pointer;
     transition: 0.3s;
     z-index: 1000;
     opacity: 0;
     visibility: hidden;
     transform: scale(0.8)
 }

 .floating-scroll.visible {
     opacity: 1;
     visibility: visible;
     transform: scale(1)
 }

 .floating-scroll:hover {
     background: var(--neon-cyan);
     color: #000;
     box-shadow: 0 0 20px var(--neon-cyan)
 }

 .floating-down {
     position: fixed;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     width: 50px;
     height: 50px;
     background: var(--bg-card);
     backdrop-filter: blur(12px);
     border: 1px solid var(--neon-cyan);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--neon-cyan);
     cursor: pointer;
     transition: opacity 0.3s, visibility 0.3s;
     z-index: 1000;
     opacity: 1;
     visibility: visible;
     animation: bounce 2s infinite
 }

 .floating-down.hidden-down {
     opacity: 0;
     visibility: hidden
 }

 @keyframes bounce {

     0%,
     100% {
         transform: translateX(-50%) translateY(0)
     }

     50% {
         transform: translateX(-50%) translateY(-10px)
     }
 }

 .insight-modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.8);
     backdrop-filter: blur(10px);
     z-index: 2000;
     align-items: center;
     justify-content: center
 }

 .insight-modal.show {
     display: flex
 }

 .insight-modal-content {
     background: var(--bg-card);
     backdrop-filter: blur(20px);
     border: 2px solid var(--neon-amber);
     border-radius: var(--radius-xl);
     max-width: 600px;
     width: 90%;
     max-height: 80vh;
     overflow-y: auto;
     padding: 2rem;
     position: relative;
     box-shadow: var(--shadow-heavy);
     color: var(--text-primary);
     animation: modalPop 0.3s var(--ease-smooth)
 }

 @keyframes modalPop {
     from {
         transform: scale(0.9);
         opacity: 0
     }

     to {
         transform: scale(1);
         opacity: 1
     }
 }

 .insight-modal-close {
     position: absolute;
     top: 1rem;
     right: 1.5rem;
     font-size: 2.5rem;
     color: var(--neon-amber);
     cursor: pointer;
     transition: 0.2s;
     background: none;
     border: none
 }

 .insight-modal-close:hover {
     transform: scale(1.2);
     color: var(--neon-pink)
 }

 .insight-modal-title {
     font-size: 2rem;
     margin-bottom: 1rem;
     background: linear-gradient(130deg, #fff, var(--neon-amber));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent
 }

 .insight-modal-body {
     margin-bottom: 2rem;
     color: var(--text-secondary);
     line-height: 1.8
 }

 .engagement-bar {
     background: rgba(0, 0, 0, 0.3);
     border: 1px solid var(--glass-border);
     border-radius: 60px;
     padding: 0.8rem 1.5rem;
     display: flex;
     justify-content: space-around;
     align-items: center;
     margin-top: 2rem;
     flex-wrap: wrap
 }

 .engagement-item {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     color: var(--text-secondary);
     cursor: pointer;
     transition: 0.2s;
     padding: 0.5rem 1rem;
     border-radius: 40px
 }

 .engagement-item:hover {
     background: rgba(255, 255, 255, 0.05);
     color: var(--neon-cyan)
 }

 .engagement-item i {
     font-size: 1.5rem
 }

 .engagement-count {
     font-weight: 600
 }

 .highlight {
     background: linear-gradient(130deg, var(--neon-amber), var(--neon-cyan));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent
 }

 .section-title {
     font-size: clamp(2rem, 6vw, 3.5rem);
     font-weight: 700;
     margin-bottom: 3rem
 }

 .tech-orbit-section {
     padding: 90px 5%;
     background: #0d1526;
     color: white;
     text-align: center;
     position: relative;
     overflow: hidden
 }

 .tech-orbit-section::before {
     content: '';
     position: absolute;
     inset: 0;
     background-image: linear-gradient(rgba(0, 240, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 240, 255, 0.025) 1px, transparent 1px);
     background-size: 60px 60px;
     pointer-events: none
 }

 .tech-orbit-section::after {
     content: '';
     position: absolute;
     top: -200px;
     left: 50%;
     transform: translateX(-50%);
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(0, 240, 255, 0.06) 0%, transparent 70%);
     pointer-events: none
 }

 .tech-orbit-subtitle {
     font-family: 'JetBrains Mono', monospace;
     font-size: clamp(0.7rem, 1.5vw, 0.85rem);
     letter-spacing: 0.25em;
     color: var(--neon-cyan);
     opacity: 0.7;
     margin-bottom: 3.5rem;
     text-transform: uppercase
 }

 .tech-orbit-layout {
     display: flex;
     align-items: center;
     justify-content: center;
     max-width: 1100px;
     margin: 0 auto;
     flex-wrap: wrap;
     position: relative;
     z-index: 1
 }

 .orbit-half {
     flex: 0 0 auto;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     padding: 1rem
 }

 .orbit-connector {
     display: flex;
     flex-direction: column;
     align-items: center;
     height: 420px;
     padding: 0 2rem;
     flex-shrink: 0
 }

 .connector-line {
     flex: 1;
     width: 2px;
     background: linear-gradient(to bottom, transparent, var(--neon-cyan), transparent);
     position: relative
 }

 .connector-line::before,
 .connector-line::after {
     content: '';
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--neon-cyan)
 }

 .connector-line::before {
     top: 0
 }

 .connector-line::after {
     bottom: 0
 }

 .connector-node {
     width: 16px;
     height: 16px;
     border-radius: 50%;
     background: var(--neon-cyan);
     box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px rgba(0, 240, 255, 0.4);
     flex-shrink: 0;
     animation: nodeGlow 2s infinite alternate
 }

 @keyframes nodeGlow {
     from {
         box-shadow: 0 0 15px var(--neon-cyan), 0 0 30px rgba(0, 240, 255, 0.3)
     }

     to {
         box-shadow: 0 0 25px var(--neon-cyan), 0 0 60px rgba(0, 240, 255, 0.6);
         transform: scale(1.3)
     }
 }

 .tech-half {
     flex: 1 1 360px;
     padding: 1rem
 }

 .tech-compact-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 0.85rem
 }

 .tech-compact-card {
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 14px;
     padding: 0.9rem 1.1rem;
     display: flex;
     align-items: center;
     gap: 0.9rem;
     transition: all 0.3s var(--ease-smooth);
     cursor: default;
     text-align: left;
     position: relative;
     overflow: hidden
 }

 .tech-compact-card::before {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), transparent);
     opacity: 0;
     transition: opacity 0.3s
 }

 .tech-compact-card:hover {
     border-color: var(--neon-cyan);
     transform: translateX(6px);
     box-shadow: 0 0 20px rgba(0, 240, 255, 0.1), -4px 0 0 var(--neon-cyan)
 }

 .tech-compact-card:hover::before {
     opacity: 1
 }

 .tech-compact-card i {
     font-size: 2rem;
     color: var(--neon-cyan);
     flex-shrink: 0;
     transition: all 0.3s;
     position: relative;
     z-index: 1
 }

 .tech-compact-card:hover i {
     color: var(--neon-amber);
     transform: scale(1.15) rotate(-5deg)
 }

 .tech-compact-card p {
     font-size: 0.95rem;
     font-weight: 600;
     color: var(--text-primary);
     position: relative;
     z-index: 1
 }

 @media(max-width:900px) {
     .orbit-connector {
         display: none
     }

     .tech-orbit-layout {
         flex-direction: column;
         gap: 3rem
     }

     .orbit-half,
     .tech-half {
         width: 100%
     }
 }

 .orbit-container {
     position: relative;
     width: 400px;
     height: 400px;
     margin: 0 auto;
     animation: rotateOrbit 40s linear infinite;
     will-change: transform
 }

 .orbit-container.paused {
     animation-play-state: paused
 }

 .orbit-icon {
     position: absolute;
     width: 60px;
     height: 60px;
     background: var(--bg-card);
     backdrop-filter: blur(8px);
     border: 1px solid var(--neon-cyan);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     color: var(--neon-cyan);
     transition: transform 0.2s;
     cursor: help
 }

 .orbit-icon:hover {
     transform: scale(1.2);
     border-color: var(--neon-amber);
     z-index: 10
 }

 .orbit-center {
     top: 50% !important;
     left: 50% !important;
     transform: translate(-50%, -50%) !important;
     width: 100px;
     height: 100px;
     background: linear-gradient(145deg, var(--neon-cyan), var(--neon-purple));
     color: black;
     border: none;
     animation: none;
     transition: transform 0.3s
 }

 .orbit-center:hover {
     transform: translate(-50%, -50%) scale(1.1) !important
 }

 .orbit-icon[data-pos="1"] {
     top: 15%;
     left: 50%;
     transform: translate(-50%, -50%)
 }

 .orbit-icon[data-pos="2"] {
     top: 50%;
     left: 85%;
     transform: translate(-50%, -50%)
 }

 .orbit-icon[data-pos="3"] {
     top: 85%;
     left: 50%;
     transform: translate(-50%, -50%)
 }

 .orbit-icon[data-pos="4"] {
     top: 50%;
     left: 15%;
     transform: translate(-50%, -50%)
 }

 .orbit-icon[data-pos="5"] {
     top: 25%;
     left: 25%;
     transform: translate(-50%, -50%)
 }

 .orbit-icon[data-pos="6"] {
     top: 25%;
     left: 75%;
     transform: translate(-50%, -50%)
 }

 .orbit-icon[data-pos="7"] {
     top: 75%;
     left: 75%;
     transform: translate(-50%, -50%)
 }

 .orbit-tooltip {
     position: fixed;
     background: var(--bg-card);
     backdrop-filter: blur(8px);
     border: 1px solid var(--neon-cyan);
     border-radius: 40px;
     padding: 0.4rem 1rem;
     font-size: 0.8rem;
     color: var(--text-primary);
     pointer-events: none;
     z-index: 9999;
     transform: translateX(-50%);
     white-space: nowrap
 }

 @keyframes rotateOrbit {
     from {
         transform: rotate(0deg)
     }

     to {
         transform: rotate(360deg)
     }
 }

 @media(max-width:900px) {
     .orbit-container {
         width: 300px;
         height: 300px
     }

     .orbit-icon {
         width: 40px;
         height: 40px;
         font-size: 1.2rem
     }

     .orbit-center {
         width: 70px;
         height: 70px
     }
 }

 .expertise-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
     max-width: 1300px;
     margin: 0 auto;
     padding: 2rem
 }

 .expertise-card {
     background: var(--bg-card);
     backdrop-filter: blur(12px);
     border: 1px solid var(--glass-border);
     border-radius: var(--radius-lg);
     padding: 2.5rem 2rem;
     transition: transform 0.3s var(--ease-smooth), border-color 0.3s;
     position: relative;
     overflow: hidden
 }

 .expertise-card:hover {
     transform: translateY(-10px);
     border-color: var(--neon-cyan)
 }

 .expertise-card i {
     font-size: 2.5rem;
     margin-bottom: 1.5rem;
     color: var(--neon-cyan);
     display: block
 }

 .expertise-card h3 {
     font-size: 1.8rem;
     font-weight: 600;
     margin-bottom: 1rem
 }

 .expertise-card p {
     color: var(--text-secondary)
 }

 .process-section {
     padding: 5rem 2rem;
     max-width: 1300px;
     margin: 0 auto
 }

 .process-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 2rem;
     margin-top: 3rem
 }

 .process-step {
     background: var(--bg-card);
     backdrop-filter: blur(12px);
     border: 1px solid var(--glass-border);
     border-radius: var(--radius-lg);
     padding: 2rem;
     text-align: center;
     transition: 0.3s;
     position: relative
 }

 .process-step:hover {
     transform: translateY(-10px);
     border-color: var(--neon-cyan)
 }

 .process-step .step-number {
     position: absolute;
     top: 1rem;
     left: 1rem;
     font-size: 2rem;
     font-weight: 700;
     color: var(--neon-cyan);
     opacity: 0.2
 }

 .process-step i {
     font-size: 2.5rem;
     color: var(--neon-amber);
     margin-bottom: 1rem;
     display: block
 }

 .process-step h3 {
     font-size: 1.5rem;
     margin-bottom: 0.5rem
 }

 .process-step p {
     color: var(--text-secondary)
 }

 /* === PREMIUM PACKAGES REDESIGN (SaaS AGENCY STYLE) === */
 .packages-section {
     padding: 5rem 2rem;
     max-width: 1300px;
     margin: 0 auto;
 }

 .packages-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
 }

 .package-card {
     background: rgba(12, 20, 35, 0.75);
     backdrop-filter: blur(16px);
     border: 1px solid rgba(0, 240, 255, 0.25);
     border-radius: 32px;
     padding: 2.5rem 2rem;
     text-align: center;
     transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
     position: relative;
     overflow: hidden;
     box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.5), 0 0 0 0.5px rgba(0, 240, 255, 0.1) inset;
 }

 .package-card:hover {
     transform: translateY(-12px);
     border-color: #00f0ff;
     box-shadow: 0 30px 50px -20px rgba(0, 240, 255, 0.4), 0 0 0 1px #00f0ff;
 }

 .package-card .popular-tag {
     position: absolute;
     top: 1.2rem;
     right: 1.2rem;
     background: linear-gradient(135deg, #ffbe0b, #ff9100);
     color: #0a0a0f;
     padding: 0.3rem 1rem;
     border-radius: 60px;
     font-size: 0.75rem;
     font-weight: 700;
     letter-spacing: 0.3px;
     backdrop-filter: blur(4px);
     z-index: 2;
 }

 .package-card i:first-of-type {
     font-size: 1.3rem;
     color: var(--neon-cyan);
     margin-bottom: 1rem;
     display: inline-block;
     background: linear-gradient(145deg, #00f0ff, #3a86ff);
     background-clip: text;
     -webkit-background-clip: text;
     color: transparent;
 }

 .package-card h3 {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
     letter-spacing: -0.02em;
 }

 .package-desc {
     color: var(--text-secondary);
     font-size: 0.9rem;
     margin-bottom: 1.5rem;
     font-weight: 500;
 }

 .price {
     font-size: 2.8rem;
     font-weight: 800;
     background: linear-gradient(135deg, #fff, #00f0ff);
     background-clip: text;
     -webkit-background-clip: text;
     color: transparent;
     margin: 0.5rem 0 0.25rem;
 }

 .price span {
     font-size: 1rem;
     font-weight: 500;
     background: none;
     -webkit-text-fill-color: var(--text-secondary);
     color: var(--text-secondary);
 }

 .package-card ul {
     list-style: none;
     margin: 1rem 0 2rem;
     text-align: left;
 }

 .package-card ul li {
     margin: 0.85rem 0;
     display: flex;
     align-items: center;
     gap: 0.7rem;
     color: var(--text-primary);
     font-size: 0.95rem;
 }

 .package-card ul li i {
     font-size: 1rem;
     color: #00f0ff;
     width: 1.4rem;
     background: none;
     -webkit-text-fill-color: currentColor;
 }

 .package-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 0.6rem;
     background: linear-gradient(95deg, #00f0ff, #7000ff);
     border: none;
     color: #0b0b1a;
     font-weight: 700;
     padding: 0.9rem 1.8rem;
     border-radius: 60px;
     text-decoration: none;
     transition: all 0.25s ease;
     font-size: 0.95rem;
     letter-spacing: 0.3px;
     width: 100%;
 }

 .package-btn:hover {
     transform: scale(1.02);
     box-shadow: 0 10px 25px -5px rgba(0, 240, 255, 0.5);
     background: linear-gradient(95deg, #0af, #8a2be2);
     color: #fff;
 }

 @media (max-width: 900px) {
     .packages-grid {
         grid-template-columns: 1fr;
         gap: 1.8rem;
     }

     .package-card {
         padding: 2rem 1.8rem;
     }
 }

 .clients-section {
     padding: 3rem 2rem;
     max-width: 1300px;
     margin: 0 auto
 }

 .marquee {
     overflow: hidden;
     white-space: nowrap;
     position: relative
 }

 .marquee::before,
 .marquee::after {
     content: '';
     position: absolute;
     top: 0;
     width: 100px;
     height: 100%;
     z-index: 2
 }

 .marquee::before {
     left: 0;
     background: linear-gradient(to right, var(--dark-bg), transparent)
 }

 .marquee::after {
     right: 0;
     background: linear-gradient(to left, var(--dark-bg), transparent)
 }

 .marquee-content {
     display: inline-block;
     animation: marquee 20s linear infinite
 }

 .marquee-content span {
     display: inline-block;
     margin: 0 3rem;
     font-size: 1.5rem;
     font-weight: 600;
     color: var(--text-secondary);
     opacity: 0.7
 }

 @keyframes marquee {
     0% {
         transform: translateX(0)
     }

     100% {
         transform: translateX(-50%)
     }
 }

 .blog-section {
     padding: 5rem 2rem;
     max-width: 1300px;
     margin: 0 auto
 }

 .blog-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem
 }

 .blog-card {
     background: var(--bg-card);
     backdrop-filter: blur(12px);
     border: 1px solid var(--glass-border);
     border-radius: var(--radius-lg);
     padding: 2rem;
     transition: 0.3s
 }

 .blog-card:hover {
     transform: translateY(-5px);
     border-color: var(--neon-cyan)
 }

 .blog-card .date {
     color: var(--neon-amber);
     font-size: 0.9rem;
     margin-bottom: 0.5rem
 }

 .blog-card h3 {
     font-size: 1.5rem;
     margin-bottom: 1rem
 }

 .blog-card p {
     color: var(--text-secondary);
     margin-bottom: 1.5rem
 }

 .blog-card a {
     color: var(--neon-cyan);
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 0.5rem;
     cursor: pointer
 }

 .newsletter {
     background: var(--bg-card);
     backdrop-filter: blur(12px);
     border: 1px solid var(--glass-border);
     border-radius: var(--radius-lg);
     padding: 2rem;
     max-width: 500px;
     margin: 2rem auto
 }

 .newsletter h3 {
     margin-bottom: 1rem
 }

 .newsletter-input {
     display: flex;
     gap: 0.5rem
 }

 .newsletter-input input {
     flex: 1;
     padding: 0.8rem;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid var(--glass-border);
     border-radius: 60px;
     color: var(--text-primary)
 }

 .newsletter-input button {
     background: var(--neon-cyan);
     border: none;
     border-radius: 60px;
     padding: 0.8rem 1.5rem;
     font-weight: 600;
     cursor: pointer;
     transition: 0.2s
 }

 .newsletter-input button:hover {
     transform: scale(1.05);
     box-shadow: 0 0 20px var(--neon-cyan)
 }

 .dashboard-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
     gap: 2rem;
     max-width: 1300px;
     margin: 0 auto;
     padding: 2rem
 }

 .dashboard-card {
     background: var(--bg-card);
     border: 1px solid var(--glass-border);
     border-radius: var(--radius-lg);
     padding: 2rem;
     text-align: center;
     transition: 0.3s;
     position: relative;
     overflow: hidden
 }

 .dashboard-card:hover {
     transform: translateY(-5px);
     border-color: var(--neon-cyan)
 }

 .dashboard-card .live-badge {
     position: absolute;
     top: 1rem;
     right: 1rem;
     background: rgba(255, 70, 70, 0.15);
     color: #ff8a8a;
     padding: 0.2rem 0.8rem;
     border-radius: 40px;
     font-size: 0.7rem;
     border: 1px solid rgba(255, 70, 70, 0.3);
     animation: pulseSoft 2s infinite
 }

 .dashboard-number {
     font-size: 3rem;
     font-weight: 700;
     background: linear-gradient(130deg, #fff, var(--neon-cyan));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     margin: 0.5rem 0
 }

 .dashboard-trend {
     color: #00cc88;
     font-size: 0.9rem
 }

 @keyframes pulseSoft {

     0%,
     100% {
         opacity: 0.7
     }

     50% {
         opacity: 1
     }
 }

 .counter-section {
     padding: 3rem 2rem;
     max-width: 1300px;
     margin: 0 auto;
     text-align: center
 }

 .counter-number {
     font-size: 5rem;
     font-weight: 800;
     background: linear-gradient(130deg, #fff, var(--neon-cyan));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent
 }

 .counter-label {
     font-size: 1.2rem;
     color: var(--text-secondary)
 }

 .emoji-section {
     max-width: 1300px;
     margin: 4rem auto;
     padding: 4rem 2rem;
     background: linear-gradient(145deg, rgba(255, 190, 11, 0.1), rgba(255, 0, 170, 0.1));
     border-radius: var(--radius-xl);
     text-align: center;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 190, 11, 0.3);
     box-shadow: var(--shadow-heavy);
     position: relative;
     overflow: hidden
 }

 .emoji-section::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 190, 11, 0.2) 0%, transparent 70%);
     animation: rotateSlow 20s linear infinite;
     z-index: 0
 }

 @keyframes rotateSlow {
     to {
         transform: rotate(360deg)
     }
 }

 .emoji-content {
     position: relative;
     z-index: 1
 }

 .tool-buttons {
     display: flex;
     gap: 2rem;
     justify-content: center;
     flex-wrap: wrap;
     margin-top: 2rem
 }

 .emoji-button,
 .tool-button {
     display: inline-flex;
     align-items: center;
     gap: 1rem;
     background: linear-gradient(145deg, var(--neon-amber), var(--neon-pink));
     border: none;
     color: #0a0a0f;
     font-weight: 700;
     font-size: 1.3rem;
     padding: 1.2rem 3rem;
     border-radius: 60px;
     cursor: pointer;
     transition: 0.3s;
     box-shadow: 0 10px 30px rgba(255, 190, 11, 0.3)
 }

 .tool-button {
     background: linear-gradient(145deg, var(--neon-cyan), var(--neon-purple))
 }

 .emoji-button:hover,
 .tool-button:hover {
     transform: translateY(-3px) scale(1.02)
 }

 .emoji-modal,
 .password-modal {
     display: none;
     position: fixed;
     z-index: 2000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.8);
     backdrop-filter: blur(10px);
     align-items: center;
     justify-content: center
 }

 .emoji-modal.show,
 .password-modal.show {
     display: flex
 }

 .emoji-modal-content {
     background: var(--bg-card);
     backdrop-filter: blur(20px);
     border: 1px solid var(--neon-amber);
     border-radius: var(--radius-xl);
     width: 90%;
     max-width: 1100px;
     max-height: 80vh;
     overflow-y: auto;
     padding: 2rem;
     position: relative;
     box-shadow: var(--shadow-heavy);
     animation: modalFadeIn 0.3s
 }

 .emoji-modal-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1rem;
     border-bottom: 1px solid var(--glass-border);
     padding-bottom: 1rem
 }

 .emoji-modal-header h2 {
     font-size: 2rem;
     background: linear-gradient(130deg, #fff, var(--neon-amber));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent
 }

 .emoji-modal-close {
     font-size: 2.5rem;
     color: var(--neon-amber);
     cursor: pointer;
     transition: 0.2s;
     background: none;
     border: none
 }

 .emoji-modal-close:hover {
     transform: scale(1.2);
     color: var(--neon-pink)
 }

 .emoji-search {
     width: 100%;
     padding: 0.8rem 1rem;
     margin-bottom: 1.5rem;
     background: rgba(0, 0, 0, 0.3);
     border: 1px solid var(--neon-cyan);
     border-radius: 60px;
     color: var(--text-primary);
     font-size: 1rem
 }

 .emoji-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
     gap: 1rem
 }

 .emoji-item {
     background: rgba(0, 0, 0, 0.2);
     border: 1px solid var(--glass-border);
     border-radius: var(--radius-md);
     padding: 0.8rem;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 0.5rem;
     transition: 0.2s
 }

 .emoji-item:hover {
     border-color: var(--neon-amber);
     transform: scale(1.02)
 }

 .emoji-char {
     font-size: 2.5rem
 }

 .emoji-name {
     font-size: 0.7rem;
     color: var(--text-secondary);
     font-family: 'JetBrains Mono', monospace;
     background: rgba(0, 0, 0, 0.3);
     padding: 0.2rem 0.5rem;
     border-radius: 20px;
     text-align: center;
     word-break: break-word;
     max-width: 100%
 }

 .emoji-copy {
     background: transparent;
     border: 1px solid var(--neon-cyan);
     color: var(--neon-cyan);
     padding: 0.3rem 1rem;
     border-radius: 20px;
     font-size: 0.8rem;
     cursor: pointer;
     transition: 0.2s
 }

 .emoji-copy:hover {
     background: var(--neon-cyan);
     color: #000
 }

 @keyframes modalFadeIn {
     from {
         opacity: 0;
         transform: scale(0.9)
     }

     to {
         opacity: 1;
         transform: scale(1)
     }
 }

 .password-modal-content {
     background: var(--bg-card);
     backdrop-filter: blur(20px);
     border: 2px solid var(--neon-cyan);
     border-radius: var(--radius-xl);
     max-width: 400px;
     width: 90%;
     padding: 2rem;
     position: relative;
     box-shadow: var(--shadow-heavy);
     color: var(--text-primary)
 }

 .password-modal-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1.5rem
 }

 .password-modal-header h2 {
     font-size: 2rem;
     background: linear-gradient(130deg, #fff, var(--neon-cyan));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent
 }

 .password-modal-close {
     font-size: 2.5rem;
     color: var(--neon-cyan);
     cursor: pointer;
     background: none;
     border: none
 }

 .password-display {
     background: rgba(0, 0, 0, 0.3);
     border: 1px solid var(--glass-border);
     border-radius: var(--radius-md);
     padding: 1rem;
     font-family: 'JetBrains Mono', monospace;
     font-size: 1.2rem;
     text-align: center;
     margin-bottom: 1rem;
     word-break: break-all
 }

 .password-generate-btn {
     background: var(--neon-cyan);
     color: #0a0a0f;
     border: none;
     padding: 0.8rem 1.5rem;
     border-radius: 60px;
     font-weight: 600;
     cursor: pointer;
     width: 100%;
     margin-bottom: 0.5rem
 }

 .password-copy-btn {
     background: transparent;
     border: 1px solid var(--neon-cyan);
     color: var(--neon-cyan);
     padding: 0.8rem 1.5rem;
     border-radius: 60px;
     font-weight: 600;
     cursor: pointer;
     width: 100%
 }

 .password-note {
     color: var(--text-secondary);
     font-size: 0.8rem;
     margin-top: 0.5rem
 }

 .mission-vision-section {
     position: relative;
     padding: 100px 5%;
     overflow: hidden;
     text-align: center;
     background: linear-gradient(180deg, #050816 0%, #07091a 100%)
 }

 .mv-bg-grid {
     position: absolute;
     inset: 0;
     background-image: linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
     background-size: 70px 70px;
     pointer-events: none
 }

 .mv-bg-glow-left {
     position: absolute;
     left: -200px;
     top: 50%;
     transform: translateY(-50%);
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(112, 0, 255, 0.12) 0%, transparent 70%);
     pointer-events: none
 }

 .mv-bg-glow-right {
     position: absolute;
     right: -200px;
     top: 50%;
     transform: translateY(-50%);
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
     pointer-events: none
 }

 .mv-content {
     position: relative;
     z-index: 2;
     max-width: 1000px;
     margin: 0 auto
 }

 .mv-eyebrow {
     font-family: 'JetBrains Mono', monospace;
     font-size: clamp(0.65rem, 1.2vw, 0.8rem);
     letter-spacing: 0.35em;
     color: var(--neon-cyan);
     opacity: 0.8;
     text-transform: uppercase;
     margin-bottom: 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 1rem
 }

 .mv-eyebrow::before,
 .mv-eyebrow::after {
     content: '';
     flex: 1;
     max-width: 60px;
     height: 1px;
     background: linear-gradient(90deg, transparent, var(--neon-cyan))
 }

 .mv-eyebrow::after {
     background: linear-gradient(90deg, var(--neon-cyan), transparent)
 }

 .mv-title {
     font-size: clamp(2.5rem, 6.5vw, 4.5rem);
     font-weight: 800;
     margin-bottom: 3.5rem;
     line-height: 1.1
 }

 .mv-cards-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 1.5rem;
     margin-bottom: 3rem
 }

 @media(max-width:700px) {
     .mv-cards-grid {
         grid-template-columns: 1fr
     }
 }

 .mv-card {
     background: var(--bg-card);
     backdrop-filter: blur(14px);
     border: 1px solid var(--glass-border);
     border-radius: var(--radius-lg);
     padding: 2.5rem 2rem;
     text-align: left;
     position: relative;
     overflow: hidden;
     transition: transform 0.35s var(--ease-smooth), border-color 0.3s, box-shadow 0.3s
 }

 .mv-card-bar {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px
 }

 .mv-mission .mv-card-bar {
     background: linear-gradient(90deg, var(--neon-cyan), #3A86FF)
 }

 .mv-vision .mv-card-bar {
     background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink))
 }

 .mv-card:hover {
     transform: translateY(-10px);
     border-color: rgba(0, 240, 255, 0.3);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 240, 255, 0.08)
 }

 .mv-card-icon {
     width: 58px;
     height: 58px;
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.4rem;
     margin-bottom: 1.5rem
 }

 .mv-mission .mv-card-icon {
     background: rgba(0, 240, 255, 0.1);
     border: 1px solid rgba(0, 240, 255, 0.3);
     color: var(--neon-cyan)
 }

 .mv-vision .mv-card-icon {
     background: rgba(112, 0, 255, 0.12);
     border: 1px solid rgba(112, 0, 255, 0.35);
     color: #a855f7
 }

 .mv-card-tag {
     font-family: 'JetBrains Mono', monospace;
     font-size: 0.7rem;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: var(--text-secondary);
     margin-bottom: 0.75rem
 }

 .mv-card h3 {
     font-size: 1.6rem;
     font-weight: 700;
     margin-bottom: 1rem;
     color: var(--text-primary)
 }

 .mv-card p {
     color: var(--text-secondary);
     line-height: 1.75;
     font-size: 0.95rem
 }

 .mv-manifesto {
     position: relative;
     max-width: 750px;
     margin: 0 auto 3rem;
     padding: 2rem 2.5rem;
     background: rgba(0, 240, 255, 0.03);
     border: 1px solid rgba(0, 240, 255, 0.1);
     border-radius: var(--radius-lg)
 }

 .mv-manifesto::before {
     content: '"';
     position: absolute;
     top: -1rem;
     left: 2rem;
     font-size: 5rem;
     line-height: 1;
     color: var(--neon-cyan);
     opacity: 0.15;
     font-family: Georgia, serif
 }

 .mv-manifesto p {
     font-size: clamp(1rem, 2.2vw, 1.2rem);
     color: var(--text-secondary);
     line-height: 1.9;
     font-style: italic;
     position: relative;
     z-index: 1
 }

 .mv-manifesto strong {
     color: var(--text-primary);
     font-style: normal
 }

 .mv-cta-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.8rem;
     background: transparent;
     border: 2px solid var(--neon-cyan);
     color: var(--neon-cyan);
     padding: 1rem 2.5rem;
     border-radius: 60px;
     font-weight: 700;
     font-size: 1.05rem;
     cursor: pointer;
     transition: all 0.35s var(--ease-smooth);
     letter-spacing: 0.03em
 }

 .mv-cta-btn:hover {
     background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
     color: #000;
     border-color: transparent;
     box-shadow: 0 0 40px rgba(0, 240, 255, 0.35);
     transform: translateY(-3px)
 }

 .mv-cta-btn i {
     transition: transform 0.3s
 }

 .mv-cta-btn:hover i:last-child {
     transform: translateX(4px)
 }

 .mv-modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.88);
     backdrop-filter: blur(14px);
     z-index: 2000;
     align-items: center;
     justify-content: center;
     padding: 1rem
 }

 .mv-modal.show {
     display: flex
 }

 .mv-modal-content {
     background: rgba(10, 14, 30, 0.95);
     border: 1px solid rgba(0, 240, 255, 0.25);
     border-radius: var(--radius-xl);
     max-width: 860px;
     width: 100%;
     max-height: 88vh;
     overflow-y: auto;
     padding: 2.5rem;
     position: relative;
     box-shadow: 0 0 80px rgba(0, 240, 255, 0.12), var(--shadow-heavy);
     animation: modalPop 0.35s var(--ease-smooth)
 }

 .mv-modal-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 0.5rem;
     padding-bottom: 1.5rem;
     border-bottom: 1px solid var(--glass-border)
 }

 .mv-modal-header h2 {
     font-size: clamp(1.5rem, 3vw, 2rem);
     background: linear-gradient(130deg, #fff, var(--neon-cyan));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent
 }

 .mv-modal-close {
     background: none;
     border: none;
     font-size: 2.2rem;
     color: var(--neon-cyan);
     cursor: pointer;
     transition: 0.2s;
     line-height: 1;
     padding: 0.2rem
 }

 .mv-modal-close:hover {
     color: var(--neon-pink);
     transform: scale(1.2) rotate(90deg)
 }

 .mv-modal-intro {
     color: var(--text-secondary);
     font-size: 0.95rem;
     margin-bottom: 2rem;
     line-height: 1.7
 }

 .mv-pillars-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 1.25rem
 }

 @media(max-width:600px) {
     .mv-pillars-grid {
         grid-template-columns: 1fr
     }
 }

 .mv-pillar {
     padding: 1.4rem 1.6rem;
     border-left: 3px solid var(--neon-cyan);
     background: rgba(0, 240, 255, 0.025);
     border-radius: 0 14px 14px 0;
     transition: all 0.25s
 }

 .mv-pillar:hover {
     background: rgba(0, 240, 255, 0.055);
     transform: translateX(5px)
 }

 .mv-pillar:nth-child(2n) {
     border-left-color: var(--neon-purple);
     background: rgba(112, 0, 255, 0.02)
 }

 .mv-pillar:nth-child(2n):hover {
     background: rgba(112, 0, 255, 0.05)
 }

 .mv-pillar i {
     font-size: 1.6rem;
     color: var(--neon-cyan);
     margin-bottom: 0.7rem;
     display: block
 }

 .mv-pillar:nth-child(2n) i {
     color: #a855f7
 }

 .mv-pillar h3 {
     color: var(--neon-amber);
     font-size: 0.9rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
     letter-spacing: 0.03em
 }

 .mv-pillar p {
     color: var(--text-secondary);
     font-size: 0.875rem;
     line-height: 1.6
 }

 .mv-modal-footer {
     text-align: center;
     margin-top: 2.5rem;
     padding-top: 2rem;
     border-top: 1px solid var(--glass-border)
 }

 .cta-modern {
     max-width: 1300px;
     margin: 4rem auto;
     padding: 4rem 2rem;
     background: linear-gradient(145deg, rgba(0, 240, 255, 0.1), rgba(112, 0, 255, 0.1));
     border-radius: var(--radius-xl);
     text-align: center;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(0, 240, 255, 0.3);
     box-shadow: var(--shadow-heavy);
     position: relative;
     overflow: hidden
 }

 .cta-modern::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
     animation: rotateSlow 20s linear infinite;
     z-index: 0
 }

 .cta-content {
     position: relative;
     z-index: 1
 }

 .cta-modern h2 {
     font-size: clamp(2rem, 5vw, 3.5rem);
     font-weight: 700;
     margin-bottom: 1rem;
     background: linear-gradient(130deg, #fff, var(--neon-cyan), var(--neon-amber));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent
 }

 .cta-modern p {
     font-size: 1.2rem;
     color: var(--text-secondary);
     max-width: 600px;
     margin: 0 auto 2rem
 }

 .cta-button {
     display: inline-flex;
     align-items: center;
     gap: 1rem;
     background: linear-gradient(145deg, var(--neon-cyan), var(--neon-purple));
     border: none;
     color: #0a0a0f;
     font-weight: 700;
     font-size: 1.3rem;
     padding: 1.2rem 3rem;
     border-radius: 60px;
     cursor: pointer;
     transition: 0.3s;
     box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3)
 }

 .cta-button:hover {
     transform: translateY(-3px) scale(1.02);
     box-shadow: 0 20px 40px rgba(0, 240, 255, 0.5)
 }

 .cta-button i {
     transition: transform 0.3s
 }

 .cta-button:hover i {
     transform: translateX(5px)
 }

 .cta-pulse {
     animation: pulseButton 2s infinite
 }

 @keyframes pulseButton {
     0% {
         box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7)
     }

     70% {
         box-shadow: 0 0 0 20px rgba(0, 240, 255, 0)
     }

     100% {
         box-shadow: 0 0 0 0 rgba(0, 240, 255, 0)
     }
 }

 .hidden-section {
     display: none
 }

 .contact-form-section {
     max-width: 800px;
     margin: 4rem auto;
     padding: 2.5rem;
     background: var(--bg-card);
     border-radius: var(--radius-lg);
     border: 1px solid var(--glass-border)
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.5rem;
     margin-bottom: 1.5rem
 }

 .form-group {
     margin-bottom: 1.5rem
 }

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     color: var(--text-primary);
     font-weight: 500
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     width: 100%;
     padding: 0.8rem 1rem;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid var(--glass-border);
     border-radius: var(--radius-md);
     color: var(--text-primary);
     font-family: 'Inter', sans-serif
 }

 .form-group input:focus,
 .form-group textarea:focus,
 .form-group select:focus {
     outline: none;
     border-color: var(--neon-cyan)
 }

 .submit-btn {
     background: var(--neon-cyan);
     color: #0a0a0f;
     border: none;
     padding: 1rem 2rem;
     border-radius: 60px;
     font-weight: 600;
     cursor: pointer;
     transition: 0.3s;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.5rem
 }

 .submit-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 20px var(--neon-cyan)
 }

 .submit-btn:disabled {
     opacity: 0.6;
     cursor: not-allowed
 }

 .visually-hidden {
     position: absolute;
     width: 1px;
     height: 1px;
     padding: 0;
     margin: -1px;
     overflow: hidden;
     clip: rect(0, 0, 0, 0);
     white-space: nowrap;
     border: 0
 }

 #successMessage {
     background: rgba(0, 255, 0, 0.1);
     border: 1px solid #00ff00;
     border-radius: var(--radius-md);
     padding: 1rem;
     margin-top: 1rem;
     text-align: center;
     color: #00ff00
 }

 .footer {
     background: rgba(0, 0, 0, 0.6);
     backdrop-filter: blur(10px);
     border-top: 1px solid rgba(100, 255, 218, 0.1);
     padding: 4rem 2rem;
     margin-top: 6rem
 }

 body.light-mode .footer {
     background: rgba(245, 249, 255, 0.6)
 }

 .footer-container {
     max-width: 1300px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 2rem;
 }

 .footer-logo {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 1rem;
     background: linear-gradient(130deg, #fff, var(--neon-cyan));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent
 }

 .footer-message {
     color: var(--text-secondary);
     font-style: italic;
     border-left: 2px solid var(--neon-cyan);
     padding-left: 1rem;
     margin: 1rem 0
 }

 .footer-social {
     display: flex;
     gap: 1.5rem;
     margin-top: 1.5rem
 }

 .footer-social a {
     color: var(--text-secondary);
     font-size: 1.8rem;
     transition: 0.2s
 }

 .footer-social a:hover {
     color: var(--neon-cyan);
     transform: scale(1.1)
 }

 .footer-links h4 {
     color: var(--text-primary);
     margin-bottom: 1rem
 }

 .footer-links a {
     display: block;
     color: var(--text-secondary);
     text-decoration: none;
     margin-bottom: 0.5rem;
     transition: 0.2s
 }

 .footer-links a:hover {
     color: var(--neon-cyan);
     transform: translateX(5px)
 }

 .footer-copyright {
     grid-column: 1/-1;
     text-align: center;
     color: var(--text-secondary);
     margin-top: 3rem;
     padding-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1)
 }

 .footer-copyright span {
     color: var(--neon-cyan);
     font-weight: 600
 }

 .fade-up {
     opacity: 0;
     transform: translateY(30px);
     transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth)
 }

 .fade-up.active {
     opacity: 1;
     transform: translateY(0)
 }

 /* NEW LOCAL SECTION STYLES */
 .local-section {
     padding: 5rem 2rem;
     max-width: 1300px;
     margin: 0 auto;
 }

 .map-container {
     background: var(--bg-card);
     border: 1px solid var(--glass-border);
     border-radius: var(--radius-lg);
     overflow: hidden;
     margin-top: 2rem;
     box-shadow: var(--shadow-heavy);
 }

 .map-container iframe {
     width: 100%;
     height: 400px;
     border: 0;
 }

 .service-area {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 1.5rem;
     margin-top: 2rem;
 }

 .service-card {
     background: var(--bg-card);
     backdrop-filter: blur(12px);
     border: 1px solid var(--glass-border);
     border-radius: var(--radius-md);
     padding: 1.5rem;
     text-align: center;
 }

 .service-card i {
     font-size: 2rem;
     color: var(--neon-cyan);
     margin-bottom: 1rem;
 }

 .service-card h3 {
     font-size: 1.3rem;
     margin-bottom: 0.5rem;
 }

 /* CASE STUDIES */
 .case-studies {
     padding: 5rem 2rem;
     max-width: 1300px;
     margin: 0 auto;
 }

 .case-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 2rem;
 }

 .case-card {
     background: var(--bg-card);
     backdrop-filter: blur(12px);
     border: 1px solid var(--glass-border);
     border-radius: var(--radius-lg);
     padding: 2rem;
     transition: transform 0.3s var(--ease-smooth);
 }

 .case-card:hover {
     transform: translateY(-5px);
     border-color: var(--neon-cyan);
 }

 .case-stats {
     display: flex;
     justify-content: space-between;
     margin: 1rem 0;
     font-weight: 700;
     color: var(--neon-amber);
 }

 .case-stats span {
     font-size: 1.2rem;
 }

 /* Updated responsive breakpoints (footer & navbar) */
 @media (max-width: 900px) {
     .nav-desktop {
         display: none;
     }

     .mobile-menu-toggle {
         display: block;
     }

     .hero-grid {
         grid-template-columns: 1fr;
     }

     .footer-container {
         grid-template-columns: 1fr 1fr;
     }

     .price-card.featured {
         transform: scale(1);
     }
 }

 @media (max-width: 600px) {
     .footer-container {
         grid-template-columns: 1fr;
         gap: 2rem;
         padding: 2rem 1.5rem;
     }

     .footer-social {
         justify-content: flex-start;
     }

     .newsletter-input {
         flex-direction: column;
         gap: 0.8rem;
     }

     .newsletter-input input,
     .newsletter-input button {
         width: 100%;
         box-sizing: border-box;
     }

     .footer-logo {
         font-size: 1.8rem;
     }

     .timeline {
         padding-left: 30px;
     }

     .timeline-item::before {
         left: -30px;
     }
 }

 @media (max-width: 400px) {
     .navbar {
         padding: 0 1rem;
     }

     .logo a {
         font-size: 1.6rem;
         white-space: nowrap;
     }
 }