/* Variables */
:root {
  --container-max: 1100px;
  --min-page-width: 334px;
  --accent: #0b6cf6;
  --muted: #6b7280;
  --brand-dark: #165a33;
  --brand-light: #76ac8c;
  --brand-footer: #164C2B;
}

/* Reset */
* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  font-family: 'Poppins', Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  margin: 0;
  color: #111827;
  background: #fff;
  font-size: 18px;
  line-height: 1.45;
}

html {
  background-color: #164C2B;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

.container {
  max-width: var(--container-max);
  min-width: var(--min-page-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Header */
.site-header {
  background: #6d8f78;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header .container {
  max-width: 100%;
  padding-left: 28px;
  padding-right: 28px;
}

.nav {
  height: 90px
}

.brand {
  display: flex;
  align-items: center;
}

.logo-img {
  display: block;
  width: auto;
  max-height: 48px;
}

.site-header a {
  color: inherit;
}

.btn.pill {
  display: inline-block;
  background: #004e00;
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: filter 160ms ease, transform 160ms ease;
}

.btn.pill:hover {
  filter: brightness(.95);
  transform: translateY(-1px);
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  margin-left: 12px;
  padding: 8px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 200ms ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu {
  display: block;
  padding: 0 20px;
  background: #6d8f78;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  max-height: 200px;
}

.mobile-menu .btn.pill {
  display: block;
  width: calc(100% - 40px);
  margin: 20px 20px;
  text-align: center;
  background: rgba(0, 78, 0, 0.9);
  transition: all 200ms ease;
}

.mobile-menu .btn.pill:hover {
  background: rgba(0, 78, 0, 1);
  transform: translateY(-1px);
}

@media (max-width:768px) {
  .nav-actions {
    display: none
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center
  }

  .logo-img {
    max-height: 42px
  }
}

@media (max-width:600px) {
  .container {
    padding: 0 14px
  }

  .btn.pill {
    padding: 8px 14px
  }
}

@media (max-width:480px) {
  .logo-img {
    max-height: 36px
  }

  .carousel-item {
    width: 360px !important;
    max-width: 360px !important;
    min-width: 360px !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  .mobile-menu,
  .mobile-menu.open {
    transition: none
  }
}

/* Hero */
.hero {
  padding: 48px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.06) 100%),
    #164C2B;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero .container {
  max-width: 100%;
  padding-left: 28px;
  padding-right: 28px
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  z-index: 2;
  position: relative;
}

.hero-content {
  flex: 0 0 46%;
  max-width: 720px;
  padding-left: 28px
}

.hero-content h1 {
  font-size: 2.8rem;
  margin: 0 0 14px;
  color: inherit;
  line-height: 1.05
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin: 0
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0 24px 0;
}

.hero-cta .btn {
  padding: 12px 24px;
  font-size: 0.95rem;
}

.btn.pill.hero-primary {
  background: #0b6cf6;
  border-color: #0b6cf6;
  box-shadow: 0 8px 24px rgba(11, 108, 246, 0.35);
}

.btn.pill.hero-primary:hover {
  background: #084fc1;
  border-color: #084fc1;
}

.hero-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-highlight::before {
  content: '\2713';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.75rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.hero-image {
  flex: 1 1 54%;
  position: relative;
  aspect-ratio: 13 / 9;
  width: 100%;
  max-width: 100%;
  min-height: 360px;
  overflow: hidden;
  border-radius: 10px
}

.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  max-width: none
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(22, 76, 43, 0) 0%, rgba(22, 90, 51, 1) 100%);
}

@media (max-width:768px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: left
  }

  .hero-image {
    position: relative;
    min-height: 0
  }

  .hero-image img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: 60% center
  }

  .hero-content {
    padding-left: 0;
    padding-right: 0
  }

  .hero-content h1 {
    font-size: 2rem
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .hero-highlights {
    gap: 10px;
  }

  .hero::after {
    height: 80px
  }
}

@media (max-width:600px) {
  .hero-content h1 {
    font-size: 1.35rem
  }

  .hero-content .lead {
    font-size: 1rem
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
}

@media (min-width:769px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

}

/* Approach */
.approach {
  padding: 32px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.00) 60%),
    var(--brand-dark);
  color: white;
  position: relative;
}

.approach .container {
  max-width: 100%;
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: flex-start;
  padding-left: 28px;
  padding-right: 28px;
  position: relative;
  z-index: 2
}

.approach-image {
  flex: 0 0 34%;
  overflow: hidden;
  border-radius: 8px;
  min-height: 480px;
  max-height: 100%;
}

.approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  display: block;
}

.approach-content {
  flex: 1 1 54%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-right: 28px;
}

.approach-block h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700
}

.approach-block .lead {
  font-size: 1.125rem;
  margin: 0;
  opacity: 0.95
}

.approach-block p {
  margin: 0;
  line-height: 1.5
}

.approach-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.approach-highlight {
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
}

.approach-highlight h3 {
  margin: 0 0 12px 0;
  font-size: 1.1rem;
  color: #ffffff;
}

.approach-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .approach-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.approach::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 120px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(22, 90, 51, 1) 0%, rgba(22, 90, 51, 0) 100%);
}

@media (max-width:768px) {
  .approach .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .approach-image {
    width: 100%;
    height: 450px;
    flex: none;
  }

  .approach::before {
    height: 80px;
  }

  .approach-highlights {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .approach-content {
    padding-right: 0;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .approach-block {
    width: 100%;
    text-align: center;
  }

  .approach-highlight {
    width: min(100%, 360px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Wave divider */

.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  top: -4px;
  overflow: hidden;
  line-height: 0;
  height: 196px;
  pointer-events: none;
  z-index: 2;
  background: transparent;
}

.wave-divider svg {
  display: block;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  margin-left: -12px;
  margin-top: -12px;
  transform: scale(1.018, 1.05) translateY(-4px);
  transform-origin: 50% 0;
}

.wave-divider svg path {
  shape-rendering: geometricPrecision;
}

.carousel .wave-divider {
  background: var(--brand-dark);
}

.pricing .wave-divider {
  background: var(--brand-light);
}

@media (max-width:768px) {
  .wave-divider {
    height: 136px;
    top: -3px;
  }
}

/* Pricing */
.pricing {
  padding: 120px 0 60px;
  background: #ffffff;
  color: var(--brand-dark);
  position: relative;
}

.pricing::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 120px;
  pointer-events: none;
  z-index: 1;
  background: var(--brand-light);
}

.pricing .container {
  max-width: var(--container-max);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 28px;
  padding-right: 28px;
  position: relative;
  z-index: 2;
}

.pricing-header {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--brand-dark);
}

.pricing-header .lead {
  font-size: 1.25rem;
  color: var(--muted);
  margin: 0;
  max-width: 500px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  max-width: 900px;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(118, 172, 140, 0.15);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--brand-dark);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.plus-card {
  border: 2px solid var(--brand-light);
  background: white;
}

.plus-card:hover {
  transform: translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-light);
  color: white;
  padding: 6px 20px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(118, 172, 140, 0.3);
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--brand-dark);
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0 4px;
}

.period {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.annual-pill {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: rgba(118, 172, 140, 0.18);
  border-radius: 999px;
  padding: 6px 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: inset 0 0 0 1px rgba(118, 172, 140, 0.25);
}

.plan-description {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 12px 0 0 0;
  line-height: 1.3;
}

.pricing-trial-banner {
  margin: 32px auto 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  padding: 14px 28px;
  background: rgba(118, 172, 140, 0.18);
  box-shadow: inset 0 0 0 1px rgba(118, 172, 140, 0.32);
}

.pricing-trial-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-dark);
  font-weight: 700;
  background: rgba(22, 90, 51, 0.12);
  border-radius: 999px;
  padding: 6px 12px;
}

.pricing-trial-copy {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.pricing-card-body {
  margin-bottom: 20px;
  flex-grow: 1;
}

.includes {
  font-size: 0.85rem;
  color: var(--brand-dark);
  margin: 0 0 16px 0;
  font-weight: 500;
  padding-left: 30px;
}

@media (max-width: 720px) {
  .pricing-trial-banner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 18px 22px;
  }
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  line-height: 1.3;
  padding-left: 30px;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--brand-light);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card-footer {
  margin-top: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.btn.pill.secondary {
  background: white;
  color: var(--brand-dark);
  border: 2px solid var(--brand-light);
  box-shadow: 0 6px 16px rgba(118, 172, 140, 0.28);
}

.btn.pill.secondary:hover {
  background: var(--brand-light);
  color: white;
  border-color: var(--brand-light);
}

.btn.pill.primary {
  background: var(--brand-dark);
  color: white;
  border: 2px solid var(--brand-dark);
  box-shadow: 0 6px 16px rgba(22, 90, 51, 0.28);
}

.btn.pill.primary:hover {
  background: var(--brand-light);
  border-color: var(--brand-light);
}

.savings {
  color: var(--brand-light);
  font-weight: 600;
}

.pricing-note {
  margin: 0 auto 32px;
  text-align: center;
  color: var(--brand-light);
  font-size: 1.02rem;
  font-weight: 600;
  max-width: 760px;
}

@media (max-width: 768px) {
  .pricing {
    padding: 100px 0 50px;
  }
  
  .pricing::before {
    height: 80px;
  }
  
  .pricing-header h2 {
    font-size: 2rem;
  }
  
  .pricing-header .lead {
    font-size: 1.125rem;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
  
  .free-card {
    order: 1;
  }
  
  .plus-card {
    transform: none;
    order: 2;
  }
  
  .plus-card:hover {
    transform: translateY(-4px);
  }
  
  .pricing-card {
    padding: 20px 18px;
  }
  
  .amount {
    font-size: 2.25rem;
  }
 
   .pricing-note {
    font-size: 0.95rem;
    margin: 0 auto 24px;
    padding: 0 16px;
   }
 }
 
 @media (max-width: 480px) {
  .pricing {
    padding: 90px 0 40px;
  }
  
  .pricing-header {
    margin-bottom: 32px;
  }
  
  .pricing-header h2 {
    font-size: 1.75rem;
  }
  
  .pricing-cards {
    max-width: 100%;
    gap: 16px;
  }
  
  .pricing-card {
    padding: 18px 16px;
  }
  
  .amount {
    font-size: 2rem;
  }
 
   .pricing-note {
    margin: 0 auto 20px;
    font-size: 0.9rem;
    padding: 0 12px;
   }
 }
 
 /* Carousel */
.carousel {
  position: relative;
  background: var(--brand-light);
  padding: 160px 0 28px;
  z-index: 1;
}

.carousel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 180px;
  background: var(--brand-dark);
  z-index: 1;
}

.carousel-inner {
  max-width: 100vw;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.glide__slide {
  display: flex;
  justify-content: center;
  flex-shrink: 0
}

.carousel-item {
  flex: 1;
  width: clamp(240px, 22vw, 480px);
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-card {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.carousel-caption {
  margin-top: 10px;
  color: #0f1720;
  font-weight: 600
}

/* h2 captions below carousel items: dark green header */
h2.carousel-caption {
  margin-top: 10px;
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
}

.carousel-sub {
  margin: 6px 0 0 0;
  color: rgba(255,255,255,0.95);
  font-size: 0.95rem;
  text-align: center;
  max-width: 68%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.35;
}

.glide {
  position: relative;
  display: flex;
  justify-content: center
}

.glide__track {
  max-width: 100%;
  overflow: hidden
}

.glide__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 160px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  padding: 0 24px;
  z-index: 12;
}

.glide__arrows .glide__arrow {
  pointer-events: auto;
  margin: 0;
  position: relative;
}

.glide__arrows .carousel-btn {
  margin: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #004e00;
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: filter 160ms ease, transform 140ms ease;
}

.glide__arrows .carousel-btn:hover {
  filter: brightness(.95);
  transform: translateY(-1px)
}

.glide__arrows .carousel-btn:focus {
  outline: 2px solid rgba(255, 255, 255, 0.12)
}

@media (min-width:901px) and (max-width:1200px) {
  .carousel-track {
    gap: 40px;
  }

  .carousel-item {
    width: calc((100% - 40px) / 2);
    max-width: none;
  }
}

@media (max-width:1200px) {
  .carousel-item {
    max-width: 280px;
  }
}

@media (min-width:1400px) {
  .carousel-item {
    width: clamp(320px, 20vw, 640px)
  }
}

@media (min-width:2000px) {
  .carousel-item {
    width: clamp(360px, 18vw, 760px)
  }
}

@media (max-width:900px) {
  .carousel::before {
    height: 120px
  }

  .carousel {
    padding-top: 90px
  }

  .carousel-item {
    width: min(360px, 88vw) !important;
    max-width: 360px !important;
    min-width: 320px !important;
  }

  .carousel-track {
    gap: 24px
  }

  .carousel-inner {
    padding-left: 60px;
    padding-right: 60px
  }

  .glide__arrows {
    width: calc(100% + 48px);
    padding: 0 12px;
  }
}

@media (max-width:768px) {
  .carousel-inner {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }

  .glide {
    padding-left: 0 !important;
    padding-right: 0 !important;
    flex-direction: column !important;
    align-items: center !important
  }

  .glide__arrows {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: auto !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 12px !important;
    padding: 0 !important;
    pointer-events: auto !important;
    z-index: 10 !important;
  }

  .glide__arrows .glide__arrow {
    margin: 0 8px !important
  }

  .glide__arrows .carousel-btn {
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: #004e00 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .glide__track {
    width: 100% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    animation: none
  }
}

/* FAQ */
.faq {
  position: relative;
  padding: 160px 0 140px;
  background: var(--brand-dark);
  color: white;
  overflow: hidden;
}

.faq::before {
  content: none;
}

.faq::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(22, 90, 51, 0) 0%, var(--brand-footer) 100%);
  z-index: 1;
}

.faq .container {
  max-width: 100%;
  padding-left: 28px;
  padding-right: 28px;
  position: relative;
  z-index: 2;
}

.faq-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.faq-header {
  text-align: center;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-header h2 {
  margin: 0;
  font-size: 2.75rem;
  font-weight: 700;
}

.faq-header .lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 760px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-item {
  display: block;
  color: rgba(255, 255, 255, 0.92);
}

.faq-item[open] summary {
  background: rgba(255, 255, 255, 0.12);
}

.faq-item summary {
  list-style: none;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: inherit;
  padding: 22px 28px;
  transition: background-color 160ms ease, color 160ms ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-weight: 600;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq-item p {
  margin: 0;
  padding: 0 28px 24px 28px;
  color: rgba(234, 246, 234, 0.9);
  font-size: 0.98rem;
  line-height: 1.55;
  cursor: default;
}

.faq-item[open] p {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 0;
  padding-top: 20px;
}

.faq-item a {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(118, 172, 140, 0.65);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.faq-item a:hover {
  color: var(--brand-light);
  text-decoration-color: var(--brand-light);
}


.faq .wave-divider {
  background: #ffffff;
  top: -9px;
  height: 212px;
}

.faq .wave-path {
  fill: var(--brand-dark);
}

@media (max-width: 960px) {
  .faq {
    padding: 140px 0 120px;
  }

  .faq-list {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .faq {
    padding: 120px 0 100px;
  }

  .faq-header h2 {
    font-size: 2.2rem;
  }

  .faq-header .lead {
    font-size: 1.05rem;
  }

  .faq-item summary {
    padding: 18px 20px;
  }

  .faq-item p {
    padding: 0 20px 20px 20px;
  }
}

/* Legal pages */
.legal-hero {
  background: linear-gradient(145deg, #164c2b 0%, #0d3a21 62%, #0b2d19 100%);
  color: white;
  padding: 120px 0 90px;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: -140px -120px auto;
  height: 320px;
  background: radial-gradient(circle at top left, rgba(118, 172, 140, 0.5), rgba(10, 41, 23, 0));
  pointer-events: none;
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: auto -160px -160px 45%;
  height: 340px;
  background: radial-gradient(circle at bottom right, rgba(11, 108, 246, 0.32), rgba(10, 41, 23, 0));
  transform: rotate(-8deg);
  pointer-events: none;
}

.legal-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
  transform: translateZ(0);
}

.legal-wave svg {
  width: 100%;
  height: 84px;
  display: block;
}

.legal-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  margin: 0 0 16px;
  font-size: 2.75rem;
  letter-spacing: -0.02em;
}

.legal-hero p.lead {
  margin: 0;
  font-size: 1.18rem;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.87);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 32px;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.legal-meta a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  margin-left: 6px;
}

.legal-meta a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.9);
}

.legal-content {
  position: relative;
  background: linear-gradient(180deg, #e9f6ef 0%, #f4faf6 40%, #ffffff 88%);
  padding: 140px 0 160px;
}

.legal-content::before {
  content: "";
  position: absolute;
  inset: -120px 0 auto 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(22, 90, 51, 0.08) 0%, rgba(22, 90, 51, 0) 100%);
  pointer-events: none;
}

.legal-article {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(236, 246, 239, 0.96));
  border-radius: 22px;
  border: 1px solid rgba(22, 90, 51, 0.12);
  box-shadow: 0 26px 60px rgba(17, 24, 39, 0.12);
  padding: 56px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  backdrop-filter: blur(2px);
}

.legal-article::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.legal-article > div {
  position: relative;
  z-index: 1;
}

.legal-article h2 {
  margin: 10px 0;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  padding-left: 18px;
  position: relative;
}

.legal-article h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  bottom: 0.4em;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-light), rgba(11, 108, 246, 0.45));
}

.legal-article h3 {
  margin: 10px 0;
  font-size: 1.2rem;
}

.legal-article p,
.legal-article ul,
.legal-article ol {
  margin: 0;
  color: #2d3a33;
  line-height: 1.65;
  font-size: 1.06rem;
}

.legal-article ul,
.legal-article ol {
  padding-left: 28px;
}

.legal-article li + li {
  margin-top: 10px;
}

.legal-article strong {
  color: #17472c;
}

.legal-article a {
  color: #0b6cf6;
  text-decoration: underline;
  text-decoration-color: rgba(11, 108, 246, 0.3);
  text-underline-offset: 3px;
}

.legal-article a:hover {
  text-decoration-color: #0b6cf6;
}

@media (max-width: 900px) {
  .legal-hero {
    padding: 100px 0 70px;
  }

  .legal-hero h1 {
    font-size: 2.3rem;
  }

  .legal-article {
    padding: 44px 36px;
    border-radius: 20px;
  }
}

@media (max-width: 640px) {
  .legal-shell {
    padding: 0 18px;
  }

  .legal-hero {
    padding: 80px 0 54px;
  }

  .legal-hero h1 {
    font-size: 1.95rem;
  }

  .legal-hero p.lead {
    font-size: 1.02rem;
  }

  .legal-meta span {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .legal-content {
    padding: 110px 0 120px;
  }

  .legal-article {
    padding: 32px 22px;
    gap: 28px;
    border-radius: 18px;
  }

  .legal-article h2 {
    font-size: 1.25rem;
  }

  .legal-article p,
  .legal-article ul,
  .legal-article ol {
    font-size: 1rem;
  }
}

@media (max-width: 460px) {
  .legal-meta {
    gap: 8px;
  }

  .legal-meta span {
    width: 100%;
    justify-content: center;
  }

  .legal-article {
    padding: 28px 20px;
  }
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--brand-footer);
  color: rgba(255, 255, 255, 0.92);
  padding: 80px 0;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 5;
  min-height: 120px;
}

.site-footer a {
  color: #ffffff !important;
  text-decoration: none !important;
}

.site-footer a:visited {
  color: #ffffff !important;
}

.site-footer a:hover,
.site-footer a:active {
  color: #eaf6ea !important;
  text-decoration: underline !important;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.footer-wordmark {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: 1;
}

.footer-tag {
  margin: 0;
  opacity: 0.92;
  font-size: 0.95rem;
}

.footer-right {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.footer-col h3 {
  margin: 0 0 12px 0;
  font-weight: 600;
}

.footer-col address,
.footer-col p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-col address {
  font-style: normal;
}

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width:768px) {
  .site-footer {
    padding: 60px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    gap: 18px;
    margin-top: 18px;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-wordmark {
    font-size: 1.6rem;
  }

  .footer-bottom-inner {
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* Large viewport constraints */
@media (min-width:2000px) {

  .hero .container,
  .approach .container,
  .carousel .container,
  .carousel .container.carousel-inner {
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width:1400px) {
  .footer-inner,
  .footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-inner {
    justify-content: space-between;
  }
}