/* ═══════════════════════════════════════════
   WIN CENTRAL ONE — MARKETING SITE CSS
   Colors: Navy #1B3566 | Gold #F5A623 | White
════════════════════════════════════════════ */

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

:root {
  --navy:  #1B3566;
  --navy2: #0D1E3A;
  --gold:  #F5A623;
  --white: #FFFFFF;
  --light: #F4F6FA;
  --muted: #8A96AA;
  --text:  #1A1A2E;
  --border:#D0D8E8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.red  { color: #E53935; }

/* ── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13, 30, 58, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,166,35,0.15);
  transition: all 0.3s;
}
.navbar.scrolled { background: var(--navy2); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-icon { width: 36px; height: 36px; object-fit: contain; }
.nav-wordmark { font-size: 14px; font-weight: 800; color: var(--white); letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.btn-nav {
  background: var(--gold); color: var(--navy2) !important;
  padding: 8px 20px; border-radius: 8px; font-weight: 700 !important;
  transition: opacity 0.2s !important;
}
.btn-nav:hover { opacity: 0.9; }
.hamburger { display: none; background: none; border: none; color: white; font-size: 22px; cursor: pointer; }

/* ── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy2);
  display: flex; align-items: center;
  padding: 100px 0 60px;
  position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(245,166,35,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
}
.badge {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold); padding: 6px 16px;
  border-radius: 100px; font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.65);
  margin-bottom: 36px; max-width: 480px; line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: var(--gold); color: var(--navy2);
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary.full { width: 100%; text-align: center; display: block; font-size: 16px; padding: 16px; }
.btn-ghost {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-weight: 600; font-size: 15px;
  display: flex; align-items: center; gap: 8px;
  padding: 14px 0; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--gold); }
.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { display: block; font-size: 26px; font-weight: 800; color: var(--white); }
.stat-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* ── DASHBOARD MOCKUP ────────────────────── */
.hero-visual { position: relative; z-index: 1; }
.dashboard-mockup {
  background: #0A1628;
  border-radius: 14px;
  border: 1px solid rgba(245,166,35,0.2);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.mockup-bar {
  background: #142035; padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }
.mockup-url { font-size: 11px; color: var(--muted); margin-left: 8px; }
.mockup-body { display: flex; }
.mockup-sidebar {
  width: 130px; background: #0D1E3A;
  padding: 16px 0; border-right: 1px solid rgba(255,255,255,0.05);
}
.sb-logo { padding: 0 16px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 8px; }
.sb-hex {
  width: 28px; height: 28px;
  background: var(--gold); border-radius: 6px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.sb-item {
  padding: 8px 16px; font-size: 11px;
  color: rgba(255,255,255,0.4); cursor: pointer;
  transition: all 0.2s;
}
.sb-item.active { color: var(--gold); background: rgba(245,166,35,0.08); font-weight: 600; }
.mockup-main { flex: 1; padding: 16px; }
.mockup-header { display: flex; justify-content: space-between; margin-bottom: 14px; }
.mockup-title { font-size: 13px; font-weight: 700; color: var(--white); }
.mockup-date { font-size: 11px; color: var(--muted); }
.mockup-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.mc { background: #142035; border-radius: 8px; padding: 10px; border: 1px solid rgba(255,255,255,0.05); }
.mc-label { font-size: 10px; color: var(--muted); margin-bottom: 4px; }
.mc-val { font-size: 13px; font-weight: 700; color: var(--white); }
.mc-val.gold { color: var(--gold); }
.mc-val.red { color: #EF5350; }
.mockup-chart {
  display: flex; align-items: flex-end; gap: 6px;
  height: 60px; background: #142035;
  border-radius: 8px; padding: 8px;
}
.chart-bar {
  flex: 1; background: rgba(245,166,35,0.2);
  border-radius: 3px; transition: height 0.3s;
}
.chart-bar.active { background: var(--gold); }

/* ── TRUSTED ─────────────────────────────── */
.trusted {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0; text-align: center;
}
.trusted-label { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 1px; margin-bottom: 12px; }
.trusted-logos { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.tl { font-size: 13px; font-weight: 700; color: var(--navy); }
.tl-div { color: var(--gold); }

/* ── SECTION LABEL ──────────────────────── */
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 12px;
}

/* ── FEATURES ────────────────────────────── */
.features { padding: 100px 0; background: var(--white); }
.features h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 52px; line-height: 1.2; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  padding: 32px; border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,53,102,0.1); }
.feat-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: #666; line-height: 1.7; }

/* ── MODULES ─────────────────────────────── */
.modules { padding: 100px 0; background: var(--light); }
.modules h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 52px; line-height: 1.2; }
.modules-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.module-card {
  background: var(--white); padding: 24px 20px;
  border-radius: 12px; border: 1px solid var(--border);
  transition: all 0.3s;
}
.module-card:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(27,53,102,0.1); }
.mod-num { font-size: 11px; font-weight: 800; color: var(--gold); letter-spacing: 1px; margin-bottom: 10px; }
.module-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.module-card p { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── PRICING ─────────────────────────────── */
.pricing { padding: 100px 0; background: var(--navy2); }
.pricing .section-label { color: var(--gold); }
.pricing h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 52px; color: var(--white); line-height: 1.2; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 36px;
  position: relative; transition: all 0.3s;
}
.price-card:hover { border-color: rgba(245,166,35,0.4); }
.price-card.featured {
  border-color: var(--gold);
  background: rgba(245,166,35,0.05);
}
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy2);
  font-size: 11px; font-weight: 800; padding: 4px 16px;
  border-radius: 100px; letter-spacing: 0.5px;
}
.price-tier { font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 1px; margin-bottom: 12px; }
.price-amount { font-size: 48px; font-weight: 800; color: var(--white); margin-bottom: 8px; line-height: 1; }
.price-amount span { font-size: 18px; color: var(--muted); font-weight: 400; }
.price-desc { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.price-features { list-style: none; margin-bottom: 32px; }
.price-features li { font-size: 14px; color: rgba(255,255,255,0.7); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.btn-price {
  display: block; text-align: center;
  padding: 13px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); text-decoration: none;
  font-weight: 700; font-size: 14px;
  transition: all 0.2s;
}
.btn-price:hover { border-color: var(--gold); color: var(--gold); }
.btn-price.gold-btn { background: var(--gold); border-color: var(--gold); color: var(--navy2); }
.btn-price.gold-btn:hover { opacity: 0.9; color: var(--navy2); }
.pricing-note { font-size: 13px; color: var(--muted); text-align: center; }

/* ── ABOUT ───────────────────────────────── */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.about-text p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.about-stats { display: flex; gap: 32px; margin-top: 32px; }
.ab-stat span { display: block; font-size: 32px; font-weight: 800; color: var(--navy); }
.ab-stat p { font-size: 13px; color: var(--muted); font-weight: 500; }
.ab-label { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 1px; margin-bottom: 16px; }
.brand-list { display: flex; flex-direction: column; gap: 10px; }
.brand-item {
  background: var(--light); padding: 14px 20px;
  border-radius: 10px; font-size: 14px; font-weight: 600;
  color: var(--navy); border-left: 3px solid var(--gold);
  transition: all 0.2s;
}
.brand-item:hover { background: #EEF2FF; transform: translateX(4px); }

/* ── CONTACT ─────────────────────────────── */
.contact { padding: 100px 0; background: var(--light); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-text h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.contact-text p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.cd-item { font-size: 14px; color: var(--navy); font-weight: 500; }
.contact-form { background: var(--white); padding: 36px; border-radius: 16px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: 8px;
  font-size: 14px; font-family: inherit;
  outline: none; transition: border-color 0.2s;
  color: var(--text);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.form-note { font-size: 12px; color: var(--muted); text-align: center; }

/* ── FOOTER ──────────────────────────────── */
.footer { background: var(--navy2); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-icon { width: 32px; height: 32px; object-fit: contain; }
.footer-logo span { font-size: 14px; font-weight: 800; color: var(--white); letter-spacing: 1px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.footer-parent { font-size: 12px !important; color: rgba(255,255,255,0.4) !important; }
.footer-col h5 { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: block; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { gap: 16px; }
}
