* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, sans-serif; background: #0a0a0f; color: #e8e8f0; }
a { text-decoration: none; color: inherit; }

/* NAV */
nav { position: fixed; top: 0; width: 100%; background: rgba(10,10,15,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(99,102,241,0.2); z-index: 100; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.3px; }
.logo span { color: #818cf8; }
.nav-links { display: flex; gap: 2rem; font-size: 0.875rem; color: #a0a0b8; }
.nav-links a:hover { color: #e8e8f0; }
.nav-cta { background: #4f46e5; color: #fff; padding: 8px 18px; border-radius: 8px; font-size: 0.875rem; font-weight: 500; }
.nav-cta:hover { background: #4338ca; }
@media (max-width: 600px) { .nav-links { display: none; } }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 6rem 2rem 4rem; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(79,70,229,0.18) 0%, transparent 70%); }
.hero-badge { display: inline-block; background: rgba(79,70,229,0.15); border: 1px solid rgba(99,102,241,0.35); color: #a5b4fc; font-size: 0.78rem; font-weight: 500; padding: 5px 14px; border-radius: 999px; margin-bottom: 1.5rem; letter-spacing: 0.5px; text-transform: uppercase; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 1.25rem; }
.hero h1 .accent { color: #818cf8; }
.hero p { font-size: 1.1rem; color: #9090a8; max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: #4f46e5; color: #fff; padding: 13px 28px; border-radius: 10px; font-weight: 600; font-size: 0.95rem; transition: background 0.2s; }
.btn-primary:hover { background: #4338ca; }
.btn-secondary { border: 1px solid rgba(255,255,255,0.15); color: #c0c0d8; padding: 13px 28px; border-radius: 10px; font-weight: 500; font-size: 0.95rem; transition: border-color 0.2s, color 0.2s; }
.btn-secondary:hover { border-color: rgba(99,102,241,0.5); color: #e8e8f0; }

/* SECTIONS */
section { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.78rem; font-weight: 600; color: #818cf8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.8px; margin-bottom: 1rem; }
.section-sub { color: #8888a0; font-size: 1rem; max-width: 520px; line-height: 1.7; margin-bottom: 3rem; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.25rem; }
.service-card { background: #13131f; border: 1px solid rgba(99,102,241,0.15); border-radius: 16px; padding: 2rem; transition: border-color 0.2s, transform 0.2s; }
.service-card:hover { border-color: rgba(99,102,241,0.45); transform: translateY(-2px); }
.service-icon { width: 44px; height: 44px; background: rgba(79,70,229,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.service-icon svg { width: 22px; height: 22px; stroke: #818cf8; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; letter-spacing: -0.2px; }
.service-card p { font-size: 0.85rem; color: #7070a0; line-height: 1.65; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1.25rem; }
.tag { background: rgba(79,70,229,0.1); border: 1px solid rgba(99,102,241,0.2); color: #a5b4fc; font-size: 0.72rem; padding: 3px 9px; border-radius: 6px; }

/* ABOUT */
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 680px) { .about-wrapper { grid-template-columns: 1fr; } }
.about-visual { background: linear-gradient(135deg, rgba(79,70,229,0.2), rgba(129,140,248,0.08)); border: 1px solid rgba(99,102,241,0.2); border-radius: 20px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.about-initials { font-size: 5rem; font-weight: 900; color: #4f46e5; opacity: 0.5; letter-spacing: -4px; }
.about-content p { color: #8888a0; line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem; }
.stat { background: #13131f; border: 1px solid rgba(99,102,241,0.12); border-radius: 12px; padding: 1rem 1.25rem; }
.stat-num { font-size: 1.6rem; font-weight: 800; color: #818cf8; letter-spacing: -1px; }
.stat-label { font-size: 0.78rem; color: #6060a0; margin-top: 2px; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.pricing-card { background: #13131f; border: 1px solid rgba(99,102,241,0.15); border-radius: 16px; padding: 2rem; }
.pricing-card.featured { border-color: rgba(99,102,241,0.6); background: rgba(79,70,229,0.08); }
.pricing-badge { background: #4f46e5; color: #fff; font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 6px; margin-bottom: 1rem; display: inline-block; }
.pricing-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-desc { font-size: 0.82rem; color: #7070a0; margin-bottom: 1.5rem; line-height: 1.6; }
.price { font-size: 2rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 1.5rem; }
.price span { font-size: 0.9rem; font-weight: 400; color: #7070a0; }
.pricing-features { list-style: none; font-size: 0.83rem; color: #9090b0; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li::before { content: "✓  "; color: #818cf8; font-weight: 700; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.testimonial { background: #13131f; border: 1px solid rgba(99,102,241,0.12); border-radius: 16px; padding: 1.75rem; }
.testimonial-text { font-size: 0.9rem; color: #9090b0; line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(79,70,229,0.25); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700; color: #a5b4fc; }
.author-name { font-size: 0.85rem; font-weight: 600; }
.author-role { font-size: 0.75rem; color: #6060a0; }
.stars { color: #f59e0b; font-size: 0.75rem; margin-bottom: 0.75rem; }

/* CONTACT */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 680px) { .contact-wrapper { grid-template-columns: 1fr; } }
.contact-info p { color: #8888a0; font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.75rem; }
.contact-detail { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; font-size: 0.88rem; color: #a0a0b8; }
.contact-dot { width: 8px; height: 8px; background: #4f46e5; border-radius: 50%; flex-shrink: 0; }
.form { display: flex; flex-direction: column; gap: 1rem; }
.form input, .form textarea, .form select { background: #13131f; border: 1px solid rgba(99,102,241,0.2); color: #e8e8f0; border-radius: 10px; padding: 12px 14px; font-size: 0.9rem; font-family: inherit; outline: none; transition: border-color 0.2s; width: 100%; }
.form input:focus, .form textarea:focus { border-color: rgba(99,102,241,0.6); }
.form textarea { resize: vertical; min-height: 120px; }
.form input::placeholder, .form textarea::placeholder { color: #505070; }
.form button { background: #4f46e5; color: #fff; border: none; padding: 13px; border-radius: 10px; font-size: 0.95rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: background 0.2s; }
.form button:hover { background: #4338ca; }
.form-success { display: none; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #6ee7b7; border-radius: 10px; padding: 14px; font-size: 0.9rem; text-align: center; }

/* FOOTER */
footer { border-top: 1px solid rgba(99,102,241,0.1); text-align: center; padding: 2.5rem; font-size: 0.82rem; color: #505070; }
footer span { color: #818cf8; }

/* DIVIDER */
.divider { border: none; border-top: 1px solid rgba(99,102,241,0.08); max-width: 1100px; margin: 0 auto; }
