:root {
  --lbte-green: #285a42;
  --lbte-navy: #0d2d5e;
  --lbte-bg: #ffffff;
  --lbte-surface: #f5f8fc;
  --lbte-surface-2: #eef4fb;
  --lbte-border: #d8e1ee;
  --lbte-muted: #64748b;
  --lbte-muted-soft: #94a3b8;
  --lbte-text: #0f2340;
  --lbte-shadow: 0 18px 42px rgba(13, 45, 94, 0.1);
  --lbte-shadow-soft: 0 10px 26px rgba(13, 45, 94, 0.06);
  --lbte-radius: 16px;
  --lbte-radius-lg: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  color: var(--lbte-text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(26, 107, 60, 0.18);
}

.lbte-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.lbte-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.lbte-page {
  flex: 1;
}

.lbte-content-shell {
  padding: 64px 0 96px;
}

.lbte-section {
  padding: 100px 0;
}

.lbte-section--alt {
  background: var(--lbte-surface);
}

.lbte-section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--lbte-muted-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lbte-section-label::before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--lbte-muted-soft);
}

.lbte-section-label--light {
  color: rgba(255, 255, 255, 0.7);
}

.lbte-section-label--light::before {
  background: rgba(255, 255, 255, 0.55);
}

.lbte-section-heading {
  margin-bottom: 28px;
}

.lbte-section-intro {
  max-width: 720px;
  color: var(--lbte-muted);
  margin: 10px 0 0;
}

.lbte-section-heading h2,
.lbte-page-hero h1,
.lbte-slider h1 {
  margin: 0;
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.1;
}

.lbte-grid {
  display: grid;
  gap: 24px;
}

.lbte-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lbte-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.lbte-card {
  background: #fff;
  border: 0;
  border-radius: var(--lbte-radius);
  box-shadow: var(--lbte-shadow-soft);
  overflow: hidden;
}

.lbte-card h2,
.lbte-card h3,
.lbte-card h4 {
  margin-top: 0;
}

.lbte-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--lbte-muted-soft);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
}

.lbte-text-accent {
  color: #6ecf96;
}
