/* ── NEOTEL NETWORK SERVICES — SHARED STYLESHEET ──────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Nunito+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --navy-900: #0a1828;
  --navy-800: #0E2340;
  --navy-700: #1C3557;
  --navy-600: #2A4A72;
  --navy-400: #3D6494;
  --navy-200: #A8C0D6;
  --navy-100: #E8F1F8;
  --navy-50:  #F4F8FC;
  --amber:    #C07830;
  --amber-lt: #FEF3E8;
  --white:    #ffffff;
  --border:   #dde8f0;
  --radius-md: 8px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--navy-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Marcellus', serif; font-weight: 400; line-height: 1.15; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-800);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}

.nav-logo {
  font-family: 'Marcellus', serif;
  font-size: 18px;
  color: var(--navy-100);
  text-decoration: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

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

.nav-links a {
  font-size: 13px; font-weight: 400;
  color: var(--navy-200);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--radius-md);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--navy-100); background: rgba(255,255,255,0.05); }

.nav-links a.active { color: var(--navy-100); }

.nav-cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
  margin-left: 6px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: #a86520 !important; }

.hamburger {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  color: var(--navy-200);
}

/* ── BUTTONS ── */
.btn-dark {
  display: inline-block;
  background: var(--navy-800); color: var(--navy-100);
  padding: 12px 26px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--navy-700); }

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--navy-700);
  padding: 12px 26px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 500;
  text-decoration: none; border: 1px solid rgba(28,53,87,0.25); cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--navy-100); }

.btn-light {
  display: inline-block;
  background: var(--navy-100); color: var(--navy-800);
  padding: 12px 26px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  transition: background 0.2s;
}
.btn-light:hover { background: var(--white); }

.btn-ghost-light {
  display: inline-block;
  background: transparent; color: var(--white);
  padding: 12px 26px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 500;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.35); cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  transition: background 0.2s;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); }

/* ── DIVIDER ── */
.divider { height: 0.5px; background: var(--border); }

/* ── SECTION BASE ── */
.section { padding: 4rem 2.5rem; max-width: 1040px; margin: 0 auto; }

.sec-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy-400); margin-bottom: 0.4rem;
}

.sec-label-light {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy-200); margin-bottom: 0.4rem;
}

.sec-title { font-size: 34px; color: var(--navy-800); margin-bottom: 0.6rem; }
.sec-title-light { font-size: 34px; color: var(--navy-100); margin-bottom: 0.6rem; }
.sec-sub { font-size: 15px; color: var(--navy-600); font-weight: 300; line-height: 1.7; max-width: 580px; margin-bottom: 2.5rem; }
.sec-sub-light { font-size: 15px; color: var(--navy-200); font-weight: 300; line-height: 1.7; max-width: 580px; margin-bottom: 2.5rem; }

/* ── CARDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }

.card-dark {
  background: var(--navy-700);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.card-dark .card-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

.card-dark h3 { font-family: 'Marcellus', serif; font-size: 16px; color: var(--navy-100); margin-bottom: 0.4rem; }
.card-dark p { font-size: 13px; color: var(--navy-200); line-height: 1.6; font-weight: 300; }

.card-light {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.card-light h3 { font-family: 'Marcellus', serif; font-size: 16px; color: var(--navy-800); margin-bottom: 0.4rem; }
.card-light p { font-size: 13px; color: var(--navy-600); line-height: 1.6; font-weight: 300; }

.card-ice {
  background: var(--navy-50);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.card-ice h3 { font-family: 'Marcellus', serif; font-size: 16px; color: var(--navy-800); margin-bottom: 0.4rem; }
.card-ice p { font-size: 13px; color: var(--navy-600); line-height: 1.6; font-weight: 300; }

/* ── BADGE ── */
.badge {
  display: inline-block;
  font-size: 10px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.badge-amber { background: var(--amber-lt); color: var(--amber); }
.badge-navy  { background: var(--navy-100); color: var(--navy-700); }

/* ── PERF CARD FEATURES ── */
.feat-list { margin-top: 1rem; display: flex; flex-direction: column; gap: 6px; }
.feat-item { font-size: 12px; color: var(--navy-600); display: flex; align-items: flex-start; gap: 7px; font-weight: 300; }
.feat-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 6px; }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; }
.stat-card { background: var(--white); border-radius: var(--radius-md); padding: 1.2rem; border: 0.5px solid var(--border); text-align: center; }
.stat-num { font-family: 'Marcellus', serif; font-size: 28px; color: var(--navy-800); line-height: 1; }
.stat-label { font-size: 12px; color: var(--navy-400); margin-top: 4px; font-weight: 500; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--amber);
  padding: 4rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
}
.cta-band h2 { font-family: 'Marcellus', serif; font-size: 32px; color: var(--white); margin-bottom: 0.5rem; }
.cta-band p { font-size: 15px; color: rgba(255,255,255,0.8); font-weight: 300; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--navy-900);
  padding: 3.5rem 2.5rem 2rem;
  color: var(--navy-200);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  margin-bottom: 1.5rem;
}

.footer-brand-logo {
  font-family: 'Marcellus', serif;
  font-size: 18px; color: var(--navy-100);
  margin-bottom: 0.8rem; display: block;
  text-decoration: none;
}

.footer-brand p {
  font-size: 13px; color: #5a7a9a;
  line-height: 1.65; font-weight: 300;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--navy-100); margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-col ul a {
  font-size: 13px; color: #5a7a9a;
  text-decoration: none; transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--amber); }

.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}

.footer-copy { font-size: 12px; color: #3a5a7a; }

.footer-legal { display: flex; gap: 0; }
.footer-legal a {
  font-size: 12px; color: #5a7a9a;
  text-decoration: none;
  padding: 0 12px;
  border-right: 0.5px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.footer-legal a:last-child { border-right: none; }
.footer-legal a:first-child { padding-left: 0; }
.footer-legal a:hover { color: var(--amber); }

/* ── PAGE HERO (legal pages) ── */
.page-hero {
  background: var(--navy-50);
  padding: 3.5rem 2.5rem 3rem;
  border-bottom: 0.5px solid var(--border);
}
.page-hero-inner { max-width: 760px; margin: 0 auto; }
.page-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy-400); margin-bottom: 0.5rem; }
.page-title { font-family: 'Marcellus', serif; font-size: 40px; color: var(--navy-800); margin-bottom: 0.7rem; }
.page-meta { font-size: 13px; color: #8aabcc; }
.page-meta strong { color: var(--navy-600); font-weight: 500; }

/* ── CONTENT (legal pages) ── */
.content-wrap { max-width: 760px; margin: 0 auto; padding: 3rem 2.5rem 5rem; }

.toc {
  background: var(--navy-50); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem 1.8rem; margin-bottom: 3rem;
}
.toc h3 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--navy-600); margin-bottom: 1rem; }
.toc ol { padding-left: 1.2rem; display: flex; flex-direction: column; gap: 6px; }
.toc ol a { font-size: 14px; color: var(--navy-700); text-decoration: none; }
.toc ol a:hover { text-decoration: underline; }

.policy-section { margin-bottom: 2.8rem; }
.policy-section h2 { font-family: 'Marcellus', serif; font-size: 22px; color: var(--navy-800); margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 0.5px solid var(--border); }
.policy-section h3 { font-family: 'Nunito Sans', sans-serif; font-size: 15px; font-weight: 600; color: var(--navy-800); margin: 1.4rem 0 0.5rem; }
.policy-section p { font-size: 15px; color: var(--navy-600); margin-bottom: 0.9rem; font-weight: 300; line-height: 1.75; }
.policy-section ul, .policy-section ol { padding-left: 1.4rem; margin-bottom: 0.9rem; display: flex; flex-direction: column; gap: 6px; }
.policy-section li { font-size: 15px; color: var(--navy-600); font-weight: 300; line-height: 1.6; }
.policy-section strong { color: var(--navy-800); font-weight: 600; }

.highlight-box {
  background: var(--navy-100); border-left: 3px solid var(--navy-400);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.2rem; margin: 1.2rem 0;
}
.highlight-box p { color: var(--navy-700) !important; font-size: 14px !important; margin: 0 !important; }

.info-table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; }
.info-table tr { border-bottom: 0.5px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 10px 0; font-size: 14px; vertical-align: top; }
.info-table td:first-child { color: #8aabcc; width: 38%; padding-right: 1rem; font-weight: 400; }
.info-table td:last-child { color: var(--navy-700); font-weight: 400; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: block; }
}

@media (max-width: 600px) {
  .nav { padding: 0 1.5rem; }
  .section { padding: 3rem 1.5rem; }
  .cta-band { padding: 3rem 1.5rem; flex-direction: column; }
  .page-hero { padding: 2.5rem 1.5rem 2rem; }
  .content-wrap { padding: 2rem 1.5rem 4rem; }
  .page-title { font-size: 30px; }
  footer { padding: 2.5rem 1.5rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal a:first-child { padding-left: 0; }
}
