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

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

:root {
  --navy:   #02153D;
  --purple: #4B227A;
  --purple-grad: linear-gradient(135deg, #02153D 0%, #4B227A 100%);
  --cyan:   #0197AF;
  --mint:   #00EED0;
  --bg:     #f5f7fc;
  --card:   #ffffff;
  --ink:    #02153D;
  --ink2:   #5a6a8a;
  --border: rgba(2,21,61,0.1);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--ink); line-height: 1.6; }

/* ── NAV ── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 2.5rem; background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo img { height: 52px; display: block; }
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a {
  font-size: 13px; color: rgba(255,255,255,0.6);
  text-decoration: none; font-weight: 400; transition: color 0.2s;
  position: relative; padding-bottom: 2px;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--mint); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--mint); border-radius: 2px;
}
.nav-cta {
  background: var(--mint); color: var(--navy) !important;
  padding: 8px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 700 !important;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: #00d4b8 !important; }
.nav-cta.active::after { display: none; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; border-radius: 10px; font-size: 14px; font-weight: 600; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.btn-mint  { background: var(--mint); color: var(--navy); padding: 13px 28px; }
.btn-mint:hover { background: #00d4b8; }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.8); padding: 13px 24px; border: 0.5px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { border-color: var(--mint); color: var(--mint); }
.btn-navy  { background: var(--navy); color: #fff; padding: 13px 28px; }
.btn-navy:hover { background: #031d55; }

/* ── SECTION HELPERS ── */
.section { padding: 4rem 2.5rem; max-width: 1000px; margin: 0 auto; }
.section-full { padding: 4rem 2.5rem; }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: 6px; }
.eyebrow-light { color: var(--mint); }
.s-title { font-family: 'Rajdhani', sans-serif; font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 700; color: var(--navy); letter-spacing: -0.4px; margin-bottom: 6px; }
.s-title-light { color: #fff; }
.s-sub { font-size: 14px; color: var(--ink2); margin-bottom: 2rem; }
.s-sub-light { color: rgba(255,255,255,0.45); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy); padding: 4rem 2.5rem 3rem;
  position: relative; overflow: hidden;
}
.page-hero-glow {
  position: absolute; top: -60px; right: -60px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(75,34,122,0.55) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--mint); background: rgba(0,238,208,0.1);
  border: 0.5px solid rgba(0,238,208,0.3); padding: 5px 14px; border-radius: 20px; margin-bottom: 1.2rem;
}
.page-hero h1 { font-family: 'Rajdhani', sans-serif; font-size: clamp(2rem,4vw,3rem); font-weight: 700; color: #fff; letter-spacing: -0.8px; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.5); margin-top: 0.6rem; max-width: 540px; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 0 2.5rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 0.5px solid rgba(255,255,255,0.07);
  padding: 2.5rem 2.5rem 1.5rem;
}
.footer-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 0.5px solid rgba(255,255,255,0.07); }
.footer-col-title { font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-logo img { height: 52px; margin-bottom: 0.8rem; display: block; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-top: 4px; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--mint); }
.footer-contact-item { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 0.5rem; }
.footer-contact-item a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-contact-item a:hover { color: var(--mint); }
.footer-bottom { max-width: 1000px; margin: 1.2rem auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 30px; height: 30px; border-radius: 50%; border: 0.5px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 13px; transition: border-color 0.2s, color 0.2s; }
.footer-social a:hover { border-color: var(--mint); color: var(--mint); }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 50px; height: 50px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 999;
  text-decoration: none; transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ── BRAND CHIPS ── */
.brands-bar {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 1rem 2.5rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center;
}
.brands-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink2); }
.brand-chip {
  font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--navy); background: var(--bg); border: 1px solid var(--border);
  padding: 5px 16px; border-radius: 20px; letter-spacing: 0.5px;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
  padding: 4rem 2.5rem; text-align: center; position: relative; overflow: hidden;
}
.cta-strip-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,238,208,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip h2 { font-family: 'Rajdhani', sans-serif; font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 700; color: #fff; margin-bottom: 0.5rem; position: relative; }
.cta-strip p  { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 1.8rem; position: relative; }
.cta-strip-info { margin-top: 1.2rem; font-size: 12px; color: rgba(255,255,255,0.3); position: relative; }

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 200;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.08); }
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
/* Hamburger → X animation */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 5rem 2rem 2rem;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.nav-mobile a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 14px 0;
  width: 100%;
  text-align: center;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  letter-spacing: -0.3px;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: #fff; }
.nav-mobile a.active { color: var(--mint); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-mobile-cta {
  margin-top: 1.5rem;
  background: var(--mint);
  color: var(--navy) !important;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 18px;
  border-bottom: none !important;
  width: auto !important;
}
.nav-mobile .nav-mobile-cta:hover { background: #00d4b8 !important; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 2.5rem 1.2rem; }
  .section-full { padding: 2.5rem 1.2rem; }
  .page-hero { padding: 2.5rem 1.2rem 2rem; }
  .hero-bar { grid-template-columns: repeat(2, 1fr); }
  .cta-strip { padding: 2.5rem 1.2rem; }
}
