/* ── UltraSure Shared Styles ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1628;
  --navy-mid: #122040;
  --navy-light: #1a3060;
  --accent: #17a0c3;
  --accent-light: #3fc0e0;
  --accent-pale: #e8f6fb;
  --white: #fafaf8;
  --off-white: #f0ede6;
  --text-dark: #0d1a2e;
  --text-muted: #6b7a90;
  --border: rgba(23,160,195,0.18);
  --gold: #17a0c3;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* ── NAV ── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23,160,195,0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
}

.nav-logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(250,250,248,0.72);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.nav-links .has-dropdown { position: relative; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-mid);
  border: 1px solid rgba(23,160,195,0.15);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.nav-links .has-dropdown:hover .nav-dropdown { display: block; }

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13.5px;
  color: rgba(250,250,248,0.7) !important;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown a:hover {
  background: rgba(23,160,195,0.08);
  color: var(--accent) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ghost {
  padding: 9px 20px;
  border: 1px solid rgba(23,160,195,0.4);
  border-radius: 4px;
  background: transparent;
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(23,160,195,0.1);
  border-color: var(--accent);
}

.btn-primary {
  padding: 9px 22px;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

/* ── INNER PAGE HERO ── */
.inner-hero {
  min-height: 380px;
  background: var(--navy);
  display: flex;
  align-items: flex-end;
  padding: 120px 60px 64px;
  position: relative;
  overflow: hidden;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23,160,195,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,160,195,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.inner-hero-circle {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,160,195,0.07) 0%, transparent 70%);
  right: -100px; top: 50%;
  transform: translateY(-50%);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(250,250,248,0.4);
}

.breadcrumb a {
  color: rgba(250,250,248,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb-sep { font-size: 10px; opacity: 0.4; }

.inner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.inner-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--accent);
}

.inner-hero h1 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}

.inner-hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.inner-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(250,250,248,0.6);
  max-width: 520px;
}

/* ── SECTION SHARED ── */
.section { padding: 88px 60px; }
.section-dark { background: var(--navy); color: var(--white); }
.section-light { background: var(--white); }
.section-off { background: var(--off-white); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.12;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 52px;
}

.section-dark .section-subtitle { color: rgba(250,250,248,0.5); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy-mid);
  padding: 88px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.cta-band-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(23,160,195,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.cta-band-inner { position: relative; z-index: 2; }

.cta-band h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(250,250,248,0.55);
  max-width: 460px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  padding: 15px 36px;
  background: var(--accent);
  border-radius: 4px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  display: inline-block;
}

.btn-cta-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(23,160,195,0.3);
}

.btn-cta-ghost {
  padding: 14px 32px;
  border: 1px solid rgba(250,250,248,0.25);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}

.btn-cta-ghost:hover {
  border-color: rgba(250,250,248,0.6);
  background: rgba(250,250,248,0.05);
}

/* ── FOOTER ── */
footer.site-footer {
  background: var(--navy);
  padding: 72px 60px 40px;
  border-top: 1px solid rgba(23,160,195,0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(250,250,248,0.4);
  margin-top: 16px;
  max-width: 280px;
}

.footer-col-title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  list-style: none;
}

.footer-links a {
  font-size: 14px;
  color: rgba(250,250,248,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 13px; color: rgba(250,250,248,0.28); }
.footer-reg { font-size: 12px; color: rgba(250,250,248,0.22); }

.footer-social { display: flex; gap: 10px; }

.social-link {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.social-link:hover {
  border-color: var(--accent);
  background: rgba(23,160,195,0.08);
}

/* ── MOBILE ── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 1px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeUp 0.6s ease forwards; }
.fade-in-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-2 { animation-delay: 0.22s; opacity: 0; }
.fade-in-3 { animation-delay: 0.36s; opacity: 0; }

@media (max-width: 1024px) {
  nav.site-nav { padding: 0 32px; }
  .nav-links { gap: 20px; }
  .inner-hero { padding: 100px 32px 56px; }
  .section { padding: 64px 32px; }
  .cta-band { padding: 64px 32px; }
  footer.site-footer { padding: 56px 32px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  nav.site-nav .nav-links, nav.site-nav .nav-actions { display: none; }
  .mobile-menu-btn { display: flex; }
  .inner-hero { padding: 88px 24px 48px; min-height: 300px; }
  .section { padding: 52px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
