:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --accent-2: #ec4899;
    --bg: #0f172a;
    --bg-2: #1e293b;
    --bg-3: #334155;
    --text: #f1f5f9;
    --text-2: #cbd5e1;
    --text-3: #94a3b8;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #6366f1 0%, #06b6d4 50%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --shadow: 0 20px 60px rgba(0,0,0,0.25);
    --shadow-lg: 0 30px 80px rgba(0,0,0,0.35);
    --radius: 20px;
    --radius-sm: 14px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.card { background: var(--bg-2); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); }
.card-hover { transition: all 0.4s ease; }
.card-hover:hover { transform: translateY(-8px); border-color: rgba(99,102,241,0.3); box-shadow: var(--shadow-lg); }

/* Loader */
.loader { position: fixed; inset: 0; background: var(--bg); z-index: 10000; display: flex; align-items: center; justify-content: center; transition: opacity 0.6s ease, visibility 0.6s ease; }
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; background: var(--gradient); color: var(--white); border-radius: 20px; font-size: 32px; margin: 0 auto 24px; animation: loaderPulse 1.5s ease infinite; }
@keyframes loaderPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.1) rotate(5deg)} }
.loader-bar { width: 200px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 4px; margin: 0 auto 16px; overflow: hidden; }
.loader-progress { height: 100%; width: 0; background: var(--gradient); border-radius: 4px; animation: loaderFill 1.5s ease forwards; }
@keyframes loaderFill { to{width:100%} }
.loader-text { font-size: 13px; color: var(--text-3); letter-spacing: 2px; text-transform: uppercase; }

/* Cursor Glow */
.cursor-glow { position: fixed; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%); pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); }

/* Nav */
.fp-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: all 0.3s ease; }
.fp-nav.scrolled { background: rgba(15,23,42,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.fp-nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; }
.fp-logo { display: flex; align-items: center; gap: 12px; }
.fp-logo-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--gradient); color: var(--white); border-radius: 12px; font-size: 18px; }
.fp-logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; color: var(--white); }
.fp-logo-text span { color: var(--primary); }
.fp-menu { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.04); padding: 6px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.06); }
.fp-link { padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--text-2); transition: all 0.3s ease; border-radius: 10px; }
.fp-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.fp-link.active { color: var(--white); background: var(--gradient-2); font-weight: 600; }
.fp-cta { padding: 12px 24px; background: var(--gradient); color: var(--white); font-size: 14px; font-weight: 600; border-radius: 12px; transition: all 0.3s ease; }
.fp-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(99,102,241,0.4); }

/* Sections */
.section { min-height: 100vh; position: relative; padding: 140px 0 100px; overflow: hidden; }
.section-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.bg-gradient { position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%); top: -200px; right: -200px; animation: pulse 8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }
.bg-shapes { position: absolute; inset: 0; }
.bshape { position: absolute; border-radius: 50%; filter: blur(120px); animation: float 12s ease-in-out infinite; }
.bs-1 { width: 500px; height: 500px; background: rgba(99,102,241,0.08); top: -150px; left: -150px; }
.bs-2 { width: 400px; height: 400px; background: rgba(236,72,153,0.06); bottom: -100px; right: -100px; animation-delay: -6s; }
@keyframes float { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,-40px)} }
.bg-dots { position: absolute; width: 100%; height: 100%; background-image: radial-gradient(rgba(99,102,241,0.06) 1px, transparent 1px); background-size: 40px 40px; }
.bg-lines { position: absolute; width: 100%; height: 100%; background: linear-gradient(90deg,transparent 49.5%,rgba(99,102,241,0.03) 50%,transparent 50.5%), linear-gradient(0deg,transparent 49.5%,rgba(99,102,241,0.03) 50%,transparent 50.5%); background-size: 60px 60px; }
.bg-waves svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 150px; }

.section-header { text-align: center; margin-bottom: 70px; }
.section-tag { display: inline-flex; align-items: center; gap: 10px; padding: 10px 22px; background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2); color: var(--primary-light); font-size: 13px; font-weight: 600; border-radius: 50px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1.5px; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(32px,5vw,52px); font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.15; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-description { font-size: 17px; color: var(--text-2); max-width: 550px; margin: 0 auto; line-height: 1.7; }

/* Hero */
.hero-section { display: flex; align-items: center; background: var(--bg); padding-top: 140px; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-shapes { position: absolute; width: 100%; height: 100%; }
.shape { position: absolute; border-radius: 50%; filter: blur(140px); }
.shape-1 { width: 600px; height: 600px; background: rgba(99,102,241,0.15); top: -250px; right: -100px; animation: morph 20s ease-in-out infinite; }
.shape-2 { width: 400px; height: 400px; background: rgba(6,182,212,0.1); bottom: -100px; left: -100px; animation: morph 20s ease-in-out infinite reverse; animation-delay: -7s; }
.shape-3 { width: 350px; height: 350px; background: rgba(236,72,153,0.08); top: 40%; left: 45%; animation: morph 20s ease-in-out infinite; animation-delay: -14s; }
@keyframes morph { 0%,100%{border-radius:50%;transform:scale(1) translate(0,0)} 33%{border-radius:40% 60% 70% 30%;transform:scale(1.1) translate(30px,-30px)} 66%{border-radius:60% 40% 30% 70%;transform:scale(0.9) translate(-20px,20px)} }
.hero-grid { position: absolute; width: 100%; height: 100%; background-image: linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px), linear-gradient(90deg,rgba(99,102,241,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%); -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%); }
.hero-particles { position: absolute; inset: 0; }
.particle { position: absolute; border-radius: 50%; animation: floatParticle linear infinite; }
@keyframes floatParticle { 0%{transform:translateY(0) translateX(0)} 50%{transform:translateY(-100px) translateX(50px)} 100%{transform:translateY(-200px) translateX(0)} }

.hero-container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.hero-content { position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 12px; padding: 12px 24px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 50px; font-size: 14px; font-weight: 500; color: var(--text-2); margin-bottom: 32px; }
.badge-pulse { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: badgePulse 2s ease-in-out infinite; box-shadow: 0 0 10px #22c55e; }
@keyframes badgePulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.4)} }
.hero-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(38px,6vw,64px); font-weight: 800; line-height: 1.1; margin-bottom: 24px; color: var(--white); }
.title-line { display: block; }
.hero-description { font-size: 18px; color: var(--text-2); margin-bottom: 40px; line-height: 1.8; max-width: 520px; }
.hero-buttons { display: flex; gap: 18px; margin-bottom: 60px; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 32px; font-size: 15px; font-weight: 600; border-radius: 14px; cursor: pointer; transition: all 0.4s ease; border: none; position: relative; overflow: hidden; font-family: inherit; }
.btn-primary { background: var(--gradient-2); color: var(--white); box-shadow: 0 10px 30px rgba(99,102,241,0.3); }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(99,102,241,0.4); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.15); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.btn-full { width: 100%; }

.hero-stats { display: flex; gap: 48px; align-items: center; }
.stat-item { text-align: center; }
.stat-number { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 44px; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.08); }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.floating-elements { position: absolute; width: 100%; height: 100%; pointer-events: none; z-index: 2; }
.float-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 20px; background: var(--bg-2); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; font-weight: 600; color: var(--white); font-size: 14px; animation: floatCard 6s ease-in-out infinite; backdrop-filter: blur(10px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.fc-icon i { font-size: 22px; }
.fc-1 { top: -5%; right: 5%; animation-delay: 0s; color: #61dafb; }
.fc-2 { top: 25%; left: -15%; animation-delay: 1s; color: #68a063; }
.fc-3 { bottom: 25%; right: -15%; animation-delay: 2s; color: #3776ab; }
.fc-4 { bottom: -5%; left: 0; animation-delay: 3s; color: #42b883; }
.fc-5 { top: 55%; right: -10%; animation-delay: 4s; color: #ff2d20; }
@keyframes floatCard { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-20px) rotate(3deg)} }

.hero-code { border-radius: 20px; padding: 28px; width: 100%; max-width: 400px; position: relative; overflow: hidden; background: var(--bg-2); border: 1px solid rgba(255,255,255,0.08); }
.hero-code::before { content: ''; position: absolute; inset: -1px; border-radius: 21px; padding: 1px; background: linear-gradient(135deg, rgba(99,102,241,0.4), transparent 60%, rgba(236,72,153,0.4)); mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: exclude; -webkit-mask-composite: xor; pointer-events: none; }
.code-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.code-dots { display: flex; gap: 8px; }
.code-dots span { width: 12px; height: 12px; border-radius: 50%; }
.code-dots span:nth-child(1) { background: #ef4444; }
.code-dots span:nth-child(2) { background: #f59e0b; }
.code-dots span:nth-child(3) { background: #22c55e; }
.code-title { font-size: 13px; color: var(--text-3); font-family: 'Fira Code', monospace; margin-left: auto; }
.code-body { font-family: 'Courier New', monospace; font-size: 13px; line-height: 1.9; color: var(--text-2); overflow-x: auto; }
.code-body .kw { color: #c792ea; }
.code-body .var { color: #82aaff; }
.code-body .prop { color: #ffcb6b; }
.code-body .str { color: #c3e88d; }
.code-body .fn { color: #82aaff; }
.code-body .cls { color: #ffcb6b; }

.scroll-hint { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--text-3); font-size: 13px; z-index: 10; animation: scrollHint 2s ease infinite; }
@keyframes scrollHint { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
.mouse { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.15); border-radius: 12px; position: relative; }
.wheel { width: 4px; height: 8px; background: var(--primary); border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scrollWheel 2s infinite; }
@keyframes scrollWheel { 0%,100%{opacity:1;top:8px} 50%{opacity:0;top:20px} }

/* About */
.about-section { background: var(--bg-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.about-card-large { border-radius: var(--radius); padding: 36px; position: relative; overflow: hidden; margin-bottom: 32px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.about-card-large::before { content: ''; position: absolute; top: 0; right: 0; width: 200px; height: 200px; background: radial-gradient(circle, rgba(99,102,241,0.1), transparent 70%); }
.acl-icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: var(--gradient); color: var(--white); border-radius: 16px; font-size: 24px; margin-bottom: 20px; }
.about-card-large h3 { font-size: 22px; color: var(--white); margin-bottom: 12px; }
.about-card-large p { color: var(--text-2); line-height: 1.7; }
.about-intro { font-size: 17px; color: var(--text-2); line-height: 1.8; margin-bottom: 32px; }
.about-intro strong { color: var(--primary-light); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.af-item { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; transition: all 0.3s ease; }
.af-item:hover { background: rgba(99,102,241,0.08); border-color: rgba(99,102,241,0.2); transform: translateX(8px); }
.afi-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--gradient-2); color: var(--white); border-radius: 10px; font-size: 14px; }
.af-item span { font-weight: 500; color: var(--text); }

.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.acard { border-radius: var(--radius); padding: 30px 24px; text-align: center; transition: all 0.4s ease; cursor: pointer; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.acard:hover { transform: translateY(-12px); border-color: rgba(99,102,241,0.25); box-shadow: var(--shadow-lg); }
.acard-icon { width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; background: rgba(99,102,241,0.1); color: var(--primary-light); border-radius: 20px; font-size: 28px; margin: 0 auto 18px; transition: all 0.4s ease; }
.acard:hover .acard-icon { background: var(--gradient); color: var(--white); transform: scale(1.1) rotate(-5deg); }
.acard h4 { font-size: 18px; color: var(--white); margin-bottom: 8px; }
.acard p { font-size: 14px; color: var(--text-3); }

/* Services */
.services-section { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { border-radius: 26px; padding: 38px 30px; position: relative; overflow: hidden; transition: all 0.4s ease; cursor: pointer; background: var(--bg-2); border: 1px solid rgba(255,255,255,0.06); }
.service-card:hover { transform: translateY(-14px); border-color: rgba(99,102,241,0.3); box-shadow: var(--shadow-lg); }
.sc-glow { position: absolute; width: 250px; height: 250px; background: radial-gradient(circle, rgba(99,102,241,0.08), transparent 70%); top: -120px; right: -120px; opacity: 0; transition: opacity 0.4s ease; }
.service-card:hover .sc-glow { opacity: 1; }
.sc-number { position: absolute; top: 24px; right: 28px; font-family: 'Space Grotesk', sans-serif; font-size: 56px; font-weight: 800; color: rgba(255,255,255,0.03); line-height: 1; }
.sc-icon { width: 68px; height: 68px; display: flex; align-items: center; justify-content: center; background: rgba(99,102,241,0.1); color: var(--primary-light); border-radius: 20px; font-size: 26px; margin-bottom: 22px; transition: all 0.4s ease; }
.service-card:hover .sc-icon { background: var(--gradient); color: var(--white); transform: scale(1.1) rotate(-5deg); }
.service-card h3 { font-size: 22px; color: var(--white); margin-bottom: 12px; }
.service-card > p { font-size: 15px; color: var(--text-2); margin-bottom: 22px; line-height: 1.7; }
.sc-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.sc-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); }
.sc-features i { color: var(--primary); font-size: 12px; }
.sc-link { display: inline-flex; align-items: center; gap: 10px; color: var(--primary-light); font-weight: 600; font-size: 15px; transition: all 0.3s ease; }
.sc-link:hover { gap: 16px; color: var(--white); }
.sc-link i { font-size: 12px; transition: transform 0.3s ease; }
.sc-link:hover i { transform: translateX(4px); }

/* Portfolio */
.portfolio-section { background: var(--bg-2); }
.portfolio-filter { display: flex; justify-content: center; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-btn { display: flex; align-items: center; gap: 8px; padding: 12px 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 50px; font-size: 14px; font-weight: 500; color: var(--text-2); cursor: pointer; transition: all 0.3s ease; font-family: inherit; }
.filter-btn:hover, .filter-btn.active { background: var(--gradient-2); border-color: transparent; color: var(--white); transform: scale(1.05); }
.fb-count { display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 22px; background: rgba(255,255,255,0.08); border-radius: 11px; font-size: 11px; font-weight: 600; }
.filter-btn.active .fb-count { background: rgba(255,255,255,0.2); }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-item { border-radius: 24px; overflow: hidden; transition: all 0.5s ease; }
.portfolio-item.hidden { opacity: 0; transform: scale(0.8); pointer-events: none; position: absolute; }
.pi-inner { border-radius: 24px; overflow: hidden; transition: all 0.4s ease; background: var(--bg-2); border: 1px solid rgba(255,255,255,0.06); }
.portfolio-item:hover .pi-inner { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.pi-image { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.pi-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-item:hover .pi-image img { transform: scale(1.15); }
.pi-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(15,23,42,0.9) 100%); display: flex; align-items: flex-end; justify-content: center; padding: 28px; opacity: 0; transition: opacity 0.4s ease; }
.portfolio-item:hover .pi-overlay { opacity: 1; }
.pi-actions { display: flex; gap: 12px; transform: translateY(20px); transition: transform 0.4s ease 0.1s; }
.portfolio-item:hover .pi-actions { transform: translateY(0); }
.piaction { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--white); color: var(--bg); border-radius: 12px; font-size: 16px; transition: all 0.3s ease; }
.piaction:hover { background: var(--primary); color: var(--white); transform: scale(1.1); }
.pi-content { padding: 22px; }
.pi-category { display: inline-block; padding: 6px 14px; background: rgba(99,102,241,0.1); color: var(--primary-light); font-size: 12px; font-weight: 600; border-radius: 20px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.pi-content h4 { font-size: 19px; color: var(--white); margin-bottom: 6px; }
.pi-content p { font-size: 14px; color: var(--text-3); }

/* Testimonials */
.testimonials-section { background: var(--bg); }
.testimonials-container { position: relative; }
.testimonials-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--bg-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 24px; padding: 36px 30px 30px; position: relative; transition: all 0.4s ease; }
.testimonial-card:hover { transform: translateY(-8px); border-color: rgba(99,102,241,0.2); box-shadow: var(--shadow-lg); }
.tc-quote { position: absolute; top: 24px; right: 28px; font-size: 32px; color: rgba(99,102,241,0.15); }
.tc-text { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 28px; min-height: 80px; }
.tc-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.tca-initial { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--gradient-2); color: var(--white); border-radius: 14px; font-size: 16px; font-weight: 700; flex-shrink: 0; }
.tca-info h4 { font-size: 16px; color: var(--white); margin-bottom: 2px; }
.tca-info span { font-size: 13px; color: var(--text-3); }
.tcr-rating { margin-left: auto; display: flex; gap: 3px; }
.tcr-rating i { color: #f59e0b; font-size: 12px; }
.testimonials-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.tn-btn { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; color: var(--white); font-size: 16px; cursor: pointer; transition: all 0.3s ease; }
.tn-btn:hover { background: var(--primary); border-color: var(--primary); transform: scale(1.1); }
.tn-dots { display: flex; gap: 8px; }
.tn-dot { width: 8px; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.1); cursor: pointer; transition: all 0.3s ease; }
.tn-dot.active { background: var(--primary); width: 24px; }

/* Contact */
.contact-section { background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-card { display: flex; align-items: center; gap: 18px; padding: 24px; border-radius: var(--radius); transition: all 0.3s ease; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.ci-card:hover { transform: translateX(10px); border-color: rgba(99,102,241,0.2); }
.cic-icon { width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; background: rgba(99,102,241,0.1); color: var(--primary-light); border-radius: 16px; font-size: 20px; }
.cic-content h4 { font-size: 16px; color: var(--white); margin-bottom: 4px; }
.cic-content p { font-size: 14px; color: var(--text-2); }
.ci-socials h4 { font-size: 16px; color: var(--white); margin-bottom: 16px; }
.cis-links { display: flex; gap: 10px; }
.cisl { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; color: var(--text-2); font-size: 18px; transition: all 0.3s ease; cursor: pointer; }
.cisl:hover { background: var(--gradient-2); border-color: transparent; color: var(--white); transform: translateY(-5px); }
.ci-cta { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-radius: var(--radius); background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.cic-text h3 { font-size: 18px; color: var(--white); margin-bottom: 4px; }
.cic-text p { font-size: 14px; color: var(--text-2); }

.contact-form { border-radius: 26px; padding: 36px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.cf-header { margin-bottom: 28px; }
.cf-header h3 { font-size: 22px; color: var(--white); margin-bottom: 8px; }
.cf-header p { font-size: 14px; color: var(--text-3); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-group { margin-bottom: 20px; }
.cf-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.cf-input-wrap { position: relative; }
.cf-input-wrap i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-3); font-size: 14px; z-index: 1; }
.cf-input-wrap input, .cf-input-wrap select, .cf-input-wrap textarea { width: 100%; padding: 14px 16px 14px 44px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; font-size: 14px; font-family: inherit; color: var(--text); transition: all 0.3s ease; }
.cf-input-wrap textarea { padding: 14px 16px; min-height: 120px; resize: vertical; }
.cf-input-wrap input:focus, .cf-input-wrap select:focus, .cf-input-wrap textarea:focus { outline: none; border-color: var(--primary); background: rgba(99,102,241,0.05); box-shadow: 0 0 0 3px rgba(99,102,241,0.15); }
.cf-input-wrap input::placeholder, .cf-input-wrap textarea::placeholder { color: var(--text-3); }
.cf-input-wrap select { cursor: pointer; appearance: none; }
.cf-input-wrap select option { background: var(--bg-2); }

/* Footer */
.footer { background: var(--bg); padding: 80px 0 30px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand .fp-logo { margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: var(--text-3); line-height: 1.7; }
.footer-links h4 { font-size: 16px; color: var(--white); margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--text-3); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; }
.footer-bottom p { font-size: 13px; color: var(--text-3); }

/* Indicator */
.fp-indicator { position: fixed; right: 28px; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.fpi-bar { width: 4px; height: 100px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.fpib-progress { width: 100%; height: 0; background: var(--gradient); border-radius: 4px; transition: height 0.3s ease; }
.fpi-dots { display: flex; flex-direction: column; gap: 10px; }
.fpi-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 2px solid transparent; transition: all 0.3s ease; }
.fpi-dot.active { background: var(--primary); border-color: rgba(255,255,255,0.3); transform: scale(1.3); box-shadow: 0 0 10px rgba(99,102,241,0.4); }

/* Back to Top */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: var(--gradient-2); color: var(--white); border-radius: 14px; font-size: 18px; box-shadow: 0 8px 30px rgba(99,102,241,0.3); opacity: 0; visibility: hidden; transition: all 0.4s ease; z-index: 999; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px) scale(1.1); }

/* Reveal Animations */
.reveal-up, .reveal-left, .reveal-right { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0,0); }

/* Responsive */
@media (max-width: 1200px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; padding-top: 100px; }
    .hero-visual { order: -1; margin-bottom: 40px; }
    .hero-description { margin: 0 auto 40px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .services-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-track { grid-template-columns: repeat(2, 1fr); }
    .testimonial-card:last-child { display: none; }
}
@media (max-width: 992px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .fp-menu { display: none; }
    .fp-indicator { display: none; }
}
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 100px 0; }
    .services-grid, .portfolio-grid, .testimonials-track { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .about-cards { grid-template-columns: 1fr 1fr; }
    .cf-row { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .stat-divider { width: 50px; height: 1px; }
    .floating-elements { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .about-cards { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}