/* ══════════════════════════════════════════════
   SEYMOUR CLEARLY — SHARED STYLES v13
   ══════════════════════════════════════════════ */

:root {
  --accent:  #00c6ff;
  --accent2: #0072ff;
  --dark:    #04070e;
  --dark2:   #080f1a;
  --card:    #0a1220;
  --border:  rgba(0,198,255,0.10);
  --gray:    #8899aa;
  --white:   #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--dark);
  color: #e0e8f0;
  line-height: 1.6;
  padding-top: 76px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { color: #fff; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 700; }
p  { color: #b0bec5; line-height: 1.75; }

.accent { color: var(--accent); }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.3px;
  text-decoration: none; transition: opacity 0.2s, transform 0.15s;
  cursor: pointer; border: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--accent2), var(--accent)); color: #fff; box-shadow: 0 4px 20px rgba(0,198,255,0.3); }
.btn-outline  { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-red      { background: #e53e3e; color: #fff; box-shadow: 0 4px 16px rgba(229,62,62,0.35); }

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(0,198,255,0.3); transform: translateY(-2px); }

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #04070e 0%, #080f1a 50%, #04070e 100%);
  padding: 72px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,114,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .breadcrumb {
  font-size: 0.8rem; color: var(--gray); margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.page-hero .breadcrumb a { color: var(--accent); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p  { font-size: 1.1rem; max-width: 640px; margin: 0 auto 28px; color: #b0bec5; }

/* ── SECTION HEADINGS ── */
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 12px; }
.section-heading p  { max-width: 600px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--accent);
  margin-bottom: 10px;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── BADGE STRIP ── */
.badge-strip {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
}
.badge-strip .badges {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 24px;
}
.badge-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}
.badge-item svg { flex-shrink: 0; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #04070e, #080f1a);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p  { margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── NAV ── */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: grid; grid-template-columns: 1fr auto 1fr auto;
  align-items: center; padding: 0 24px; height: 76px;
  background: rgba(4,7,14,0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,198,255,0.10);
  box-shadow: 0 2px 32px rgba(0,0,0,0.5), 0 1px 0 rgba(0,198,255,0.08);
}
#mainNav::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, #0072ff 20%, #00c6ff 50%, #0072ff 80%, transparent 100%);
  opacity: 0.9; z-index: 2;
}
#mainNav::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, #0072ff 20%, #00c6ff 50%, #0072ff 80%, transparent 100%);
  opacity: 0.9; z-index: 2;
}
.nav-left-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
  justify-content: flex-end;
}
.nav-left-links a {
  color: rgba(255,255,255,1); text-decoration: none;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.4px;
  text-transform: uppercase; padding: 6px 8px; border-radius: 6px;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-left-links a:hover { color: var(--accent); background: rgba(255,255,255,0.06); text-decoration: none; }
.nav-left-links a.active { color: var(--accent); }
.nav-right-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
  justify-content: flex-start;
  margin-right: auto;
}
.nav-right-links a {
  color: rgba(255,255,255,1); text-decoration: none;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.4px;
  text-transform: uppercase; padding: 6px 8px; border-radius: 6px;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-right-links a:hover { color: var(--accent); background: rgba(255,255,255,0.06); text-decoration: none; }
.nav-right-links a.active { color: var(--accent); }
.nav-brand {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-decoration: none; line-height: 1;
}
.nav-brand:hover { text-decoration: none; }
.nav-brand-name {
  font-size: 1.35rem; font-weight: 900; letter-spacing: 1px;
  color: #fff; text-transform: uppercase; white-space: nowrap;
}
.nav-brand-name span { color: var(--accent); }
.nav-brand-tagline {
  font-size: 0.45rem; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  margin-top: 3px; white-space: nowrap;
}
.nav-right {
  display: flex; align-items: center; justify-content: flex-end; gap: 12px;
}
.nav-phone {
  color: var(--accent) !important; font-weight: 700; font-size: 0.82rem;
  text-decoration: none; letter-spacing: 0.3px; transition: opacity 0.2s; white-space: nowrap;
}
.nav-phone:hover { opacity: 0.75; text-decoration: none; }
.nav-hamburger {
  display: none; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 1.2rem; padding: 8px 12px; border-radius: 8px;
  cursor: pointer; transition: background 0.2s; line-height: 1;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.12); }
#navMobileLinks { display: none; }
#navMobileLinks.open { display: flex; }

/* ── FOOTER ── */
footer {
  background: #020509;
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
  text-align: center;
}
.footer-logo { font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.footer-logo span { color: var(--accent); }
footer p { color: var(--gray); font-size: 0.85rem; margin-bottom: 6px; }
footer .footer-nav {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 4px 0; margin: 20px 0 8px; list-style: none;
}
footer .footer-nav a {
  color: var(--gray); text-decoration: none; font-size: 0.8rem; padding: 4px 12px;
  transition: color 0.2s;
}
footer .footer-nav a:hover { color: #fff; text-decoration: none; }
.footer-social {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 20px 0 4px;
}
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; text-decoration: none;
  transition: opacity 0.2s;
}
.footer-social a:hover { opacity: 0.75; text-decoration: none; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); margin-top: 16px !important; }

/* ── MOBILE NAV DROPDOWN ── */
.nav-links {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(4,7,14,0.99); flex-direction: column;
  padding: 16px 20px; gap: 4px;
  border-bottom: 1px solid rgba(0,198,255,0.1);
  backdrop-filter: blur(24px); z-index: 999;
}
.nav-links.open { display: flex; }
.nav-links li { list-style: none; }
.nav-links a {
  display: block; padding: 12px 16px; color: rgba(255,255,255,0.75);
  text-decoration: none; font-size: 0.95rem; font-weight: 500;
  border-radius: 8px; transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.06); color: #fff; text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-hamburger { display: block !important; }
  .nav-left-links { display: none !important; }
  .nav-right-links { display: none !important; }
  .nav-phone { display: none !important; }
  .nav-right { gap: 0; }
  #mainNav { grid-template-columns: 48px 1fr 48px; padding: 0 12px; height: 64px; }
  #mainNav .nav-right { order: -1; justify-content: flex-start; }
  #mainNav .nav-brand { order: 0; }
  #mainNav .nav-left-links { order: 1; }
  #mainNav .nav-right-links { order: 2; }
  body { padding-top: 64px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .cta-band .btn-group { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .grid-2 { grid-template-columns: 1fr; }
}
