/* COMPUADONAI 2026 — PREMIUM CORPORATE DESIGN */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&display=swap');

:root {
  --bg: #020617;
  --glass: rgba(15, 23, 42, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --primary: #3b82f6;
  --primary-glow: rgba(59, 130, 246, 0.5);
  --accent: #ef4444;
  --wa: #25D366;
  --text: #f8fafc;
  --muted: #94a3b8;
  --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
  font-family: 'Outfit', sans-serif; 
  background: var(--bg); 
  color: var(--text); 
  overflow-x: hidden; 
  line-height: 1.6;
  background-image: radial-gradient(circle at 50% 0%, rgba(30, 58, 138, 0.15) 0%, transparent 50%);
}
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Background Orbs */
.ambient-bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(120px); animation: float 25s infinite alternate ease-in-out; }
.orb-1 { width: 50vw; height: 50vw; background: rgba(30, 64, 175, 0.2); top: -15%; left: -10%; }
.orb-2 { width: 40vw; height: 40vw; background: rgba(153, 27, 27, 0.15); bottom: -10%; right: -10%; animation-delay: -5s; }
.orb-3 { width: 30vw; height: 30vw; background: rgba(6, 78, 59, 0.1); top: 30%; left: 40%; animation-delay: -10s; }
@keyframes float { 0% { transform: translate(0, 0); } 100% { transform: translate(6%, 10%); } }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 999; background: rgba(2, 6, 23, 0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); transition: 0.4s; }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo-text { font-size: 1.7rem; font-weight: 900; letter-spacing: -1.5px; }
.logo-accent { color: var(--accent); }
.nav-menu { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-link { padding: 10px 18px; border-radius: 12px; font-weight: 600; font-size: 0.95rem; color: var(--muted); transition: 0.3s; }
.nav-link:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }
.nav-btn.wa-btn { background: var(--wa); color: #fff; font-weight: 800; border-radius: 14px; box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.4); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--glass); border: 1px solid var(--glass-border); padding: 10px 24px; border-radius: 99px; font-size: 0.9rem; font-weight: 700; margin-bottom: 32px; backdrop-filter: blur(10px); }
.pulse-dot { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 15px var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } }
.hero-title { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900; line-height: 1.1; letter-spacing: -3px; margin-bottom: 24px; }
.text-gradient { background: linear-gradient(135deg, #fff 30%, #3b82f6 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-desc { color: var(--muted); font-size: 1.25rem; max-width: 650px; margin: 0 auto 48px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-glow { padding: 18px 36px; border-radius: 16px; font-weight: 800; font-size: 1rem; transition: 0.4s; position: relative; overflow: hidden; }
.wa-btn-glow { background: var(--wa); color: #fff; box-shadow: 0 15px 30px -10px rgba(37, 211, 102, 0.6); }
.wa-btn-glow:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.8); }
.btn-glass { padding: 18px 36px; border-radius: 16px; font-weight: 700; background: var(--glass); border: 1px solid var(--glass-border); color: #fff; backdrop-filter: blur(10px); transition: 0.4s; }
.btn-glass:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); }

/* Section Headers */
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px; letter-spacing: -1px; }
.section-desc { color: var(--muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto 64px; }

/* Catalog Cards */
.catalog-section { padding: 100px 0; }
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 24px; }
.catalog-card { background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(25px); border-radius: 28px; padding: 32px; display: flex; gap: 24px; align-items: flex-start; transition: 0.4s; scroll-margin-top: 120px; box-shadow: var(--card-shadow); }
.catalog-card:hover { transform: translateY(-10px); border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8); }
.catalog-img { width: 100px; height: 100px; flex-shrink: 0; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); background: #000; display: flex; align-items: center; justify-content: center; }
.catalog-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.catalog-card:hover .catalog-img img { transform: scale(1.15); }
.catalog-info h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; color: #fff; }
.catalog-divider { width: 45px; height: 4px; background: var(--primary); border-radius: 2px; margin-bottom: 20px; }
.catalog-info p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.catalog-wa-btn { display: inline-block; padding: 10px 20px; background: rgba(37, 211, 102, 0.1); border: 1px solid var(--wa); color: var(--wa); border-radius: 12px; font-weight: 700; font-size: 0.9rem; transition: 0.3s; }
.catalog-wa-btn:hover { background: var(--wa); color: #fff; }
.catalog-gallery-btn { display: inline-block; padding: 10px 20px; background: rgba(59, 130, 246, 0.1); border: 1px solid var(--primary); color: var(--primary); border-radius: 12px; font-weight: 700; font-size: 0.9rem; transition: 0.3s; margin-left: 10px; cursor: pointer; }
.catalog-gallery-btn:hover { background: var(--primary); color: #fff; }

/* Systems Section */
.systems-section { padding: 120px 0; background: radial-gradient(circle at 50% 50%, rgba(30, 58, 138, 0.05) 0%, transparent 100%); }
.systems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.system-card { background: rgba(15, 23, 42, 0.5); border: 1px solid rgba(255, 255, 255, 0.05); backdrop-filter: blur(30px); border-radius: 36px; padding: 56px 36px; text-align: center; transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; box-shadow: var(--card-shadow); }
.system-card:hover { transform: translateY(-15px); border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 40px 80px -25px rgba(0, 0, 0, 0.9); }
.sys-icon { font-size: 4rem; margin-bottom: 28px; display: inline-block; filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4)); }
.system-card h3 { font-size: 1.75rem; font-weight: 900; margin-bottom: 14px; color: #fff; }
.system-card p { color: var(--muted); line-height: 1.8; font-size: 1.05rem; margin-bottom: 36px; }
.sys-actions { display: flex; flex-direction: column; gap: 14px; }
.sys-btn { padding: 16px; border-radius: 16px; font-weight: 800; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1.5px; transition: 0.3s; text-align: center; }
.btn-main { background: var(--primary); color: #fff; box-shadow: 0 10px 25px -5px var(--primary-glow); }
.btn-main:hover { background: #2563eb; transform: translateY(-2px); box-shadow: 0 15px 35px -5px var(--primary-glow); }
.btn-outline { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); }

/* About Section */
.about-section { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.about-card { background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(25px); border-radius: 32px; padding: 48px; text-align: center; transition: 0.4s; box-shadow: var(--card-shadow); }
.about-card:hover { transform: translateY(-10px); border-color: rgba(59, 130, 246, 0.3); }
.about-icon { font-size: 3.5rem; margin-bottom: 24px; display: block; }
.about-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; color: #fff; }
.about-card p { color: var(--muted); font-size: 1.1rem; line-height: 1.8; }

/* Footer */
.vip-footer { background: #010413; padding: 100px 0 40px; border-top: 1px solid var(--glass-border); }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; margin-bottom: 80px; }
.footer-brand h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 20px; letter-spacing: -1.5px; }
.footer-brand p { color: var(--muted); font-size: 1.1rem; line-height: 1.8; max-width: 400px; }
.footer-contact h3 { font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: #fff; margin-bottom: 32px; }
.footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.footer-contact li { display: flex; gap: 16px; color: var(--muted); font-size: 1.05rem; }
.footer-contact li span { color: var(--primary); font-size: 1.4rem; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 40px; text-align: center; color: var(--muted); font-size: 0.95rem; }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(2, 6, 23, 0.9); backdrop-filter: blur(30px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: 0.4s; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content { background: rgba(15, 23, 42, 0.9); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 40px; padding: 60px; width: 95%; max-width: 1000px; position: relative; transform: scale(0.95); transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); max-height: 90vh; overflow-y: auto; }
.modal-overlay.active .modal-content { transform: scale(1); }
.modal-close { position: absolute; top: 30px; right: 30px; width: 45px; height: 45px; background: rgba(255, 255, 255, 0.05); border-radius: 50%; border: none; color: #fff; font-size: 2rem; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: var(--accent); transform: rotate(90deg); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.gallery-item { border-radius: 20px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); position: relative; background: #000; }
.gallery-item img { width: 100%; height: 180px; object-fit: cover; transition: 0.5s; display: block; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-title { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(transparent, rgba(0,0,0,0.9)); padding: 20px 15px 10px; color: #fff; font-weight: 700; text-align: center; font-size: 0.9rem; }

/* Animations */
.animate-fade-in-up { opacity: 0; transform: translateY(30px); transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.animate-fade-in-up.active { opacity: 1; transform: translateY(0); }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(59, 130, 246, 0.3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

@media (max-width: 900px) {
  .footer-content { grid-template-columns: 1fr; gap: 60px; }
  .nav-menu { display: none; }
  .hero-title { font-size: 3.5rem; }
}
