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

:root {
  --green-dark: #1a5c1a;
  --green-mid: #2e8b2e;
  --green-light: #4db84d;
  --green-pale: #e8f5e8;
  --orange-dark: #b34000;
  --orange-mid: #e05a00;
  --orange-light: #ff7a1a;
  --orange-pale: #fff3e8;
  --off-white: #fafaf7;
  --text-dark: #1c1c1c;
  --text-mid: #444;
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── HERO ── */
.hero {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.03) 40px,
    rgba(255, 255, 255, 0.03) 80px
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 3rem;
  flex-wrap: wrap;
}

.logo {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.3));
}

.hero-tagline span {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.hero-stripe {
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--orange-mid) 0%,
    var(--orange-light) 50%,
    var(--green-light) 100%
  );
}

/* ── MAIN GRID ── */
.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  width: 100%;
  margin: 3rem auto;
  padding: 0 2rem;
  flex: 1;
}

/* ── CARDS ── */
.card {
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.card--green {
  background: var(--green-pale);
  border: 2px solid var(--green-light);
}

.card--green::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  border-radius: var(--radius) var(--radius) 0 0;
}

.card--orange {
  background: var(--orange-pale);
  border: 2px solid var(--orange-light);
}

.card--orange::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange-light));
  border-radius: var(--radius) var(--radius) 0 0;
}

.card--third {
  background: rgb(245, 185, 185);
  border: 2px solid rgb(200, 122, 122);
}

.card--third::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, rgb(200, 122, 122), rgb(245, 185, 185));
  border-radius: var(--radius) var(--radius) 0 0;
}

.card--fourth {
  background: rgb(187, 187, 245);
  border: 2px solid rgb(86, 94, 169);
}

.card--fourth::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, rgb(86, 94, 169), rgb(187, 187, 245));
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  opacity: 0.08;
  color: var(--text-dark);
  pointer-events: none;
  user-select: none;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.1rem;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.card--green h2 {
  color: var(--green-dark);
}
.card--orange h2 {
  color: var(--orange-dark);
}

.card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card li {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}

.card li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.75rem;
}

.card--green li::before {
  color: var(--green-mid);
}
.card--orange li::before {
  color: var(--orange-mid);
}

.card strong {
  font-weight: 600;
}

.card--green strong {
  color: var(--green-dark);
}
.card--orange strong {
  color: var(--orange-dark);
}

.highlight {
  display: inline-block;
  background: var(--orange-mid);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.2em 0.6em;
  border-radius: 6px;
  margin-top: 0.25rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  text-align: center;
  padding: 1.25rem;
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .container {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    margin: 1.5rem auto;
  }

  .hero-inner {
    padding: 1.5rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .logo {
    height: 64px;
  }

  .card {
    padding: 2rem 1.5rem;
  }

  .card h2 {
    font-size: 1.75rem;
  }
}
