/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg: #0a0a0f; --bg2: #12121a; --bg3: #1a1a2e;
    --text: #f0f0f5; --text2: #a0a0b8; --text3: #6b6b80;
    --amber: #f59e0b; --amber-d: #d97706; --coral: #f97316;
    --teal: #06b6d4; --purple: #8b5cf6; --pink: #ec4899;
    --card: rgba(255,255,255,0.04); --border: rgba(255,255,255,0.08);
    --radius: 16px; --radius-sm: 8px;
    --font: 'Outfit', sans-serif; --font2: 'Space Grotesk', sans-serif;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-gradient { background: linear-gradient(135deg, var(--amber), var(--coral), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-retro { font-style: italic; color: var(--amber); -webkit-text-fill-color: var(--amber); }
.text-digital { color: var(--teal); -webkit-text-fill-color: var(--teal); }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: all 0.4s ease; }
.navbar.scrolled { background: rgba(10,10,15,0.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 10px 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-link { font-size: 0.9rem; font-weight: 500; color: var(--text2); transition: color 0.3s; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--amber); transition: width 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.cta-link { background: linear-gradient(135deg, var(--amber), var(--coral)); color: #000 !important; -webkit-text-fill-color: #000; padding: 8px 20px; border-radius: 100px; font-weight: 600; }
.cta-link::after { display: none; }
.cta-link:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(245,158,11,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 120px 24px 80px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.gradient-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5; animation: orbFloat 8s ease-in-out infinite; }
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, var(--amber), transparent 70%); top: -10%; right: -5%; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, var(--teal), transparent 70%); bottom: -10%; left: -5%; animation-delay: -3s; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, var(--purple), transparent 70%); top: 40%; left: 50%; animation-delay: -5s; }
@keyframes orbFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -20px) scale(1.1); } 66% { transform: translate(-20px, 20px) scale(0.9); } }
.grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 900px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--border); padding: 8px 20px; border-radius: 100px; font-size: 0.85rem; color: var(--amber); font-weight: 500; margin-bottom: 28px; animation: fadeUp 0.8s ease forwards; }
.badge-dot { width: 8px; height: 8px; background: var(--amber); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }
.hero-title { font-family: var(--font2); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 24px; animation: fadeUp 0.8s ease 0.1s both; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text2); max-width: 650px; margin: 0 auto 36px; animation: fadeUp 0.8s ease 0.2s both; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.3s both; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 100px; font-family: var(--font); font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--amber), var(--coral)); color: #000; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,158,11,0.4); }
.btn-outline { border: 1.5px solid var(--border); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.btn-arrow { width: 18px; height: 18px; transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-full { width: 100%; justify-content: center; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 56px; animation: fadeUp 0.8s ease 0.4s both; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font2); font-size: 2.5rem; font-weight: 700; color: var(--amber); }
.stat-suffix { font-family: var(--font2); font-size: 1.5rem; font-weight: 700; color: var(--amber); }
.stat-label { display: block; font-size: 0.8rem; color: var(--text3); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text3); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; animation: fadeUp 0.8s ease 0.5s both; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--amber), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 1; height: 40px; } 50% { opacity: 0.3; height: 20px; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--amber); margin-bottom: 16px; }
.section-title { font-family: var(--font2); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.section-desc { color: var(--text2); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-lead { font-size: 1.15rem; color: var(--text); margin-bottom: 16px; }
.about-text p { color: var(--text2); margin-bottom: 24px; }
.about-highlights { display: flex; flex-direction: column; gap: 20px; }
.highlight-item { display: flex; gap: 16px; align-items: flex-start; }
.highlight-icon { width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(6,182,212,0.15)); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.highlight-icon svg { width: 22px; height: 22px; stroke: var(--amber); }
.highlight-item h4 { font-size: 1rem; margin-bottom: 4px; }
.highlight-item p { font-size: 0.9rem; color: var(--text3); margin: 0; }
.about-visual { position: relative; display: flex; gap: 20px; justify-content: center; }
.visual-card { width: 200px; height: 260px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; transition: transform 0.4s ease; overflow: hidden; }
.visual-card:hover { transform: translateY(-8px); }
.card-1 { transform: rotate(-5deg); }
.card-2 { transform: rotate(5deg); }
.card-1:hover { transform: rotate(-5deg) translateY(-8px); }
.card-2:hover { transform: rotate(5deg) translateY(-8px); }
.card-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--amber); margin-bottom: 16px; }
.retro-art { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.halftone-circle { width: 80px; height: 80px; border-radius: 50%; background: radial-gradient(circle, var(--amber) 20%, transparent 20%, transparent 40%, var(--amber) 40%, var(--amber) 45%, transparent 45%); animation: spin 20s linear infinite; }
.retro-lines span { display: block; height: 3px; background: var(--amber); border-radius: 2px; }
.retro-lines span:nth-child(1) { width: 60px; }
.retro-lines span:nth-child(2) { width: 80px; }
.retro-lines span:nth-child(3) { width: 50px; }
.retro-lines span:nth-child(4) { width: 70px; }
.retro-lines span:nth-child(5) { width: 40px; }
.retro-lines { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.digital-art { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; }
.digi-ring { position: absolute; border-radius: 50%; border: 2px solid; }
.ring-1 { width: 100px; height: 100px; border-color: var(--teal); animation: spin 8s linear infinite; }
.ring-2 { width: 70px; height: 70px; border-color: var(--purple); animation: spin 6s linear infinite reverse; border-style: dashed; }
.ring-3 { width: 40px; height: 40px; border-color: var(--pink); animation: spin 4s linear infinite; }
.digi-core { width: 16px; height: 16px; background: var(--teal); border-radius: 50%; box-shadow: 0 0 20px var(--teal); z-index: 1; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.visual-connector { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); width: 100px; }

/* ===== SERVICES ===== */
.services { background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; transition: all 0.4s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--amber), var(--coral)); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(245,158,11,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-number { font-family: var(--font2); font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.04); position: absolute; top: 12px; right: 20px; }
.service-icon { width: 56px; height: 56px; background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(249,115,22,0.1)); border: 1px solid rgba(245,158,11,0.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon svg { width: 28px; height: 28px; stroke: var(--amber); }
.service-card h3 { font-family: var(--font2); font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.service-card p { color: var(--text2); font-size: 0.92rem; line-height: 1.6; margin-bottom: 16px; }
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.service-tags span { font-size: 0.75rem; padding: 4px 12px; background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.15); border-radius: 100px; color: var(--amber); font-weight: 500; }

/* ===== PORTFOLIO ===== */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-item { border-radius: var(--radius); overflow: hidden; background: var(--card); border: 1px solid var(--border); transition: all 0.4s ease; cursor: pointer; }
.portfolio-item:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.item-wide { grid-column: span 2; }
.portfolio-visual { height: 220px; background: var(--bg3); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.portfolio-pattern { display: flex; align-items: center; justify-content: center; gap: 20px; position: relative; width: 100%; height: 100%; }
.p-text { font-family: var(--font2); font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.06); position: absolute; }
.p-shape { position: relative; z-index: 1; }
.p-circle { width: 60px; height: 60px; border-radius: 50%; border: 3px solid var(--accent, var(--amber)); animation: spin 10s linear infinite; }
.p-rect { width: 40px; height: 40px; border: 3px solid var(--accent, var(--amber)); transform: rotate(45deg); animation: spin 15s linear infinite reverse; }
.p-triangle { width: 0; height: 0; border-left: 30px solid transparent; border-right: 30px solid transparent; border-bottom: 52px solid var(--accent, var(--pink)); opacity: 0.6; }
.p-dot { width: 20px; height: 20px; background: var(--accent, var(--pink)); border-radius: 50%; box-shadow: 0 0 20px var(--accent, var(--pink)); }
.p-hexagon { width: 50px; height: 50px; border: 3px solid var(--accent, var(--teal)); clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); background: rgba(6,182,212,0.1); }
.p-line { width: 60px; height: 3px; background: linear-gradient(90deg, var(--accent, var(--teal)), transparent); }
.p-wave { width: 60px; height: 30px; border-bottom: 3px solid var(--accent, var(--purple)); border-radius: 0 0 50% 50%; }
.p-star { width: 24px; height: 24px; background: var(--accent, var(--purple)); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.portfolio-info { padding: 20px 24px; }
.portfolio-cat { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--amber); }
.portfolio-info h3 { font-family: var(--font2); font-size: 1.1rem; margin-top: 4px; }

/* ===== REVIEWS ===== */
.reviews { background: var(--bg2); }
.review-badge-large { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 48px; margin-top: 24px; }
.review-percent { font-family: var(--font2); font-size: 3rem; font-weight: 800; background: linear-gradient(135deg, var(--amber), var(--coral)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.review-text { font-size: 0.95rem; color: var(--text2); }
.review-stars { font-size: 1.5rem; color: var(--amber); letter-spacing: 4px; }
.review-count { font-size: 0.8rem; color: var(--text3); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: all 0.3s ease; }
.review-card:hover { transform: translateY(-4px); border-color: rgba(245,158,11,0.2); }
.review-stars-small { color: var(--amber); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-card p { color: var(--text2); font-size: 0.95rem; font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--amber), var(--coral)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #000; font-size: 1rem; }
.review-author strong { display: block; font-size: 0.95rem; }
.review-author span { font-size: 0.8rem; color: var(--text3); }

/* ===== CONTACT ===== */
.contact-wrapper { max-width: 600px; margin: 0 auto; text-align: center; }
.contact-info p { color: var(--text2); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: all 0.3s ease; }
.contact-item:hover { border-color: var(--amber); transform: translateX(4px); }
.contact-icon { width: 44px; height: 44px; min-width: 44px; background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(249,115,22,0.15)); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 20px; height: 20px; stroke: var(--amber); }
.contact-label { font-size: 0.75rem; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; }
.contact-item strong { font-size: 0.95rem; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 14px 18px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-family: var(--font); font-size: 0.95rem; transition: border-color 0.3s; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--amber); }
.contact-form select { appearance: none; cursor: pointer; }
.contact-form textarea { resize: vertical; min-height: 100px; }

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 0 24px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--text3); font-size: 0.9rem; margin-top: 12px; max-width: 300px; }
.footer-links h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; color: var(--text); }
.footer-links a { display: block; font-size: 0.85rem; color: var(--text3); padding: 4px 0; transition: color 0.3s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--text3); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .item-wide { grid-column: span 2; }
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--bg2); flex-direction: column; justify-content: center; gap: 24px; padding: 40px; transition: right 0.4s ease; border-left: 1px solid var(--border); }
    .nav-links.open { right: 0; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .stat-divider { width: 40px; height: 1px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { order: -1; }
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .item-wide { grid-column: span 1; }
    .reviews-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
}
