/* ===== PROMOLANCER SHARED STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --bg: #04040a;
  --bg2: #08080f;
  --bg3: #0e0e1a;
  --surface: #12121e;
  --surface2: #1a1a2a;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.13);
  --accent: #00c6ff;
  --accent2: #0072ff;
  --gold: #ffd166;
  --green: #06d6a0;
  --red: #ef233c;
  --text: #f0f0f8;
  --text2: #8888aa;
  --text3: #4a4a6a;
  --nav-h: 76px;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-ui: 'Syne', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

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

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(4,4,10,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.site-header.scrolled { background: rgba(4,4,10,0.99); }

/* LOGO */
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img-wrap {
  height: 42px; display: flex; align-items: center;
}
.logo-img-wrap img { height: 42px; width: auto; object-fit: contain; }
.logo-text-fallback {
  font-family: var(--font-head); font-size: 26px; letter-spacing: 1px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* NAV */
nav.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { list-style: none; display: flex; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: block; padding: 0 16px; height: var(--nav-h); line-height: var(--nav-h);
  font-family: var(--font-ui); font-size: 13px; font-weight: 600;
  letter-spacing: 0.4px; text-transform: uppercase;
  color: var(--text2); transition: color 0.2s; white-space: nowrap;
}
.nav-link:hover, .nav-item:hover .nav-link, .nav-link.active { color: var(--accent); }
.nav-link.has-dropdown::after {
  content: '▾'; margin-left: 5px; font-size: 10px; vertical-align: middle; transition: transform 0.2s;
}
.nav-item:hover .nav-link.has-dropdown::after { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  position: absolute; top: calc(var(--nav-h) - 1px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--surface); border: 1px solid var(--border2);
  border-top: 2px solid var(--accent); border-radius: 0 0 14px 14px;
  padding: 20px 24px 24px; min-width: 280px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown-label { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.dropdown-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.dropdown-list li a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 7px;
  font-size: 13.5px; color: var(--text2); transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.dropdown-list li a::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--text3); flex-shrink: 0; transition: background 0.15s; }
.dropdown-list li a:hover { background: rgba(0,198,255,0.08); color: var(--text); }
.dropdown-list li a:hover::before { background: var(--accent); }

/* TALK BTN */
.talk-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: 100px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-family: var(--font-ui); font-size: 13px; font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s; flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,114,255,0.35);
}
.talk-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,114,255,0.5); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* MOBILE NAV */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--bg); padding: var(--nav-h) 5vw 40px;
  overflow-y: auto; flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav-section { margin-bottom: 28px; }
.mobile-nav-title { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.mobile-nav-list { list-style: none; }
.mobile-nav-list a { display: block; padding: 10px 0; font-size: 15px; color: var(--text2); border-bottom: 1px solid var(--border); transition: color 0.15s; }
.mobile-nav-list a:hover { color: var(--text); }

/* PAGE TOP PADDING */
.page-body { padding-top: var(--nav-h); }

/* SECTION HELPERS */
.section { padding: 90px 5vw; position: relative; }
.section-bg2 { background: var(--bg2); }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.section-label::before { content: ''; width: 22px; height: 1px; background: var(--accent); }
.section-title { font-family: var(--font-head); font-size: clamp(38px, 5vw, 68px); line-height: 1; color: var(--text); margin-bottom: 16px; }
.section-desc { font-size: 16px; color: var(--text2); max-width: 540px; font-weight: 300; }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-family: var(--font-ui); font-size: 14px; font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(0,114,255,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,114,255,0.5); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px;
  border: 1px solid var(--border2); color: var(--text2);
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: var(--text); }

/* CARDS */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--border2); transform: translateY(-3px); }

/* FOOTER */
.site-footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 72px 5vw 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-brand p { font-size: 14px; color: var(--text3); line-height: 1.8; margin-top: 14px; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.social-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.social-icon:hover { background: rgba(0,198,255,0.12); border-color: rgba(0,198,255,0.3); transform: translateY(-2px); }
.footer-col-title { font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text3); transition: color 0.15s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--text3); }
.footer-bottom a { color: var(--accent); }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: calc(var(--nav-h) + 60px) 5vw 80px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,114,255,0.07) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 20% 70%, rgba(0,198,255,0.05) 0%, transparent 60%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px,transparent 1px), linear-gradient(90deg,var(--border) 1px,transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%); }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; border-radius: 100px; background: rgba(0,198,255,0.1); border: 1px solid rgba(0,198,255,0.25); font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin-bottom: 28px; }
.hero h1 { font-family: var(--font-head); font-size: clamp(54px, 9vw, 115px); line-height: 0.92; color: var(--text); margin-bottom: 8px; }
.hero h1 .accent-line { color: var(--accent); display: block; }
.hero h1 .stroke-line { -webkit-text-stroke: 2px rgba(240,240,248,0.2); color: transparent; display: block; }
.hero-sub { font-size: 17px; color: var(--text2); max-width: 500px; margin: 28px 0 44px; font-weight: 300; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 44px; margin-top: 70px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-head); font-size: 44px; color: var(--text); line-height: 1; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 12px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; }

/* MARQUEE */
.marquee-wrap { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; background: var(--bg3); }
.marquee-track { display: flex; gap: 44px; width: max-content; animation: marquee 30s linear infinite; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item { display: flex; align-items: center; gap: 12px; font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); white-space: nowrap; }
.marquee-dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }

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

/* FORM */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text2); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 13px 18px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border2);
  color: var(--text); font-family: var(--font-body); font-size: 15px;
  outline: none; transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--accent); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text3); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select option { background: var(--surface); }

/* PAGE HERO (inner pages) */
.page-hero { padding: calc(var(--nav-h) + 60px) 5vw 60px; background: var(--bg2); border-bottom: 1px solid var(--border); text-align: center; }
.page-hero .section-label { justify-content: center; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(44px, 6vw, 80px); color: var(--text); margin: 0 auto 16px; }
.page-hero p { font-size: 16px; color: var(--text2); max-width: 540px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 20px; font-size: 13px; color: var(--text3); }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: var(--text3); }

/* ALERT */
.alert { padding: 14px 18px; border-radius: 10px; font-size: 14px; margin-bottom: 16px; }
.alert-success { background: rgba(6,214,160,0.1); border: 1px solid rgba(6,214,160,0.3); color: var(--green); }
.alert-error { background: rgba(239,35,60,0.1); border: 1px solid rgba(239,35,60,0.3); color: var(--red); }

/* RESPONSIVE */
@media(max-width:1024px){ nav.main-nav{display:none;} .hamburger{display:flex;} .footer-grid{grid-template-columns:1fr 1fr;} }
@media(max-width:640px){ .footer-grid{grid-template-columns:1fr;} .hero h1{font-size:52px;} }
