@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --night: #0A1628;
  --night-2: #0F1E38;
  --primary: #1565C0;
  --primary-mid: #1E88E5;
  --electric: #42A5F5;
  --tint: #E3F2FD;
  --tint-deep: #BBDEFB;
  --gold: #F59E0B;
  --gold-tint: #FFF8E1;
  --green: #10B981;
  --green-tint: #ECFDF5;
  --light-bg: #F8FAFB;
  --light-bg-2: #EEF4FB;
  --white: #ffffff;
  --text-dark: #0D1B2A;
  --text-mid: #374151;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: rgba(21, 101, 192, 0.12);
  --border-mid: rgba(21, 101, 192, 0.22);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-card: 0 2px 20px rgba(21, 101, 192, 0.08);
  --shadow-hover: 0 8px 40px rgba(21, 101, 192, 0.16);
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
  --nav-h: 70px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 1000;
  border-bottom: 1px solid rgba(66,165,245,0.1);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text .ezy { font-size: 9px; letter-spacing: 3px; color: var(--electric); font-weight: 600; text-transform: uppercase; }
.nav-logo-text .product { font-size: 15px; font-weight: 600; color: var(--white); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: var(--electric); }

.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 500; border: none; cursor: pointer; transition: all 0.2s; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--primary); color: var(--white); padding: 11px 24px; border-radius: var(--radius-md); font-size: 14px; }
.btn-primary:hover { background: var(--primary-mid); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--electric); border: 1.5px solid rgba(66,165,245,0.4); padding: 10px 22px; border-radius: var(--radius-md); font-size: 14px; }
.btn-outline:hover { border-color: var(--electric); background: rgba(66,165,245,0.08); }
.btn-ghost { background: rgba(66,165,245,0.12); color: var(--electric); padding: 11px 24px; border-radius: var(--radius-md); font-size: 14px; border: 1px solid rgba(66,165,245,0.2); }
.btn-ghost:hover { background: rgba(66,165,245,0.2); }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-md); }

.nav-cta { display: flex; gap: 12px; }

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

/* ── SECTIONS ── */
.section { padding: 96px 5%; }
.section-sm { padding: 64px 5%; }
.container { max-width: 1160px; margin: 0 auto; }

.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--electric); margin-bottom: 14px; display: block; }
.eyebrow-gold { color: var(--gold); }

h1, h2, h3, h4 { line-height: 1.2; }
.display-heading { font-family: var(--font-display); font-size: clamp(36px, 5vw, 58px); font-weight: 800; color: var(--white); }
.section-heading { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--text-dark); }
.section-heading-center { text-align: center; }
.section-sub { font-size: 18px; color: var(--text-muted); line-height: 1.7; margin-top: 14px; }
.section-sub-center { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }

.card-icon {
  width: 48px; height: 48px;
  background: var(--tint);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

/* ── BADGE ── */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; padding: 4px 12px; border-radius: 20px; }
.badge-blue { background: var(--tint); color: var(--primary); }
.badge-gold { background: var(--gold-tint); color: #92400E; }
.badge-green { background: var(--green-tint); color: #065F46; }

/* ── FOOTER ── */
footer {
  background: var(--night);
  color: rgba(255,255,255,0.6);
  padding: 64px 5% 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1160px; margin: 0 auto 48px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 14px; color: rgba(255,255,255,0.5); max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--electric); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--electric); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--night-2);
  border-top: 1px solid rgba(66,165,245,0.1);
  padding: 24px 5%;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; color: rgba(255,255,255,0.8); font-weight: 400; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }

/* ── DEMO POPUP ── */
.popup-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,22,40,0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.show { display: flex; }
.popup-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
}
.popup-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-muted); }
.popup-box h3 { font-family: var(--font-display); font-size: 26px; color: var(--text-dark); margin-bottom: 10px; }
.popup-box p { color: var(--text-muted); margin-bottom: 28px; }
.popup-form input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 15px;
  margin-bottom: 12px; color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}
.popup-form input:focus { border-color: var(--primary); }
.popup-form .btn-primary { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }

/* ── UTILS ── */
.text-center { text-align: center; }
.text-electric { color: var(--electric); }
.text-gold { color: var(--gold); }
.mt-6 { margin-top: 6px; }
.mt-10 { margin-top: 10px; }
.mt-14 { margin-top: 14px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.gap-grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 5%; }
  .popup-box { padding: 32px 24px; }
}
