.glass-panel {
  background: rgba(244, 248, 246, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(15, 76, 69, 0.12);
}

.glass {
  background: rgba(244, 248, 246, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(15, 76, 69, 0.08);
}

.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 76, 69, 0.08);
  box-shadow: 0 12px 28px rgba(20, 32, 30, 0.06);
}

.soft-shadow {
  box-shadow: 0 12px 28px rgba(20, 32, 30, 0.06);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(20, 32, 30, 0.1);
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.step-indicator::before {
  content: '';
  position: absolute;
  left: -17px;
  top: 24px;
  bottom: -24px;
  width: 2px;
  background-color: #1a6b60;
  z-index: -1;
}

.step-indicator:last-child::before {
  display: none;
}

details summary::-webkit-details-marker {
  display: none;
}

.brand-logo {
  image-rendering: -webkit-optimize-contrast;
}

body {
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(26, 107, 96, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(201, 162, 39, 0.08), transparent 50%),
    linear-gradient(180deg, #f4f8f6 0%, #eef4f2 100%);
  background-attachment: fixed;
}

.hero-bleed {
  position: relative;
  min-height: min(88vh, 820px);
  width: 100%;
  overflow: hidden;
}

.hero-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 76, 69, 0.88) 0%, rgba(15, 76, 69, 0.55) 42%, rgba(15, 76, 69, 0.2) 70%, rgba(15, 76, 69, 0.05) 100%);
  pointer-events: none;
}

.hero-bleed > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-zoom 18s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.rise-in {
  animation: rise-in 0.7s ease-out both;
}

.rise-in-delay {
  animation: rise-in 0.7s ease-out 0.15s both;
}

.rise-in-delay-2 {
  animation: rise-in 0.7s ease-out 0.3s both;
}

@media print {
  #site-header,
  #site-footer,
  nav {
    display: none !important;
  }

  body {
    padding: 0 !important;
    background: #fff !important;
  }
}
