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

:root {
  --navy: #0b1f33;
  --blue-dark: #215d99;
  --blue-mid: #2f80c1;
  --blue-light: #82bbdf;
  --accent: #F2581E;
  --text: #333;
  --bg: #fafbfc;
  --white-op10: rgba(255,255,255,0.1);
  --border-light: rgba(130,187,223,0.12);
  --text-muted: #5f7084;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  padding-top: 70px;
}

/* ── Header ── */
.setup-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 0.3s, backdrop-filter 0.3s, border-bottom 0.3s;
  background-color: transparent;
  border-bottom: none;
}
.setup-header.scrolled {
  background-color: rgba(11,31,51,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}

.setup-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 72px;
}
@media (min-width: 1024px) {
  .setup-header-inner { padding: 12px 72px; }
}

.setup-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.setup-logo img { height: 38px; width: auto; display: block; }

.setup-nav {
  display: none;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}
@media (min-width: 1024px) { .setup-nav { display: flex; } }

.setup-nav a.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.2s;
  padding: 16px 0;
  white-space: nowrap;
}
.setup-nav a.nav-link:hover { opacity: 1; }

.setup-nav a.nav-cta {
  padding: 12px 24px;
  border-radius: 9999px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.21;
  color: #fff;
  background: linear-gradient(to right, var(--blue-light), var(--blue-mid));
  text-decoration: none;
  transition: opacity 0.2s;
}
.setup-nav a.nav-cta:hover { opacity: 0.9; }

/* Mobile menu toggle */
.setup-menu-btn {
  display: flex;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 1024px) { .setup-menu-btn { display: none; } }

.setup-menu-btn svg { width: 24px; height: 24px; }

/* Mobile overlay */
.setup-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--navy);
  flex-direction: column;
}
.setup-mobile-overlay.open { display: flex; }

.setup-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
.setup-mobile-top img { height: 38px; width: auto; }

.setup-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #fff;
}

.setup-mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  margin-top: 32px;
  flex: 1;
}
.setup-mobile-nav a {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}

.setup-mobile-cta-wrap {
  padding: 0 24px 48px;
}
.setup-mobile-cta-wrap a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(to right, var(--blue-light), var(--blue-mid));
  text-decoration: none;
}

/* ── Footer ── */
.setup-footer {
  background: linear-gradient(to bottom, var(--navy), var(--blue-dark));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.setup-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) { .setup-footer-inner { padding: 72px 72px 40px; } }

.setup-footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
@media (min-width: 1024px) { .setup-footer-top { flex-direction: row; } }

.setup-footer-logo img { height: 54px; width: auto; display: block; }

.setup-footer-sections {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 640px) {
  .setup-footer-sections {
    flex-direction: row;
    justify-content: flex-end;
    gap: 64px;
  }
}

.setup-footer-section { display: flex; flex-direction: column; }

.setup-footer-section-title {
  font-size: 15px;
  font-weight: 400;
  color: var(--border-light);
  margin-bottom: 24px;
}

.setup-footer-section a {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.setup-footer-section a:hover { color: var(--blue-light); }

.setup-footer-section p {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.setup-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.setup-footer-social a {
  margin-bottom: 0;
  transition: opacity 0.2s;
}
.setup-footer-social a:hover { opacity: 0.7; }
.setup-footer-social svg { width: 22px; height: 22px; }

.setup-footer-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.setup-footer-copyright {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ── Blog content overrides ── */
body.setup-blog a {
  color: var(--blue-mid);
  text-decoration: none;
}
body.setup-blog a:hover { text-decoration: underline; }
