:root {
    --bg-deep: #0a0a0b;
    --bg-alt: #0c0c0e;
    --primary: #7c3aed;
    --primary-glow: rgba(124, 58, 237, 0.4);
    --secondary: #22d3ee;
    --secondary-glow: rgba(34, 211, 238, 0.4);
    --surface: #18181b;
    --surface-glass: rgba(24, 24, 27, 0.6);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --text-dim: #71717a;
    --glass-border: rgba(255, 255, 255, 0.05);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; cursor: none !important; }

#custom-cursor { width: 8px; height: 8px; background: white; border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; mix-blend-mode: difference; transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s; transform: translate(-50%, -50%); }
#cursor-follower { width: 30px; height: 30px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998; transition: transform 0.15s ease-out; transform: translate(-50%, -50%); }
.cursor-hover #custom-cursor { transform: translate(-50%, -50%) scale(8); background: var(--primary); opacity: 0.3; mix-blend-mode: normal; }
.cursor-hover #cursor-follower { opacity: 0; }

#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--primary), var(--secondary)); z-index: 9999; }

html { scroll-behavior: smooth; }
body { background-color: var(--bg-deep); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
body::before { content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: url('https://grainy-gradients.vercel.app/noise.svg'); opacity: 0.03; pointer-events: none; z-index: 5000; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-tag { color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 3px; font-size: 0.85rem; }
.section-title { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 700; margin-top: 16px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 32px; border-radius: 12px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: var(--transition); position: relative; z-index: 1; overflow: hidden; border: none; }
.btn .material-symbols-outlined { font-size: 1.2rem; }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 10px 30px var(--primary-glow); }
.btn-primary::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent); transform: translateX(-100%); transition: 0.6s; }
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { background: rgba(124, 58, 237, 0.9); }
.btn-primary:active { transform: scale(0.97); }
.btn-secondary { background: var(--surface); color: white; border: 1px solid var(--glass-border); }
.btn-secondary:hover { background: #27272a; border-color: rgba(255, 255, 255, 0.15); }
.magnetic-wrap { display: inline-block; }

/* Header */
header { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 2000; background: rgba(10, 10, 11, 0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(124, 58, 237, 0.1); }
nav { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-icon { width: 32px; height: 32px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; }
.logo-icon .material-symbols-outlined { font-size: 1.5rem; }
.logo-text { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; color: white; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; font-weight: 600; transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 50%; width: 0; height: 2px; background: linear-gradient(90deg, var(--primary), var(--secondary)); transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1), left 0.4s cubic-bezier(0.23, 1, 0.32, 1); border-radius: 2px; }
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-cta { background: var(--primary); color: white; padding: 10px 24px; border-radius: 100px; font-weight: 700; font-size: 0.9rem; text-decoration: none; border: none; box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2); transition: var(--transition); }
.nav-cta:hover { background: rgba(124, 58, 237, 0.9); }

/* Page Hero */
.page-hero { position: relative; padding: 180px 0 80px; overflow: hidden; }
.hero-grid-bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 2px 2px, rgba(124, 58, 237, 0.05) 1px, transparent 0); background-size: 40px 40px; }
.hero-visual-blur { position: absolute; top: 0; right: 0; width: 50%; height: 100%; opacity: 0.2; pointer-events: none; z-index: 0; }
.hero-blur-1 { position: absolute; top: 25%; right: 25%; width: 384px; height: 384px; background: var(--primary); border-radius: 50%; filter: blur(120px); }
.hero-blur-2 { position: absolute; bottom: 25%; right: 33%; width: 256px; height: 256px; background: var(--secondary); border-radius: 50%; filter: blur(100px); }
.page-hero-content { max-width: 700px; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: flex-start; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 24px; }
.contact-method { display: flex; align-items: center; gap: 16px; }
.contact-method-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(124, 58, 237, 0.1); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.contact-method small { font-size: 0.85rem; color: var(--text-dim); font-weight: 500; }
.contact-method strong { font-size: 1.1rem; font-weight: 700; }
.contact-form-wrap { background: var(--surface); padding: 40px; border-radius: 24px; border: 1px solid var(--glass-border); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3); }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--bg-deep); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 12px 16px; color: white; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; outline: none; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1), 0 0 20px rgba(124, 58, 237, 0.05); }
.form-group textarea { resize: vertical; }
.form-submit { width: 100%; background: var(--primary); color: white; font-weight: 700; padding: 16px; border-radius: 12px; border: none; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 10px 25px rgba(124, 58, 237, 0.25); transition: var(--transition); cursor: none !important; }
.form-submit:hover { background: rgba(124, 58, 237, 0.9); }

/* Footer */
footer { background: var(--bg-deep); border-top: 1px solid var(--glass-border); padding-top: 80px; padding-bottom: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 80px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-top: 16px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social-link { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-social-link:hover { background: var(--primary); color: white; border-color: var(--primary); }
.footer-col h6 { font-weight: 700; font-size: 0.95rem; margin-bottom: 24px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-col ul a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; border-top: 1px solid var(--glass-border); font-size: 0.8rem; color: var(--text-dim); }
.footer-bottom-love { display: flex; align-items: center; gap: 6px; }
.footer-bottom-love .material-symbols-outlined { font-size: 0.9rem; color: var(--primary); font-variation-settings: 'FILL' 1; }

/* Animations */
[data-reveal="fade-up"] { opacity: 0; transform: translateY(50px); transition: 1.2s cubic-bezier(0.23, 1, 0.32, 1); }
[data-reveal="fade-up"].active { opacity: 1; transform: translateY(0); }
[data-reveal="fade-left"] { opacity: 0; transform: translateX(-40px); transition: 1.2s cubic-bezier(0.23, 1, 0.32, 1); }
[data-reveal="fade-left"].active { opacity: 1; transform: translateX(0); }
[data-reveal="fade-right"] { opacity: 0; transform: translateX(40px); transition: 1.2s cubic-bezier(0.23, 1, 0.32, 1); }
[data-reveal="fade-right"].active { opacity: 1; transform: translateX(0); }
[data-reveal="scale-up"] { opacity: 0; transform: scale(0.92); transition: 1.2s cubic-bezier(0.23, 1, 0.32, 1); }
[data-reveal="scale-up"].active { opacity: 1; transform: scale(1); }

/* Service Detail Specific */
.service-detail-hero { position: relative; padding: 180px 0 80px; overflow: hidden; border-bottom: 1px solid var(--glass-border); }
.service-detail-hero .hero-icon { width: 72px; height: 72px; border-radius: 20px; background: rgba(34, 211, 238, 0.1); display: flex; align-items: center; justify-content: center; color: var(--secondary); margin-bottom: 24px; }
.service-detail-hero .hero-icon .material-symbols-outlined { font-size: 2.5rem; }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { background: var(--surface-glass); backdrop-filter: blur(8px); border: 1px solid var(--glass-border); padding: 32px; border-radius: 16px; transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); }
.benefit-card:hover { transform: translateY(-6px); border-color: rgba(124, 58, 237, 0.3); }
.benefit-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(124, 58, 237, 0.1); display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 20px; }
.benefit-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.process-step { position: relative; padding: 32px 24px; border-radius: 16px; background: var(--surface-glass); border: 1px solid var(--glass-border); text-align: center; }
.process-step::before { counter-increment: step; content: "0" counter(step); display: block; font-size: 2.5rem; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--secondary)); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 16px; }
.process-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.cta-banner { background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(34, 211, 238, 0.08)); border: 1px solid rgba(124, 58, 237, 0.2); border-radius: 24px; padding: 64px; text-align: center; }
.cta-banner h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 16px; }
.cta-banner p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }

.faq-item { background: var(--surface-glass); border: 1px solid var(--glass-border); border-radius: 12px; padding: 24px 32px; }
.faq-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.faq-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

.section-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity: 0.3; }

/* Responsive */
@media (max-width: 1024px) {
    .contact-layout { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .benefits-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 40px 24px; }
}
