/* =========================================
   Kazzforce — Privacy Policy Stylesheet
   Matches main site design language
   ========================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue:        #0057E7;
  --blue-dark:   #0041B5;
  --blue-light:  #E8F0FE;
  --black:       #0A0A0A;
  --dark:        #111827;
  --gray:        #6B7280;
  --gray-light:  #F9FAFB;
  --border:      #E5E7EB;
  --white:       #FFFFFF;
  --radius:      6px;
  --transition:  0.2s ease;
  --max-w:       1160px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--blue-dark); }

ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 0.4rem; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- NAVBAR ---- */
.navbar {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.navbar__logo img {
  height: 30px;
  width: auto;
}

.navbar__nav {
  flex: 1;
}
.navbar__nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1.75rem;
}
.navbar__nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}
.navbar__nav a:hover { color: var(--white); }

.navbar__cta {
  flex-shrink: 0;
  border: 1.5px solid var(--white);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
.navbar__cta:hover {
  background: var(--white);
  color: var(--black);
}

/* ---- HERO ---- */
.hero {
  background: var(--blue);
  padding: 64px 1.5rem;
  text-align: center;
  color: var(--white);
}

.hero__inner {
  max-width: 700px;
  margin: 0 auto;
}

.hero__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.75;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero__meta {
  font-size: 0.9rem;
  opacity: 0.75;
}

/* ---- INTRO BAND ---- */
.intro-band {
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  background: var(--gray-light);
}

.intro-band p {
  max-width: 820px;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.75;
}

.intro-band strong { color: var(--dark); }

/* ---- CONTENT GRID ---- */
.content {
  padding: 64px 0 80px;
}

.content__grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}

/* ---- TOC SIDEBAR ---- */
.toc {
  position: sticky;
  top: 88px;
}

.toc__inner {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.toc__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-bottom: 1rem;
}

.toc ol {
  padding-left: 1.1rem;
}

.toc li {
  margin-bottom: 0.55rem;
}

.toc a {
  color: var(--dark);
  font-size: 0.875rem;
  line-height: 1.4;
}

.toc a:hover { color: var(--blue); }

/* ---- POLICY SECTIONS ---- */
.policy {
  min-width: 0;
}

.policy__section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 90px;
}

.policy__section:last-child {
  border-bottom: none;
}

.section-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 0.25rem;
  font-variant-numeric: tabular-nums;
}

.policy__section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.policy__section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 1.25rem 0 0.5rem;
}

.policy__section p {
  color: var(--gray);
  margin-bottom: 0.85rem;
  line-height: 1.75;
}

.policy__section ul {
  color: var(--gray);
  margin-bottom: 0.85rem;
}

.policy__section ul li::marker {
  color: var(--blue);
}

/* Contact card */
.contact-card {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  color: var(--gray);
  line-height: 2;
}

.contact-card strong { color: var(--dark); }

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--blue);
  padding: 56px 1.5rem;
  color: var(--white);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.cta-band p {
  opacity: 0.85;
  font-size: 0.95rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.7rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn--white {
  background: var(--white);
  color: var(--blue);
}

.btn--white:hover {
  background: var(--blue-light);
  color: var(--blue-dark);
  transform: translateY(-1px);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
}

.footer__bottom {
  padding: 1.5rem 0;
}

.footer__bottom--simple {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer__logo {
  height: 26px;
  width: auto;
  flex-shrink: 0;
}

.footer__bottom p {
  font-size: 0.8rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .content__grid {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }

  .navbar__nav { display: none; }

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }
}
