*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root { 
    --bg-primary: #0a0a0f; --bg-secondary: #12121a; --bg-card: rgba(255,255,255,0.03); 
    --border-color: rgba(255,255,255,0.08); --border-light: rgba(255,255,255,0.15);
    --text-primary: #fff; --text-secondary: #8a8a9a; 
    --text-muted: #55556a; --accent-1: #6c5ce7; --accent-2: #00cec9; --accent-3: #fd79a8; 
    --gradient-1: linear-gradient(135deg,#6c5ce7,#a855f7,#00cec9); 
    --glow-purple: 0 0 60px rgba(108,92,231,0.3); 
}
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--accent-1) var(--bg-primary); }
body { font-family: 'Inter',-apple-system,BlinkMacSystemFont,sans-serif; background: var(--bg-primary); color: var(--text-primary); overflow-x: hidden; line-height: 1.6; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-1); border-radius: 3px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }

.cursor-glow { position: fixed; width: 600px; height: 600px; border-radius: 50%; pointer-events: none; background: radial-gradient(circle,rgba(108,92,231,0.06) 0%,transparent 70%); transform: translate(-50%,-50%); z-index: 0; transition: left .3s ease,top .3s ease; display: none; }
@media (hover: hover) and (pointer: fine) { .cursor-glow { display: block; } }
.noise { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; opacity: .015; background-image: url("image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); }
.section-divider { height: 1px; background: linear-gradient(90deg,transparent,var(--border-color),transparent); margin: 0; }

/* Nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px; display: flex; align-items: center; justify-content: space-between; transition: all .4s ease; background: transparent; }
.nav.scrolled { padding: 14px 20px; background: rgba(10,10,15,.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-light); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; z-index: 1001; }
.nav-logo-icon { width: 40px; height: 40px; }
.nav-logo-icon svg { width: 100%; height: 100%; }
.nav-logo-text { font-size: 22px; font-weight: 900; letter-spacing: -.5px; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-secondary); font-size: 14px; font-weight: 500; transition: color .3s ease; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gradient-1); transition: width .3s ease; border-radius: 1px; }
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 24px; background: var(--gradient-1); color: #fff !important; border-radius: 10px; font-weight: 600; border: 1px solid rgba(255,255,255,0.1); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; padding: 5px; }
.nav-burger span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all .3s ease; }
.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; padding: 140px 20px 80px; overflow: hidden; text-align: center; }
.hero-grid-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(108,92,231,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(108,92,231,0.03) 1px,transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse at center,black 30%,transparent 70%); -webkit-mask-image: radial-gradient(ellipse at center,black 30%,transparent 70%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .4; animation: orbFloat 8s ease-in-out infinite; }
.hero-orb-1 { width: 500px; height: 500px; background: var(--accent-1); top: -10%; right: -5%; }
.hero-orb-2 { width: 400px; height: 400px; background: var(--accent-2); bottom: -10%; left: -5%; animation-delay: -3s; }
.hero-orb-3 { width: 300px; height: 300px; background: var(--accent-3); top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: .2; animation-delay: -5s; }
@keyframes orbFloat { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-30px) scale(1.05); } 66% { transform: translate(-20px,20px) scale(.95); } }
.hero-content { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(108,92,231,0.15); border: 1px solid rgba(108,92,231,0.4); border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--accent-1); margin-bottom: 32px; backdrop-filter: blur(10px); animation: fadeInUp .8s ease forwards; box-shadow: 0 0 20px rgba(108,92,231,0.2); }
.hero-title { font-size: clamp(48px,7vw,88px); font-weight: 900; line-height: 1.05; letter-spacing: -3px; margin-bottom: 28px; animation: fadeInUp .8s ease .1s forwards; }
.gradient-text { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: clamp(18px,2.2vw,22px); color: var(--text-secondary); max-width: 700px; margin: 0 auto 48px; font-weight: 400; line-height: 1.7; animation: fadeInUp .8s ease .2s forwards; opacity: 0; }
.hero-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; animation: fadeInUp .8s ease .3s forwards; opacity: 0; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 18px 40px; background: var(--gradient-1); color: #fff; text-decoration: none; border-radius: 14px; font-weight: 600; font-size: 16px; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: all .3s ease; position: relative; overflow: hidden; box-shadow: 0 4px 20px rgba(108,92,231,0.3); }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent); transition: left .5s ease; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(108,92,231,0.5); border-color: rgba(255,255,255,0.3); }
.particles-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; pointer-events: none; }
.code-particle { position: absolute; font-family: 'JetBrains Mono',monospace; font-size: 12px; color: rgba(108,92,231,0.15); animation: floatParticle linear infinite; white-space: nowrap; }
@keyframes floatParticle { 0% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-100px) rotate(360deg); opacity: 0; } }

/* Sections General */
section { padding: 120px 0; position: relative; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-1); margin-bottom: 16px; }
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--gradient-1); border-radius: 1px; }
.section-title { font-size: clamp(32px,4vw,52px); font-weight: 800; letter-spacing: -2px; line-height: 1.15; margin-bottom: 20px; }
.section-desc { font-size: 17px; color: var(--text-secondary); max-width: 650px; line-height: 1.7; }

/* About */
.about-us { background: var(--bg-primary); }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-header { margin-bottom: 32px; }
.about-header .section-desc { max-width: 100%; font-size: 18px; margin-top: 16px; }
.about-features { display: flex; flex-direction: column; gap: 24px; }
.about-feature { display: flex; align-items: flex-start; gap: 24px; padding: 32px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 20px; transition: all .4s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.about-feature:hover { border-color: rgba(108,92,231,0.5); background: rgba(108,92,231,0.08); transform: translateX(8px); box-shadow: 0 8px 30px rgba(108,92,231,0.2); }
.about-feature-icon { width: 56px; height: 56px; min-width: 56px; border-radius: 16px; background: var(--gradient-1); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; box-shadow: 0 8px 32px rgba(108,92,231,0.4); border: 1px solid rgba(255,255,255,0.1); }
.about-feature-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.about-feature-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.about-image { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(108,92,231,0.3); border: 1px solid var(--border-light); }
.about-image img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.about-image:hover img { transform: scale(1.05); }

/* Highlighted Sections (Services/Portfolio) */
.highlighted-section { position: relative; }
.highlighted-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: calc(100% - 40px); max-width: 1400px; height: 100%; background: linear-gradient(135deg,rgba(108,92,231,0.06),rgba(0,206,201,0.06)); border-radius: 32px; border: 1px solid rgba(108,92,231,0.2); z-index: -1; pointer-events: none; }
.highlighted-section::after { content: ''; position: absolute; top: -2px; left: 50%; transform: translateX(-50%); width: calc(100% - 40px); max-width: 1400px; height: 2px; background: var(--gradient-1); border-radius: 2px; opacity: 0.8; z-index: -1; pointer-events: none; }
.highlighted-section .section-header-wrapper { position: relative; z-index: 1; }

/* Services */
.services { background: var(--bg-secondary); }
.services-header { text-align: center; margin-bottom: 80px; }
.services-header .section-desc { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 20px; padding: 40px 32px; transition: all .4s ease; position: relative; overflow: hidden; cursor: default; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg,rgba(108,92,231,0.08),transparent); opacity: 0; transition: opacity .4s ease; }
.service-card:hover { border-color: rgba(108,92,231,0.5); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(108,92,231,0.25); }
.service-card:hover::before { opacity: 1; }
.service-card:nth-child(2):hover { border-color: rgba(0,206,201,0.5); box-shadow: 0 20px 60px rgba(0,206,201,0.2); }
.service-card:nth-child(3):hover { border-color: rgba(253,121,168,0.5); box-shadow: 0 20px 60px rgba(253,121,168,0.2); }
.service-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 24px; position: relative; z-index: 1; border: 1px solid rgba(255,255,255,0.1); }
.service-icon.purple { background: rgba(108,92,231,0.2); color: var(--accent-1); }
.service-icon.cyan { background: rgba(0,206,201,0.2); color: var(--accent-2); }
.service-icon.pink { background: rgba(253,121,168,0.2); color: var(--accent-3); }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; position: relative; z-index: 1; }
.service-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; position: relative; z-index: 1; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; position: relative; z-index: 1; }
.service-tag { padding: 4px 12px; background: rgba(255,255,255,0.06); border: 1px solid var(--border-color); border-radius: 6px; font-size: 12px; color: var(--text-muted); font-family: 'JetBrains Mono',monospace; }

/* Why Us */
.why-us { background: var(--bg-primary); position: relative; overflow: hidden; }
.why-us::before { content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px; background: radial-gradient(circle,rgba(108,92,231,0.1),transparent 70%); pointer-events: none; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-content .section-desc { margin-bottom: 40px; font-size: 18px; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 20px; padding: 24px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; transition: all .3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.why-item:hover { border-color: var(--accent-1); transform: translateX(10px); background: rgba(108,92,231,0.08); box-shadow: 0 8px 30px rgba(108,92,231,0.2); }
.why-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 12px; background: var(--gradient-1); display: flex; align-items: center; justify-content: center; font-size: 20px; border: 1px solid rgba(255,255,255,0.1); }
.why-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.why-text p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.why-visual { position: relative; height: 600px; display: flex; align-items: center; justify-content: center; }
.stats-ring { width: 400px; height: 400px; position: relative; }
.ring-item { position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--border-light); display: flex; align-items: center; justify-content: center; animation: rotate 20s linear infinite; }
.ring-item:nth-child(1) { border-color: rgba(108,92,231,0.4); animation-duration: 25s; }
.ring-item:nth-child(2) { border-color: rgba(0,206,201,0.4); animation-duration: 30s; animation-direction: reverse; }
.ring-item:nth-child(3) { border-color: rgba(253,121,168,0.4); animation-duration: 35s; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.stat-floating { position: absolute; background: var(--bg-secondary); border: 1px solid var(--border-light); padding: 16px 24px; border-radius: 12px; backdrop-filter: blur(10px); box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.stat-floating:nth-child(4) { top: 20px; right: 0; }
.stat-floating:nth-child(5) { bottom: 60px; left: -20px; }
.stat-floating:nth-child(6) { top: 50%; right: -40px; transform: translateY(-50%); }
.stat-value { font-size: 28px; font-weight: 800; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* Tech Stack */
.tech-stack { background: var(--bg-secondary); text-align: center; }
.tech-stack-header { margin-bottom: 60px; }
.tech-stack-header .section-desc { margin: 0 auto; }
.tech-marquee { overflow: hidden; padding: 20px 0; position: relative; }
.tech-marquee::before, .tech-marquee::after { content: ''; position: absolute; top: 0; width: 200px; height: 100%; z-index: 2; }
.tech-marquee::before { left: 0; background: linear-gradient(90deg,var(--bg-secondary),transparent); }
.tech-marquee::after { right: 0; background: linear-gradient(-90deg,var(--bg-secondary),transparent); }
.tech-track { display: flex; gap: 24px; animation: marquee 30s linear infinite; width: max-content; }
.tech-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.tech-item { display: flex; align-items: center; gap: 12px; padding: 14px 24px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 12px; font-size: 14px; font-weight: 500; color: var(--text-secondary); white-space: nowrap; transition: all .3s ease; cursor: default; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.tech-item:hover { border-color: var(--accent-1); color: var(--text-primary); background: rgba(108,92,231,0.08); box-shadow: 0 4px 20px rgba(108,92,231,0.2); }
.tech-item-icon { font-size: 20px; }

/* Interactive */
.interactive-block { background: linear-gradient(135deg,rgba(108,92,231,0.1),rgba(0,206,201,0.1)); padding: 120px 0; position: relative; overflow: hidden; }
.interactive-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 50%,rgba(108,92,231,0.15) 0%,transparent 50%),radial-gradient(circle at 80% 50%,rgba(0,206,201,0.15) 0%,transparent 50%); pointer-events: none; }
.interactive-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 2; }
.interactive-header .section-desc { margin: 0 auto; }
#interactiveCanvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; opacity: .5; }
.interactive-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.interactive-card { background: rgba(18,18,26,0.8); border: 1px solid var(--border-light); border-radius: 20px; padding: 36px 30px; text-align: center; transition: all .5s cubic-bezier(0.16,1,0.3,1); position: relative; overflow: hidden; cursor: default; backdrop-filter: blur(10px); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.interactive-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at var(--mouse-x,50%) var(--mouse-y,50%),rgba(108,92,231,0.2),transparent 60%); opacity: 0; transition: opacity .4s ease; }
.interactive-card:hover::before { opacity: 1; }
.interactive-card:hover { border-color: rgba(108,92,231,0.6); transform: translateY(-10px) scale(1.02); box-shadow: 0 30px 80px rgba(108,92,231,0.3); background: rgba(108,92,231,0.1); }
.interactive-card:nth-child(2):hover { border-color: rgba(0,206,201,0.6); box-shadow: 0 30px 80px rgba(0,206,201,0.3); background: rgba(0,206,201,0.1); }
.interactive-card:nth-child(3):hover { border-color: rgba(253,121,168,0.6); box-shadow: 0 30px 80px rgba(253,121,168,0.3); background: rgba(253,121,168,0.1); }
.card-icon-wrapper { width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; font-size: 32px; position: relative; transition: all .5s ease; border: 1px solid rgba(255,255,255,0.1); }
.interactive-card:nth-child(1) .card-icon-wrapper { background: linear-gradient(135deg,rgba(108,92,231,0.25),rgba(168,85,247,0.25)); border: 1px solid rgba(108,92,231,0.4); }
.interactive-card:nth-child(2) .card-icon-wrapper { background: linear-gradient(135deg,rgba(0,206,201,0.25),rgba(9,132,227,0.25)); border: 1px solid rgba(0,206,201,0.4); }
.interactive-card:nth-child(3) .card-icon-wrapper { background: linear-gradient(135deg,rgba(253,121,168,0.25),rgba(225,112,85,0.25)); border: 1px solid rgba(253,121,168,0.4); }
.interactive-card:hover .card-icon-wrapper { transform: scale(1.1) rotate(5deg); }
.interactive-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.interactive-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.card-counter { font-size: 36px; font-weight: 900; margin-top: 20px; font-family: 'JetBrains Mono',monospace; }
.interactive-card:nth-child(1) .card-counter { background: linear-gradient(135deg,#6c5ce7,#a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.interactive-card:nth-child(2) .card-counter { background: linear-gradient(135deg,#00cec9,#0984e3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.interactive-card:nth-child(3) .card-counter { background: linear-gradient(135deg,#fd79a8,#e17055); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.card-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

/* Portfolio */
.portfolio { background: var(--bg-primary); }
.portfolio-header { text-align: center; margin-bottom: 60px; }
.portfolio-header .section-desc { margin: 0 auto; }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.portfolio-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 20px; overflow: hidden; transition: all .4s ease; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.portfolio-card:hover { border-color: rgba(108,92,231,0.5); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(108,92,231,0.25); }
.portfolio-preview { height: 220px; background: linear-gradient(135deg,rgba(108,92,231,0.2),rgba(0,206,201,0.2)); display: flex; align-items: center; justify-content: center; font-size: 64px; position: relative; overflow: hidden; }
.portfolio-preview img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.portfolio-card:hover .portfolio-preview img { transform: scale(1.1); }
.portfolio-preview::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg,rgba(108,92,231,0.15),transparent); z-index: 1; }
.portfolio-info { padding: 28px; position: relative; z-index: 2; }
.portfolio-category { font-size: 12px; font-weight: 600; color: var(--accent-1); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.portfolio-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.portfolio-info p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.portfolio-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.portfolio-tag { padding: 4px 10px; background: rgba(255,255,255,0.06); border: 1px solid var(--border-color); border-radius: 6px; font-size: 11px; color: var(--text-muted); font-family: 'JetBrains Mono',monospace; }

/* Testimonials */
.testimonials { background: var(--bg-secondary); }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-desc { margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 20px; padding: 36px 32px; transition: all .3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.testimonial-card:hover { border-color: rgba(108,92,231,0.4); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(108,92,231,0.2); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; color: #fbbf24; font-size: 14px; }
.testimonial-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.testimonial-avatar.a1 { background: linear-gradient(135deg,#6c5ce7,#a855f7); }
.testimonial-avatar.a2 { background: linear-gradient(135deg,#00cec9,#0984e3); }
.testimonial-avatar.a3 { background: linear-gradient(135deg,#fd79a8,#e17055); }
.testimonial-avatar.a4 { background: linear-gradient(135deg,#6c5ce7,#00cec9); }
.testimonial-avatar.a5 { background: linear-gradient(135deg,#fd79a8,#6c5ce7); }
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* Reviews - IMPROVED */
.review-section { background: var(--bg-primary); padding: 120px 0; }
.review-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.review-form-wrapper { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 24px; padding: 40px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.review-form-title { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.review-form-subtitle { font-size: 15px; color: var(--text-secondary); margin-bottom: 32px; }

/* Centered and larger stars */
.star-rating { 
    display: flex; 
    justify-content: center; 
    gap: 12px; 
    margin-bottom: 32px; 
    flex-direction: row-reverse;
    padding: 10px 0;
}
.star-rating input { display: none; }
.star-rating label { 
    font-size: 42px; 
    color: rgba(255,255,255,0.2); 
    cursor: pointer; 
    transition: all .25s ease; 
    line-height: 1;
    text-shadow: 0 0 20px rgba(251,191,36,0.3);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.star-rating label:hover, 
.star-rating label:hover ~ label, 
.star-rating input:checked ~ label { 
    color: #fbbf24; 
    transform: scale(1.15);
    text-shadow: 0 0 30px rgba(251,191,36,0.6);
}
.star-rating input:checked ~ label { 
    color: #fbbf24; 
}

.review-form-input { 
    width: 100%; 
    padding: 16px 20px; 
    background: rgba(255,255,255,0.05); 
    border: 1px solid var(--border-light); 
    border-radius: 14px; 
    color: var(--text-primary); 
    font-size: 15px; 
    font-family: 'Inter',sans-serif; 
    margin-bottom: 18px; 
    transition: all .3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.review-form-input:focus { 
    outline: none; 
    border-color: var(--accent-1); 
    background: rgba(108,92,231,0.12);
    box-shadow: 0 0 0 3px rgba(108,92,231,0.15), 0 4px 20px rgba(108,92,231,0.2);
}
.review-form-input::placeholder { color: var(--text-muted); }
textarea.review-form-input { min-height: 140px; resize: vertical; }
.review-form-submit { 
    width: 100%; 
    padding: 18px; 
    background: var(--gradient-1); 
    color: #fff; 
    border: 1px solid rgba(255,255,255,0.2); 
    border-radius: 14px; 
    font-weight: 600; 
    font-size: 16px; 
    cursor: pointer; 
    transition: all .3s ease; 
    margin-top: 8px;
    box-shadow: 0 4px 20px rgba(108,92,231,0.3);
}
.review-form-submit:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 30px rgba(108,92,231,0.5);
    border-color: rgba(255,255,255,0.3);
}
.review-form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.review-success { display: none; text-align: center; padding: 20px; background: rgba(0,206,201,0.15); border: 1px solid rgba(0,206,201,0.4); border-radius: 12px; color: var(--accent-2); margin-top: 16px; }
.review-success.show { display: block; animation: fadeInUp .4s ease; }
.review-error { display: none; text-align: center; padding: 20px; background: rgba(253,121,168,0.15); border: 1px solid rgba(253,121,168,0.4); border-radius: 12px; color: var(--accent-3); margin-top: 16px; }
.review-error.show { display: block; animation: fadeInUp .4s ease; }
.reviews-display { 
    background: var(--bg-secondary); 
    border: 1px solid var(--border-light); 
    border-radius: 24px; 
    padding: 40px; 
    max-height: 600px; 
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.reviews-display-title { 
    font-size: 24px; 
    font-weight: 700; 
    margin-bottom: 24px; 
    padding-bottom: 16px; 
    border-bottom: 1px solid var(--border-light);
}
.review-item { 
    background: var(--bg-card); 
    border: 1px solid var(--border-light); 
    border-radius: 16px; 
    padding: 24px; 
    margin-bottom: 16px; 
    transition: all .3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.review-item:hover { 
    border-color: rgba(108,92,231,0.5); 
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(108,92,231,0.15);
}
.review-item-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.review-item-author { font-weight: 600; color: var(--text-primary); }
.review-item-rating { color: #fbbf24; font-size: 14px; white-space: nowrap; }
.review-item-text { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.review-item-date { font-size: 12px; color: var(--text-muted); margin-top: 12px; display: flex; align-items: center; gap: 4px; }
.review-item-date::before { content: '🕐'; font-size: 11px; }
.no-reviews { text-align: center; color: var(--text-muted); padding: 40px 20px; font-size: 15px; }
.reviews-loading { text-align: center; color: var(--text-secondary); padding: 40px 20px; font-size: 15px; }
.reviews-loading::after { content: ''; display: inline-block; width: 16px; height: 16px; border: 2px solid var(--border-color); border-top-color: var(--accent-1); border-radius: 50%; animation: spin 1s linear infinite; margin-left: 8px; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }

/* FAQ */
.faq { background: var(--bg-primary); }
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-header .section-desc { margin: 0 auto; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; overflow: hidden; transition: all .3s ease; box-shadow: 0 2px 10px rgba(0,0,0,0.15); }
.faq-item:hover { border-color: rgba(108,92,231,0.4); box-shadow: 0 4px 20px rgba(108,92,231,0.15); }
.faq-question { padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 600; font-size: 16px; }
.faq-icon { width: 24px; height: 24px; transition: transform .3s ease; color: var(--accent-1); }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { padding: 0 32px; max-height: 0; overflow: hidden; transition: all .3s ease; color: var(--text-secondary); line-height: 1.7; }
.faq-item.active .faq-answer { padding: 0 32px 24px; max-height: 200px; }

/* CTA */
.cta { background: var(--bg-primary); text-align: center; }
.cta-box { 
    max-width: 900px; 
    margin: 0 auto; 
    padding: 100px 60px; 
    background: linear-gradient(135deg,rgba(108,92,231,0.15),rgba(0,206,201,0.15)); 
    border: 1px solid rgba(108,92,231,0.3); 
    border-radius: 32px; 
    position: relative; 
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(108,92,231,0.2);
}
.cta-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 0deg,transparent,rgba(108,92,231,0.15),transparent,rgba(0,206,201,0.15),transparent); animation: rotateBg 10s linear infinite; }
@keyframes rotateBg { 100% { transform: rotate(360deg); } }
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: clamp(32px,4vw,48px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 20px; line-height: 1.2; }
.cta-desc { font-size: 18px; color: var(--text-secondary); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-trust { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); }
.trust-icon { color: var(--accent-2); font-size: 18px; }

/* Footer */
.footer { background: var(--bg-secondary); padding: 80px 0 40px; border-top: 1px solid var(--border-light); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 60px; margin-bottom: 60px; }
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; max-width: 300px; }
.footer-column h4 { font-size: 14px; font-weight: 700; margin-bottom: 20px; letter-spacing: .5px; }
.footer-column ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-column a { text-decoration: none; color: var(--text-secondary); font-size: 14px; transition: color .3s ease; }
.footer-column a:hover { color: var(--text-primary); }
.footer-bottom { padding-top: 30px; border-top: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color .3s ease; }
.footer-bottom-links a:hover { color: var(--text-primary); }

/* Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: all .8s cubic-bezier(0.16,1,0.3,1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* MOBILE FIXES */
@media (max-width: 1024px) {
    .about-container, .why-grid, .review-container { grid-template-columns: 1fr; gap: 40px; }
    .why-visual { height: 400px; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .nav { padding: 14px 20px; }
    
    /* Mobile Menu */
    .nav-links { 
        display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; 
        background: rgba(10,10,15,0.98); flex-direction: column; justify-content: center; align-items: center; gap: 30px; 
        z-index: 999; 
    }
    .nav-links.active { display: flex; }
    .nav-burger { display: flex; }
    
    .hero { padding-top: 100px; }
    .hero-title { font-size: 36px; }
    
    /* Fix for Safari Bottom Bar */
    .footer { padding-bottom: env(safe-area-inset-bottom, 30px); }
    
    /* Prevent horizontal scroll */
    body, html { overflow-x: hidden; width: 100%; }
    
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .highlighted-section::before, .highlighted-section::after { width: calc(100% - 40px); }
    
    .review-container { gap: 30px; }
    .review-form-wrapper, .reviews-display { padding: 30px 24px; }
    .star-rating label { font-size: 38px; }
}