/* ═══════════════════════════════════════════════════
   SupportMC — Stylesheet
   ═══════════════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
    --bg: #000000;
    --bg-elevated: #0a0a0a;
    --bg-dark: #050505;
    --glass: rgba(0,255,65,.04);
    --glass-hover: rgba(0,255,65,.08);
    --glass-border: rgba(0,255,65,.12);
    --green: #00ff41;
    --green-dim: #008f11;
    --green-glow: rgba(0,255,65,.3);
    --blue: #00ff41;
    --blue-light: #00ff41;
    --blue-glow: rgba(0,255,65,.25);
    --purple: #00cc33;
    --text: #ffffff;
    --text-dim: #b0b0b0;
    --text-dimmer: #666666;
    --radius: 20px;
    --radius-sm: 14px;
    --nav-h: 52px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }

/* ─── Base ─── */
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale }
body { background: var(--bg); color: var(--text); font-family: 'Share Tech Mono', 'Courier New', monospace; font-weight: 400; line-height: 1.5; overflow-x: hidden; cursor: none }
img { max-width: 100%; display: block }
a { color: inherit; text-decoration: none }

/* ─── Layout ─── */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px }

/* ═══════════ NAVBAR ═══════════ */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 999; height: var(--nav-h); background: transparent; transition: background .4s ease, backdrop-filter .4s ease }
.nav.scrolled { background: rgba(0,0,0,.85); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px) }
.nav-wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; height: 100%; display: flex; align-items: center; justify-content: space-between }
.nav-brand { font-size: 1.3rem; font-weight: 700; letter-spacing: -.3px }
.nav-brand span { color: var(--green); text-shadow: 0 0 12px rgba(0,255,65,.4) }
.nav-links { display: flex; align-items: center; gap: 1.8rem }
.nav-links a:not(.fa-linkedin-in):not(.lang-switch) { font-size: .9rem; font-weight: 500; color: #ffffff; opacity: .9; transition: opacity .2s }
.nav-links a:not(.fa-linkedin-in):not(.lang-switch):hover { opacity: 1 }
.nav-links .fa-linkedin-in { font-size: 1.1rem; opacity: .8; transition: opacity .2s, color .2s }
.nav-links .fa-linkedin-in:hover { opacity: 1; color: var(--green) }
.nav-sep { width: 1px; height: 16px; background: #444444; opacity: .5 }

/* ─── Language Switch ─── */
.lang-switch { display: flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; cursor: pointer; background: none; border: 1px solid rgba(0,255,65,.3); border-radius: 980px; padding: 6px 14px; color: #ffffff; transition: all .2s ease; letter-spacing: .02em }
.lang-switch:hover { border-color: var(--green); color: var(--green); box-shadow: 0 0 12px rgba(0,255,65,.2) }
.lang-switch .active { color: var(--green); font-weight: 700 }

/* ─── Mobile Nav Toggle ─── */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--green); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; transform-origin: center }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg) }
.nav-toggle.open span:nth-child(2) { opacity: 0 }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg) }

/* ═══════════ HERO ═══════════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: transparent; z-index: 2 }
.hero-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 80px }
.hero-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(0,255,65,.06) 0%, transparent 60%), linear-gradient(180deg, rgba(0,0,0,0) 0%, var(--bg) 100%) }
.hero-content { position: relative; z-index: 2; max-width: 540px }
.tagline { display: inline-block; font-size: .85rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #ffffff; margin-bottom: 16px }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 700; line-height: 1.05; letter-spacing: -.03em; margin-bottom: 20px; color: #ffffff; text-shadow: 0 0 30px rgba(255,255,255,.3), 0 0 60px rgba(255,255,255,.1) }
.text-gradient { background: linear-gradient(135deg, var(--green), #00cc33); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text }
.hero-desc { font-size: clamp(1rem, 2vw, 1.25rem); color: #cccccc; line-height: 1.6; max-width: 480px; margin-bottom: 32px }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap }

/* ─── Buttons ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border-radius: 980px; font-size: .88rem; font-weight: 500; cursor: pointer; transition: all .3s ease; border: none; white-space: nowrap }
.btn-blue { background: var(--green); color: #000 }
.btn-blue:hover { background: #00cc33; transform: scale(1.03); box-shadow: 0 0 20px rgba(0,255,65,.4) }
.btn-glass { background: var(--glass); color: var(--green); border: 1px solid var(--glass-border); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px) }
.btn-glass:hover { background: var(--glass-hover); transform: scale(1.03); box-shadow: 0 0 15px rgba(0,255,65,.2) }

/* ─── Hero Extras ─── */
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2 }
.hero-visual { position: relative; display: flex; justify-content: center }
.hero-img-wrapper { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,.15) }
.hero-img-wrapper img { width: 100%; height: auto; display: block; aspect-ratio: 4/3; object-fit: cover }
.hero-img-glow { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,255,65,.15) 0%, transparent 50%); pointer-events: none }

/* ─── Scroll Mouse ─── */
.scroll-mouse { width: 22px; height: 34px; border: 2px solid rgba(0,255,65,.3); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px }
.scroll-dot { width: 3px; height: 8px; background: rgba(0,255,65,.5); border-radius: 3px; animation: scrollDot 2s ease-in-out infinite }

@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 1 }
    50% { transform: translateY(8px); opacity: .3 }
}

/* ═══════════ SECTIONS ═══════════ */
.section { padding: 100px 0; position: relative; z-index: 2; background: var(--bg) }
.section-dark { background: var(--bg-dark) }
#services { min-height: calc(100vh - var(--nav-h)) }
.section-hd { text-align: center; max-width: 600px; margin: 0 auto 64px }
.section-hd h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; letter-spacing: -.03em; margin-bottom: 12px; color: #ffffff; text-shadow: 0 0 20px rgba(255,255,255,.2) }
.section-sub { font-size: 1.1rem; color: #cccccc; line-height: 1.6 }

/* ═══════════ CARDS ═══════════ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px }
.card { background: var(--bg-elevated); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 36px 28px 32px; text-align: center; transition: transform .4s cubic-bezier(.25,.46,.45,.94), border-color .4s ease, box-shadow .4s ease }
.card:hover { transform: translateY(-6px); border-color: rgba(0,255,65,.4); box-shadow: 0 0 30px rgba(0,255,65,.1), 0 12px 40px rgba(0,255,65,.08) }
.card-icon { width: 56px; height: 56px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--green); background: rgba(0,255,65,.08); border-radius: 16px; transition: transform .3s ease }
.card:hover .card-icon { transform: scale(1.1) }
.card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -.01em; color: #ffffff }
.card p { font-size: .88rem; color: #b0b0b0; line-height: 1.65 }

/* ═══════════ ABOUT ═══════════ */
.about-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 64px; align-items: center }
.about-text h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; letter-spacing: -.03em; margin-bottom: 24px; color: #ffffff; text-shadow: 0 0 20px rgba(255,255,255,.2) }
.about-text p { font-size: 1rem; color: #b0b0b0; line-height: 1.7; margin-bottom: 16px }
.about-list { list-style: none; margin-top: 28px }
.about-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: .95rem; font-weight: 500; color: #ffffff }
.about-list i { color: var(--green); font-size: 1rem }
.team-card { background: var(--bg-elevated); border: 1px solid var(--glass-border); border-radius: var(--radius); overflow: hidden; transition: transform .4s ease, box-shadow .4s ease }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 0 30px rgba(0,255,65,.1), 0 20px 60px rgba(0,0,0,.4) }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover }
.team-info { padding: 20px 24px; text-align: center }
.team-info strong { display: block; font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; color: #ffffff }
.team-info span { font-size: .85rem; color: var(--green); font-weight: 500 }

/* ═══════════ FULL IMAGE ═══════════ */
.section-fullimg { padding: 40px 0 100px; position: relative; z-index: 2 }
.fullimg { position: relative; border-radius: var(--radius); overflow: hidden }
.fullimg img { width: 100%; aspect-ratio: 21/9; object-fit: cover; display: block }
.fullimg-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 28px; background: linear-gradient(transparent, rgba(0,0,0,.8)); font-size: .85rem; color: rgba(255,255,255,.7); font-weight: 500 }

/* ═══════════ CONTACT ═══════════ */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 720px; margin: 0 auto }
.contact-card { background: var(--bg-elevated); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 36px 24px; text-align: center; transition: transform .4s ease, border-color .4s ease; display: block }
.contact-card:hover { transform: translateY(-4px); border-color: rgba(0,255,65,.4); box-shadow: 0 0 25px rgba(0,255,65,.08) }
.contact-icon { width: 52px; height: 52px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--green); background: rgba(0,255,65,.08); border-radius: 50% }
.contact-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; color: #ffffff }
.contact-card p { font-size: .88rem; color: #b0b0b0 }

/* ═══════════ FOOTER ═══════════ */
.footer { border-top: 1px solid rgba(0,255,65,.1); padding: 20px 0; background: var(--bg); position: relative; z-index: 2 }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px }
.footer p { font-size: .8rem; color: #888888 }
.footer a:hover { color: var(--green) }
.footer-sub { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: #888888 }

/* ═══════════ TECH BANNER ═══════════ */
.tech-banner { position: relative; padding: 180px 0; overflow: hidden; z-index: 2 }
.tech-bg { position: absolute; inset: 0 }
.tech-bg img { width: 100%; height: 100%; object-fit: cover; animation: slowZoom 25s ease-in-out infinite alternate }
.tech-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.6) 100%) }
.tech-content { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto }
.tech-content h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -.03em; margin: 16px 0 20px; line-height: 1.1; color: #ffffff; text-shadow: 0 0 20px rgba(255,255,255,.2) }
.tech-content p { font-size: 1.1rem; color: #b0b0b0; line-height: 1.6; max-width: 600px; margin: 0 auto 48px }
.tech-stats { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap }
.stat { text-align: center; min-width: 120px }
.stat-num { display: block; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; background: linear-gradient(135deg, var(--green), #00cc33); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; text-shadow: 0 0 15px rgba(0,255,65,.3) }
.stat-label { font-size: .78rem; color: #b0b0b0; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; display: block }
.tech-glow { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(0,255,65,.1), transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); animation: glowPulse 4s ease-in-out infinite; pointer-events: none }

@keyframes slowZoom { from { transform: scale(1) } to { transform: scale(1.08) } }
@keyframes glowPulse { 0%, 100% { opacity: .6; transform: translate(-50%, -50%) scale(1) } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15) } }

/* ═══════════ ANIMATIONS ═══════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94) }
.reveal.visible { opacity: 1; transform: none }
.card-grid .reveal:nth-child(1) { transition-delay: 0s }
.card-grid .reveal:nth-child(2) { transition-delay: .06s }
.card-grid .reveal:nth-child(3) { transition-delay: .12s }
.card-grid .reveal:nth-child(4) { transition-delay: .18s }
.card-grid .reveal:nth-child(5) { transition-delay: .24s }
.card-grid .reveal:nth-child(6) { transition-delay: .3s }
.contact-grid .reveal:nth-child(1) { transition-delay: 0s }
.contact-grid .reveal:nth-child(2) { transition-delay: .08s }
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp .9s cubic-bezier(.25,.46,.45,.94) forwards }
.fade-up:nth-child(2) { animation-delay: .15s }
.fade-up:nth-child(3) { animation-delay: .3s }
.fade-up:nth-child(4) { animation-delay: .45s }

@keyframes fadeUp { to { opacity: 1; transform: none } }

/* ─── Custom Cursor ─── */
@media (max-width: 768px) { html, body { cursor: auto !important } }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
    .hero-wrap { grid-template-columns: 1fr; text-align: center }
    .hero-content { text-align: center }
    .hero-visual { order: -1; max-width: 400px; margin: 0 auto }
    .hero-cta { justify-content: center }
    .card-grid { grid-template-columns: repeat(2, 1fr) }
    .contact-grid { grid-template-columns: 1fr; max-width: 400px }
    .about-grid { grid-template-columns: 1fr; gap: 40px }
    .about-visual { order: -1; max-width: 340px; margin: 0 auto }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex }
    .nav-links { position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; flex-direction: column; align-items: flex-start; gap: 0; background: rgba(0,0,0,.95); backdrop-filter: saturate(180%) blur(24px); -webkit-backdrop-filter: saturate(180%) blur(24px); padding: 20px 24px; transform: translateX(100%); transition: transform .4s cubic-bezier(.25,.46,.45,.94) }
    .nav-links.open { transform: translateX(0) }
    .nav-links a { font-size: 1.6rem; font-weight: 600; padding: 14px 0; opacity: 1; color: #ffffff }
    .nav-sep { display: none }
    .nav-links a .fa-linkedin-in { font-size: 1.8rem; padding: 14px 0; color: #ffffff }
    .lang-switch { font-size: 1rem; padding: 10px 16px; margin-top: 8px }
    .hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem) }
    .hero-wrap { padding-top: calc(var(--nav-h) + 20px); padding-bottom: 60px }
    .hero-visual { max-width: 320px }
    .section { padding: 64px 0 }
    .tech-banner { padding: 120px 0 }
    .tech-stats { gap: 32px }
    .stat { min-width: 90px }
}

@media (max-width: 600px) {
    .card-grid, .contact-grid { grid-template-columns: 1fr }
    .footer-inner { flex-direction: column; text-align: center }
    .fullimg img { aspect-ratio: 16/9 }
}

/* ═══════════ ACCESSIBILITY ═══════════ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto }
    .reveal { opacity: 1; transform: none; transition: none }
    .fade-up { opacity: 1; transform: none; animation: none }
    .scroll-dot { animation: none }
    .tech-bg img { animation: none }
    .tech-glow { animation: none }
    html, body { cursor: auto !important }
}