/* ============================================================
   JONATHON VOGEL — GLOBAL STYLES
   Inspired by Dashello.co design system
   ============================================================ */

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

:root {
  --blue: #0584EC;
  --blue-dark: #0468BE;
  --navy: #0F172A;
  --off: #F4F8FF;
  --green: #73877B;
  --text: #1a1a2e;
  --text-muted: #555;
  --text-light: #666;
  --border-light: rgba(5,132,236,0.1);
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ---- INNER CONTAINER ---- */
.inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* ---- SECTION TAGS ---- */
.section-tag {
  display: inline-block;
  background: #E6F1FB;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.section-tag-white {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.section-tag-dark {
  display: inline-block;
  background: rgba(5,132,236,0.15);
  border: 1px solid rgba(5,132,236,0.35);
  color: #60B4F8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* ---- SECTION TITLES ---- */
.section-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.section-title-white {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.section-sub-white {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

/* ---- BUTTONS ---- */
.btn-white {
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s;
  margin-top: 24px;
  border: none;
  cursor: pointer;
}
.btn-white:hover { transform: translateY(-2px); }

.btn-blue {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s;
  margin-top: 24px;
  border: none;
  cursor: pointer;
}
.btn-blue:hover { transform: translateY(-2px); }

.btn-navy {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s;
  margin-top: 24px;
  border: none;
  cursor: pointer;
}
.btn-navy:hover { transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.15s;
  border: 2px solid var(--blue);
  cursor: pointer;
}
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-center { text-align: center; margin-top: 8px; }

/* ---- NAV ---- */
nav {
  background: var(--blue);
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}
.nav-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-logo-wrap .nav-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
}
.nav-tagline {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding-left: 2px;
}
.nav-cta {
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s;
}
.nav-cta:hover { transform: scale(1.03); }

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--blue);
  padding: 100px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ---- SECTION ---- */
section { padding: 80px 5%; }

/* ============================================================
   FOOTER MEGA MENU
   ============================================================ */
footer {
  background: var(--navy);
  padding: 60px 5% 40px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.footer-brand .nav-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 260px;
}
.footer-group h4 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-group li a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s;
  font-weight: 500;
}
.footer-group li a:hover { color: #fff; }
.footer-group li a.external::after {
  content: ' ↗';
  font-size: 11px;
  opacity: 0.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  section, .page-hero { padding-left: 20px; padding-right: 20px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 80px 20px 60px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
