/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f5f0e8;
  --bg-alt: #ede7da;
  --fg: #0c1a2e;
  --fg-muted: #4a5568;
  --accent: #e8a84b;
  --accent-dark: #c8872e;
  --navy: #0c1a2e;
  --navy-mid: #1e2d44;
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --section-pad: 100px 24px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-tag {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  padding: var(--section-pad);
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
  font-weight: 500;
  margin-bottom: 18px;
}

.hero-headline {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--navy);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}

.hero-stat {
  padding: 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-div {
  width: 1.5px;
  height: 50px;
  background: var(--navy);
  opacity: 0.25;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Guard Illustration */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.guard-illustration {
  width: 100%;
  max-width: 340px;
}

.guard-illustration svg {
  width: 100%;
  height: auto;
}

/* === VALUE === */
.value {
  background: var(--navy);
  padding: 80px 24px;
}

.value-inner {
  max-width: 760px;
  margin: 0 auto;
}

.value-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.value-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.value-body p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.value-body p:last-child { margin-bottom: 0; }

/* === SECTORS === */
.sectors {
  padding: var(--section-pad);
  max-width: var(--max-w);
  margin: 0 auto;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
  border: 1.5px solid var(--navy);
  border-radius: 8px;
  overflow: hidden;
}

.sector-card {
  padding: 40px 36px;
  background: var(--bg);
  border-right: 1.5px solid var(--navy);
  border-bottom: 1.5px solid var(--navy);
}

.sector-card:nth-child(2n) { border-right: none; }
.sector-card:nth-child(3) { border-bottom: none; }
.sector-card:nth-child(4) { border-right: none; border-bottom: none; }

.sector-icon {
  margin-bottom: 18px;
}

.sector-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.sector-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === DIFFERENCE === */
.difference {
  background: var(--navy);
  padding: var(--section-pad);
}

.diff-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.diff-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}

.diff-headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

.diff-headline em {
  color: var(--accent);
  font-style: normal;
}

.diff-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.diff-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.diff-point-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.diff-point strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.diff-point p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.diff-quote-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(232,168,75,0.2);
  border-radius: 8px;
  padding: 36px;
  margin-bottom: 32px;
}

.diff-quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 12px;
  opacity: 0.6;
}

.diff-quote {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.diff-quote-attr {
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.03em;
}

.diff-pricing {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 28px;
}

.diff-pricing-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.diff-pricing-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.diff-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.diff-price-row span:first-child {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.diff-price-row span:last-child {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
}

/* === CLOSING === */
.closing {
  padding: 100px 24px;
  background: var(--bg-alt);
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 44px;
}

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

.closing-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  padding: 48px 24px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .diff-inner { grid-template-columns: 1fr; gap: 48px; }
  .sectors-grid { grid-template-columns: 1fr; }
  .sector-card { border-right: none; }
  .sector-card:nth-child(3) { border-bottom: 1.5px solid var(--navy); }
  .sector-card:nth-child(4) { border-bottom: none; }
  .nav { padding: 16px 20px; }
}

@media (max-width: 600px) {
  :root { --section-pad: 64px 20px; }
  .hero-stats { flex-direction: column; }
  .hero-stat-div { width: 60px; height: 1.5px; }
  .sectors-grid { gap: 0; }
}