/* ================================================
   WATS DIGITAL — DESIGN SYSTEM
   ================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --blue:   #0057FF;
  --blue2:  #003FBB;
  --cyan:   #00E5FF;
  --gold:   #FFB400;
  --navy:   #030e1f;
  --navy2:  #061629;
  --green:  #00C853;
  --red:    #F44336;
  --white:  #ffffff;
  --gray:   #8899aa;
  --light:  #f0f4ff;
  --border: rgba(0,87,255,.15);
  --shadow: 0 8px 40px rgba(0,87,255,.15);
  --radius: 14px;
  --radius-sm: 8px;
  --nav-h: 72px;
  --wa-h: 36px;
  --font-title: 'Bebas Neue', sans-serif;
  --font-body:  'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--white); color: var(--navy); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

#wa-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  background: #25D366; height: var(--wa-h);
  display: flex; align-items: center; overflow: hidden;
}
#wa-bar a {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 600; font-size: .875rem;
  white-space: nowrap; padding: 0 20px;
  animation: waTicker 30s linear infinite;
}
@keyframes waTicker {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-200%); }
}

#navbar {
  position: fixed; top: var(--wa-h); left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(3,14,31,.96); backdrop-filter: blur(12px);
  display: flex; align-items: center; padding: 0 5%;
  transition: background .3s, box-shadow .3s;
  border-bottom: 1px solid rgba(0,229,255,.08);
}
#navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.4); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; }
.nav-logo span { font-family: var(--font-title); font-size: 1.5rem; color: #fff; letter-spacing: 2px; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500;
  transition: color .2s, background .2s;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--cyan); background: rgba(0,229,255,.08); }
.dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy2); border: 1px solid rgba(0,87,255,.2);
  border-radius: var(--radius); min-width: 220px; padding: 8px;
  box-shadow: var(--shadow); z-index: 200;
}
.nav-links li:hover .dropdown { display: block; }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  color: rgba(255,255,255,.8); font-size: .875rem;
  transition: background .2s, color .2s;
}
.dropdown a:hover { background: rgba(0,87,255,.15); color: var(--cyan); }
.nav-cta {
  margin-left: 12px; background: var(--blue); color: #fff !important;
  padding: 9px 20px !important; border-radius: 50px !important; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--cyan) !important; color: var(--navy) !important; }
#hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; margin-left: auto; }
#mobile-menu {
  display: none; position: fixed;
  top: calc(var(--wa-h) + var(--nav-h)); left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 999; overflow-y: auto; padding: 20px;
}
#mobile-menu.open { display: block; }
#mobile-menu a { display: block; padding: 14px 16px; color: #fff; font-size: 1rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.08); }
#mobile-menu a:hover { color: var(--cyan); }

.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; overflow: hidden; color: #fff;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  background-size: cover; background-position: center;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(3,14,31,.85) 0%, rgba(0,57,180,.4) 100%);
}
.hero-content { position: relative; z-index: 10; padding: 0 8%; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,229,255,.15); border: 1px solid rgba(0,229,255,.3);
  color: var(--cyan); padding: 6px 16px; border-radius: 50px;
  font-size: .8rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-title); font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1; letter-spacing: 2px; margin-bottom: 20px;
}
.hero-title span { color: var(--cyan); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 36px; max-width: 540px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: all .3s; }
.hero-dot.active { background: var(--cyan); width: 28px; border-radius: 4px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; font-size: .95rem;
  font-weight: 600; cursor: pointer; border: none; transition: all .25s; text-decoration: none;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--cyan); color: var(--navy); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #ffc933; transform: translateY(-2px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: .85rem; }

section { padding: 80px 8%; }
.section-dark { background: var(--navy); color: #fff; }
.section-light { background: var(--light); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block; background: rgba(0,87,255,.1); color: var(--blue);
  padding: 5px 16px; border-radius: 50px; font-size: .78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.section-dark .section-label { background: rgba(0,229,255,.1); color: var(--cyan); }
.section-title {
  font-family: var(--font-title); font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1; letter-spacing: 1px; margin-bottom: 16px;
}
.section-title span { color: var(--blue); }
.section-dark .section-title span { color: var(--cyan); }
.section-sub { color: var(--gray); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.section-dark .section-sub { color: rgba(255,255,255,.6); }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--border); transition: all .3s; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blue); }
.card-dark { background: var(--navy2); border-color: rgba(0,229,255,.1); }
.card-dark:hover { border-color: var(--cyan); box-shadow: 0 8px 40px rgba(0,229,255,.1); }
.card-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(0,87,255,.1); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 18px; }
.card-dark .card-icon { background: rgba(0,229,255,.1); }
.card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.card-dark .card-title { color: #fff; }
.card-text { color: var(--gray); font-size: .875rem; line-height: 1.65; }
.card-dark .card-text { color: rgba(255,255,255,.6); }
.card-price { margin-top: 16px; font-size: 1.3rem; font-weight: 800; color: var(--blue); }
.card-dark .card-price { color: var(--cyan); }
.card-badge { position: absolute; top: 16px; right: 16px; background: var(--gold); color: var(--navy); padding: 3px 10px; border-radius: 50px; font-size: .72rem; font-weight: 700; }

.stats-bar { background: var(--blue); color: #fff; display: flex; flex-wrap: wrap; padding: 0; }
.stat-item { flex: 1; min-width: 140px; padding: 30px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-title); font-size: 2.5rem; color: var(--cyan); }
.stat-label { font-size: .85rem; opacity: .85; margin-top: 4px; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: .875rem; margin-bottom: 8px; }
.form-dark .form-label { color: rgba(255,255,255,.8); }
.form-control {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: .95rem; transition: border-color .2s;
  background: #fff; color: var(--navy);
}
.form-control:focus { outline: none; border-color: var(--blue); }
.form-dark .form-control { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.15); color: #fff; }
.form-dark .form-control::placeholder { color: rgba(255,255,255,.35); }
.form-dark .form-control:focus { border-color: var(--cyan); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

footer { background: #020b17; color: rgba(255,255,255,.7); padding: 60px 8% 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 32px; height: 2px; background: var(--cyan); }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background .2s; }
.footer-socials a:hover { background: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .8rem; }
.footer-bottom span { color: var(--cyan); }

.modal-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(3,14,31,.92); backdrop-filter: blur(8px); align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: 20px; padding: 40px; max-width: 560px; width: 90%; max-height: 90vh; overflow-y: auto; position: relative; animation: modalIn .3s ease; }
@keyframes modalIn { from { transform: translateY(30px) scale(.97); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--gray); }
.modal-title { font-family: var(--font-title); font-size: 1.8rem; margin-bottom: 6px; }
.modal-price { color: var(--blue); font-weight: 700; font-size: 1.2rem; margin-bottom: 24px; }

.tabs { display: flex; gap: 4px; background: var(--light); border-radius: 50px; padding: 4px; margin-bottom: 32px; flex-wrap: wrap; }
.tab-btn { flex: 1; min-width: 90px; padding: 10px 14px; border-radius: 50px; border: none; background: none; cursor: pointer; font-size: .875rem; font-weight: 600; color: var(--gray); transition: all .2s; text-align: center; }
.tab-btn.active { background: var(--blue); color: #fff; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.countdown { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin: 24px 0; }
.cd-unit { text-align: center; }
.cd-num { font-family: var(--font-title); font-size: 3.5rem; line-height: 1; color: var(--cyan); background: rgba(0,229,255,.1); border: 1px solid rgba(0,229,255,.25); border-radius: 12px; padding: 16px 24px; min-width: 90px; display: block; }
.cd-label { font-size: .75rem; color: rgba(255,255,255,.5); letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; }

.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--blue); color: #fff; }
th { padding: 14px 16px; text-align: left; font-size: .85rem; letter-spacing: .5px; }
td { padding: 13px 16px; font-size: .9rem; border-bottom: 1px solid var(--border); }
tbody tr:hover { background: var(--light); }
.dark-table thead { background: rgba(0,229,255,.15); color: var(--cyan); }
.dark-table td { border-color: rgba(255,255,255,.08); color: rgba(255,255,255,.8); }
.dark-table tbody tr:hover { background: rgba(255,255,255,.05); }

.badge { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: .75rem; font-weight: 700; }
.badge-green { background: rgba(0,200,83,.15); color: var(--green); }
.badge-red   { background: rgba(244,67,54,.15); color: var(--red); }
.badge-gold  { background: rgba(255,180,0,.15); color: var(--gold); }
.badge-blue  { background: rgba(0,87,255,.15); color: var(--blue); }

.app-layout { display: flex; min-height: calc(100vh - var(--wa-h) - var(--nav-h)); }
.app-sidebar { width: 240px; flex-shrink: 0; background: var(--navy); color: #fff; padding: 24px 0; display: flex; flex-direction: column; position: sticky; top: calc(var(--wa-h) + var(--nav-h)); height: calc(100vh - var(--wa-h) - var(--nav-h)); overflow-y: auto; }
.app-sidebar .shop-name { padding: 0 20px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.app-sidebar .shop-name h3 { font-size: 1rem; font-weight: 700; color: #fff; }
.app-sidebar .shop-name p { font-size: .8rem; color: var(--cyan); }
.sidebar-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 20px; color: rgba(255,255,255,.7); font-size: .9rem; font-weight: 500; transition: all .2s; border-left: 3px solid transparent; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(0,87,255,.2); color: #fff; border-left-color: var(--cyan); }
.app-main { flex: 1; padding: 28px; background: #f5f7fa; overflow-y: auto; }
.app-header { margin-bottom: 24px; }
.app-header h2 { font-size: 1.5rem; font-weight: 800; }
.app-header p { color: var(--gray); font-size: .9rem; }
.metrics-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-bottom: 28px; }
.metric-card { background: #fff; border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); position: relative; overflow: hidden; }
.metric-card .mc-val { font-size: 1.6rem; font-weight: 800; color: var(--navy); }
.metric-card .mc-label { font-size: .8rem; color: var(--gray); margin-top: 4px; }
.metric-card .mc-icon { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: 2rem; opacity: .15; }
.metric-card.blue { border-left: 4px solid var(--blue); }
.metric-card.green { border-left: 4px solid var(--green); }
.metric-card.gold  { border-left: 4px solid var(--gold); }
.metric-card.red   { border-left: 4px solid var(--red); }
.app-card { background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); margin-bottom: 24px; }
.app-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.app-card-header h3 { font-size: 1rem; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

.page-hero { background: var(--navy); padding: calc(var(--wa-h) + var(--nav-h) + 60px) 8% 60px; color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(0,87,255,.25) 0%, transparent 60%); }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero h1 { font-family: var(--font-title); font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; margin-bottom: 16px; }
.page-hero h1 span { color: var(--cyan); }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.7; }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .nav-links { display: none; }
  #hamburger { display: block; }
  section { padding: 60px 5%; }
  .hero-content { padding: 0 5%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .app-sidebar { display: none; }
  .stats-bar { flex-direction: column; }
  .countdown { gap: 8px; }
  .cd-num { font-size: 2.5rem; padding: 12px 18px; min-width: 70px; }
}
@media (max-width: 480px) { .hero-btns { flex-direction: column; align-items: flex-start; } }
