:root {
  --navy: #02005c;
  --navy-deep: #010047;
  --navy-soft: #12126a;
  --green: #2e8a57;
  --green-dark: #1f6b42;
  --green-soft: #e8f6ee;
  --white: #ffffff;
  --paper: #f6f7fb;
  --ink: #16162e;
  --muted: #5c5d73;
  --line: #e4e6ef;
  --shadow: 0 18px 50px rgba(2, 0, 92, 0.12);
  --radius: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
h1, h2, h3 { font-weight: 700; line-height: 1.15; margin: 0 0 0.6em; }
h1 { font-size: clamp(2.1rem, 5vw, 4.2rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
p { margin: 0 0 1rem; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(2, 0, 92, 0.96);
  backdrop-filter: blur(12px);
  color: #fff;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}
.brand img { width: 54px; height: 54px; border-radius: 50%; background: #fff; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 0.92rem; letter-spacing: 0.04em; }
.brand-text em {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  color: #9ee0b8;
  font-size: 0.72rem;
  margin-top: 4px;
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav > li { position: relative; }
.nav > li > a,
.nav > li > button {
  background: none;
  border: 0;
  color: #fff;
  font: inherit;
  font-weight: 550;
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav > li > a:hover,
.nav > li > button:hover,
.nav > li.active > a,
.nav > li.active > button { color: #9ee0b8; }
.drop {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px;
}
.nav li:hover .drop,
.nav li:focus-within .drop { display: block; }
.drop a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 550;
}
.drop a:hover { background: var(--green-soft); color: var(--green-dark); }
.header-cta { display: flex; gap: 10px; align-items: center; }
.menu-btn {
  display: none;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  padding: 8px 12px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--navy-deep) center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1,0,47,.88) 0%, rgba(1,0,47,.45) 55%, rgba(2,0,92,.2) 100%),
    linear-gradient(180deg, rgba(2,0,92,.15), rgba(1,0,47,.55));
}
.hero-inner { position: relative; z-index: 1; padding: 90px 0 80px; }
.hero .eyebrow { color: #9ee0b8; }
.hero h1 { max-width: 14ch; }
.hero h1 span { color: #9ee0b8; display: block; min-height: 1.15em; }
.hero p { color: rgba(255,255,255,.86); max-width: 38rem; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.green-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 120px;
  background: var(--green);
  clip-path: polygon(30% 0, 100% 0, 100% 100%);
  z-index: 1;
}
.dots {
  position: absolute;
  top: 22px;
  right: 22px;
  display: flex;
  gap: 7px;
  z-index: 2;
}
.dots i { width: 8px; height: 8px; background: #fff; border-radius: 50%; display: block; }

/* Sections */
.section { padding: 88px 0; }
.section.paper { background: var(--paper); }
.section.navy { background: var(--navy); color: #fff; }
.section.navy p { color: rgba(255,255,255,.8); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 0 rgba(2,0,92,.04);
  height: 100%;
}
.card h3 { color: var(--navy); font-size: 1.2rem; }
.card .num {
  color: var(--green);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.card a.more { color: var(--green); font-weight: 700; }
.card li { padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--navy); font-weight: 550; }
.card li:last-child { border-bottom: 0; }

.sectors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sector {
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  min-height: 120px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  font-weight: 650;
  background-image: linear-gradient(180deg, rgba(2,0,92,.15), rgba(2,0,92,.82));
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.stat { border-left: 3px solid var(--green); padding-left: 16px; }
.stat b { display: block; font-size: 2rem; color: #fff; }
.stat span { color: #9ee0b8; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }

.quote-block {
  font-size: 1.35rem;
  color: var(--navy);
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  line-height: 1.5;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq summary { cursor: pointer; font-weight: 650; color: var(--navy); }
.faq details p { margin: 10px 0 0; }

.form {
  display: grid;
  gap: 14px;
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form label { font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
}
.form textarea { min-height: 140px; resize: vertical; }
.alert {
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.alert.ok { background: var(--green-soft); color: var(--green-dark); }
.alert.err { background: #fde8e8; color: #8a1f1f; }

.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 72px 0 56px;
}
.page-hero p { color: rgba(255,255,255,.8); max-width: 42rem; }

.site-footer {
  background: var(--navy-deep);
  color: #fff;
  padding: 56px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: #9ee0b8; }
.site-footer h4 { margin: 0 0 14px; }
.site-footer li { margin: 0 0 8px; }
.copy { border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 16px; color: rgba(255,255,255,.55); font-size: 0.88rem; }

@media (max-width: 920px) {
  .menu-btn { display: block; }
  .nav, .header-cta { display: none; }
  .header.open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0; right: 0; top: 82px;
    background: var(--navy);
    padding: 12px 20px 24px;
  }
  .nav .drop { position: static; display: none; box-shadow: none; background: rgba(255,255,255,.06); }
  .nav li.open .drop { display: block; }
  .nav .drop a { color: #fff; }
  .header.open .header-cta { display: flex; padding: 0 20px 20px; }
  .grid-2, .grid-3, .grid-4, .sectors, .stats, .footer-grid { grid-template-columns: 1fr; }
  .green-corner, .dots { display: none; }
  .brand-text strong { font-size: 0.78rem; }
}
