:root {
  --black: #0f1611;
  --navy: #102018;
  --navy-soft: #1b3225;
  --blue: #2f6f4b;
  --blue-light: #6fa783;
  --green: #2d6b46;
  --green-soft: #e5f2e9;
  --cream: #f7f5ee;
  --white: #ffffff;
  --muted: #68756d;
  --text: #18251d;
  --line: rgba(24, 37, 29, 0.13);
  --shadow: 0 20px 60px rgba(5, 8, 6, 0.18);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img, svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(59, 178, 115, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #173822, var(--green));
  color: var(--white);
  box-shadow: 0 14px 32px rgba(45, 107, 70, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(11, 22, 40, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 245, 238, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24, 37, 29, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  font-size: 1.12rem;
}

.logo-image-link {
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 166px;
  height: auto;
  background: transparent;
  box-shadow: none;
}

.footer-brand-logo {
  width: 178px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #33443a;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--green);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: var(--green);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.25rem;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 78% 15%, rgba(45, 107, 70, 0.5), transparent 28%), radial-gradient(circle at 18% 22%, rgba(67, 122, 84, 0.34), transparent 26%), linear-gradient(135deg, #0d1711 0%, #13261b 48%, #1d432b 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -48% -10%;
  height: 420px;
  background: rgba(244, 241, 232, 0.96);
  transform: rotate(-3deg);
  transform-origin: center;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
  min-height: 720px;
  padding: 74px 0 130px;
}

.hero h1 {
  margin: 18px 0 20px;
  max-width: 780px;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.point {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.point strong {
  display: block;
  color: var(--white);
  font-size: 1.25rem;
}

.point span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.hero-card {
  position: relative;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.readiness-callout {
  position: relative;
  z-index: 3;
  margin-top: -72px;
  padding: 0 0 38px;
}

.readiness-callout-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #edf6ef 100%);
  border: 1px solid rgba(45, 107, 70, 0.18);
  box-shadow: var(--shadow);
}

.readiness-callout h2 {
  margin: 12px 0 16px;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: var(--navy);
}

.readiness-callout p {
  max-width: 720px;
  color: var(--slate);
  font-size: 1.08rem;
}

.readiness-callout-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
}

.readiness-check {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.readiness-check strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}

.readiness-check span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.assessment-panel {
  padding: 26px;
  border-radius: 24px;
  background: var(--white);
  color: var(--navy);
}

.assessment-panel h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.assessment-panel p {
  color: var(--muted);
  margin: 0 0 20px;
  font-size: 0.98rem;
}

.score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 0 8px;
  font-weight: 800;
}

.score-bar {
  height: 12px;
  background: #edf1f6;
  border-radius: 999px;
  overflow: hidden;
}

.score-fill {
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #334155;
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.floating-note {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(11, 22, 40, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: 98px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section h2 {
  margin: 12px 0 14px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.section-header p,
.card p,
.split-copy p,
.step p,
.security-copy p,
.contact-card p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(11, 22, 40, 0.08);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 1.4rem;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.split-panel {
  padding: 34px;
  border-radius: 32px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.split-panel h3 {
  margin-top: 0;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.readiness-grid {
  display: grid;
  gap: 14px;
}

.readiness-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.readiness-item strong {
  display: block;
  margin-bottom: 4px;
}

.readiness-item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.security {
  background: var(--navy);
  color: var(--white);
}

.security .section h2,
.security h2 {
  color: var(--white);
}

.security .eyebrow {
  color: #8df1bd;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.security-card {
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.security-card h3 {
  margin-top: 0;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.security-card p,
.security-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  counter-increment: steps;
}

.step::before {
  content: "0" counter(steps);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--white);
  font-weight: 900;
  background: var(--green);
}

.step h3 {
  color: var(--navy);
  margin: 0 0 8px;
}

.cta-band {
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--blue), var(--navy) 55%, var(--green));
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 10px;
  color: var(--white);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
}

.contact {
  background: #fffaf0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-card,
.contact-form {
  padding: 32px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(11, 22, 40, 0.08);
}

.contact-card h2 {
  margin-top: 10px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 32, 51, 0.16);
  border-radius: 14px;
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  background: #fbfcfe;
  color: var(--text);
}

textarea {
  resize: vertical;
  min-height: 128px;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 34px 0;
  color: #405248;
  background: #f7f5ee;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-grid,
  .readiness-callout-grid,
  .split,
  .security-grid,
  .contact-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .cards,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    min-height: auto;
  }

  .cta-band {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .btn {
    color: var(--white);
  }

  .hero-grid {
    padding: 54px 0 110px;
    gap: 32px;
  }

  .readiness-callout {
    margin-top: -34px;
    padding-bottom: 24px;
  }

  .readiness-callout-grid {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-points,
  .cards,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .contact-form,
  .mobile-toggle {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero,
  .security,
  .site-footer {
    background: white;
    color: black;
  }

  .card,
  .step,
  .contact-card,
  .split-panel,
  .security-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}