/* Above-the-fold critical styles for index LCP */
:root {
  --primary: #00a651;
  --secondary: #1a1a1a;
  --header-h: 72px;
  --container: min(1200px, 92vw);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Open Sans", system-ui, sans-serif;
  color: #333;
  background: #fff;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  height: var(--header-h);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 166, 81, 0.75), rgba(26, 26, 26, 0.85));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
  max-width: 800px;
}
.hero h1 {
  font-family: Montserrat, system-ui, sans-serif;
  color: #fff;
  font-size: clamp(1.75rem, 5vw, 3rem);
  margin: 0 0 1rem;
  line-height: 1.25;
}
.hero-sub {
  margin-bottom: 2rem;
  opacity: 0.95;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
