* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background: var(--color-bg-light);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* Lucide icons render as inline SVG — default sizing/stroke, contexts below override size */
[data-lucide] {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2px;
  vertical-align: -0.15em;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 64px;
}

.section {
  padding: 80px 0;
}

.section-heading {
  text-align: left;
  margin-bottom: 16px;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-text-dark);
  line-height: 1.25;
}

.section-heading p {
  font-size: 18px;
  margin-top: 8px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered .accent-bar {
  margin: 16px auto 0;
}

.accent-bar {
  width: 96px;
  height: 4px;
  background: var(--color-green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.7px;
  border-radius: var(--radius-md);
  padding: 17px 32px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn:focus-visible {
  outline: 3px solid var(--color-green);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-green);
  color: var(--color-white);
  box-shadow: var(--shadow-btn);

  &.cta {
    color: white;
    padding-bottom: 17px;

    &:hover {
      color: white;
    }
  }
}

.btn-primary:hover {
  background: #2b8207;
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 600px;
  height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a2740, var(--color-charcoal));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 17, 37, 0.8) 0%, rgba(5, 17, 37, 0.4) 50%, rgba(5, 17, 37, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 64px;
  width: 100%;
}

.hero-content-inner {
  max-width: 672px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  color: var(--color-white);
  letter-spacing: -0.96px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 16px;
  color: #dee3e5;
}

.hero-actions {
  display: flex;
  gap: 16px;
  padding-top: 17px;
  flex-wrap: wrap;
}