:root {
  --bg: #050512;
  --bg-soft: #0a0a1d;
  --card: rgba(16, 16, 44, 0.72);
  --line: rgba(145, 114, 255, 0.2);
  --text: #f7f7ff;
  --muted: #b6b6cf;
  --cyan: #13d9ff;
  --blue: #3978ff;
  --purple: #8f32ff;
  --pink: #ff2bd6;
  --shadow: 0 30px 80px rgba(30, 10, 90, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 12%, rgba(36, 93, 255, .14), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(191, 37, 255, .16), transparent 28%),
    var(--bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.page-glow { position: fixed; width: 360px; height: 360px; border-radius: 50%; filter: blur(110px); pointer-events: none; opacity: .18; z-index: -1; }
.glow-one { background: var(--blue); left: -120px; top: 25%; }
.glow-two { background: var(--pink); right: -120px; top: 58%; }

.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(5,5,18,.68); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-wrap { height: 78px; display: flex; align-items: center; gap: 34px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { width: 44px; height: 44px; object-fit: contain; border-radius: 12px; }
.brand strong { display: block; font-family: 'Orbitron', sans-serif; font-size: 17px; letter-spacing: 2px; }
.brand span { display: block; font-size: 9px; letter-spacing: 5px; color: #d9d5ee; margin-top: 2px; }
.nav { display: flex; gap: 28px; }
.nav a { color: #d2d0e3; font-size: 14px; transition: .25s; }
.nav a:hover { color: white; }
.menu-toggle { display: none; background: transparent; color: white; border: 0; font-size: 26px; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 14px; font-weight: 700; font-size: 14px; transition: .25s; border: 1px solid transparent; }
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 0 16px; font-size: 13px; }
.btn-primary { background: linear-gradient(100deg, var(--cyan), var(--blue) 42%, var(--purple) 74%, var(--pink)); box-shadow: 0 12px 35px rgba(100, 52, 255, .35); }
.btn-outline { border-color: rgba(172, 148, 255, .38); background: rgba(255,255,255,.025); }
.btn-ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.08); }

.hero { min-height: 760px; padding: 155px 0 90px; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent); opacity: .5; }
.hero-grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(101,73,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(101,73,255,.15) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent); transform: perspective(500px) rotateX(65deg) scale(1.5) translateY(160px); }
.hero-content { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 52px; }
.eyebrow, .section-label { display: inline-flex; color: #bcaeff; text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: 2px; margin-bottom: 18px; }
.hero h1 { font-family: 'Orbitron', sans-serif; font-size: clamp(44px, 5.4vw, 76px); line-height: 1.03; margin: 0; letter-spacing: -2px; }
.hero h1 span { background: linear-gradient(90deg, var(--cyan), var(--blue), #c02cff, var(--pink)); -webkit-background-clip: text; color: transparent; }
.hero-copy > p { color: var(--muted); font-size: 18px; line-height: 1.75; max-width: 650px; margin: 26px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; color: #b8b6cb; font-size: 12px; margin-top: 24px; }

.hero-visual { min-height: 540px; display: grid; place-items: center; position: relative; }
.hero-visual img { width: min(470px, 95%); filter: drop-shadow(0 0 32px rgba(78, 116, 255, .35)); position: relative; z-index: 2; }
.visual-ring { position: absolute; border: 1px solid rgba(96, 137, 255, .25); border-radius: 50%; animation: spin 18s linear infinite; }
.visual-ring::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 18px var(--pink); position: absolute; top: 10%; left: 20%; }
.ring-one { width: 450px; height: 450px; }
.ring-two { width: 540px; height: 540px; animation-direction: reverse; animation-duration: 26s; }
.floating-card { position: absolute; z-index: 3; padding: 14px 18px; border-radius: 14px; background: rgba(8,8,30,.82); border: 1px solid rgba(133, 108, 255,.32); backdrop-filter: blur(14px); box-shadow: var(--shadow); }
.floating-card strong, .floating-card span { display: block; }
.floating-card strong { color: white; font-size: 14px; }
.floating-card span { color: var(--muted); font-size: 11px; margin-top: 4px; }
.card-one { left: -10px; top: 120px; }
.card-two { right: -10px; bottom: 110px; }

.stats-section { margin-top: -30px; position: relative; z-index: 4; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat-card { padding: 24px; border: 1px solid var(--line); background: rgba(10,10,32,.8); border-radius: 18px; backdrop-filter: blur(16px); }
.stat-card strong { display: block; font-family: 'Orbitron', sans-serif; font-size: 22px; background: linear-gradient(90deg, var(--cyan), var(--pink)); -webkit-background-clip: text; color: transparent; }
.stat-card span { display: block; color: var(--muted); font-size: 12px; margin-top: 8px; }

.section { padding: 110px 0; }
.section-alt { background: linear-gradient(180deg, rgba(13,13,36,.74), rgba(5,5,18,.4)); border-block: 1px solid rgba(255,255,255,.05); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.section h2 { font-family: 'Orbitron', sans-serif; font-size: clamp(32px, 4vw, 52px); line-height: 1.12; margin: 0 0 22px; }
.section-copy p, .section-heading p { color: var(--muted); line-height: 1.8; font-size: 16px; }
.text-link { color: #c4b6ff; font-weight: 700; display: inline-block; margin-top: 12px; }
.about-panel { padding: 12px; border-radius: 24px; background: linear-gradient(135deg, rgba(44,133,255,.3), rgba(182,47,255,.2)); border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); }
.about-panel img { border-radius: 18px; aspect-ratio: 16/9; object-fit: cover; }
.section-heading { max-width: 760px; margin-bottom: 45px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 30px; border-radius: 20px; background: linear-gradient(180deg, rgba(18,18,50,.8), rgba(9,9,28,.78)); border: 1px solid rgba(134, 104, 255,.16); transition: .28s; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(116, 152, 255, .48); box-shadow: 0 22px 60px rgba(45, 28, 100,.3); }
.service-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(18, 217, 255,.16), rgba(190, 35, 255,.2)); border: 1px solid rgba(154, 113, 255,.26); font-size: 22px; }
.service-card h3 { font-size: 19px; margin: 22px 0 10px; }
.service-card p { color: var(--muted); line-height: 1.7; font-size: 14px; margin: 0; }

.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature { display: flex; gap: 18px; padding: 28px; border-radius: 18px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07); }
.feature > span { font-family: 'Orbitron'; font-size: 24px; color: #8ab8ff; }
.feature h3 { margin: 0 0 8px; font-size: 18px; }
.feature p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }

.cta-section { padding: 20px 0 110px; }
.cta-box { padding: 54px; border-radius: 28px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 45px; align-items: center; background: linear-gradient(135deg, rgba(25, 39, 95,.72), rgba(69, 14, 92,.72)); border: 1px solid rgba(134, 124, 255,.35); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: var(--pink); filter: blur(100px); opacity: .16; right: -60px; top: -80px; }
.cta-box h2 { margin: 0 0 14px; font-family: 'Orbitron'; font-size: clamp(30px, 4vw, 46px); }
.cta-box p { color: #d0cee0; line-height: 1.7; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 2; }
.site-link { text-align: center; color: #cdc5ff; font-weight: 700; padding-top: 8px; }

.footer { padding: 35px 0; border-top: 1px solid rgba(255,255,255,.07); background: #04040e; }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 46px; height: 46px; object-fit: contain; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-family: 'Orbitron'; font-size: 13px; }
.footer-brand span, .footer p { color: #87859b; font-size: 11px; margin-top: 5px; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, #16d875, #0aa958); box-shadow: 0 12px 30px rgba(14, 188, 97,.34); z-index: 60; font-size: 26px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .desktop-cta { display: none; }
  .hero-content, .split, .cta-box { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { min-height: 460px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1160px); }
  .menu-toggle { display: block; }
  .nav { position: absolute; top: 78px; left: 14px; right: 14px; display: none; flex-direction: column; gap: 0; background: rgba(7,7,22,.96); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 10px; }
  .nav.open { display: flex; }
  .nav a { padding: 14px; }
  .hero { padding-top: 125px; }
  .hero h1 { font-size: 42px; }
  .hero-visual { min-height: 380px; }
  .ring-one { width: 330px; height: 330px; }
  .ring-two { width: 390px; height: 390px; }
  .floating-card { display: none; }
  .services-grid, .features-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .cta-box { padding: 34px 24px; }
  .footer-wrap { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .brand span { letter-spacing: 3px; }
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; }
  .ring-one { width: 280px; height: 280px; }
  .ring-two { width: 330px; height: 330px; }
}
