/* =============================================
   KYBER POINT SECURITY — Shared Styles
   Design: Clean Professional (navy + white)
   ============================================= */

/* --- Variables --- */
:root {
  --navy: #1a2d5a;
  --navy-dark: #0d1b2e;
  --navy-mid: #2d4a82;
  --bg: #f8f9fc;
  --bg-alt: #f0f4fa;
  --white: #ffffff;
  --border: #d8e2f0;
  --text: #0d1b2e;
  --text-secondary: #5a6a7a;
  --text-muted: #7a8899;
  --text-navy-muted: #8899bb;
  --accent-muted: #7a9cc8;
  --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* --- Nav --- */
.nav {
  background: var(--navy);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-link {
  color: var(--accent-muted);
  font-size: 13px;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--white); font-weight: 600; }
.nav-link.cta {
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px solid var(--accent-muted);
  padding-bottom: 1px;
}

/* --- Split Hero (homepage only) --- */
.hero-split {
  display: flex;
  min-height: 340px;
}
.hero-panel {
  flex: 1;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.hero-panel.dark {
  background: var(--navy);
  border-right: 1px solid var(--navy-mid);
}
.hero-panel.light {
  background: var(--bg-alt);
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-panel.dark .hero-eyebrow { color: var(--accent-muted); }
.hero-panel.light .hero-eyebrow { color: var(--navy); }
.hero-panel.dark h1 { color: var(--white); }
.hero-panel.light h1 { color: var(--navy-dark); }
.hero-panel h1 {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
}
.hero-panel h2 { font-size: 28px; line-height: 1.25; font-weight: 700; }
.hero-panel.light h2 { color: var(--navy-dark); }
.hero-panel p {
  font-size: 14px;
  line-height: 1.7;
}
.hero-panel.dark p { color: var(--text-navy-muted); }
.hero-panel.light p { color: var(--text-secondary); }

/* --- Page Hero (service pages) --- */
.page-hero {
  background: var(--navy);
  padding: 52px 48px;
}
.page-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-muted);
  margin-bottom: 12px;
  font-weight: 600;
}
.page-hero h1 {
  color: var(--white);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--text-navy-muted);
  font-size: 15px;
  max-width: 600px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn:hover { opacity: 0.88; }
.btn-white { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-outline-white {
  border: 1.5px solid var(--white);
  color: var(--white);
  background: transparent;
}

/* --- Credibility Bar --- */
.cred-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 48px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
.cred-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.cred-item { text-align: center; }
.cred-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.cred-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* --- Service Cards (homepage) --- */
.cards-section {
  padding: 48px;
  background: var(--bg);
}
.cards {
  display: flex;
  gap: 20px;
}
.card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 24px;
}
.card.highlight {
  border-color: var(--navy);
}
.card-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.card.highlight .card-eyebrow { color: var(--navy); }
.card h3 {
  font-size: 16px;
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.card-link {
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 1px;
}

/* --- Section Container --- */
.section {
  padding: 48px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.section.alt {
  background: var(--bg);
}
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 20px;
}
.section h2 {
  font-size: 22px;
  color: var(--navy-dark);
  margin-bottom: 12px;
}
.section p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
}

/* --- Pricing Tiers --- */
.tiers {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.tier {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 24px;
  background: var(--white);
}
.tier.highlight {
  border-color: var(--navy);
  background: var(--bg-alt);
}
.tier-name {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.tier h3 {
  font-size: 18px;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.tier-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.tier ul {
  list-style: none;
  padding: 0;
}
.tier ul li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.tier ul li:last-child { border-bottom: none; }
.tier ul li::before {
  content: '✓ ';
  color: var(--navy);
  font-weight: 700;
}

/* --- Methodology Steps --- */
.steps {
  display: flex;
  gap: 0;
  margin-top: 8px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 80px;
  text-align: center;
  padding: 12px 8px;
  position: relative;
}
.step-num {
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}
.step-label {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.step::after {
  content: '→';
  position: absolute;
  right: -6px;
  top: 16px;
  font-size: 12px;
  color: var(--border);
}
.step:last-child::after { content: ''; }

/* --- Sample Deliverables --- */
.samples {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.sample {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.sample-label {
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  padding: 8px 14px;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.sample-body {
  background: var(--bg);
  padding: 16px;
  font-size: 12px;
  color: var(--text);
  line-height: 1.7;
  height: 120px;
  overflow: hidden;
  filter: blur(3px);
  user-select: none;
}

/* --- Two-column layout --- */
.two-col {
  display: flex;
  gap: 32px;
  margin-top: 8px;
}
.two-col > div { flex: 1; }
.col-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--navy);
}
.col-items {
  list-style: none;
  padding: 0;
}
.col-items li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.col-items li::before {
  content: '→ ';
  color: var(--navy);
  font-weight: 700;
}

/* --- Utility --- */
.cta-content {}
.sample-score-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.sample-score-circle { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--navy-dark); flex-shrink: 0; }
.tier-qualifier { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.steps-note { margin-top: 20px; font-size: 13px; color: var(--text-secondary); }

/* --- CTA Bar --- */
.cta-bar {
  background: var(--navy);
  padding: 36px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta-bar h2 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 6px;
}
.cta-bar p {
  color: var(--text-navy-muted);
  font-size: 13px;
}

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  color: var(--accent-muted);
  font-size: 12px;
}
.footer-email {
  color: var(--accent-muted);
  font-size: 12px;
}
.footer-email:hover { color: var(--white); }

/* --- Contact Page --- */
.contact-body {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 48px;
  background: var(--white);
}
.contact-body h2 {
  font-size: 28px;
  color: var(--navy-dark);
  margin-bottom: 12px;
}
.contact-body p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 480px;
}
.contact-email {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--navy);
  padding-bottom: 2px;
}
.contact-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* --- Responsive (basic) --- */
@media (max-width: 768px) {
  .nav { overflow-x: auto; }
  .nav-link { white-space: nowrap; }
  .hero-split { flex-direction: column; }
  .hero-panel { padding: 36px 24px; }
  .page-hero { padding: 36px 24px; }
  .cred-bar { flex-wrap: wrap; gap: 20px; padding: 20px 24px; }
  .cred-divider { display: none; }
  .cards { flex-direction: column; }
  .tiers { flex-direction: column; }
  .two-col { flex-direction: column; }
  .samples { flex-direction: column; }
  .cards-section, .section, .cta-bar, .footer, .contact-body { padding: 32px 24px; }
  .cta-bar { flex-direction: column; align-items: flex-start; }
  .nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .nav-link { font-size: 11px; }
  .steps { gap: 4px; }
  .step::after { display: none; }
}
