* {
  box-sizing: border-box;
}

:root {
  --navy: #071E3A;
  --navy-2: #0B2A4D;
  --green: #67B91E;
  --steel: #A6ADB5;
  --text: #102033;
  --muted: #637083;
  --white: #FFFFFF;
  --soft: #F4F7FA;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(7, 30, 58, 0.22);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Montserrat, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(22px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7, 30, 58, 0.08);
}

.brand img {
  width: 190px;
  max-height: 54px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 120px clamp(22px, 6vw, 88px) 56px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,30,58,0.96) 0%, rgba(7,30,58,0.82) 42%, rgba(7,30,58,0.24) 100%),
    url("assets/hero-lsf.png") center right / cover no-repeat,
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -22% 28%;
  height: 48%;
  background: rgba(103, 185, 30, 0.12);
  transform: rotate(-8deg);
  filter: blur(40px);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

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

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 46px;
  height: 3px;
  background: var(--green);
  border-radius: 99px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 22px 0 20px;
  font-size: clamp(4rem, 11vw, 9.6rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.lead {
  max-width: 680px;
  font-size: clamp(1.18rem, 2.3vw, 1.8rem);
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.88);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  color: var(--navy);
  background: var(--green);
}

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

.hero-card {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 6vw, 88px);
  bottom: 52px;
  width: min(420px, calc(100% - 44px));
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: var(--shadow);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.hero-card span {
  color: rgba(255,255,255,0.78);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(22px, 6vw, 88px);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  background: var(--soft);
}

.section-title h2 {
  margin: 16px 0 0;
  font-size: clamp(2.1rem, 4.8vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--navy);
}

.intro p,
.cta p {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--muted);
}

.dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #031224);
}

.dark .section-title h2 {
  color: var(--white);
}

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

.card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.card .icon {
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.card h3 {
  margin: 28px 0 10px;
  font-size: 1.35rem;
}

.card p {
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.segments {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.segments span {
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--navy);
  font-weight: 800;
}

.cta {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 44px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(103,185,30,0.18), transparent 36%),
    var(--soft);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(7, 30, 58, 0.15);
  border-radius: 14px;
  padding: 0 15px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}

.lead-form small {
  color: var(--muted);
  line-height: 1.5;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(22px, 6vw, 88px);
  background: var(--navy);
  color: rgba(255,255,255,0.76);
}

.footer img {
  width: 170px;
  max-height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 112px;
    align-items: start;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 36px;
  }

  .intro,
  .cta {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    height: 74px;
  }

  .brand img {
    width: 154px;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.4rem);
  }

  .grid.cards {
    grid-template-columns: 1fr;
  }

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