:root {
  --bg: #06060e;
  --bg2: #0a0a1a;
  --blue: #4f8ef7;
  --violet: #8b5cf6;
  --pink: #c084fc;
  --teal: #22d3ee;
  --white: #f0eeff;
  --gray: #6b6b8a;
  --grad: linear-gradient(135deg, #4f8ef7, #8b5cf6, #c084fc);
  --grad2: linear-gradient(135deg, #22d3ee, #4f8ef7, #8b5cf6);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* CURSOR */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--violet); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, background .3s;
  mix-blend-mode: screen;
  display: none;
}
.cursor-ring {
  position: fixed; width: 38px; height: 38px;
  border: 1.5px solid rgba(139,92,246,0.6);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .18s ease;
  display: none;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: linear-gradient(to bottom, rgba(6,6,14,0.97) 0%, transparent 100%);
  backdrop-filter: blur(0px);
}
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { width: 42px; height: 42px; object-fit: contain; border-radius: 50%; }
.logo-text {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem;
  letter-spacing: 0.04em; color: var(--white);
}
.logo-text span {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray); text-decoration: none; transition: color .3s;
}
.nav-links a:hover { color: var(--violet); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-cta, .btn-lang {
  font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 18px;
  background: var(--grad); color: #fff; text-decoration: none; border-radius: 3px;
  transition: opacity .3s, transform .2s;
  cursor: pointer;
  border: none;
}
.btn-lang {
    background: transparent;
    border: 1px solid rgba(139,92,246,0.5);
    color: var(--violet);
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* UPDATE BANNER */
.update-banner {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 150;
    width: 90%;
    max-width: 600px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--violet);
    font-size: 0.85rem;
    animation: fadeInDown 0.5s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translate(-50%, -20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* === SLIDER === */
.slider-wrapper {
  position: relative; width: 100%; height: 100vh; overflow: hidden;
}

/* BG orb mesh */
.mesh-bg {
  position: absolute; inset: -60px; z-index: 0; pointer-events: none;
  will-change: transform; transition: transform 0.1s linear;
}
.mesh-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.slide.active .mesh-orb { opacity: 1; }

.slide:nth-child(1) .orb-a { width:700px;height:700px;right:0;top:-10%;background:radial-gradient(circle,rgba(79,142,247,0.18),transparent 70%); }
.slide:nth-child(1) .orb-b { width:400px;height:400px;left:5%;bottom:0;background:radial-gradient(circle,rgba(139,92,246,0.15),transparent 70%); }

.slide:nth-child(2) .orb-a { width:600px;height:600px;right:5%;top:5%;background:radial-gradient(circle,rgba(34,211,238,0.18),transparent 70%); }
.slide:nth-child(2) .orb-b { width:350px;height:350px;left:10%;bottom:5%;background:radial-gradient(circle,rgba(79,142,247,0.12),transparent 70%); }

.slide:nth-child(3) .orb-a { width:650px;height:650px;right:-5%;top:0;background:radial-gradient(circle,rgba(192,132,252,0.18),transparent 70%); }
.slide:nth-child(3) .orb-b { width:380px;height:380px;left:5%;top:20%;background:radial-gradient(circle,rgba(139,92,246,0.15),transparent 70%); }

.slide:nth-child(4) .orb-a { width:580px;height:580px;right:10%;bottom:0;background:radial-gradient(circle,rgba(79,142,247,0.16),transparent 70%); }
.slide:nth-child(4) .orb-b { width:320px;height:320px;left:0;top:20%;background:radial-gradient(circle,rgba(34,211,238,0.12),transparent 70%); }

.slide:nth-child(5) .orb-a { width:700px;height:700px;right:0;top:10%;background:radial-gradient(circle,rgba(139,92,246,0.2),transparent 70%); }
.slide:nth-child(5) .orb-b { width:350px;height:350px;left:5%;bottom:5%;background:radial-gradient(circle,rgba(192,132,252,0.1),transparent 70%); }

/* grid */
.grid-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(139,92,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* noise */
body::after {
  content:''; position:fixed; inset:0; pointer-events:none; z-index:8000;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.02;
}

/* SLIDE */
.slide {
  position: absolute; inset: 0; display: flex; align-items: center;
  padding: 0 10vw; opacity: 0; pointer-events: none;
  transition: opacity 0.85s ease; overflow: hidden;
}
.slide.active { opacity: 1; pointer-events: all; }

/* SLIDE CONTENT */
.slide-content { position: relative; z-index: 10; max-width: 620px; }

.slide-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--violet); border: 1px solid rgba(139,92,246,0.35);
  padding: 5px 14px; margin-bottom: 28px; border-radius: 50px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease .2s, transform .7s ease .2s;
}
.slide-tag::before { content:''; width:6px; height:6px; background:var(--violet); border-radius:50%; animation:pulse 2s infinite; }
.slide.active .slide-tag { opacity:1; transform:translateY(0); }

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

.slide-title {
  font-family: 'Outfit', sans-serif; font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 800; line-height: 1.04; letter-spacing: -0.025em;
  color: var(--white); margin-bottom: 20px;
  opacity: 0; transform: translateY(35px);
  transition: opacity .8s ease .35s, transform .8s ease .35s;
}
.slide-title .grad {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.slide-title .grad2 {
  background: var(--grad2); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.slide.active .slide-title { opacity:1; transform:translateY(0); }

.slide-desc {
  font-size: 0.98rem; line-height: 1.78; color: var(--gray);
  max-width: 490px; margin-bottom: 40px; font-weight: 300;
  opacity: 0; transform: translateY(22px);
  transition: opacity .8s ease .5s, transform .8s ease .5s;
}
.slide.active .slide-desc { opacity:1; transform:translateY(0); }

.slide-btns {
  display: flex; gap: 16px; align-items: center;
  opacity: 0; transform: translateY(18px);
  transition: opacity .8s ease .65s, transform .8s ease .65s;
}
.slide.active .slide-btns { opacity:1; transform:translateY(0); }

.btn-primary {
  font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 13px 30px;
  background: var(--grad); color: #fff; text-decoration: none;
  border-radius: 3px; transition: opacity .3s, transform .2s;
  position: relative; overflow: hidden;
  display: inline-block;
  cursor: pointer;
  border: none;
}
.btn-primary::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg,rgba(255,255,255,0.15),transparent);
  opacity:0; transition:opacity .3s;
}
.btn-primary:hover { opacity:.9; transform:translateY(-2px); }
.btn-primary:hover::before { opacity:1; }

.btn-ghost {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(240,238,255,0.6); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .3s, gap .3s;
}
.btn-ghost:hover { color: var(--white); gap: 14px; }
.btn-ghost::after { content:'→'; }

/* STATS */
.slide-stats {
  display: flex; gap: 36px; margin-top: 46px;
  opacity: 0; transform: translateY(18px);
  transition: opacity .8s ease .8s, transform .8s ease .8s;
}
.slide.active .slide-stats { opacity:1; transform:translateY(0); }
.stat-num {
  font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-top: 4px; }

/* ICON CARD */
.icon-panel {
  position: absolute; right: 10%; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 300px;
  opacity: 0; transition: opacity .9s ease .4s;
  pointer-events: none;
}
.slide.active .icon-panel { opacity:1; }
.icon-card {
  background: rgba(139,92,246,0.06);
  border: 1px solid rgba(139,92,246,0.2);
  backdrop-filter: blur(24px);
  padding: 28px 26px; border-radius: 8px;
  position: relative; animation: floatCard 8s ease-in-out infinite;
}
.icon-card::before {
  content:''; position:absolute; inset:-1px; border-radius:8px;
  background: linear-gradient(135deg, rgba(79,142,247,0.4), transparent 50%, rgba(192,132,252,0.25));
  z-index:-1;
}
@keyframes floatCard { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-18px) rotate(1.5deg)} }
.ic-emoji { font-size: 2.2rem; margin-bottom: 14px; display:block; }
.ic-title { font-family:'Outfit',sans-serif; font-weight:700; font-size:.98rem; color:var(--white); margin-bottom:8px; }
.ic-sub { font-size:.78rem; color:var(--gray); line-height:1.65; }
.ic-tags { display:flex; gap:8px; flex-wrap:wrap; margin-top:16px; }
.ic-tag {
  font-size:.65rem; letter-spacing:.1em; text-transform:uppercase;
  padding:4px 10px; border-radius:50px;
  border: 1px solid rgba(139,92,246,0.3); color:var(--violet);
}

.geo {
  position: absolute; pointer-events: none; z-index: 2; opacity: 0;
  transition: opacity 1s ease; border-radius: 2px;
}
.slide.active .geo { opacity: 1; }
.geo-1 { width:120px;height:120px;right:20%;top:15%;border:1px solid rgba(79,142,247,0.15);transform:rotate(20deg);animation:rot1 18s linear infinite; }
.geo-2 { width:60px;height:60px;right:38%;bottom:18%;border:1px solid rgba(192,132,252,0.18);transform:rotate(45deg);animation:rot2 12s linear infinite; }
.geo-3 { width:30px;height:30px;right:14%;top:55%;background:rgba(139,92,246,0.08);animation:rot1 9s linear infinite reverse; }
@keyframes rot1 { to{transform:rotate(380deg)} }
@keyframes rot2 { to{transform:rotate(-360deg)} }

.hline {
  position: absolute; height: 1px; pointer-events: none; z-index: 2;
  background: linear-gradient(90deg, rgba(79,142,247,0), rgba(79,142,247,0.3), rgba(79,142,247,0));
}
.hline-1 { width:40%; right:8%; top:22%; }
.hline-2 { width:25%; right:15%; bottom:28%; }

/* CONTROLS */
.slider-controls {
  position: absolute; bottom: 40px; left: 10vw; z-index: 100;
  display: flex; align-items: center; gap: 20px;
}
.ctrl-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(139,92,246,0.35); background: transparent;
  color: var(--violet); font-size: 1rem; cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s;
}
.ctrl-btn:hover { background: rgba(139,92,246,0.12); border-color: var(--violet); }
.dots { display: flex; gap: 8px; align-items: center; }
.dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(139,92,246,0.3); cursor: none;
  transition: background .3s, transform .3s;
}
.dot.active { background: var(--violet); transform: scale(1.6); }
.progress-bar {
  position: absolute; bottom: 0; left: 0; height: 2px; z-index: 100;
  background: var(--grad); transition: width 0.1s linear;
}
.slide-counter {
  position: absolute; bottom: 48px; right: 10vw; z-index: 100;
  font-family: 'Outfit', sans-serif; font-size: 0.72rem; color: var(--gray); letter-spacing: 0.1em;
}
.slide-counter span { color: var(--violet); font-size: 1.1rem; font-weight: 700; }

/* === ABOUT / SERVICES === */
section.content-section { padding: 110px 10vw; position: relative; overflow: hidden; }

.s-tag {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--violet); padding-bottom: 4px;
  border-bottom: 1px solid rgba(139,92,246,0.5); margin-bottom: 18px;
}
.s-title {
  font-family: 'Outfit', sans-serif; font-size: clamp(2rem,4vw,3.4rem); font-weight: 800;
  line-height: 1.1; margin-bottom: 16px;
}
.s-title .grad { background:var(--grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.s-sub { font-size: .98rem; color: var(--gray); max-width: 520px; line-height: 1.8; font-weight: 300; }

/* services grid */
.srv-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 1px; margin-top: 56px;
  border: 1px solid rgba(139,92,246,0.12);
}
.srv-card {
  padding: 36px 28px; background: rgba(139,92,246,0.025);
  border-right: 1px solid rgba(139,92,246,0.08);
  border-bottom: 1px solid rgba(139,92,246,0.08);
  position: relative; transition: background .4s; overflow: hidden;
}
.srv-card::after {
  content:''; position:absolute; bottom:0; left:0; width:0; height:2px;
  background: var(--grad); transition: width .4s ease;
}
.srv-card:hover { background: rgba(139,92,246,0.07); }
.srv-card:hover::after { width: 100%; }
.sc-icon { font-size: 1.7rem; margin-bottom: 18px; display: block; }
.sc-title { font-family:'Outfit',sans-serif; font-size:.98rem; font-weight:700; color:var(--white); margin-bottom:8px; }
.sc-desc { font-size:.82rem; color:var(--gray); line-height:1.7; }

/* CTA */
.cta-section { padding: 100px 10vw; text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(ellipse 70% 60% at 50% 50%, rgba(139,92,246,0.08), transparent 70%);
}
.cta-title { font-family:'Outfit',sans-serif; font-size:clamp(2.4rem,5vw,4.2rem); font-weight:800; line-height:1.08; margin-bottom:22px; }
.cta-sub { font-size:.98rem; color: var(--gray); max-width:440px; margin:0 auto 44px; line-height:1.8; font-weight:300; }
.cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* footer */
footer {
  padding: 36px 10vw; border-top: 1px solid rgba(139,92,246,0.12);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-logo { display:flex; align-items:center; gap:8px; }
.footer-logo img { width:32px; height:32px; object-fit:contain; border-radius:50%; }
.footer-logo-text { font-family:'Outfit',sans-serif; font-weight:700; font-size:.9rem; }
.footer-logo-text span { background:var(--grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.footer-copy { font-size:.75rem; color:var(--gray); }
.footer-links { display:flex; gap:24px; }
.footer-links a { font-size:.75rem; color:var(--gray); text-decoration:none; transition:color .3s; }
.footer-links a:hover { color:var(--violet); }

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

/* shape layer parallax */
.shape-layer { position:absolute; inset:0; z-index:2; pointer-events:none; will-change:transform; transition:transform .1s linear; }

/* MODAL STYLES FROM ORIGINAL INDEX.HTML */
.modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(10px);
    display: none; align-items: center; justify-content: center;
    z-index: 1000; padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-card {
    background: var(--bg2); border: 1px solid rgba(139,92,246,0.2);
    padding: 40px; border-radius: 20px; max-width: 450px; width: 100%;
    position: relative; text-align: center;
}
.modal-close {
    position: absolute; top: 20px; right: 20px; background: none; border: none;
    color: var(--gray); font-size: 1.5rem; cursor: pointer;
}
.modal-contact-item {
    display: flex; align-items: center; gap: 15px; padding: 15px;
    background: rgba(255,255,255,0.03); border-radius: 12px;
    margin-bottom: 12px; text-decoration: none; color: white;
    transition: background 0.3s;
}
.modal-contact-item:hover { background: rgba(139,92,246,0.1); }
.contact-icon { background: var(--grad); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-info { text-align: left; flex: 1; }
.contact-info strong { display: block; font-size: 1rem; }
.contact-info span { color: var(--gray); font-size: 0.9rem; }

@media(max-width:900px){
  nav{padding:18px 24px;}
  .nav-links{display:none;}
  .icon-panel{display:none;}
  .geo{display:none;}
}

@media(min-width: 901px) {
  body { cursor: none; }
  .cursor, .cursor-ring { display: block; }
}